├── .gitignore ├── README.md ├── benchmarking ├── FrozenBilm │ ├── README.md │ ├── feature_gen.ipynb │ ├── feature_gen.py │ └── run_frozenbilm.py ├── InternVideo │ ├── README.md │ ├── disguise.ipynb │ └── run_internvideo.py ├── Violet │ ├── README.md │ ├── args_egoSchema.json │ ├── preprocess_text.py │ └── preprocess_vids.py └── mPLUG-Owl │ ├── README.md │ ├── framing.ipynb │ ├── framing.py │ ├── q_prompt.txt │ └── run_mplug.py ├── download.py ├── download_multiproc.py ├── questions.json ├── subset_answers.json ├── uid_to_ego4d.json └── validate.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoschema/EgoSchema/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoschema/EgoSchema/HEAD/README.md -------------------------------------------------------------------------------- /benchmarking/FrozenBilm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoschema/EgoSchema/HEAD/benchmarking/FrozenBilm/README.md -------------------------------------------------------------------------------- /benchmarking/FrozenBilm/feature_gen.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoschema/EgoSchema/HEAD/benchmarking/FrozenBilm/feature_gen.ipynb -------------------------------------------------------------------------------- /benchmarking/FrozenBilm/feature_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoschema/EgoSchema/HEAD/benchmarking/FrozenBilm/feature_gen.py -------------------------------------------------------------------------------- /benchmarking/FrozenBilm/run_frozenbilm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoschema/EgoSchema/HEAD/benchmarking/FrozenBilm/run_frozenbilm.py -------------------------------------------------------------------------------- /benchmarking/InternVideo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoschema/EgoSchema/HEAD/benchmarking/InternVideo/README.md -------------------------------------------------------------------------------- /benchmarking/InternVideo/disguise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoschema/EgoSchema/HEAD/benchmarking/InternVideo/disguise.ipynb -------------------------------------------------------------------------------- /benchmarking/InternVideo/run_internvideo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoschema/EgoSchema/HEAD/benchmarking/InternVideo/run_internvideo.py -------------------------------------------------------------------------------- /benchmarking/Violet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoschema/EgoSchema/HEAD/benchmarking/Violet/README.md -------------------------------------------------------------------------------- /benchmarking/Violet/args_egoSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoschema/EgoSchema/HEAD/benchmarking/Violet/args_egoSchema.json -------------------------------------------------------------------------------- /benchmarking/Violet/preprocess_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoschema/EgoSchema/HEAD/benchmarking/Violet/preprocess_text.py -------------------------------------------------------------------------------- /benchmarking/Violet/preprocess_vids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoschema/EgoSchema/HEAD/benchmarking/Violet/preprocess_vids.py -------------------------------------------------------------------------------- /benchmarking/mPLUG-Owl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoschema/EgoSchema/HEAD/benchmarking/mPLUG-Owl/README.md -------------------------------------------------------------------------------- /benchmarking/mPLUG-Owl/framing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoschema/EgoSchema/HEAD/benchmarking/mPLUG-Owl/framing.ipynb -------------------------------------------------------------------------------- /benchmarking/mPLUG-Owl/framing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoschema/EgoSchema/HEAD/benchmarking/mPLUG-Owl/framing.py -------------------------------------------------------------------------------- /benchmarking/mPLUG-Owl/q_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoschema/EgoSchema/HEAD/benchmarking/mPLUG-Owl/q_prompt.txt -------------------------------------------------------------------------------- /benchmarking/mPLUG-Owl/run_mplug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoschema/EgoSchema/HEAD/benchmarking/mPLUG-Owl/run_mplug.py -------------------------------------------------------------------------------- /download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoschema/EgoSchema/HEAD/download.py -------------------------------------------------------------------------------- /download_multiproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoschema/EgoSchema/HEAD/download_multiproc.py -------------------------------------------------------------------------------- /questions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoschema/EgoSchema/HEAD/questions.json -------------------------------------------------------------------------------- /subset_answers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoschema/EgoSchema/HEAD/subset_answers.json -------------------------------------------------------------------------------- /uid_to_ego4d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoschema/EgoSchema/HEAD/uid_to_ego4d.json -------------------------------------------------------------------------------- /validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoschema/EgoSchema/HEAD/validate.py --------------------------------------------------------------------------------