IndexError:索引102超出大小为102的轴0的范围

时间:2019-05-11 19:21:16

标签: python

我正在使用caltech101数据集。我仍然仔细地检查了所有数据集,它仍然显示索引错误:

n_output_nodes = 102

def one_hot(y, classes):
    I = np.eye(classes)
    ret = []
    for y_ in y:
        ret.append(I[y_])
    return np.array(ret)

y_train_on = one_hot(y_train,n_output_nodes)

0 个答案:

没有答案