Skip to content

Commit f60b377

Browse files
committed
v0.5.3
1 parent 9a6e46f commit f60b377

File tree

4 files changed

+26
-3
lines changed

4 files changed

+26
-3
lines changed

CHANGELOG

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
2024.12.23 (v0.5.3)
2+
- env: add pistonball MARL env and its unittest/example (#833)
3+
- env: update trading env (#831)
4+
- env: update ppo config for better discrete action space performance (#809)
5+
- env: remove unused config fields in MuJoCo PPO
6+
- algo: add AWR algorithm (#828)
7+
- algo: add encoder in MAVAC (#823)
8+
- algo: add HPT model architecture (#841)
9+
- algo: fix multiple model wrappers reset bug (#846)
10+
- algo: add hybrid action space support to ActionNoiseWrapper (#829)
11+
- algo: fix mappo adv compute bug (#812)
12+
- feature: add resume_training option to allow the envstep and train_iter resume seamlessly (#835)
13+
- feature: polish old/new pipeline DistributedDataParallel (DDP) implementation (#842)
14+
- feature: adapt DingEnvWrapper to gymnasium (#817)
15+
- fix: priority buffer delete bug (#844)
16+
- fix: middleware collector env reset bug (#845)
17+
- fix: fix many unittest bugs
18+
- style: downgrade pyecharts log level to warning and polish installation doc (#838)
19+
- style: polish necessary requirements
20+
- style: polish api doc details
21+
- style: polish DI-engine citation authors
22+
- style: upgrade CI macos version from 12 to 13
23+
124
2024.06.27(v0.5.2)
225
- env: add taxi env (#799) (#807)
326
- env: add ising model env (#782)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
</div>
4343
<br>
4444

45-
Updated on 2024.06.27 DI-engine-v0.5.2
45+
Updated on 2024.12.23 DI-engine-v0.5.3
4646

4747
## Introduction to DI-engine
4848

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

0 commit comments

Comments
 (0)