如何解决python深度学习中的IndexError它说:元组索引超出范围

时间:2019-07-19 05:10:59

标签: python machine-learning deep-learning computer-vision

当我在训练模型时遇到以下错误时,我正在解决深度学习中的一个问题。

有人可以帮忙吗?。

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

0 个答案:

没有答案