The size of tensor a (3) must match the size of tensor b (0) at non-singleton dimension 0
时间: 2023-12-13 16:29:58 浏览: 245
Python库 | torch-tensor-type-0.0.1.tar.gz
这个错误通常是由于在进行张量运算时,两个张量的形状不兼容导致的。具体来说,这个错误提示表明在第 0 维上,张量 a 的大小为 3,而张量 b 的大小为 0,这是不兼容的。
要解决这个问题,你需要检查你的代码,找出哪里出现了这个错误,并确保两个张量的形状是兼容的。你可以使用 PyTorch 的 reshape() 函数来改变张量的形状,以使其与另一个张量兼容。
阅读全文