├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GETTING_STARTED.md ├── INSTALL.md ├── LICENSE ├── MODEL_ZOO.md ├── README.md ├── configs ├── AVA │ ├── SLOWFAST_32x2_R50_SHORT.yaml │ ├── SLOW_8x8_R50_SHORT.yaml │ └── c2 │ │ ├── SLOWFAST_32x2_R101_50_50.yaml │ │ ├── SLOWFAST_32x2_R101_50_50_v2.1.yaml │ │ ├── SLOWFAST_32x2_R50.yaml │ │ ├── SLOWFAST_64x2_R101_50_50.yaml │ │ └── SLOW_8x8_R50.yaml ├── Charades │ ├── SLOWFAST_16x8_R50.yaml │ └── SLOWFAST_16x8_R50_multigrid.yaml ├── Kinetics │ ├── C2D_8x8_R50.yaml │ ├── C2D_8x8_R50_IN1K.yaml │ ├── C2D_NLN_8x8_R50.yaml │ ├── C2D_NLN_8x8_R50_IN1K.yaml │ ├── I3D_8x8_R101.yaml │ ├── I3D_8x8_R50.yaml │ ├── I3D_8x8_R50_IN1K.yaml │ ├── I3D_NLN_8x8_R101.yaml │ ├── I3D_NLN_8x8_R50.yaml │ ├── I3D_NLN_8x8_R50_IN1K.yaml │ ├── SLOWFAST_4x16_R50.yaml │ ├── SLOWFAST_8x8_R50.yaml │ ├── SLOWFAST_8x8_R50_stepwise.yaml │ ├── SLOWFAST_8x8_R50_stepwise_multigrid.yaml │ ├── SLOWFAST_NLN_4x16_R50.yaml │ ├── SLOWFAST_NLN_8x8_R50.yaml │ ├── SLOW_4x16_R50.yaml │ ├── SLOW_8x8_R50.yaml │ ├── SLOW_NLN_4x16_R50.yaml │ ├── SLOW_NLN_8x8_R50.yaml │ └── c2 │ │ ├── C2D_NOPOOL_8x8_R50.yaml │ │ ├── I3D_8x8_R50.yaml │ │ ├── I3D_NLN_8x8_R50.yaml │ │ ├── SLOWFAST_16x8_R101_50_50.yaml │ │ ├── SLOWFAST_4x16_R50.yaml │ │ ├── SLOWFAST_8x8_R101_101_101.yaml │ │ ├── SLOWFAST_8x8_R101_50_101.yaml │ │ ├── SLOWFAST_8x8_R101_50_50.yaml │ │ ├── SLOWFAST_8x8_R50.yaml │ │ ├── SLOWFAST_NLN_16x8_R101_50_50.yaml │ │ ├── SLOW_4x16_R50.yaml │ │ └── SLOW_8x8_R50.yaml ├── SSv2 │ ├── SLOWFAST_16x8_R50.yaml │ └── SLOWFAST_16x8_R50_multigrid.yaml └── ego-exo │ ├── charades-ego │ ├── Ego_Exo_SLOWFAST_8x8_R101.yaml │ ├── Ego_Exo_SLOWFAST_8x8_R50.yaml │ ├── Ego_Exo_SLOW_8x8_R50.yaml │ ├── Ego_Exo_star_SLOWFAST_8x8_R101.yaml │ └── Ego_Exo_star_SLOWFAST_8x8_R50.yaml │ ├── epic-kitchen-100 │ ├── Ego_Exo_SLOWFAST_8x8_R101.yaml │ ├── Ego_Exo_SLOWFAST_8x8_R50.yaml │ ├── Ego_Exo_star_SLOWFAST_8x8_R101.yaml │ └── Ego_Exo_star_SLOWFAST_8x8_R50.yaml │ ├── epic-kitchen-55 │ ├── Ego_Exo_SLOWFAST_8x8_R50.yaml │ └── Ego_Exo_star_SLOWFAST_8x8_R50.yaml │ └── k400 │ ├── Ego_Exo_SLOWFAST_8x8_R50.yaml │ ├── Ego_Exo_SLOW_8x8_R50.yaml │ ├── SLOWFAST_8x8_R50.yaml │ └── SLOW_8x8_R50.yaml ├── demo ├── AVA │ ├── SLOWFAST_32x2_R101_50_50.yaml │ └── ava.names ├── Kinetics │ ├── SLOWFAST_8x8_R50.yaml │ └── kinetics_400_labels.csv └── ava_demo.gif ├── environment.yaml ├── linter.sh ├── projects └── multigrid │ ├── README.md │ └── multigrid.png ├── setup.cfg ├── setup.py ├── slowfast ├── __init__.py ├── config │ ├── __init__.py │ ├── custom_config.py │ └── defaults.py ├── datasets │ ├── DATASET.md │ ├── __init__.py │ ├── ava_dataset.py │ ├── ava_helper.py │ ├── build.py │ ├── charades.py │ ├── charades_aux.py │ ├── cv2_transform.py │ ├── decoder.py │ ├── epic.py │ ├── epic_aux.py │ ├── kinetics.py │ ├── kinetics_aux.py │ ├── loader.py │ ├── multigrid_helper.py │ ├── ssv2.py │ ├── transform.py │ ├── utils.py │ └── video_container.py ├── models │ ├── __init__.py │ ├── batchnorm_helper.py │ ├── build.py │ ├── custom_video_model_builder.py │ ├── handobj_kd_models.py │ ├── handobj_models.py │ ├── handobj_multi_models.py │ ├── head_helper.py │ ├── kd_models.py │ ├── losses.py │ ├── multi_models.py │ ├── nonlocal_helper.py │ ├── optimizer.py │ ├── resnet_helper.py │ ├── stem_helper.py │ └── video_model_builder.py ├── utils │ ├── __init__.py │ ├── ava_eval_helper.py │ ├── ava_evaluation │ │ ├── README.md │ │ ├── __init__.py │ │ ├── ava_action_list_v2.1_for_activitynet_2018.pbtxt.txt │ │ ├── label_map_util.py │ │ ├── metrics.py │ │ ├── np_box_list.py │ │ ├── np_box_list_ops.py │ │ ├── np_box_mask_list.py │ │ ├── np_box_mask_list_ops.py │ │ ├── np_box_ops.py │ │ ├── np_mask_ops.py │ │ ├── object_detection_evaluation.py │ │ ├── per_image_evaluation.py │ │ └── standard_fields.py │ ├── benchmark.py │ ├── bn_helper.py │ ├── c2_model_loading.py │ ├── checkpoint.py │ ├── distributed.py │ ├── env.py │ ├── logging.py │ ├── lr_policy.py │ ├── meters.py │ ├── metrics.py │ ├── misc.py │ ├── multigrid.py │ ├── multiprocessing.py │ ├── parser.py │ └── weight_init_helper.py └── visualization │ ├── __init__.py │ ├── tensorboard_vis.py │ └── utils.py └── tools ├── __init__.py ├── benchmark.py ├── demo_net.py ├── epic ├── __init__.py ├── handobj │ ├── __init__.py │ ├── test_net.py │ └── train_net.py ├── test_net.py └── train_net.py ├── handobj ├── __init__.py ├── test_net.py └── train_net.py ├── kd ├── __init__.py ├── test_net.py └── train_net.py ├── run_net.py ├── test_net.py ├── train_net.py └── visualization.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GETTING_STARTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/GETTING_STARTED.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/LICENSE -------------------------------------------------------------------------------- /MODEL_ZOO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/MODEL_ZOO.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/README.md -------------------------------------------------------------------------------- /configs/AVA/SLOWFAST_32x2_R50_SHORT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/AVA/SLOWFAST_32x2_R50_SHORT.yaml -------------------------------------------------------------------------------- /configs/AVA/SLOW_8x8_R50_SHORT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/AVA/SLOW_8x8_R50_SHORT.yaml -------------------------------------------------------------------------------- /configs/AVA/c2/SLOWFAST_32x2_R101_50_50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/AVA/c2/SLOWFAST_32x2_R101_50_50.yaml -------------------------------------------------------------------------------- /configs/AVA/c2/SLOWFAST_32x2_R101_50_50_v2.1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/AVA/c2/SLOWFAST_32x2_R101_50_50_v2.1.yaml -------------------------------------------------------------------------------- /configs/AVA/c2/SLOWFAST_32x2_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/AVA/c2/SLOWFAST_32x2_R50.yaml -------------------------------------------------------------------------------- /configs/AVA/c2/SLOWFAST_64x2_R101_50_50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/AVA/c2/SLOWFAST_64x2_R101_50_50.yaml -------------------------------------------------------------------------------- /configs/AVA/c2/SLOW_8x8_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/AVA/c2/SLOW_8x8_R50.yaml -------------------------------------------------------------------------------- /configs/Charades/SLOWFAST_16x8_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Charades/SLOWFAST_16x8_R50.yaml -------------------------------------------------------------------------------- /configs/Charades/SLOWFAST_16x8_R50_multigrid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Charades/SLOWFAST_16x8_R50_multigrid.yaml -------------------------------------------------------------------------------- /configs/Kinetics/C2D_8x8_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/C2D_8x8_R50.yaml -------------------------------------------------------------------------------- /configs/Kinetics/C2D_8x8_R50_IN1K.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/C2D_8x8_R50_IN1K.yaml -------------------------------------------------------------------------------- /configs/Kinetics/C2D_NLN_8x8_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/C2D_NLN_8x8_R50.yaml -------------------------------------------------------------------------------- /configs/Kinetics/C2D_NLN_8x8_R50_IN1K.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/C2D_NLN_8x8_R50_IN1K.yaml -------------------------------------------------------------------------------- /configs/Kinetics/I3D_8x8_R101.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/I3D_8x8_R101.yaml -------------------------------------------------------------------------------- /configs/Kinetics/I3D_8x8_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/I3D_8x8_R50.yaml -------------------------------------------------------------------------------- /configs/Kinetics/I3D_8x8_R50_IN1K.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/I3D_8x8_R50_IN1K.yaml -------------------------------------------------------------------------------- /configs/Kinetics/I3D_NLN_8x8_R101.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/I3D_NLN_8x8_R101.yaml -------------------------------------------------------------------------------- /configs/Kinetics/I3D_NLN_8x8_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/I3D_NLN_8x8_R50.yaml -------------------------------------------------------------------------------- /configs/Kinetics/I3D_NLN_8x8_R50_IN1K.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/I3D_NLN_8x8_R50_IN1K.yaml -------------------------------------------------------------------------------- /configs/Kinetics/SLOWFAST_4x16_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/SLOWFAST_4x16_R50.yaml -------------------------------------------------------------------------------- /configs/Kinetics/SLOWFAST_8x8_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/SLOWFAST_8x8_R50.yaml -------------------------------------------------------------------------------- /configs/Kinetics/SLOWFAST_8x8_R50_stepwise.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/SLOWFAST_8x8_R50_stepwise.yaml -------------------------------------------------------------------------------- /configs/Kinetics/SLOWFAST_8x8_R50_stepwise_multigrid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/SLOWFAST_8x8_R50_stepwise_multigrid.yaml -------------------------------------------------------------------------------- /configs/Kinetics/SLOWFAST_NLN_4x16_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/SLOWFAST_NLN_4x16_R50.yaml -------------------------------------------------------------------------------- /configs/Kinetics/SLOWFAST_NLN_8x8_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/SLOWFAST_NLN_8x8_R50.yaml -------------------------------------------------------------------------------- /configs/Kinetics/SLOW_4x16_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/SLOW_4x16_R50.yaml -------------------------------------------------------------------------------- /configs/Kinetics/SLOW_8x8_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/SLOW_8x8_R50.yaml -------------------------------------------------------------------------------- /configs/Kinetics/SLOW_NLN_4x16_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/SLOW_NLN_4x16_R50.yaml -------------------------------------------------------------------------------- /configs/Kinetics/SLOW_NLN_8x8_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/SLOW_NLN_8x8_R50.yaml -------------------------------------------------------------------------------- /configs/Kinetics/c2/C2D_NOPOOL_8x8_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/c2/C2D_NOPOOL_8x8_R50.yaml -------------------------------------------------------------------------------- /configs/Kinetics/c2/I3D_8x8_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/c2/I3D_8x8_R50.yaml -------------------------------------------------------------------------------- /configs/Kinetics/c2/I3D_NLN_8x8_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/c2/I3D_NLN_8x8_R50.yaml -------------------------------------------------------------------------------- /configs/Kinetics/c2/SLOWFAST_16x8_R101_50_50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/c2/SLOWFAST_16x8_R101_50_50.yaml -------------------------------------------------------------------------------- /configs/Kinetics/c2/SLOWFAST_4x16_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/c2/SLOWFAST_4x16_R50.yaml -------------------------------------------------------------------------------- /configs/Kinetics/c2/SLOWFAST_8x8_R101_101_101.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/c2/SLOWFAST_8x8_R101_101_101.yaml -------------------------------------------------------------------------------- /configs/Kinetics/c2/SLOWFAST_8x8_R101_50_101.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/c2/SLOWFAST_8x8_R101_50_101.yaml -------------------------------------------------------------------------------- /configs/Kinetics/c2/SLOWFAST_8x8_R101_50_50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/c2/SLOWFAST_8x8_R101_50_50.yaml -------------------------------------------------------------------------------- /configs/Kinetics/c2/SLOWFAST_8x8_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/c2/SLOWFAST_8x8_R50.yaml -------------------------------------------------------------------------------- /configs/Kinetics/c2/SLOWFAST_NLN_16x8_R101_50_50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/c2/SLOWFAST_NLN_16x8_R101_50_50.yaml -------------------------------------------------------------------------------- /configs/Kinetics/c2/SLOW_4x16_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/c2/SLOW_4x16_R50.yaml -------------------------------------------------------------------------------- /configs/Kinetics/c2/SLOW_8x8_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/Kinetics/c2/SLOW_8x8_R50.yaml -------------------------------------------------------------------------------- /configs/SSv2/SLOWFAST_16x8_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/SSv2/SLOWFAST_16x8_R50.yaml -------------------------------------------------------------------------------- /configs/SSv2/SLOWFAST_16x8_R50_multigrid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/SSv2/SLOWFAST_16x8_R50_multigrid.yaml -------------------------------------------------------------------------------- /configs/ego-exo/charades-ego/Ego_Exo_SLOWFAST_8x8_R101.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/ego-exo/charades-ego/Ego_Exo_SLOWFAST_8x8_R101.yaml -------------------------------------------------------------------------------- /configs/ego-exo/charades-ego/Ego_Exo_SLOWFAST_8x8_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/ego-exo/charades-ego/Ego_Exo_SLOWFAST_8x8_R50.yaml -------------------------------------------------------------------------------- /configs/ego-exo/charades-ego/Ego_Exo_SLOW_8x8_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/ego-exo/charades-ego/Ego_Exo_SLOW_8x8_R50.yaml -------------------------------------------------------------------------------- /configs/ego-exo/charades-ego/Ego_Exo_star_SLOWFAST_8x8_R101.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/ego-exo/charades-ego/Ego_Exo_star_SLOWFAST_8x8_R101.yaml -------------------------------------------------------------------------------- /configs/ego-exo/charades-ego/Ego_Exo_star_SLOWFAST_8x8_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/ego-exo/charades-ego/Ego_Exo_star_SLOWFAST_8x8_R50.yaml -------------------------------------------------------------------------------- /configs/ego-exo/epic-kitchen-100/Ego_Exo_SLOWFAST_8x8_R101.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/ego-exo/epic-kitchen-100/Ego_Exo_SLOWFAST_8x8_R101.yaml -------------------------------------------------------------------------------- /configs/ego-exo/epic-kitchen-100/Ego_Exo_SLOWFAST_8x8_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/ego-exo/epic-kitchen-100/Ego_Exo_SLOWFAST_8x8_R50.yaml -------------------------------------------------------------------------------- /configs/ego-exo/epic-kitchen-100/Ego_Exo_star_SLOWFAST_8x8_R101.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/ego-exo/epic-kitchen-100/Ego_Exo_star_SLOWFAST_8x8_R101.yaml -------------------------------------------------------------------------------- /configs/ego-exo/epic-kitchen-100/Ego_Exo_star_SLOWFAST_8x8_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/ego-exo/epic-kitchen-100/Ego_Exo_star_SLOWFAST_8x8_R50.yaml -------------------------------------------------------------------------------- /configs/ego-exo/epic-kitchen-55/Ego_Exo_SLOWFAST_8x8_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/ego-exo/epic-kitchen-55/Ego_Exo_SLOWFAST_8x8_R50.yaml -------------------------------------------------------------------------------- /configs/ego-exo/epic-kitchen-55/Ego_Exo_star_SLOWFAST_8x8_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/ego-exo/epic-kitchen-55/Ego_Exo_star_SLOWFAST_8x8_R50.yaml -------------------------------------------------------------------------------- /configs/ego-exo/k400/Ego_Exo_SLOWFAST_8x8_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/ego-exo/k400/Ego_Exo_SLOWFAST_8x8_R50.yaml -------------------------------------------------------------------------------- /configs/ego-exo/k400/Ego_Exo_SLOW_8x8_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/ego-exo/k400/Ego_Exo_SLOW_8x8_R50.yaml -------------------------------------------------------------------------------- /configs/ego-exo/k400/SLOWFAST_8x8_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/ego-exo/k400/SLOWFAST_8x8_R50.yaml -------------------------------------------------------------------------------- /configs/ego-exo/k400/SLOW_8x8_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/configs/ego-exo/k400/SLOW_8x8_R50.yaml -------------------------------------------------------------------------------- /demo/AVA/SLOWFAST_32x2_R101_50_50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/demo/AVA/SLOWFAST_32x2_R101_50_50.yaml -------------------------------------------------------------------------------- /demo/AVA/ava.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/demo/AVA/ava.names -------------------------------------------------------------------------------- /demo/Kinetics/SLOWFAST_8x8_R50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/demo/Kinetics/SLOWFAST_8x8_R50.yaml -------------------------------------------------------------------------------- /demo/Kinetics/kinetics_400_labels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/demo/Kinetics/kinetics_400_labels.csv -------------------------------------------------------------------------------- /demo/ava_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/demo/ava_demo.gif -------------------------------------------------------------------------------- /environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/environment.yaml -------------------------------------------------------------------------------- /linter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/linter.sh -------------------------------------------------------------------------------- /projects/multigrid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/projects/multigrid/README.md -------------------------------------------------------------------------------- /projects/multigrid/multigrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/projects/multigrid/multigrid.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/setup.py -------------------------------------------------------------------------------- /slowfast/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/__init__.py -------------------------------------------------------------------------------- /slowfast/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/config/__init__.py -------------------------------------------------------------------------------- /slowfast/config/custom_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/config/custom_config.py -------------------------------------------------------------------------------- /slowfast/config/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/config/defaults.py -------------------------------------------------------------------------------- /slowfast/datasets/DATASET.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/datasets/DATASET.md -------------------------------------------------------------------------------- /slowfast/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/datasets/__init__.py -------------------------------------------------------------------------------- /slowfast/datasets/ava_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/datasets/ava_dataset.py -------------------------------------------------------------------------------- /slowfast/datasets/ava_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/datasets/ava_helper.py -------------------------------------------------------------------------------- /slowfast/datasets/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/datasets/build.py -------------------------------------------------------------------------------- /slowfast/datasets/charades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/datasets/charades.py -------------------------------------------------------------------------------- /slowfast/datasets/charades_aux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/datasets/charades_aux.py -------------------------------------------------------------------------------- /slowfast/datasets/cv2_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/datasets/cv2_transform.py -------------------------------------------------------------------------------- /slowfast/datasets/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/datasets/decoder.py -------------------------------------------------------------------------------- /slowfast/datasets/epic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/datasets/epic.py -------------------------------------------------------------------------------- /slowfast/datasets/epic_aux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/datasets/epic_aux.py -------------------------------------------------------------------------------- /slowfast/datasets/kinetics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/datasets/kinetics.py -------------------------------------------------------------------------------- /slowfast/datasets/kinetics_aux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/datasets/kinetics_aux.py -------------------------------------------------------------------------------- /slowfast/datasets/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/datasets/loader.py -------------------------------------------------------------------------------- /slowfast/datasets/multigrid_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/datasets/multigrid_helper.py -------------------------------------------------------------------------------- /slowfast/datasets/ssv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/datasets/ssv2.py -------------------------------------------------------------------------------- /slowfast/datasets/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/datasets/transform.py -------------------------------------------------------------------------------- /slowfast/datasets/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/datasets/utils.py -------------------------------------------------------------------------------- /slowfast/datasets/video_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/datasets/video_container.py -------------------------------------------------------------------------------- /slowfast/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/models/__init__.py -------------------------------------------------------------------------------- /slowfast/models/batchnorm_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/models/batchnorm_helper.py -------------------------------------------------------------------------------- /slowfast/models/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/models/build.py -------------------------------------------------------------------------------- /slowfast/models/custom_video_model_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/models/custom_video_model_builder.py -------------------------------------------------------------------------------- /slowfast/models/handobj_kd_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/models/handobj_kd_models.py -------------------------------------------------------------------------------- /slowfast/models/handobj_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/models/handobj_models.py -------------------------------------------------------------------------------- /slowfast/models/handobj_multi_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/models/handobj_multi_models.py -------------------------------------------------------------------------------- /slowfast/models/head_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/models/head_helper.py -------------------------------------------------------------------------------- /slowfast/models/kd_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/models/kd_models.py -------------------------------------------------------------------------------- /slowfast/models/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/models/losses.py -------------------------------------------------------------------------------- /slowfast/models/multi_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/models/multi_models.py -------------------------------------------------------------------------------- /slowfast/models/nonlocal_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/models/nonlocal_helper.py -------------------------------------------------------------------------------- /slowfast/models/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/models/optimizer.py -------------------------------------------------------------------------------- /slowfast/models/resnet_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/models/resnet_helper.py -------------------------------------------------------------------------------- /slowfast/models/stem_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/models/stem_helper.py -------------------------------------------------------------------------------- /slowfast/models/video_model_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/models/video_model_builder.py -------------------------------------------------------------------------------- /slowfast/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/utils/__init__.py -------------------------------------------------------------------------------- /slowfast/utils/ava_eval_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/utils/ava_eval_helper.py -------------------------------------------------------------------------------- /slowfast/utils/ava_evaluation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/utils/ava_evaluation/README.md -------------------------------------------------------------------------------- /slowfast/utils/ava_evaluation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slowfast/utils/ava_evaluation/ava_action_list_v2.1_for_activitynet_2018.pbtxt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/utils/ava_evaluation/ava_action_list_v2.1_for_activitynet_2018.pbtxt.txt -------------------------------------------------------------------------------- /slowfast/utils/ava_evaluation/label_map_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/utils/ava_evaluation/label_map_util.py -------------------------------------------------------------------------------- /slowfast/utils/ava_evaluation/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/utils/ava_evaluation/metrics.py -------------------------------------------------------------------------------- /slowfast/utils/ava_evaluation/np_box_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/utils/ava_evaluation/np_box_list.py -------------------------------------------------------------------------------- /slowfast/utils/ava_evaluation/np_box_list_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/utils/ava_evaluation/np_box_list_ops.py -------------------------------------------------------------------------------- /slowfast/utils/ava_evaluation/np_box_mask_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/utils/ava_evaluation/np_box_mask_list.py -------------------------------------------------------------------------------- /slowfast/utils/ava_evaluation/np_box_mask_list_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/utils/ava_evaluation/np_box_mask_list_ops.py -------------------------------------------------------------------------------- /slowfast/utils/ava_evaluation/np_box_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/utils/ava_evaluation/np_box_ops.py -------------------------------------------------------------------------------- /slowfast/utils/ava_evaluation/np_mask_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/utils/ava_evaluation/np_mask_ops.py -------------------------------------------------------------------------------- /slowfast/utils/ava_evaluation/object_detection_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/utils/ava_evaluation/object_detection_evaluation.py -------------------------------------------------------------------------------- /slowfast/utils/ava_evaluation/per_image_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/utils/ava_evaluation/per_image_evaluation.py -------------------------------------------------------------------------------- /slowfast/utils/ava_evaluation/standard_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/utils/ava_evaluation/standard_fields.py -------------------------------------------------------------------------------- /slowfast/utils/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/utils/benchmark.py -------------------------------------------------------------------------------- /slowfast/utils/bn_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/utils/bn_helper.py -------------------------------------------------------------------------------- /slowfast/utils/c2_model_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/utils/c2_model_loading.py -------------------------------------------------------------------------------- /slowfast/utils/checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/utils/checkpoint.py -------------------------------------------------------------------------------- /slowfast/utils/distributed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/utils/distributed.py -------------------------------------------------------------------------------- /slowfast/utils/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/utils/env.py -------------------------------------------------------------------------------- /slowfast/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/utils/logging.py -------------------------------------------------------------------------------- /slowfast/utils/lr_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/utils/lr_policy.py -------------------------------------------------------------------------------- /slowfast/utils/meters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/utils/meters.py -------------------------------------------------------------------------------- /slowfast/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/utils/metrics.py -------------------------------------------------------------------------------- /slowfast/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/utils/misc.py -------------------------------------------------------------------------------- /slowfast/utils/multigrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/utils/multigrid.py -------------------------------------------------------------------------------- /slowfast/utils/multiprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/utils/multiprocessing.py -------------------------------------------------------------------------------- /slowfast/utils/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/utils/parser.py -------------------------------------------------------------------------------- /slowfast/utils/weight_init_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/utils/weight_init_helper.py -------------------------------------------------------------------------------- /slowfast/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/visualization/__init__.py -------------------------------------------------------------------------------- /slowfast/visualization/tensorboard_vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/visualization/tensorboard_vis.py -------------------------------------------------------------------------------- /slowfast/visualization/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/slowfast/visualization/utils.py -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/tools/benchmark.py -------------------------------------------------------------------------------- /tools/demo_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/tools/demo_net.py -------------------------------------------------------------------------------- /tools/epic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/epic/handobj/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/epic/handobj/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/tools/epic/handobj/test_net.py -------------------------------------------------------------------------------- /tools/epic/handobj/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/tools/epic/handobj/train_net.py -------------------------------------------------------------------------------- /tools/epic/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/tools/epic/test_net.py -------------------------------------------------------------------------------- /tools/epic/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/tools/epic/train_net.py -------------------------------------------------------------------------------- /tools/handobj/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/handobj/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/tools/handobj/test_net.py -------------------------------------------------------------------------------- /tools/handobj/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/tools/handobj/train_net.py -------------------------------------------------------------------------------- /tools/kd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/kd/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/tools/kd/test_net.py -------------------------------------------------------------------------------- /tools/kd/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/tools/kd/train_net.py -------------------------------------------------------------------------------- /tools/run_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/tools/run_net.py -------------------------------------------------------------------------------- /tools/test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/tools/test_net.py -------------------------------------------------------------------------------- /tools/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/tools/train_net.py -------------------------------------------------------------------------------- /tools/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Ego-Exo/HEAD/tools/visualization.py --------------------------------------------------------------------------------