我尝试了this question的所有三种解决方案来解决这个问题,但仍然收到一个错误:
ImportError: cannot import name 'ToTensorV2' from 'albumentations.pytorch' (/usr/local/lib/python3.7/dist-packages/albumentations/pytorch/__init__.py)
当前代码:
!pip install -U albumentations
import albumentations
from albumentations.pytorch import ToTensorV2
3条答案
按热度按时间baubqpgj1#
你试过工厂重置运行时吗?如果你没有,也许python仍然在加载早期版本。我刚刚在一个新的colab示例上测试了链接问题的公认解决方案,它工作得很好:
hlswsv352#
试试这个,应该可以解决你的问题:
holgip5t3#
在这里它为我工作。github的插件没有任何问题。
!pip install -U git+https://github.com/albu/albumentations > /dev/null && echo import albumentations from albumentations.pytorch import ToTensorV2