Views
No views yet
pip install -r requirements.txtpython enjoy.py --weights hdppo-FrozenLake-v1/weights.npz --episodes 10python enjoy.py --weights hdppo-FrozenLake-v1/weights.npz --render --episodes 3python record_video.py --weights hdppo-FrozenLake-v1/weights.npz --output replay.mp4python enjoy.py --weights LTU-AI/hdppo-FrozenLake-v1 --episodes 10python run_prune_finetune_5seed.py1{
2 "env": "FrozenLake-v1",
3 "algo": "HD-PPO (gradient-adaptive FPE, discrete)",
4 "teacher_D": 64,
5 "pruned_D": 4,
6 "timesteps_per_stage": 1000000,
7 "seed": 123,
8 "is_slippery": true
9}1{
2 "render_mode": "rgb_array",
3 "is_slippery": true
4}| File | Description |
|---|---|
hdppo-FrozenLake-v1/weights.npz | Published actor (+ critic if HD) and FPE encoder (D=4) |
hdppo-FrozenLake-v1/weights_D64_teacher.npz | Teacher checkpoint (D=64) |
replay.mp4 | Sample rollout video from the published min-D checkpoint |
results.json | Evaluation summary for the published checkpoint |
results_D64_teacher.json | Evaluation summary for the teacher |
config.yml | Training hyperparameters |
train_hdppo.py / training modules | Self-contained training code |