Closed kalkun closed 3 years ago
Yes, you are right! We'll try add a requirements.txt in Q4.
The currently tested version is torch1.6.0cu102 and torch1.3.0cu90.
We do intend to support all pytorch version over 1.6, this seems to be a BC-Break from torch1.9
Hey, is the repo supporting torch > 1.6.0 ? The only issue it seems is this import:
from torch._six import container_abcs, string_classes, int_classes
Thank you.
@Zeleni9 It supports up to pt1.8. These lines are not supported any more in pytorch 1.9. Maybe we can do a version check and workaround here similar to https://github.com/voldemortX/pytorch-auto-drive/blob/eed417ff0fef46118cab310e69563358bf714b28/utils/all_utils_landec.py#L8
Yea I saw that I need:
and it works for me.
The installation instructions describe installing generally the packages:
However, in doing so I get an error when simply trying to run:
which at least to me indicates that the installed version of
torch
differs from the intended version and could perhaps be alleviated by specifying the exact version of the required packages.