这两个对我来说似乎都是数组。
# suppose that test_data has [1000,728] shape
print (test_data[0:1,:].shape)
# output [1,728]
print (test_data[0,:].shape)
# output [728,]
我在keras顺序model.predict_classes(x)
函数中尝试了这两个数组。
test_data [0:1 ,:]有效,但test_data [0 ,:]提供错误。