kenshohara / 3D-ResNets-PyTorch

3D ResNets for Action Recognition (CVPR 2018)
MIT License
3.91k stars 933 forks source link

generate_video_jpgs.py arguments are required error #247

Closed EmirhanToprak closed 3 years ago

EmirhanToprak commented 3 years ago

Hi, im getting the error that dir_path, dts_path, dataset required. The changes i did, is shown in the ss with red lines. I gave the path files as default and file names at left top

'dirt_path', default = ucf101 video dataset 'dts_path', default = empty file for create jpgs 'dataset' i changed as default= 'ucf101'

Ekran görüntüsü 2021-04-10 172229

guilhermesurek commented 3 years ago

You should put "--" in front of the variable names to make then optional, like this '--dir_path', '--dst_path' and '--dataset'.

EmirhanToprak commented 3 years ago

It worked, thank you for reply 👍