Skip to content

Commit 4f8f82a

Browse files
committed
v0.5.0
1 parent 043001b commit 4f8f82a

File tree

4 files changed

+26
-3
lines changed

4 files changed

+26
-3
lines changed

CHANGELOG

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
2023.11.06(v0.5.0)
2+
- env: add tabmwp env (#667)
3+
- env: polish anytrading env issues (#731)
4+
- algo: add PromptPG algorithm (#667)
5+
- algo: add Plan Diffuser algorithm (#700)
6+
- algo: add new pipeline implementation of IMPALA algorithm (#713)
7+
- algo: add dropout layers to DQN-style algorithms (#712)
8+
- feature: add new pipeline agent for sac/ddpg/a2c/ppo and Hugging Face support (#637) (#730) (#737)
9+
- feature: add more unittest cases for model (#728)
10+
- feature: add collector logging in new pipeline (#735)
11+
- fix: logger middleware problems (#715)
12+
- fix: ppo parallel bug (#709)
13+
- fix: typo in optimizer_helper.py (#726)
14+
- fix: mlp dropout if condition bug
15+
- fix: drex collecting data unittest bugs
16+
- style: polish env manager/wrapper comments and API doc (#742)
17+
- style: polish model comments and API doc (#722) (#729) (#734) (#736) (#741)
18+
- style: polish policy comments and API doc (#732)
19+
- style: polish rl_utils comments and API doc (#724)
20+
- style: polish torch_utils comments and API doc (#738)
21+
- style: update README.md and Colab demo (#733)
22+
- style: update metaworld docker image
23+
124
2023.08.23(v0.4.9)
225
- env: add cliffwalking env (#677)
326
- env: add lunarlander ppo config and example

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
[![Hugging Face](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Models-yellow)](https://huggingface.co/OpenDILabCommunity)
3636
[![Open in OpenXLab](https://cdn-static.openxlab.org.cn/header/openxlab_models.svg)](https://openxlab.org.cn/models?search=opendilab)
3737

38-
Updated on 2023.08.23 DI-engine-v0.4.9
38+
Updated on 2023.12.05 DI-engine-v0.5.0
3939

4040

4141
## Introduction to DI-engine

conda/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{% set data = load_setup_py_data() %}
22
package:
33
name: di-engine
4-
version: v0.4.9
4+
version: v0.5.0
55

66
source:
77
path: ..

ding/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22

33
__TITLE__ = 'DI-engine'
4-
__VERSION__ = 'v0.4.9'
4+
__VERSION__ = 'v0.5.0'
55
__DESCRIPTION__ = 'Decision AI Engine'
66
__AUTHOR__ = "OpenDILab Contributors"
77
__AUTHOR_EMAIL__ = "[email protected]"

0 commit comments

Comments
 (0)