Fix PyTorch version check (#160)

* Fix PyTorch version check

* Fix suggestion

Co-authored-by: Jong Wook Kim <jongwook@openai.com>
This commit is contained in:
Santiago Castro 2021-11-04 17:32:10 -04:00 committed by GitHub
parent c7ba4f3907
commit 2867559c5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ except ImportError:
BICUBIC = Image.BICUBIC
if torch.__version__.split(".") < ["1", "7", "1"]:
if [int(n.split("+")[0]) for n in torch.__version__.split(".")] < [1, 7, 1]:
warnings.warn("PyTorch version 1.7.1 or higher is recommended")