├── .gitignore ├── README.md ├── data ├── checkpoints │ ├── flow_imagenet │ │ └── .gitkeep │ ├── flow_scratch │ │ └── .gitkeep │ ├── rgb_imagenet │ │ └── .gitkeep │ └── rgb_scratch │ │ └── .gitkeep ├── hmdb51 │ ├── all01.txt │ ├── all_items_label.txt │ ├── count_img.py │ ├── flow.txt │ ├── gen_train_test_number.py │ ├── items.txt │ ├── label_map.txt │ ├── pre_flow.txt │ ├── pre_rgb.txt │ ├── rgb.txt │ ├── right_flow.txt │ ├── right_rgb.txt │ ├── testlist01.txt │ ├── testlist01_frm.txt │ ├── testlist01_num.txt │ ├── testlist02.txt │ ├── testlist03.txt │ ├── trainlist01.txt │ ├── trainlist01_num.txt │ ├── trainlist02.txt │ └── trainlist03.txt └── ucf101 │ ├── flow.txt │ ├── label_map.txt │ ├── rgb.txt │ ├── testlist01.txt │ ├── testlist02.txt │ ├── testlist03.txt │ ├── trainlist01.txt │ ├── trainlist02.txt │ └── trainlist03.txt ├── finetune.py ├── i3d.py ├── lib ├── __init__.py ├── action_dataset.py ├── data_augment.py ├── dataset.py ├── feed_queue.py ├── instance.py ├── label_trans.py ├── load_data.py ├── logging_tool.py ├── util.py └── video_3d.py ├── model └── .gitkeep ├── output └── .gitkeep └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/README.md -------------------------------------------------------------------------------- /data/checkpoints/flow_imagenet/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/checkpoints/flow_scratch/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/checkpoints/rgb_imagenet/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/checkpoints/rgb_scratch/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/hmdb51/all01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/data/hmdb51/all01.txt -------------------------------------------------------------------------------- /data/hmdb51/all_items_label.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/data/hmdb51/all_items_label.txt -------------------------------------------------------------------------------- /data/hmdb51/count_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/data/hmdb51/count_img.py -------------------------------------------------------------------------------- /data/hmdb51/flow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/data/hmdb51/flow.txt -------------------------------------------------------------------------------- /data/hmdb51/gen_train_test_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/data/hmdb51/gen_train_test_number.py -------------------------------------------------------------------------------- /data/hmdb51/items.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/data/hmdb51/items.txt -------------------------------------------------------------------------------- /data/hmdb51/label_map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/data/hmdb51/label_map.txt -------------------------------------------------------------------------------- /data/hmdb51/pre_flow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/data/hmdb51/pre_flow.txt -------------------------------------------------------------------------------- /data/hmdb51/pre_rgb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/data/hmdb51/pre_rgb.txt -------------------------------------------------------------------------------- /data/hmdb51/rgb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/data/hmdb51/rgb.txt -------------------------------------------------------------------------------- /data/hmdb51/right_flow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/data/hmdb51/right_flow.txt -------------------------------------------------------------------------------- /data/hmdb51/right_rgb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/data/hmdb51/right_rgb.txt -------------------------------------------------------------------------------- /data/hmdb51/testlist01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/data/hmdb51/testlist01.txt -------------------------------------------------------------------------------- /data/hmdb51/testlist01_frm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/data/hmdb51/testlist01_frm.txt -------------------------------------------------------------------------------- /data/hmdb51/testlist01_num.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/data/hmdb51/testlist01_num.txt -------------------------------------------------------------------------------- /data/hmdb51/testlist02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/data/hmdb51/testlist02.txt -------------------------------------------------------------------------------- /data/hmdb51/testlist03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/data/hmdb51/testlist03.txt -------------------------------------------------------------------------------- /data/hmdb51/trainlist01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/data/hmdb51/trainlist01.txt -------------------------------------------------------------------------------- /data/hmdb51/trainlist01_num.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/data/hmdb51/trainlist01_num.txt -------------------------------------------------------------------------------- /data/hmdb51/trainlist02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/data/hmdb51/trainlist02.txt -------------------------------------------------------------------------------- /data/hmdb51/trainlist03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/data/hmdb51/trainlist03.txt -------------------------------------------------------------------------------- /data/ucf101/flow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/data/ucf101/flow.txt -------------------------------------------------------------------------------- /data/ucf101/label_map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/data/ucf101/label_map.txt -------------------------------------------------------------------------------- /data/ucf101/rgb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/data/ucf101/rgb.txt -------------------------------------------------------------------------------- /data/ucf101/testlist01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/data/ucf101/testlist01.txt -------------------------------------------------------------------------------- /data/ucf101/testlist02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/data/ucf101/testlist02.txt -------------------------------------------------------------------------------- /data/ucf101/testlist03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/data/ucf101/testlist03.txt -------------------------------------------------------------------------------- /data/ucf101/trainlist01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/data/ucf101/trainlist01.txt -------------------------------------------------------------------------------- /data/ucf101/trainlist02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/data/ucf101/trainlist02.txt -------------------------------------------------------------------------------- /data/ucf101/trainlist03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/data/ucf101/trainlist03.txt -------------------------------------------------------------------------------- /finetune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/finetune.py -------------------------------------------------------------------------------- /i3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/i3d.py -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/action_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/lib/action_dataset.py -------------------------------------------------------------------------------- /lib/data_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/lib/data_augment.py -------------------------------------------------------------------------------- /lib/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/lib/dataset.py -------------------------------------------------------------------------------- /lib/feed_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/lib/feed_queue.py -------------------------------------------------------------------------------- /lib/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/lib/instance.py -------------------------------------------------------------------------------- /lib/label_trans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/lib/label_trans.py -------------------------------------------------------------------------------- /lib/load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/lib/load_data.py -------------------------------------------------------------------------------- /lib/logging_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/lib/logging_tool.py -------------------------------------------------------------------------------- /lib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/lib/util.py -------------------------------------------------------------------------------- /lib/video_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/lib/video_3d.py -------------------------------------------------------------------------------- /model/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC-Video-Understanding/I3D_Finetune/HEAD/test.py --------------------------------------------------------------------------------