Views
No views yet
P3/
├── grid-path-planning/ ← the project itself (code + data + results)
│ ├── *.py, *.sh ← all source — same as the GitHub repo
│ ├── data/ ← PPNL benchmark JSONs + custom OOD set
│ ├── evaluate/ ← upstream PPNL executor scripts (kept for traceability)
│ ├── models/<run>/best/ ← ⭐ the fine-tuned checkpoints (HF-only)
│ ├── results/ ← per-config metric tables and per-sample predictions
│ ├── visualizations/ ← case-study plots used in the report
│ ├── README.md ← project documentation, results table, file walkthrough
│ ├── CLAUDE.md ← orientation for Claude Code agents
│ └── requirements.txt
└── llms-as-path-planners/ ← upstream PPNL reference code (Aghzal et al., for traceability)1pip install huggingface_hub
2hf download EnjiXiong/AIAA4051-FinalProject-PPNL \
3 --include "grid-path-planning/models/sft_multiscale_40ep/**/best/**" \
4 --local-dir .1python tree_search_eval.py \
2 --model_dir grid-path-planning/models/sft_multiscale_40ep/t5-base_vanilla_ep40_lr0.0003/best \
3 --input_format vanilla --beam_width 4grid-path-planning/models/<run>/.../best/:| Run | Description |
|---|---|
t5-small_vanilla_ep20_lr0.0003 | T5-small SFT, 6×6 only |
t5-base_vanilla_ep15_lr0.0003 | T5-base SFT, 6×6 only |
t5-base_structured_ep15_lr0.0003 | T5-base SFT, structured input format |
t5-base_cot_ep15_lr0.0003 | T5-base SFT, CoT (coordinate-tracking) target |
bart-base_vanilla_ep15_lr0.0003, bart-base_vanilla_ep30_lr5e-05 | BART-base SFT |
sft2k_vanilla | T5-base SFT warm-start on 2k-sample subset |
sft2k | T5-base SFT warm-start, structured |
sft_multiscale_warmstart | Multi-scale (5×5–7×7) warm-start, 5 ep |
sft_multiscale | Multi-scale, 15 ep |
sft_multiscale_40ep ⭐ | Best SFT: multi-scale 5×5–7×7, 40 ep — used with tree search for headline number |
rl/grpo_t5-base_* | GRPO RL on top of vanilla and structured SFTs |
final/ (last-epoch) snapshots are not mirrored — only the best-validation
checkpoint of each run is uploaded. The repo README.md and CLAUDE.md inside
grid-path-planning/ document everything.1@inproceedings{aghzal2024can,
2 title={Can Large Language Models be Good Path Planners? A Benchmark and
3 Investigation on Spatial-temporal Reasoning},
4 author={Aghzal, Mohamed and Plaku, Erion and Yao, Ziyu},
5 booktitle={ICLR 2024 Workshop on LLM Agents},
6 year={2024}
7}