RuntimeError: shape '[5, 1, 100]' is invalid for input of size 300
时间: 2023-09-24 14:12:21 浏览: 90
RuntimeError: Cannot run the event loop while another loop is running(目前没有解决)
5星 · 资源好评率100%
这个错误提示表明你的输入张量的大小不符合要求。根据错误信息,你的输入张量的大小应该是300,而你尝试将其变换为形状为`(5, 1, 100)`的张量。
可能的原因是你的输入张量的大小不是300,而是其他的值。请检查你的输入张量的大小是否正确,并确保它与你尝试变换的目标形状相匹配。另外,也请确保你正在使用正确的函数和参数进行形状变换。
阅读全文