Testing on DTU
karimcossentini opened this issue · 4 comments
karimcossentini commented
ewrfcas commented
See requirements.txt. We need timm==0.3.2.
karimcossentini commented
When installing the requirements.txt with timm==0.3.2, the first error of "cannot import name container_abcs" occurs :(
ewrfcas commented
It should be caused by the pytorch version.
You could try to use "from torch._six import container_abcs" instead of "import collections.abc as container_abcs" or vice versa.
karimcossentini commented
It worked, thanks :)