ImportError: cannot import name 'distances' from 'pytorch_metric_learning' (/home/image/anaconda3/envs/yxg/lib/python3.7/site-packages/pytorch_metric_learning/__init__.py)
时间: 2023-09-09 07:13:54 浏览: 89
anaconda中python文件
这个错误是由于在 `pytorch_metric_learning` 包中找不到 `distances` 模块而导致的。你可以尝试检查 `pytorch_metric_learning` 包是否已经正确安装,并且确保你的代码中正确引用了这个模块。如果问题仍然存在,可以尝试升级或者降级 `pytorch_metric_learning` 包以解决该问题。
阅读全文