1. ホーム
  2. python

AttributeError: 'list' オブジェクトには 'ndim' という属性がありません。

2022-02-09 06:49:35

ERROR

AttributeError Traceback (most recent call last)
<ipython-input-6-9b77ac20aa23> in <module>()
      1 # Print the `images` dimensions
----> 2 print(images.ndim)
      3 
      4 # Print the number of `images`'s elements
      5 print(images.size)

AttributeError: 'list' object has no attribute 'ndim'


解決策

を読み込んで、入力の形状を取得しようとしました。  ndim  の属性は numpy配列 と表示され、失敗しました。

を使って単純に変換するだけです。  np.array :

import numpy as np
...
images=np.array(images)
labels=np.array(labels)