Skip to content

Commit 7eb342c

Browse files
committed
v0.4.8
1 parent 42c9a23 commit 7eb342c

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

CHANGELOG

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
2023.05.25(v0.4.8)
2+
- env: fix gym hybrid reward dtype bug (#664)
3+
- env: fix atari env id noframeskip bug (#655)
4+
- env: fix typo in gym any_trading env (#654)
5+
- env: update td3bc d4rl config (#659)
6+
- env: polish bipedalwalker config
7+
- algo: add EDAC offline RL algorithm (#639)
8+
- algo: add LN and GN norm_type support in ResBlock (#660)
9+
- algo: add normal value norm baseline for PPOF (#658)
10+
- algo: polish last layer init/norm in MLP (#650)
11+
- algo: polish TD3 monitor variable
12+
- feature: add MAPPO/MASAC task example (#661)
13+
- feature: add PPO example for complex env observation (#644)
14+
- feature: add barrier middleware (#570)
15+
- fix: abnormal collector log and add record_random_collect option (#662)
16+
- fix: to_item compatibility bug (#646)
17+
- fix: trainer dtype transform compatibility bug
18+
- fix: pettingzoo 1.23.0 compatibility bug
19+
- fix: ensemble head unittest bug
20+
- style: fix incompatible gym version bug in Dockerfile.env (#653)
21+
- style: add more algorithm docs
22+
123
2023.04.11(v0.4.7)
224
- env: add dmc2gym env support and baseline (#451)
325
- env: update pettingzoo to the latest version (#597)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
[![Contributors](https://img.shields.io/github/contributors/opendilab/DI-engine)](https://github.com/opendilab/DI-engine/graphs/contributors)
3333
[![GitHub license](https://img.shields.io/github/license/opendilab/DI-engine)](https://github.com/opendilab/DI-engine/blob/master/LICENSE)
3434

35-
Updated on 2023.04.11 DI-engine-v0.4.7
35+
Updated on 2023.05.25 DI-engine-v0.4.8
3636

3737

3838
## Introduction to DI-engine

conda/meta.yaml

+1-1
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.7
4+
version: v0.4.8
55

66
source:
77
path: ..

ding/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22

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

0 commit comments

Comments
 (0)