This repository contains the code to replicate the experiments on the M2AD Dataset. To start running them, simply configure which models you would like to test and which experiments in the "experiments.yaml" file under the "configs/" folder, and run:
python run.py
python molmo_fix.py or manually..
├── configs/ # Experiment configurations
│ └── experiments.yaml
├── dataset/ # Raw and preprocessed data
│ └── dataset_ikea.json
├── models/ # Model wrappers
│ ├── llava_video.py
│ ├── llava_onevision.py
│ └── ...
├── experiments/ # Experiment code
│ ├── exp1.py
│ ├── exp2.py
│ └── exp3.py
├── results/ # Raw experiment results (JSON)
├── utils/ # Utility functions
│ ├── data_loader.py # Dataset loading and preprocessing
│ ├── reporting.py # Results file writing
│ ├── logging.py # Logging setup
│ └── ...
└── run.py # Main script to orchestrate experiments
45 commits
Python
100.0%
This repository contains the code to replicate the experiments on the M2AD Dataset. To start running them, simply configure which models you would like to test and which experiments in the "experiments.yaml" file under the "configs/" folder, and run:
python run.py
python molmo_fix.py or manually..
├── configs/ # Experiment configurations
│ └── experiments.yaml
├── dataset/ # Raw and preprocessed data
│ └── dataset_ikea.json
├── models/ # Model wrappers
│ ├── llava_video.py
│ ├── llava_onevision.py
│ └── ...
├── experiments/ # Experiment code
│ ├── exp1.py
│ ├── exp2.py
│ └── exp3.py
├── results/ # Raw experiment results (JSON)
├── utils/ # Utility functions
│ ├── data_loader.py # Dataset loading and preprocessing
│ ├── reporting.py # Results file writing
│ ├── logging.py # Logging setup
│ └── ...
└── run.py # Main script to orchestrate experiments
45 commits
Python
100.0%