RuntimeError: The size of tensor a (87) must match the size of tensor b (12) at non-singleton dimension
时间: 2023-12-13 09:31:46 浏览: 123
RuntimeError: Cannot run the event loop while another loop is running(目前没有解决)
5星 · 资源好评率100%
这个错误通常是由于两个张量的形状不匹配导致的。你需要检查你的代码,确保在执行操作时两个张量的形状是相同的。你可以使用`.shape`属性检查张量的形状,并使用`.view()`方法调整张量的形状以匹配操作的要求。如果你在使用GPU时遇到这个错误,可能是因为GPU显存内存不够,你可以尝试将batch_size改小或者使用更高内存的GPU。
阅读全文