├── CVSV_benchmark ├── README.md ├── annotations │ ├── label_bank_coarse.json │ ├── label_bank_fine.json │ ├── test_pairs_open.txt │ └── train_pairs_open.txt ├── configs │ ├── All_Pairs │ │ ├── test_config_egofbau_CAT_pair_ClsSeq.yml │ │ └── train_config_egofbau_CAT_pair_ClsSeq.yml │ ├── Cross_View_Only │ │ ├── test_config_egofbau_CAT_pair_ClsSeq.yml │ │ └── train_config_egofbau_CAT_pair_ClsSeq.yml │ ├── Ego_Only │ │ ├── test_config_egofbau_CAT_pair_ClsSeq.yml │ │ └── train_config_egofbau_CAT_pair_ClsSeq.yml │ ├── Exo_Only │ │ ├── test_config_egofbau_CAT_pair_ClsSeq.yml │ │ └── train_config_egofbau_CAT_pair_ClsSeq.yml │ ├── No_Cross_View │ │ ├── test_config_egofbau_CAT_pair_ClsSeq.yml │ │ └── train_config_egofbau_CAT_pair_ClsSeq.yml │ ├── __pycache__ │ │ ├── defaults.cpython-311.pyc │ │ ├── defaults.cpython-36.pyc │ │ ├── defaults.cpython-37.pyc │ │ ├── defaults.cpython-38.pyc │ │ └── defaults.cpython-39.pyc │ └── defaults.py ├── dataset │ ├── __pycache__ │ │ ├── dataset.cpython-311.pyc │ │ ├── dataset.cpython-36.pyc │ │ ├── dataset.cpython-39.pyc │ │ ├── label.cpython-36.pyc │ │ └── label.cpython-39.pyc │ ├── clip_dataset.py │ ├── dataset.py │ └── label.py ├── environment.yml ├── models │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── clip_model2.cpython-36.pyc │ │ ├── clip_model2.cpython-39.pyc │ │ ├── model.cpython-36.pyc │ │ └── model.cpython-39.pyc │ ├── build_model.py │ ├── clip_model2.py │ ├── model.py │ ├── resnet │ │ ├── __pycache__ │ │ │ ├── resnet.cpython-36.pyc │ │ │ ├── resnet.cpython-38.pyc │ │ │ └── resnet.cpython-39.pyc │ │ └── resnet.py │ └── vit │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── vit_pytorch.cpython-36.pyc │ │ └── vit_pytorch.cpython-39.pyc │ │ └── vit_pytorch.py ├── run.sh ├── train.py └── utils │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-39.pyc │ ├── builder.cpython-36.pyc │ ├── builder.cpython-39.pyc │ ├── data_prefetcher.cpython-39.pyc │ ├── load_parse_args.cpython-39.pyc │ ├── logger.cpython-36.pyc │ ├── logger.cpython-39.pyc │ ├── loss.cpython-36.pyc │ ├── loss.cpython-39.pyc │ ├── metrics.cpython-36.pyc │ ├── metrics.cpython-39.pyc │ ├── preprocess.cpython-36.pyc │ ├── preprocess.cpython-39.pyc │ ├── utils_distributed.cpython-36.pyc │ └── utils_distributed.cpython-39.pyc │ ├── builder.py │ ├── data_prefetcher.py │ ├── load_parse_args.py │ ├── logger.py │ ├── loss.py │ ├── metrics.py │ ├── preprocess.py │ └── utils_distributed.py ├── GEV_benchmark ├── README.md ├── logger.py ├── main.py ├── metrics.py ├── models │ ├── Backbone.py │ ├── I3D.py │ ├── LSTM.py │ ├── MLP.py │ ├── TSM.py │ ├── __init__.py │ ├── __pycache__ │ │ ├── Backbone.cpython-311.pyc │ │ ├── Backbone.cpython-38.pyc │ │ ├── Backbone.cpython-39.pyc │ │ ├── I3D.cpython-311.pyc │ │ ├── I3D.cpython-38.pyc │ │ ├── I3D.cpython-39.pyc │ │ ├── MLP.cpython-311.pyc │ │ ├── MLP.cpython-38.pyc │ │ ├── MLP.cpython-39.pyc │ │ ├── __init__.cpython-311.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── modal_fuser.cpython-311.pyc │ │ ├── modal_fuser.cpython-38.pyc │ │ ├── modal_fuser.cpython-39.pyc │ │ ├── transformer.cpython-311.pyc │ │ ├── transformer.cpython-38.pyc │ │ ├── transformer.cpython-39.pyc │ │ ├── video_encoder.cpython-311.pyc │ │ ├── video_encoder.cpython-38.pyc │ │ └── video_encoder.cpython-39.pyc │ ├── attention.py │ ├── basic_ops.py │ ├── modal_fuser.py │ ├── transformer.py │ ├── transforms.py │ └── video_encoder.py ├── opt.py ├── runner.py └── utils.py ├── LICENSE ├── License_Agreement.pdf ├── README.md ├── Raw_annotations ├── README.md └── statistics_drawings.ipynb ├── features └── get_frame_features_CLIP.py └── img ├── dataset_intro.png └── statistics.png /CVSV_benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/README.md -------------------------------------------------------------------------------- /CVSV_benchmark/annotations/label_bank_coarse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/annotations/label_bank_coarse.json -------------------------------------------------------------------------------- /CVSV_benchmark/annotations/label_bank_fine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/annotations/label_bank_fine.json -------------------------------------------------------------------------------- /CVSV_benchmark/annotations/test_pairs_open.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/annotations/test_pairs_open.txt -------------------------------------------------------------------------------- /CVSV_benchmark/annotations/train_pairs_open.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/annotations/train_pairs_open.txt -------------------------------------------------------------------------------- /CVSV_benchmark/configs/All_Pairs/test_config_egofbau_CAT_pair_ClsSeq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/configs/All_Pairs/test_config_egofbau_CAT_pair_ClsSeq.yml -------------------------------------------------------------------------------- /CVSV_benchmark/configs/All_Pairs/train_config_egofbau_CAT_pair_ClsSeq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/configs/All_Pairs/train_config_egofbau_CAT_pair_ClsSeq.yml -------------------------------------------------------------------------------- /CVSV_benchmark/configs/Cross_View_Only/test_config_egofbau_CAT_pair_ClsSeq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/configs/Cross_View_Only/test_config_egofbau_CAT_pair_ClsSeq.yml -------------------------------------------------------------------------------- /CVSV_benchmark/configs/Cross_View_Only/train_config_egofbau_CAT_pair_ClsSeq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/configs/Cross_View_Only/train_config_egofbau_CAT_pair_ClsSeq.yml -------------------------------------------------------------------------------- /CVSV_benchmark/configs/Ego_Only/test_config_egofbau_CAT_pair_ClsSeq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/configs/Ego_Only/test_config_egofbau_CAT_pair_ClsSeq.yml -------------------------------------------------------------------------------- /CVSV_benchmark/configs/Ego_Only/train_config_egofbau_CAT_pair_ClsSeq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/configs/Ego_Only/train_config_egofbau_CAT_pair_ClsSeq.yml -------------------------------------------------------------------------------- /CVSV_benchmark/configs/Exo_Only/test_config_egofbau_CAT_pair_ClsSeq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/configs/Exo_Only/test_config_egofbau_CAT_pair_ClsSeq.yml -------------------------------------------------------------------------------- /CVSV_benchmark/configs/Exo_Only/train_config_egofbau_CAT_pair_ClsSeq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/configs/Exo_Only/train_config_egofbau_CAT_pair_ClsSeq.yml -------------------------------------------------------------------------------- /CVSV_benchmark/configs/No_Cross_View/test_config_egofbau_CAT_pair_ClsSeq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/configs/No_Cross_View/test_config_egofbau_CAT_pair_ClsSeq.yml -------------------------------------------------------------------------------- /CVSV_benchmark/configs/No_Cross_View/train_config_egofbau_CAT_pair_ClsSeq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/configs/No_Cross_View/train_config_egofbau_CAT_pair_ClsSeq.yml -------------------------------------------------------------------------------- /CVSV_benchmark/configs/__pycache__/defaults.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/configs/__pycache__/defaults.cpython-311.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/configs/__pycache__/defaults.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/configs/__pycache__/defaults.cpython-36.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/configs/__pycache__/defaults.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/configs/__pycache__/defaults.cpython-37.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/configs/__pycache__/defaults.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/configs/__pycache__/defaults.cpython-38.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/configs/__pycache__/defaults.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/configs/__pycache__/defaults.cpython-39.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/configs/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/configs/defaults.py -------------------------------------------------------------------------------- /CVSV_benchmark/dataset/__pycache__/dataset.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/dataset/__pycache__/dataset.cpython-311.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/dataset/__pycache__/dataset.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/dataset/__pycache__/dataset.cpython-36.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/dataset/__pycache__/dataset.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/dataset/__pycache__/dataset.cpython-39.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/dataset/__pycache__/label.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/dataset/__pycache__/label.cpython-36.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/dataset/__pycache__/label.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/dataset/__pycache__/label.cpython-39.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/dataset/clip_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/dataset/clip_dataset.py -------------------------------------------------------------------------------- /CVSV_benchmark/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/dataset/dataset.py -------------------------------------------------------------------------------- /CVSV_benchmark/dataset/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/dataset/label.py -------------------------------------------------------------------------------- /CVSV_benchmark/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/environment.yml -------------------------------------------------------------------------------- /CVSV_benchmark/models/__init__.py: -------------------------------------------------------------------------------- 1 | # from vit.vit_pytorch import ViT 2 | -------------------------------------------------------------------------------- /CVSV_benchmark/models/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/models/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/models/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/models/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/models/__pycache__/clip_model2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/models/__pycache__/clip_model2.cpython-36.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/models/__pycache__/clip_model2.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/models/__pycache__/clip_model2.cpython-39.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/models/__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/models/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/models/__pycache__/model.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/models/__pycache__/model.cpython-39.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/models/build_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/models/build_model.py -------------------------------------------------------------------------------- /CVSV_benchmark/models/clip_model2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/models/clip_model2.py -------------------------------------------------------------------------------- /CVSV_benchmark/models/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/models/model.py -------------------------------------------------------------------------------- /CVSV_benchmark/models/resnet/__pycache__/resnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/models/resnet/__pycache__/resnet.cpython-36.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/models/resnet/__pycache__/resnet.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/models/resnet/__pycache__/resnet.cpython-38.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/models/resnet/__pycache__/resnet.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/models/resnet/__pycache__/resnet.cpython-39.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/models/resnet/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/models/resnet/resnet.py -------------------------------------------------------------------------------- /CVSV_benchmark/models/vit/__init__.py: -------------------------------------------------------------------------------- 1 | # from vit.vit_pytorch import ViT 2 | -------------------------------------------------------------------------------- /CVSV_benchmark/models/vit/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/models/vit/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/models/vit/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/models/vit/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/models/vit/__pycache__/vit_pytorch.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/models/vit/__pycache__/vit_pytorch.cpython-36.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/models/vit/__pycache__/vit_pytorch.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/models/vit/__pycache__/vit_pytorch.cpython-39.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/models/vit/vit_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/models/vit/vit_pytorch.py -------------------------------------------------------------------------------- /CVSV_benchmark/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/run.sh -------------------------------------------------------------------------------- /CVSV_benchmark/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/train.py -------------------------------------------------------------------------------- /CVSV_benchmark/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # from vit.vit_pytorch import ViT 2 | -------------------------------------------------------------------------------- /CVSV_benchmark/utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/utils/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/utils/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/utils/__pycache__/builder.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/utils/__pycache__/builder.cpython-36.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/utils/__pycache__/builder.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/utils/__pycache__/builder.cpython-39.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/utils/__pycache__/data_prefetcher.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/utils/__pycache__/data_prefetcher.cpython-39.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/utils/__pycache__/load_parse_args.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/utils/__pycache__/load_parse_args.cpython-39.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/utils/__pycache__/logger.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/utils/__pycache__/logger.cpython-36.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/utils/__pycache__/logger.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/utils/__pycache__/logger.cpython-39.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/utils/__pycache__/loss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/utils/__pycache__/loss.cpython-36.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/utils/__pycache__/loss.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/utils/__pycache__/loss.cpython-39.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/utils/__pycache__/metrics.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/utils/__pycache__/metrics.cpython-36.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/utils/__pycache__/metrics.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/utils/__pycache__/metrics.cpython-39.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/utils/__pycache__/preprocess.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/utils/__pycache__/preprocess.cpython-36.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/utils/__pycache__/preprocess.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/utils/__pycache__/preprocess.cpython-39.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/utils/__pycache__/utils_distributed.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/utils/__pycache__/utils_distributed.cpython-36.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/utils/__pycache__/utils_distributed.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/utils/__pycache__/utils_distributed.cpython-39.pyc -------------------------------------------------------------------------------- /CVSV_benchmark/utils/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/utils/builder.py -------------------------------------------------------------------------------- /CVSV_benchmark/utils/data_prefetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/utils/data_prefetcher.py -------------------------------------------------------------------------------- /CVSV_benchmark/utils/load_parse_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/utils/load_parse_args.py -------------------------------------------------------------------------------- /CVSV_benchmark/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/utils/logger.py -------------------------------------------------------------------------------- /CVSV_benchmark/utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/utils/loss.py -------------------------------------------------------------------------------- /CVSV_benchmark/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/utils/metrics.py -------------------------------------------------------------------------------- /CVSV_benchmark/utils/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/utils/preprocess.py -------------------------------------------------------------------------------- /CVSV_benchmark/utils/utils_distributed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/CVSV_benchmark/utils/utils_distributed.py -------------------------------------------------------------------------------- /GEV_benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/README.md -------------------------------------------------------------------------------- /GEV_benchmark/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/logger.py -------------------------------------------------------------------------------- /GEV_benchmark/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/main.py -------------------------------------------------------------------------------- /GEV_benchmark/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/metrics.py -------------------------------------------------------------------------------- /GEV_benchmark/models/Backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/Backbone.py -------------------------------------------------------------------------------- /GEV_benchmark/models/I3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/I3D.py -------------------------------------------------------------------------------- /GEV_benchmark/models/LSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/LSTM.py -------------------------------------------------------------------------------- /GEV_benchmark/models/MLP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/MLP.py -------------------------------------------------------------------------------- /GEV_benchmark/models/TSM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/TSM.py -------------------------------------------------------------------------------- /GEV_benchmark/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/__init__.py -------------------------------------------------------------------------------- /GEV_benchmark/models/__pycache__/Backbone.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/__pycache__/Backbone.cpython-311.pyc -------------------------------------------------------------------------------- /GEV_benchmark/models/__pycache__/Backbone.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/__pycache__/Backbone.cpython-38.pyc -------------------------------------------------------------------------------- /GEV_benchmark/models/__pycache__/Backbone.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/__pycache__/Backbone.cpython-39.pyc -------------------------------------------------------------------------------- /GEV_benchmark/models/__pycache__/I3D.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/__pycache__/I3D.cpython-311.pyc -------------------------------------------------------------------------------- /GEV_benchmark/models/__pycache__/I3D.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/__pycache__/I3D.cpython-38.pyc -------------------------------------------------------------------------------- /GEV_benchmark/models/__pycache__/I3D.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/__pycache__/I3D.cpython-39.pyc -------------------------------------------------------------------------------- /GEV_benchmark/models/__pycache__/MLP.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/__pycache__/MLP.cpython-311.pyc -------------------------------------------------------------------------------- /GEV_benchmark/models/__pycache__/MLP.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/__pycache__/MLP.cpython-38.pyc -------------------------------------------------------------------------------- /GEV_benchmark/models/__pycache__/MLP.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/__pycache__/MLP.cpython-39.pyc -------------------------------------------------------------------------------- /GEV_benchmark/models/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /GEV_benchmark/models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /GEV_benchmark/models/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /GEV_benchmark/models/__pycache__/modal_fuser.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/__pycache__/modal_fuser.cpython-311.pyc -------------------------------------------------------------------------------- /GEV_benchmark/models/__pycache__/modal_fuser.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/__pycache__/modal_fuser.cpython-38.pyc -------------------------------------------------------------------------------- /GEV_benchmark/models/__pycache__/modal_fuser.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/__pycache__/modal_fuser.cpython-39.pyc -------------------------------------------------------------------------------- /GEV_benchmark/models/__pycache__/transformer.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/__pycache__/transformer.cpython-311.pyc -------------------------------------------------------------------------------- /GEV_benchmark/models/__pycache__/transformer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/__pycache__/transformer.cpython-38.pyc -------------------------------------------------------------------------------- /GEV_benchmark/models/__pycache__/transformer.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/__pycache__/transformer.cpython-39.pyc -------------------------------------------------------------------------------- /GEV_benchmark/models/__pycache__/video_encoder.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/__pycache__/video_encoder.cpython-311.pyc -------------------------------------------------------------------------------- /GEV_benchmark/models/__pycache__/video_encoder.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/__pycache__/video_encoder.cpython-38.pyc -------------------------------------------------------------------------------- /GEV_benchmark/models/__pycache__/video_encoder.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/__pycache__/video_encoder.cpython-39.pyc -------------------------------------------------------------------------------- /GEV_benchmark/models/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/attention.py -------------------------------------------------------------------------------- /GEV_benchmark/models/basic_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/basic_ops.py -------------------------------------------------------------------------------- /GEV_benchmark/models/modal_fuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/modal_fuser.py -------------------------------------------------------------------------------- /GEV_benchmark/models/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/transformer.py -------------------------------------------------------------------------------- /GEV_benchmark/models/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/transforms.py -------------------------------------------------------------------------------- /GEV_benchmark/models/video_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/models/video_encoder.py -------------------------------------------------------------------------------- /GEV_benchmark/opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/opt.py -------------------------------------------------------------------------------- /GEV_benchmark/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/runner.py -------------------------------------------------------------------------------- /GEV_benchmark/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/GEV_benchmark/utils.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/LICENSE -------------------------------------------------------------------------------- /License_Agreement.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/License_Agreement.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/README.md -------------------------------------------------------------------------------- /Raw_annotations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/Raw_annotations/README.md -------------------------------------------------------------------------------- /Raw_annotations/statistics_drawings.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/Raw_annotations/statistics_drawings.ipynb -------------------------------------------------------------------------------- /features/get_frame_features_CLIP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/features/get_frame_features_CLIP.py -------------------------------------------------------------------------------- /img/dataset_intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/img/dataset_intro.png -------------------------------------------------------------------------------- /img/statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSEE-Laboratory/EgoExo-Fitness/HEAD/img/statistics.png --------------------------------------------------------------------------------