如何降级Google Colab的Torch版本

问题描述 投票:0回答:1

我想降级我的Google Colab笔记本中使用的Torch版本。我该怎么办?

python pytorch google-colaboratory torch
1个回答
0
投票

从您的单元运行:

!pip install torch==version

例如,版本可能是1.3.0(默认为1.4.0)。您可能还必须适当降低torchvision的等级,因此您可以使用:

!pip install torch==1.3.0 torchvision==0.4.1

另一方面,PyTorch在主要版本之间提供了向后兼容性,因此无需降级。

请记住,您必须重新启动Google Colab才能使更改生效

© www.soinside.com 2019 - 2024. All rights reserved.