A Generalist Benchmark for Multimodal Action models.
40
stars
1,146
commits
Jupyter Notebook
primary language
Apr 17, 2026
updated
This repo provides the following:
Also related to the MultiNet effort is - a small, simple, open-source implementation of what is described in DeepMind's GATO paper. This project marks our initial step towards building a multimodal generalist action model.
conda create -n multinet python=3.10
conda activate multinet
git clone https://github.com/ManifoldRG/MultiNet.git
cd MultiNet/src
pip install -r requirements.txt
cd Multinet/src/v1
python centralized_downloader.py --download <name of dataset you would like to download>
cd Multinet/src/v1
python centralized_processor.py --input_dir <path to the downloaded dataset> --output_dir <directory where you would like to store the translated file>
Note: Make sure to modify the way the multiple files are being traversed for translation in translate_multiple.py in Multinet/src/control_translation according to your local file structure.
cd Multinet/src/v1
python wrapper_centralized_processor.py --input_dir <path to the downloaded dataset> --output_dir <directory where you would like to store the translated file>
We provide comprehensive evaluation guides for different models:
Magma Model Evaluation: For detailed instructions on evaluating Magma on ODINW, PIQA, SQA3D, RoboVQA, Overcooked, BFCL, and OpenX datasets, see the Magma Evaluation Guide.
Pi0 Base Model Evaluation: For detailed instructions on evaluating Pi0 Base on ODINW, PIQA, SQA3D, RoboVQA, BFCL, Overcooked, and OpenX datasets, see the Pi0 Evaluation Guide.
GPT Model Evaluation (GenESIS Framework): For detailed instructions on evaluating GPT-5 using the GenESIS framework on ODINW, PIQA, SQA3D, RoboVQA, Overcooked, and OpenX datasets, see the GenESIS Evaluation Guide.
We provide a submission toolkit and comprehensive instructions to benchmark your model on MultiNet datasets:
ModelAdapter classQuick Start:
ModelAdapter in src/eval_harness/model_adapter.pyscripts/eval_harness/evaluate.py entrypoint which loads sample data in a standard formatharness_dataset_config.txt and Dockerfile with your adapter settings./build_and_run_eval_container.sh DATASET_NAME to test containerized evaluationOfficial benchmark runs are executed by the MultiNet team using your submitted Dockerfile and adapters. Local runs operate on the provided sample datasets to validate your setup.
For complete instructions, see the Model Submission Guide.
If you're experiencing any issues, open a GitHub issue or contact pranav@metarch.ai directly.
If you use MultiNet in your research, please cite our work:
ICML CodeML Paper Submission - An Open-Source Software Toolkit & Benchmark Suite for the Evaluation and Adaptation of Multimodal Action Models
@misc{guruprasad2025opensourcesoftwaretoolkit,
title={An Open-Source Software Toolkit & Benchmark Suite for the Evaluation and Adaptation of Multimodal Action Models},
author={Pranav Guruprasad and Yangyue Wang and Sudipta Chowdhury and Jaewoo Song and Harshvardhan Sikka},
year={2025},
eprint={2506.09172},
archivePrefix={arXiv},
primaryClass={cs.LG},
url={https://arxiv.org/abs/2506.09172},
}
Multinet v0.2 - Benchmarking Vision, Language, & Action Models in Procedurally Generated, Open Ended Action Environments
@misc{guruprasad2025benchmarkingvisionlanguage,
title={Benchmarking Vision, Language, & Action Models in Procedurally Generated, Open Ended Action Environments},
author={Pranav Guruprasad and Yangyue Wang and Sudipta Chowdhury and Harshvardhan Sikka},
year={2025},
eprint={2505.05540},
archivePrefix={arXiv},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2505.05540},
}
Multinet v0.1 - Benchmarking Vision, Language, & Action Models on Robotic Learning Tasks
@misc{guruprasad2024benchmarkingvisionlanguage,
title={Benchmarking Vision, Language, & Action Models on Robotic Learning Tasks},
author={Pranav Guruprasad and Harshvardhan Sikka and Jaewoo Song and Yangyue Wang and Paul Pu Liang},
year={2024},
eprint={2411.05821},
archivePrefix={arXiv},
primaryClass={cs.RO},
url={https://arxiv.org/abs/2411.05821},
}
Multinet Vision and Dataset specification
@misc{guruprasad2024benchmarking,
author={Guruprasad, Pranav and Sikka, Harshvardhan and Song, Jaewoo and Wang, Yangyue and Liang, Paul},
title={Benchmarking Vision, Language, & Action Models on Robotic Learning Tasks},
DOI={10.20944/preprints202411.0494.v1},
year={2024},
}
Jupyter Notebook
56.0%
Python
43.1%
A Generalist Benchmark for Multimodal Action models.
40
stars
1,146
commits
Jupyter Notebook
primary language
Apr 17, 2026
updated
This repo provides the following:
Also related to the MultiNet effort is - a small, simple, open-source implementation of what is described in DeepMind's GATO paper. This project marks our initial step towards building a multimodal generalist action model.
conda create -n multinet python=3.10
conda activate multinet
git clone https://github.com/ManifoldRG/MultiNet.git
cd MultiNet/src
pip install -r requirements.txt
cd Multinet/src/v1
python centralized_downloader.py --download <name of dataset you would like to download>
cd Multinet/src/v1
python centralized_processor.py --input_dir <path to the downloaded dataset> --output_dir <directory where you would like to store the translated file>
Note: Make sure to modify the way the multiple files are being traversed for translation in translate_multiple.py in Multinet/src/control_translation according to your local file structure.
cd Multinet/src/v1
python wrapper_centralized_processor.py --input_dir <path to the downloaded dataset> --output_dir <directory where you would like to store the translated file>
We provide comprehensive evaluation guides for different models:
Magma Model Evaluation: For detailed instructions on evaluating Magma on ODINW, PIQA, SQA3D, RoboVQA, Overcooked, BFCL, and OpenX datasets, see the Magma Evaluation Guide.
Pi0 Base Model Evaluation: For detailed instructions on evaluating Pi0 Base on ODINW, PIQA, SQA3D, RoboVQA, BFCL, Overcooked, and OpenX datasets, see the Pi0 Evaluation Guide.
GPT Model Evaluation (GenESIS Framework): For detailed instructions on evaluating GPT-5 using the GenESIS framework on ODINW, PIQA, SQA3D, RoboVQA, Overcooked, and OpenX datasets, see the GenESIS Evaluation Guide.
We provide a submission toolkit and comprehensive instructions to benchmark your model on MultiNet datasets:
ModelAdapter classQuick Start:
ModelAdapter in src/eval_harness/model_adapter.pyscripts/eval_harness/evaluate.py entrypoint which loads sample data in a standard formatharness_dataset_config.txt and Dockerfile with your adapter settings./build_and_run_eval_container.sh DATASET_NAME to test containerized evaluationOfficial benchmark runs are executed by the MultiNet team using your submitted Dockerfile and adapters. Local runs operate on the provided sample datasets to validate your setup.
For complete instructions, see the Model Submission Guide.
If you're experiencing any issues, open a GitHub issue or contact pranav@metarch.ai directly.
If you use MultiNet in your research, please cite our work:
ICML CodeML Paper Submission - An Open-Source Software Toolkit & Benchmark Suite for the Evaluation and Adaptation of Multimodal Action Models
@misc{guruprasad2025opensourcesoftwaretoolkit,
title={An Open-Source Software Toolkit & Benchmark Suite for the Evaluation and Adaptation of Multimodal Action Models},
author={Pranav Guruprasad and Yangyue Wang and Sudipta Chowdhury and Jaewoo Song and Harshvardhan Sikka},
year={2025},
eprint={2506.09172},
archivePrefix={arXiv},
primaryClass={cs.LG},
url={https://arxiv.org/abs/2506.09172},
}
Multinet v0.2 - Benchmarking Vision, Language, & Action Models in Procedurally Generated, Open Ended Action Environments
@misc{guruprasad2025benchmarkingvisionlanguage,
title={Benchmarking Vision, Language, & Action Models in Procedurally Generated, Open Ended Action Environments},
author={Pranav Guruprasad and Yangyue Wang and Sudipta Chowdhury and Harshvardhan Sikka},
year={2025},
eprint={2505.05540},
archivePrefix={arXiv},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2505.05540},
}
Multinet v0.1 - Benchmarking Vision, Language, & Action Models on Robotic Learning Tasks
@misc{guruprasad2024benchmarkingvisionlanguage,
title={Benchmarking Vision, Language, & Action Models on Robotic Learning Tasks},
author={Pranav Guruprasad and Harshvardhan Sikka and Jaewoo Song and Yangyue Wang and Paul Pu Liang},
year={2024},
eprint={2411.05821},
archivePrefix={arXiv},
primaryClass={cs.RO},
url={https://arxiv.org/abs/2411.05821},
}
Multinet Vision and Dataset specification
@misc{guruprasad2024benchmarking,
author={Guruprasad, Pranav and Sikka, Harshvardhan and Song, Jaewoo and Wang, Yangyue and Liang, Paul},
title={Benchmarking Vision, Language, & Action Models on Robotic Learning Tasks},
DOI={10.20944/preprints202411.0494.v1},
year={2024},
}
Jupyter Notebook
56.0%
Python
43.1%