noureldien / timeception

Timeception for Complex Action Recognition, CVPR 2019 (Oral Presentation)
https://noureldien.com/research/timeception/
GNU General Public License v3.0
157 stars 33 forks source link

How to run your code om custom dataset #20

Open Altaf-hucn opened 3 years ago

Altaf-hucn commented 3 years ago

Thank you for sharing your code. I want to run your code on our own dataset. please guide us how to prepared dataset and then pass to your code. Thank you have a nice day.

noureldien commented 3 years ago

Hello Altaf,

Thanks for asking. You can easily use dataloader and dataset classes already available for many datasets in pytorch and many github pages. If you cannot find one for your data, you can easily find tutorials for how to build dataloader and dataset classes for your custom dataset. Then, you can easily use timeception model and the dataset dataloader inside a pytorch training loop like this one https://github.com/noureldien/vivit_pytorch/blob/master/core/pytorch_learners.py#L36