From bd82b1cb0b7e6f9ee71c54ed89ded0067fd4457a Mon Sep 17 00:00:00 2001 From: Chen WANG Date: Sun, 6 Feb 2022 13:40:37 -0800 Subject: [PATCH] Update dependency requirements for torch As PyTorch 1.10 comes as the stable version of the torch framework system, along with the configuration change between 1.9 and 1.10, the code in this repo doesn't work any more. For future researchers who want to adopt the framework or replicate the experiment, they need to specify the highest allowed version of PyTorch and Torchvision. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 18556b5a..19635c73 100644 --- a/README.md +++ b/README.md @@ -58,8 +58,8 @@ This framework and its predecessors were developed in the course of conducting r ### 2.1 Requirements * Python 3.7 or greater (this framework extensively uses features from Python 3.7) -* [PyTorch 1.4 or greater](https://www.pytorch.org) -* TorchVision 0.5.0 or greater +* [PyTorch 1.4 or greater but lower than 1.10](https://www.pytorch.org) +* TorchVision 0.5.0 or greater but lower than 0.11 * [NVIDIA Apex](https://anaconda.org/conda-forge/nvidia-apex) (optional, but required for 16-bit training) ### 2.2 Setup