ewrfcas/MVSFormer

Testing on DTU

karimcossentini opened this issue · 4 comments

I got this error when testing on DTU:
image
it seems that this issue is resolved in an updated version of timm (0.9.2), but when upgrading it, another error occurs:
image
Any suggestion on how to fix this?
Thanks

See requirements.txt. We need timm==0.3.2.

When installing the requirements.txt with timm==0.3.2, the first error of "cannot import name container_abcs" occurs :(

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.

It worked, thanks :)