UserWarning: torch.meshgrid: in an upcoming release, it will be required to pass the indexing argument. (Triggered internally at C:\actions-runner\_work\pytorch\pytorch\builder\windows\pytorch\aten\src\ATen\native\TensorShape.cpp:3191.) return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
时间: 2023-07-23 14:14:09 浏览: 486
这是一个警告信息,提示在将来的一个版本中,在使用 torch.meshgrid 函数时需要传递索引参数。这个警告是发生在路径为 c:\\actions-runner\\_work\\pytorch\\pytorch\\builder\\windows\\pytorch\\aten\\src\\aten\\native\\tensorshape.cpp:2228 的代码位置。这段警告信息在运行 _vf.meshgrid(tensors, **kwargs) 时触发。
阅读全文