--- license: mit task_categories: - text-generation language: - en tags: - multi-agent-path-finding - mapf - planning - llm-benchmark pretty_name: MAPF-FrozenLake Benchmark size_categories: - 1K_agents/dataset_nl.jsonl`. One-shot download + layout: ```bash hf download LARK-Lab/MAPF-FrozenLake-Benchmark \ --repo-type dataset --local-dir /tmp/mapf_bench for wr in benchmark_wr025 benchmark_wr050 benchmark_wr075; do for n in 3 4 5; do mkdir -p ${wr}/${n}_agents cp /tmp/mapf_bench/${wr}/${n}_agents.jsonl \ ${wr}/${n}_agents/dataset_nl.jsonl done done ``` Then run the evaluators shipped with the code repo: ```bash # HuggingFace-format model DATA_ROOT=benchmark_wr075 sbatch test_model_hf.sh \ /path/to/model "3,4,5" "3,4,5,6,7,8,9,10" my_tag # FSDP RL checkpoint DATA_ROOT=benchmark_wr075 sbatch test_model_rl.sh \ /path/to/outputs/.../global_step_XXX # OpenAI-compatible API model bash test_model_api.sh ``` Each run prints per-(agent-count, map-size) **optimal-rate** and **accuracy** at the end of its log. ## License MIT.