Views
No views yet

Bayesian policy distillation: Towards lightweight and fast neural policy networks
Jangwon Kim, Yoonsu Jang, Jonghyeok Park, Yoonhee Gil, Soohee Han
Engineering Applications of Artificial Intelligence, Volume 166, 2026
DOI: https://doi.org/10.1016/j.engappai.2025.113539
Journal: Engineering Applications of Artificial Intelligence
python main.py --env-name Hopper-v3 --level expert --random-seed 11python main.py \
2 --env-name Walker2d-v3 \
3 --level medium \
4 --student-hidden-dims "(128, 128)" \
5 --alpha-threshold 2 \
6 --nu 4 \
7 --h 0.5Hopper-v3, Walker2d-v3, HalfCheetah-v3, Ant-v3expert: High-performance teacher policymedium: Moderate-performance teacher policy| Parameter | Default | Description |
|---|---|---|
--student-hidden-dims | (128, 128) | Student network hidden layer sizes |
--alpha-threshold | 2 | Pruning threshold for log(α) (higher = less compression) |
--nu | 4 | KL weight annealing speed |
--h | 0.5 | Q-value loss coefficient |
--batch-size | 256 | Mini-batch size |
--max-teaching-count | 1000000 | Total training iterations |
--eval-freq | 5000 | Evaluation frequency |
--alpha-threshold 3-4: Conservative pruning--alpha-threshold 2: Balanced [default]--alpha-threshold 1: Aggressive pruning| Environment | Teacher | BPD (Ours) | Sparsity | Compression |
|---|---|---|---|---|
| Ant-v3 | 5364 | 5455 | 2.40% | 41.7× |
| Walker2d-v3 | 5357 | 4817 | 1.68% | 59.5× |
| Hopper-v3 | 3583 | 3134 | 1.35% | 74.1× |
| HalfCheetah-v3 | 11432 | 10355 | 2.21% | 45.2× |
1@article{kim2026bayesian,
2 title={Bayesian policy distillation: Towards lightweight and fast neural policy networks},
3 author={Kim, Jangwon and Jang, Yoonsu and Park, Jonghyeok and Gil, Yoonhee and Han, Soohee},
4 journal={Engineering Applications of Artificial Intelligence},
5 volume={166},
6 pages={113539},
7 year={2026},
8 publisher={Elsevier}
9}