Skip to content

Commit 3059479

Browse files
committed
v0.4.9
1 parent e9d8194 commit 3059479

File tree

4 files changed

+32
-9
lines changed

4 files changed

+32
-9
lines changed

CHANGELOG

+28
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
2023.08.23(v0.4.9)
2+
- env: add cliffwalking env (#677)
3+
- env: add lunarlander ppo config and example
4+
- algo: add BCQ offline RL algorithm (#640)
5+
- algo: add Dreamerv3 model-based RL algorithm (#652)
6+
- algo: add tensor stream merge network tools (#673)
7+
- algo: add scatter connection model (#680)
8+
- algo: refactor Decision Transformer in new pipeline and support img input and discrete output (#693)
9+
- algo: add three variants of Bilinear classes and a FiLM class (#703)
10+
- feature: polish offpolicy RL multi-gpu DDP training (#679)
11+
- feature: add middleware for Ape-X distributed pipeline (#696)
12+
- feature: add example for evaluating trained DQN (#706)
13+
- fix: to_ndarray fails to assign dtype for scalars (#708)
14+
- fix: evaluator return episode_info compatibility bug
15+
- fix: cql example entry wrong config bug
16+
- fix: enable_save_figure env interface
17+
- fix: redundant env info bug in evaluator
18+
- fix: to_item unittest bug
19+
- style: polish and simplify requirements (#672)
20+
- style: add Hugging Face Model Zoo badge (#674)
21+
- style: add openxlab Model Zoo badge (#675)
22+
- style: fix py37 macos ci bug and update default pytorch from 1.7.1 to 1.12.1 (#678)
23+
- style: fix mujoco-py compatibility issue for cython<3 (#711)
24+
- style: fix type spell error (#704)
25+
- style: fix pypi release actions ubuntu 18.04 bug
26+
- style: update contact information (e.g. wechat)
27+
- style: polish algorithm doc tables
28+
129
2023.05.25(v0.4.8)
230
- env: fix gym hybrid reward dtype bug (#664)
331
- env: fix atari env id noframeskip bug (#655)

README.md

+2-7
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.05.25 DI-engine-v0.4.8
38+
Updated on 2023.08.23 DI-engine-v0.4.9
3939

4040

4141
## Introduction to DI-engine
@@ -167,11 +167,6 @@ The detailed documentation are hosted on [doc](https://di-engine-docs.readthedoc
167167

168168
[测试/部署 **强化学习策略** 的样例](https://github.com/opendilab/DI-engine/blob/main/dizoo/classic_control/cartpole/entry/cartpole_c51_deploy.py)
169169

170-
**Bonus: Train RL agent in one line code:**
171-
172-
```bash
173-
ding -m serial -e cartpole -p dqn -s 0
174-
```
175170

176171
## Feature
177172
### Algorithm Versatility
@@ -438,7 +433,7 @@ DI-engine utilizes [TreeTensor](https://github.com/opendilab/DI-treetensor) as t
438433
- Discuss on DI-engine [slack communication channel](https://join.slack.com/t/opendilab/shared_invite/zt-v9tmv4fp-nUBAQEH1_Kuyu_q4plBssQ)
439434
- Discuss on DI-engine's WeChat group (i.e. add us on WeChat: ding314assist)
440435

441-
![WeChat](https://github.com/opendilab/DI-engine/blob/main/assets/wechat.jpeg){:height="50%" width="50%"}
436+
<img src=https://github.com/opendilab/DI-engine/blob/main/assets/wechat.jpeg width=35% />
442437
- Contact our email (opendilab@pjlab.org.cn)
443438
- Contributes to our future plan [Roadmap](https://github.com/opendilab/DI-engine/issues/548)
444439

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.8
4+
version: v0.4.9
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.8'
4+
__VERSION__ = 'v0.4.9'
55
__DESCRIPTION__ = 'Decision AI Engine'
66
__AUTHOR__ = "OpenDILab Contributors"
77
__AUTHOR_EMAIL__ = "[email protected]"

0 commit comments

Comments
 (0)