How can I train/test with video data? When I run `python launch.py -c expts/09_ek55_avt.txt -t -g`, I obtain the warning "No video_clips present": ``` [2022-02-08 17:15:53,778][func.train][INFO] - Computing clips... [2022-02-08 17:15:53,779][func.train][WARNING] - No video_clips present [2022-02-08 17:15:53,779][func.train][INFO] - Created dataset with 23430 elts ``` I have downloaded and cropped the videos and setup the same folder structure as in the `README` file. Executing `hasattr(_dataset, 'video_clips')` results in `False`. How to add `video_clips` to `_dataset` to properly execute `compute_clips` in `datasets/data.py`?
How can I train/test with video data?
When I run
python launch.py -c expts/09_ek55_avt.txt -t -g, I obtain the warning "No video_clips present":I have downloaded and cropped the videos and setup the same folder structure as in the
READMEfile.Executing
hasattr(_dataset, 'video_clips')results inFalse. How to addvideo_clipsto_datasetto properly executecompute_clipsindatasets/data.py?