我正在走过this tutorial,并尝试按如下方式评估模型:
model.evaluate(test_x, test_y)
但是我收到以下错误:
return [x[start] for x in X]
IndexError: index 2 is out of bounds for axis 1 with size 2
为什么?我该如何解决这个问题?
修改
这是我的测试数据的大小:
test_x: (36, 9, 6, 1)
test_y: (36, 2)
这会是一个问题吗?
感谢。