当我在训练模型时遇到以下错误时,我正在解决深度学习中的一个问题。
有人可以帮忙吗?。
IndexError: Traceback (most recent call last)
<ipython-input-16-b6442c0fce84> in <module>
142
143
--> 144 X, Y = get_data(size, total_sample_size)
145 X.shape(20000, 2, 1, 56, 46)
146 Y.shape(20000, 1)
<ipython-input-16-b6442c0fce84> in get_data(size, total_sample_size)
70 image = image[size]
71 #get the new size
---> 72 dim1 = image.shape[1]
73 dim2 = image.shape[2]
74
IndexError: tuple index out of range