You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 1, 2025. It is now read-only.
It seems that PyTorch has removed container_abcs from torch._six. after Pytorch 1.7.0. Therefore, when the version is >= 1.7.0, an import error will be thrown in timesformer/models/vit_utils.py, Line 14. I hope you could modify the version reminder from PyTorch >=1.6.0 to Pytorch==1.6.0, or changes the import code to 'import collections.abc as container_abcs' for the latter version
It seems that PyTorch has removed container_abcs from torch._six. after Pytorch 1.7.0. Therefore, when the version is >= 1.7.0, an import error will be thrown in timesformer/models/vit_utils.py, Line 14. I hope you could modify the version reminder from PyTorch >=1.6.0 to Pytorch==1.6.0, or changes the import code to 'import collections.abc as container_abcs' for the latter version