From 312f274d3c72b921239723a8ecff204f45aac51b Mon Sep 17 00:00:00 2001 From: niuyazhe Date: Fri, 3 Dec 2021 21:11:03 +0800 Subject: [PATCH] v0.2.2 --- CHANGELOG | 17 +++++++++++++++++ README.md | 2 +- ding/__init__.py | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index c2e6240..c9ac3e8 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,20 @@ +2021.12.03(v0.2.2) +- env: apple key to door treasure env (#128) +- env: add bsuite memory benchmark (#138) +- env: polish atari impala config +- algo: Guided Cost IRL algorithm (#57) +- algo: ICM exploration algorithm (#41) +- algo: MP-DQN hybrid action space algorithm (#131) +- algo: add loss statistics and polish r2d3 pong config (#126) +- feautre: add renew env mechanism in env manager and update timeout mechanism (#127) (#134) +- fix: async subprocess env manager reset bug (#137) +- fix: keepdims name bug in model wrapper +- fix: on-policy ppo value norm bug +- fix: GAE and RND unittest bug +- fix: hidden state wrapper h tensor compatiblity +- fix: naive buffer auto config create bug +- style: add supporters list + 2021.11.22(v0.2.1) - env: gym-hybrid env (#86) - env: gym-soccer (HFO) env (#94) diff --git a/README.md b/README.md index 1aa075d..0b338ea 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ [![Contributors](https://img.shields.io/github/contributors/opendilab/DI-engine)](https://github.com/opendilab/DI-engine/graphs/contributors) [![GitHub license](https://img.shields.io/github/license/opendilab/DI-engine)](https://github.com/opendilab/DI-engine/blob/master/LICENSE) -Updated on 2021.11.22 DI-engine-v0.2.1 (beta) +Updated on 2021.12.03 DI-engine-v0.2.2 (beta) ## Introduction to DI-engine (beta) diff --git a/ding/__init__.py b/ding/__init__.py index 5d8d43f..d484e03 100644 --- a/ding/__init__.py +++ b/ding/__init__.py @@ -1,7 +1,7 @@ import os __TITLE__ = 'DI-engine' -__VERSION__ = 'v0.2.1' +__VERSION__ = 'v0.2.2' __DESCRIPTION__ = 'Decision AI Engine' __AUTHOR__ = "OpenDILab Contributors" __AUTHOR_EMAIL__ = "opendilab.contact@gmail.com" -- GitLab