From 4f8f82a91a75c408b186c4ea81272ee063c3f0df Mon Sep 17 00:00:00 2001 From: niuyazhe Date: Tue, 5 Dec 2023 12:34:38 +0800 Subject: [PATCH] v0.5.0 --- CHANGELOG | 23 +++++++++++++++++++++++ README.md | 2 +- conda/meta.yaml | 2 +- ding/__init__.py | 2 +- 4 files changed, 26 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 79e5d2b54a..a42ca1f987 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,26 @@ +2023.11.06(v0.5.0) +- env: add tabmwp env (#667) +- env: polish anytrading env issues (#731) +- algo: add PromptPG algorithm (#667) +- algo: add Plan Diffuser algorithm (#700) +- algo: add new pipeline implementation of IMPALA algorithm (#713) +- algo: add dropout layers to DQN-style algorithms (#712) +- feature: add new pipeline agent for sac/ddpg/a2c/ppo and Hugging Face support (#637) (#730) (#737) +- feature: add more unittest cases for model (#728) +- feature: add collector logging in new pipeline (#735) +- fix: logger middleware problems (#715) +- fix: ppo parallel bug (#709) +- fix: typo in optimizer_helper.py (#726) +- fix: mlp dropout if condition bug +- fix: drex collecting data unittest bugs +- style: polish env manager/wrapper comments and API doc (#742) +- style: polish model comments and API doc (#722) (#729) (#734) (#736) (#741) +- style: polish policy comments and API doc (#732) +- style: polish rl_utils comments and API doc (#724) +- style: polish torch_utils comments and API doc (#738) +- style: update README.md and Colab demo (#733) +- style: update metaworld docker image + 2023.08.23(v0.4.9) - env: add cliffwalking env (#677) - env: add lunarlander ppo config and example diff --git a/README.md b/README.md index 969f42c462..e16cf7f2ae 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ [![Hugging Face](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Models-yellow)](https://huggingface.co/OpenDILabCommunity) [![Open in OpenXLab](https://cdn-static.openxlab.org.cn/header/openxlab_models.svg)](https://openxlab.org.cn/models?search=opendilab) -Updated on 2023.08.23 DI-engine-v0.4.9 +Updated on 2023.12.05 DI-engine-v0.5.0 ## Introduction to DI-engine diff --git a/conda/meta.yaml b/conda/meta.yaml index 0caf06dc37..0dbea5284a 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -1,7 +1,7 @@ {% set data = load_setup_py_data() %} package: name: di-engine - version: v0.4.9 + version: v0.5.0 source: path: .. diff --git a/ding/__init__.py b/ding/__init__.py index 3aeb5f46cb..52583dc3c0 100644 --- a/ding/__init__.py +++ b/ding/__init__.py @@ -1,7 +1,7 @@ import os __TITLE__ = 'DI-engine' -__VERSION__ = 'v0.4.9' +__VERSION__ = 'v0.5.0' __DESCRIPTION__ = 'Decision AI Engine' __AUTHOR__ = "OpenDILab Contributors" __AUTHOR_EMAIL__ = "opendilab@pjlab.org.cn"