alibaba-mmai-research / TAdaConv

[ICLR 2022] TAda! Temporally-Adaptive Convolutions for Video Understanding. This codebase provides solutions for video classification, video representation learning and temporal detection.
https://tadaconv-iclr2022.github.io
Apache License 2.0
226 stars 31 forks source link

Issue on running on sthv2 #4

Closed jwfanDL closed 2 years ago

jwfanDL commented 2 years ago

Hi @huang-ziyuan We meet problems when running the script on something. Some abstract methods may not be implemented in somethingv2 dataset class. The error is shown as below: 截屏2022-02-21 下午8 12 54

huang-ziyuan commented 2 years ago

It seems to be the problem with PyTorch version later than 1.8.0. These abstract methods are fine without implementation in PyTorch 1.7.1 and before. A quick solution would be to implement the abstract methods to return None, since they are not used in the current version. We will update the code to fit for later versions soon.

jwfanDL commented 2 years ago

Thank you so much. We have solved this problem according your instructions.~