Skip to content

Commit ae15978

Browse files
committed
polish(pu): update latest paper info in readme
1 parent da2a62f commit ae15978

File tree

2 files changed

+43
-13
lines changed

2 files changed

+43
-13
lines changed

README.md

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,22 @@
2828
[![GitHub license](https://img.shields.io/github/license/opendilab/LightZero)](https://github.com/opendilab/LightZero/blob/master/LICENSE)
2929
[![discord badge](https://dcbadge.vercel.app/api/server/dkZS2JF56X?style=flat)](https://discord.gg/dkZS2JF56X)
3030

31-
Updated on 2025.06.03 LightZero-v0.2.0
31+
Updated on 2025.09.29 LightZero-v0.2.0
3232

33-
English | [简体中文(Simplified Chinese)](https://github.com/opendilab/LightZero/blob/main/README.zh.md) | [Documentation](https://opendilab.github.io/LightZero) | [LightZero Paper](https://arxiv.org/abs/2310.08348) | [🔥UniZero Paper](https://arxiv.org/abs/2406.10667) | [🔥ReZero Paper](https://arxiv.org/abs/2404.16364)
3433

3534
> LightZero is a lightweight, efficient, and easy-to-understand open-source algorithm toolkit that combines Monte Carlo Tree Search (MCTS) and Deep Reinforcement Learning (RL).
3635
> For any questions about LightZero, you can consult the RAG-based Q&A assistant: [ZeroPal](https://huggingface.co/spaces/OpenDILabCommunity/ZeroPal).
3736
37+
English | [简体中文(Simplified Chinese)](https://github.com/opendilab/LightZero/blob/main/README.zh.md) | [Documentation](https://opendilab.github.io/LightZero) | [LightZero Paper](https://arxiv.org/abs/2310.08348) | [UniZero Paper](https://arxiv.org/abs/2406.10667) | [ReZero Paper](https://arxiv.org/abs/2404.16364)| [🔥ScaleZero Paper](https://arxiv.org/abs/2509.07945)
38+
39+
## News
40+
41+
- [2025.09] 🔥 ScaleZero 论文已发布在 arXiv: [One Model for All Tasks: Leveraging Efficient World Models in Multi-Task Planning](https://arxiv.org/abs/2509.07945).
42+
- [2025.08] [ReZero 论文](https://openreview.net/forum?id=F9Y7j3AJTu)已被 CoRL 2025 RemembeRL workshop 接收。
43+
- [2024.06] [UniZero 论文](https://openreview.net/forum?id=Gl6dF9soQo)已被 Transactions on Machine Learning Research 接收。
44+
- [2023.09] [LightZero 论文](https://proceedings.neurips.cc/paper_files/paper/2023/hash/765043fe026f7d704c96cec027f13843-Abstract-Datasets_and_Benchmarks.html)已被 NeurIPS 2023 Datasets and Benchmarks Track 接收为 Spotlight Presentation。
45+
- [2023.04] LightZero v0.0.1 正式发布。
46+
-
3847

3948
## 🔍 Background
4049

@@ -608,11 +617,10 @@ Here is a collection of research papers about **Monte Carlo Tree Search**.
608617
year={2024}
609618
}
610619
611-
@article{pu2024unizero,
620+
@article{puunizero,
612621
title={UniZero: Generalized and Efficient Planning with Scalable Latent World Models},
613-
author={Pu, Yuan and Niu, Yazhe and Ren, Jiyuan and Yang, Zhenjie and Li, Hongsheng and Liu, Yu},
614-
journal={arXiv preprint arXiv:2406.10667},
615-
year={2024}
622+
author={Pu, Yuan and Niu, Yazhe and Yang, Zhenjie and Ren, Jiyuan and Li, Hongsheng and Liu, Yu},
623+
journal={Transactions on Machine Learning Research}
616624
}
617625
618626
@article{xuan2024rezero,
@@ -621,6 +629,13 @@ Here is a collection of research papers about **Monte Carlo Tree Search**.
621629
journal={arXiv preprint arXiv:2404.16364},
622630
year={2024}
623631
}
632+
633+
@article{pu2025one,
634+
title={One Model for All Tasks: Leveraging Efficient World Models in Multi-Task Planning},
635+
author={Pu, Yuan and Niu, Yazhe and Tang, Jia and Xiong, Junyu and Hu, Shuai and Li, Hongsheng},
636+
journal={arXiv preprint arXiv:2509.07945},
637+
year={2025}
638+
}
624639
```
625640
626641
## 💓 Acknowledgments

README.zh.md

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,22 @@
2727
[![Contributors](https://img.shields.io/github/contributors/opendilab/LightZero)](https://github.com/opendilab/LightZero/graphs/contributors)
2828
[![GitHub license](https://img.shields.io/github/license/opendilab/LightZero)](https://github.com/opendilab/LightZero/blob/master/LICENSE)
2929

30-
最近更新于 2025.06.03 LightZero-v0.2.0
31-
32-
[English](https://github.com/opendilab/LightZero/blob/main/README.md) | 简体中文 | [文档](https://opendilab.github.io/LightZero) | [LightZero 论文](https://arxiv.org/abs/2310.08348) | [🔥UniZero 论文](https://arxiv.org/abs/2406.10667) | [🔥ReZero 论文](https://arxiv.org/abs/2404.16364)
30+
最近更新于 2025.09.29 LightZero-v0.2.0
3331

3432
> LightZero 是一个轻量、高效、易懂的 MCTS+RL 开源算法库。
3533
> 有关 LightZero 的任何疑问,您都可以咨询基于 RAG 技术的问答助手:[ZeroPal](https://huggingface.co/spaces/OpenDILabCommunity/ZeroPal)
3634
3735

36+
[English](https://github.com/opendilab/LightZero/blob/main/README.md) | 简体中文 | [文档](https://opendilab.github.io/LightZero) | [LightZero 论文](https://arxiv.org/abs/2310.08348) | [UniZero 论文](https://arxiv.org/abs/2406.10667) | [ReZero 论文](https://arxiv.org/abs/2404.16364) | [🔥ScaleZero 论文](https://arxiv.org/abs/2509.07945)
37+
38+
## 研究日志
39+
- [2025.09] 🔥 ScaleZero 论文已发布在 arXiv: [One Model for All Tasks: Leveraging Efficient World Models in Multi-Task Planning](https://arxiv.org/abs/2509.07945).
40+
- [2025.08] [ReZero 论文](https://openreview.net/forum?id=F9Y7j3AJTu)已被 CoRL 2025 RemembeRL workshop 接收。
41+
- [2024.06] [UniZero 论文](https://openreview.net/forum?id=Gl6dF9soQo)已被 Transactions on Machine Learning Research 接收。
42+
- [2023.09] [LightZero 论文](https://proceedings.neurips.cc/paper_files/paper/2023/hash/765043fe026f7d704c96cec027f13843-Abstract-Datasets_and_Benchmarks.html)已被 NeurIPS 2023 Datasets and Benchmarks Track 接收为 Spotlight Presentation。
43+
- [2023.04] LightZero v0.0.1 正式发布。
44+
45+
3846
## 🔍 背景
3947

4048
以 AlphaZero, MuZero 为代表的结合蒙特卡洛树搜索 (Monte Carlo Tree Search, MCTS) 和深度强化学习 (Deep Reinforcemeent Learning, DRL) 的方法,在诸如围棋,Atari 等各种游戏上取得了超人的水平,也在诸如蛋白质结构预测,矩阵乘法算法寻找等科学领域取得了可喜的进展。下图为蒙特卡洛树搜索(MCTS)算法族的发展历史:
@@ -53,6 +61,7 @@
5361

5462
### 导航
5563
- [LightZero](#lightzero)
64+
- [研究日志](#研究日志)
5665
- [🔍 背景](#-背景)
5766
- [🎨 概览](#-概览)
5867
- [导航](#导航)
@@ -592,11 +601,10 @@ and internal state transition dynamics,
592601
year={2024}
593602
}
594603
595-
@article{pu2024unizero,
604+
@article{puunizero,
596605
title={UniZero: Generalized and Efficient Planning with Scalable Latent World Models},
597-
author={Pu, Yuan and Niu, Yazhe and Ren, Jiyuan and Yang, Zhenjie and Li, Hongsheng and Liu, Yu},
598-
journal={arXiv preprint arXiv:2406.10667},
599-
year={2024}
606+
author={Pu, Yuan and Niu, Yazhe and Yang, Zhenjie and Ren, Jiyuan and Li, Hongsheng and Liu, Yu},
607+
journal={Transactions on Machine Learning Research}
600608
}
601609
602610
@article{xuan2024rezero,
@@ -605,6 +613,13 @@ and internal state transition dynamics,
605613
journal={arXiv preprint arXiv:2404.16364},
606614
year={2024}
607615
}
616+
617+
@article{pu2025one,
618+
title={One Model for All Tasks: Leveraging Efficient World Models in Multi-Task Planning},
619+
author={Pu, Yuan and Niu, Yazhe and Tang, Jia and Xiong, Junyu and Hu, Shuai and Li, Hongsheng},
620+
journal={arXiv preprint arXiv:2509.07945},
621+
year={2025}
622+
}
608623
```
609624
610625
## 💓 致谢

0 commit comments

Comments
 (0)