From 38524ba2a99c76f1ca6a5080465b179a63d33da4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=92=B2=E6=BA=90?= <2402552459@qq.com> Date: Thu, 21 Sep 2023 18:36:43 +0800 Subject: [PATCH] v0.0.2 --- CHANGELOG.md | 20 ++++++++++++++++++++ README.md | 2 ++ README.zh.md | 2 ++ lzero/config/meta.py | 2 +- setup.py | 2 +- 5 files changed, 26 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 000000000..73fe0366a --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,20 @@ +2023.9.21(v0.0.2) +- env: MuJoCo env (#50) +- env: 2048 env (#64) +- env: Connect4 env (#63) +- algo: Gumbel MuZero (#22) +- algo: Stochastic MuZero (#64) +- polish: polish mcts and ptree_az (#57) (#61) +- polish: polish readme (#36) (#47) (#51) (#77) (#95) (#96) +- polish: update paper notes (#89) (#91) +- polish: polish model and configs (#26) (#27) (#50) +- feature: add Dockerfile and its usage instructions (#95) +- feature: add doc about how to customize envs and algos (#78) +- feature: add pytorch ddp support (#68) +- feature: add eps greedy and random collect option in train_muzero_entry (#54) +- feature: add atari visualization option (#40) +- feature: add log_buffer_memory_usage utils (#30) +- fix: fix priority bug in muzero collector (#74) +- style: update github action (#71) (#72) (#73) (#81) (#83) (#84) (#90) + +2023.4.14(v0.0.1) \ No newline at end of file diff --git a/README.md b/README.md index 72e5a32ea..d080dbf78 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,8 @@ [![Contributors](https://img.shields.io/github/contributors/opendilab/LightZero)](https://github.com/opendilab/LightZero/graphs/contributors) [![GitHub license](https://img.shields.io/github/license/opendilab/LightZero)](https://github.com/opendilab/LightZero/blob/master/LICENSE) +Updated on 2023.09.21 LightZero-v0.0.2 + > LightZero is a lightweight, efficient, and easy-to-understand open-source algorithm toolkits that combines Monte Carlo Tree Search (MCTS) and Deep Reinforcement Learning (RL). English | [简体中文](https://github.com/opendilab/LightZero/blob/main/README.zh.md) diff --git a/README.zh.md b/README.zh.md index a20c4dfc6..c994849ce 100644 --- a/README.zh.md +++ b/README.zh.md @@ -26,6 +26,8 @@ [![Contributors](https://img.shields.io/github/contributors/opendilab/LightZero)](https://github.com/opendilab/LightZero/graphs/contributors) [![GitHub license](https://img.shields.io/github/license/opendilab/LightZero)](https://github.com/opendilab/LightZero/blob/master/LICENSE) +Updated on 2023.09.21 LightZero-v0.0.2 + > LightZero 是一个轻量、高效、易懂的 MCTS+RL 开源算法库。 [English](https://github.com/opendilab/LightZero/blob/main/README.md) | 简体中文 diff --git a/lzero/config/meta.py b/lzero/config/meta.py index 04c995335..7ac3cee49 100644 --- a/lzero/config/meta.py +++ b/lzero/config/meta.py @@ -7,7 +7,7 @@ __TITLE__ = "LightZero" #: Version of this project. -__VERSION__ = "0.0.1" +__VERSION__ = "0.0.2" #: Short description of the project, will be included in ``setup.py``. __DESCRIPTION__ = 'A lightweight and efficient MCTS/AlphaZero/MuZero algorithm toolkits.' diff --git a/setup.py b/setup.py index 23ab3752f..b83ea991c 100644 --- a/setup.py +++ b/setup.py @@ -85,7 +85,7 @@ def find_cython_extensions(path=None): setup( name='LightZero', - version='0.0.1', + version='0.0.2', description='A lightweight and efficient MCTS/AlphaZero/MuZero algorithm toolkits.', # long_description=readme, long_description_content_type='text/markdown',