├── .idea ├── deployment.xml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── vcs.xml ├── video_src0.iml └── workspace.xml ├── C3DHash_structure.png ├── DataProcess ├── CCV_download_train.py ├── HDMB_label_split.py └── video2frames.py ├── README.md ├── data_loader.py ├── loss_formula.png ├── model.py ├── network_structure.png ├── train.py ├── triplet_loss.py └── utils.py /.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongzhh8/Video-Retrieval-C3D/HEAD/.idea/deployment.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongzhh8/Video-Retrieval-C3D/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongzhh8/Video-Retrieval-C3D/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongzhh8/Video-Retrieval-C3D/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongzhh8/Video-Retrieval-C3D/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/video_src0.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongzhh8/Video-Retrieval-C3D/HEAD/.idea/video_src0.iml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongzhh8/Video-Retrieval-C3D/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /C3DHash_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongzhh8/Video-Retrieval-C3D/HEAD/C3DHash_structure.png -------------------------------------------------------------------------------- /DataProcess/CCV_download_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongzhh8/Video-Retrieval-C3D/HEAD/DataProcess/CCV_download_train.py -------------------------------------------------------------------------------- /DataProcess/HDMB_label_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongzhh8/Video-Retrieval-C3D/HEAD/DataProcess/HDMB_label_split.py -------------------------------------------------------------------------------- /DataProcess/video2frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongzhh8/Video-Retrieval-C3D/HEAD/DataProcess/video2frames.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongzhh8/Video-Retrieval-C3D/HEAD/README.md -------------------------------------------------------------------------------- /data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongzhh8/Video-Retrieval-C3D/HEAD/data_loader.py -------------------------------------------------------------------------------- /loss_formula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongzhh8/Video-Retrieval-C3D/HEAD/loss_formula.png -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongzhh8/Video-Retrieval-C3D/HEAD/model.py -------------------------------------------------------------------------------- /network_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongzhh8/Video-Retrieval-C3D/HEAD/network_structure.png -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongzhh8/Video-Retrieval-C3D/HEAD/train.py -------------------------------------------------------------------------------- /triplet_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongzhh8/Video-Retrieval-C3D/HEAD/triplet_loss.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongzhh8/Video-Retrieval-C3D/HEAD/utils.py --------------------------------------------------------------------------------