TypeError: empty() received an invalid combination of arguments - got (tuple, dtype=NoneType, device=NoneType), but expected one of: * (tuple of ints size, *, tuple of names names, torch.memory_format memory_format, torch.dtype dtype, torch.layout layout, torch.device device, bool pin_memory, bool requires_grad) * (tuple of SymInts size, *, torch.memory_format memory_format, Tensor out, torch.dtype dtype, torch.layout layout, torch.device device, bool pin_memory, bool requires_grad)
时间: 2024-03-29 08:35:19 浏览: 464
MNE-Python : TypeError: today() takes no keyword arguments
5星 · 资源好评率100%
这个错误通常是由于使用了错误的参数类型导致的。在这种情况下,错误的参数类型是一个元组,而函数期望的是一个张量或一个元组加上其他参数。
你需要检查传递给函数的参数,确保它们的类型是正确的。如果你不确定哪个参数导致了这个错误,可以通过在代码中插入 print 语句来调试它。
另外,你可以查看函数的文档或源代码,以了解函数期望哪些参数类型。这将帮助你避免类似的错误。
阅读全文