我正在尝试执行LIIF(https://github.com/yinboc/liif),但出现以下警告:
/usr/local/lib/python3.7/dist-packages/torch/functional.py:445: UserWarning: torch.meshgrid: in an upcoming release, it will be required to pass the indexing argument. (Triggered internally at ../aten/src/ATen/native/TensorShape.cpp:2157.)
return _VF.meshgrid(tensors, **kwargs) # type: ignore[attr-defined]
1条答案
按热度按时间68de4m5k1#
我的答案可能不是直接的解决方案,但可能在某种程度上是相关的。我遇到了同样的警告,但它是由调用
torch.cartesian_prod(*tensors)
引起的。从我个人的经验,我找不到任何亲戚之间的
_VF.cartesian_prod
和meshgrid
,但警告是存在的,一些其他的家伙遇到了这个,并看到pytorch issue #50276,工程师从Pytorch承诺看一看,但我猜他们可能会忽略(或可能忘记)这一点。所以我相信这可能不是一个严重的问题,也不会妨碍Pytorch的使用。只要继续下去,看看在未来的版本中是否需要任何新的参数(eidogg.,index)。