Expected 3D (unbatched) or 4D (batched) input to conv2d, but got input of size: [5, 2]
时间: 2023-05-10 20:55:16 浏览: 2548
python3.7解决最小二乘遇到ValueError:Expected 2D array, got 1D array instead: array=[5.].关于reshape和predict
这个错误提示表明 conv2d 函数需要输入 3D 或 4D 的张量,但是输入的张量大小是 [5, 2],不符合要求。可能需要对输入的张量进行 reshape 或者添加维度来满足 conv2d 函数的要求。
阅读全文