├── .gitignore ├── LICENSE ├── README.md ├── UCF101.py ├── UCF101_few_shot_labels ├── test.csv └── train.csv ├── autoaugment.py ├── categories.txt ├── few_sequence_detector.py ├── models.py ├── splitter.py ├── test.py ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titania7777/UCF101FewShot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titania7777/UCF101FewShot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titania7777/UCF101FewShot/HEAD/README.md -------------------------------------------------------------------------------- /UCF101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titania7777/UCF101FewShot/HEAD/UCF101.py -------------------------------------------------------------------------------- /UCF101_few_shot_labels/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titania7777/UCF101FewShot/HEAD/UCF101_few_shot_labels/test.csv -------------------------------------------------------------------------------- /UCF101_few_shot_labels/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titania7777/UCF101FewShot/HEAD/UCF101_few_shot_labels/train.csv -------------------------------------------------------------------------------- /autoaugment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titania7777/UCF101FewShot/HEAD/autoaugment.py -------------------------------------------------------------------------------- /categories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titania7777/UCF101FewShot/HEAD/categories.txt -------------------------------------------------------------------------------- /few_sequence_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titania7777/UCF101FewShot/HEAD/few_sequence_detector.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titania7777/UCF101FewShot/HEAD/models.py -------------------------------------------------------------------------------- /splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titania7777/UCF101FewShot/HEAD/splitter.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titania7777/UCF101FewShot/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titania7777/UCF101FewShot/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titania7777/UCF101FewShot/HEAD/utils.py --------------------------------------------------------------------------------