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:3484.) return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]怎么解决
时间: 2023-07-03 20:31:37 浏览: 182
解决pytorch-yolov3 train 报错的问题
这个警告是因为 `torch.meshgrid` 函数在将来的版本中将需要传递一个索引参数。为了解决这个警告,我们可以在调用 `meshgrid` 函数时显式地指定 `indexing='ij'` 参数:
```python
xx, yy = torch.meshgrid(torch.linspace(x_min, x_max, 100), torch.linspace(y_min, y_max, 100), indexing='ij')
```
这样就不会出现警告了。
阅读全文