torchvision.io 在 __init.py__ 中找不到引用 read_image()
torchvision.io cannot find reference read_image() in __init.py__
我正在尝试从 torchvision.io 导入 read_image
当我悬停错误时,它说
torchvision.io cannot find reference 'read_image' in '__init.py__'
from torchvision.io import read_image
我正在学习这个例子
https://pytorch.org/tutorials/beginner/basics/data_tutorial.html
from torchvision.io import read_image ImportError: cannot import name 'read_image' from 'torchvision.io' (C:\Users\X\.conda\envs\Pytorch37\lib\site-packages\torchvision\io\__init__.py)
这是我遇到的错误。
我认为这是一个不兼容的版本。
你能打印你的 torchvision 版本吗?
import torchvision
print(torchvision.__version__)
我不知道你需要哪一个,但你至少可以找找看。
You need to upgrade the version of your pytorch
# Just for my version of system and cuda, you need to replace the cmd below based on your condition
pip install torch torchvision torchaudio
我正在尝试从 torchvision.io 导入 read_image 当我悬停错误时,它说
torchvision.io cannot find reference 'read_image' in '__init.py__'
from torchvision.io import read_image
我正在学习这个例子
https://pytorch.org/tutorials/beginner/basics/data_tutorial.html
from torchvision.io import read_image ImportError: cannot import name 'read_image' from 'torchvision.io' (C:\Users\X\.conda\envs\Pytorch37\lib\site-packages\torchvision\io\__init__.py)
这是我遇到的错误。
我认为这是一个不兼容的版本。
你能打印你的 torchvision 版本吗?
import torchvision
print(torchvision.__version__)
我不知道你需要哪一个,但你至少可以找找看。
You need to upgrade the version of your pytorch
# Just for my version of system and cuda, you need to replace the cmd below based on your condition
pip install torch torchvision torchaudio