-
Notifications
You must be signed in to change notification settings - Fork 34
mb benchmarks markdown #27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
a6b5c47
run_benchmarks script
jordis-ai2 f9e83e4
pass missing max_episodes in eval_main
jordis-ai2 5c763ea
mb-bench markdown replacing run_benchmarks script
jordis-ai2 65ab7e9
Missing bench dir prefix
jordis-ai2 dd68320
Fix wrist camera name
jordis-ai2 374b3e7
pnp proper bench dir
jordis-ai2 c83f557
Fix body to geoms
jordis-ai2 d168759
bump bench-v2 version
jordis-ai2 f28d32b
Option A. Mention eval_to_csv usage from each benchmark instructions
jordis-ai2 1766c52
More detailed description of the effect of max_episodes
jordis-ai2 7c3806c
Making some more sense for max_episodes
jordis-ai2 f223112
Added Leaderboard docs naming to ms-bench and mb-bench mds
jordis-ai2 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,93 @@ | ||
| # MolmoBot Benchmarks | ||
|
|
||
| ## Usage | ||
|
|
||
| We first run an evaluation like | ||
| ```bash | ||
| python molmo_spaces/evaluation/eval_main.py \ | ||
| <YOUR_POLICY_CONFIG> \ | ||
| [OPTIONS] \ | ||
| --benchmark_dir <BENCHMARK_DIR> \ | ||
| --output_dir <eval_output_dir> | ||
| ``` | ||
| Please see detailed commands for each task type below, and replace `<YOUR_POLICY_CONFIG>` with your evaluation config (e.g. `molmo_spaces.evaluation.configs.evaluation_configs:PiPolicyEvalConfig`). | ||
|
|
||
| Finally, run the evaluation output script that aggregates results as csv files: | ||
| ```bash | ||
| python scripts/benchmarks/eval_to_csv.py \ | ||
| <eval_output_dir>/<date_str> \ | ||
| <policy_name> \ | ||
| --success-condition both \ | ||
| --output-csv /eg/path/to/<task_type>/<policy_name>.csv | ||
| ``` | ||
|
|
||
| ## Benchmarks with classic renderer | ||
|
|
||
| For benchmarks using classic renderer we need to install the `mujoco` version from [our dependencies](../../pyproject.toml), e.g., by calling | ||
| ```bash | ||
| pip install -e ".[mujoco]" | ||
| ``` | ||
| from the project root directory. | ||
|
|
||
| ### Pick-MSProc (Pick-v1.5) | ||
|
|
||
| ```bash | ||
| python molmo_spaces/evaluation/eval_main.py <YOUR_POLICY_CONFIG> \ | ||
| --benchmark_dir $MLSPACES_ASSETS_DIR/benchmarks/molmospaces-bench-v2/procthor-10k/FrankaPickDroidMiniBench/FrankaPickDroidMiniBench_json_benchmark_20251231 | ||
| ``` | ||
|
|
||
| ### Pick-Classic (Pick-v2-classic) | ||
|
|
||
| ```bash | ||
| python molmo_spaces/evaluation/eval_main.py <YOUR_POLICY_CONFIG> \ | ||
| --benchmark_dir $MLSPACES_ASSETS_DIR/benchmarks/molmospaces-bench-v2/procthor-objaverse/FrankaPickHardBench/FrankaPickHardBench_20260206_json_benchmark | ||
| ``` | ||
|
|
||
| ## Benchmarks with filament renderer | ||
|
|
||
| For benchmarks using filament we should install `mujoco-filament` from [our dependencies](../../pyproject.toml), e.g., by calling | ||
| ```bash | ||
| pip install -e ".[mujoco-filament]" | ||
| ``` | ||
| from the project root directory and pass the `--use-filament` option to the evaluation script. | ||
|
|
||
| ### Pick-Filament (Pick-v2-filament) | ||
|
|
||
| ```bash | ||
| python molmo_spaces/evaluation/eval_main.py <YOUR_POLICY_CONFIG> \ | ||
| --use-filament \ | ||
| --benchmark_dir $MLSPACES_ASSETS_DIR/benchmarks/molmospaces-bench-v2/procthor-objaverse/FrankaPickHardBench/FrankaPickHardBench_20260206_json_benchmark | ||
| ``` | ||
|
|
||
| ### Pick-RandCam (Pick-v2-rand-cam) | ||
|
|
||
| ```bash | ||
| python molmo_spaces/evaluation/eval_main.py <YOUR_POLICY_CONFIG> \ | ||
| --use-filament \ | ||
| --camera_names randomized_zed2_analogue_1 wrist_camera_zed_mini \ | ||
| --benchmark_dir $MLSPACES_ASSETS_DIR/benchmarks/molmospaces-bench-v2/procthor-objaverse/FrankaPickHardBench/FrankaPickHardBench_20260206_json_benchmark | ||
| ``` | ||
|
|
||
| ### Pick & Place (PnP-v2) | ||
|
|
||
| ```bash | ||
| python molmo_spaces/evaluation/eval_main.py <YOUR_POLICY_CONFIG> \ | ||
| --use-filament \ | ||
| --benchmark_dir $MLSPACES_ASSETS_DIR/benchmarks/molmospaces-bench-v2/procthor-objaverse/FrankaPickandPlaceHardBench/FrankaPickandPlaceHardBench_20260206_json_benchmark | ||
| ``` | ||
|
|
||
| ### Pick & Place-NextTo (PnP-next-to-v2) | ||
|
|
||
| ```bash | ||
| python molmo_spaces/evaluation/eval_main.py <YOUR_POLICY_CONFIG> \ | ||
| --use-filament \ | ||
| --benchmark_dir $MLSPACES_ASSETS_DIR/benchmarks/molmospaces-bench-v2/procthor-objaverse/FrankaPickandPlaceNextToHardBench/FrankaPickandPlaceNextToHardBench_20260305_json_benchmark | ||
| ``` | ||
|
|
||
| ### Pick & Place-Color (PnP-color-v2) | ||
|
|
||
| ```bash | ||
| python molmo_spaces/evaluation/eval_main.py <YOUR_POLICY_CONFIG> \ | ||
| --use-filament \ | ||
| --benchmark_dir $MLSPACES_ASSETS_DIR/benchmarks/molmospaces-bench-v2/procthor-objaverse/FrankaPickandPlaceColorHardBench/FrankaPickandPlaceColorHardBench_20260304_json_benchmark | ||
| ``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.