pip install torchvision==0.13.0是GPU版本吗
时间: 2024-06-09 10:12:17 浏览: 154
torchvision-0.13.0源码
不是。这是安装 PyTorch 的 torchvision 模块的命令,并不涉及到 GPU 版本或 CPU 版本的区分。如果你想安装 GPU 版本的 PyTorch,可以使用以下命令:pip install torch torchvision torchaudio -f https://download.pytorch.org/whl/cu111/torch_stable.html。其中,cu111 表示 CUDA 11.1 版本,如果你的 CUDA 版本不同,需要相应地修改。
阅读全文