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