Skip to content

Commit c50379c

Browse files
committed
v0.4.5
1 parent 702a10f commit c50379c

File tree

6 files changed

+25
-4
lines changed

6 files changed

+25
-4
lines changed

.coveragerc

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ omit =
55
ding/utils/linklink_dist_helper.py
66
ding/utils/pytorch_ddp_dist_helper.py
77
ding/utils/k8s_helper.py
8+
ding/utils/tests/test_k8s_launcher.py
89
ding/utils/time_helper_cuda.py
910
ding/utils/time_helper_base.py
1011
ding/utils/data/tests/test_dataloader.py

CHANGELOG

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
2022.12.13(v0.4.5)
2+
- env: add beergame supply chain optimization env (#512)
3+
- env: add env gym_pybullet_drones (#526)
4+
- env: rename eval reward to episode return (#536)
5+
- algo: add policy gradient algo implementation (#544)
6+
- algo: add MADDPG algo implementation (#550)
7+
- algo: add IMPALA continuous algo implementation (#551)
8+
- algo: add MADQN algo implementation (#540)
9+
- feature: add new task IMPALA-type distributed training scheme (#321)
10+
- feature: add load and save method for replaybuffer (#542)
11+
- feature: add more DingEnvWrapper example (#525)
12+
- feature: add evaluator more info viz support (#538)
13+
- feature: add trackback log for subprocess env manager (#534)
14+
- fix: halfcheetah td3 config file (#537)
15+
- fix: mujoco action_clip args compatibility bug (#535)
16+
- fix: atari a2c config entry bug
17+
- fix: drex unittest compatibility bug
18+
- style: add Roadmap issue of DI-engine (#548)
19+
- style: update related project link and new env doc
20+
121
2022.10.31(v0.4.4)
222
- env: add modified gym-hybrid including moving, sliding and hardmove (#505) (#519)
323
- env: add evogym support (#495) (#527)

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 2022.10.31 DI-engine-v0.4.4
35+
Updated on 2022.12.13 DI-engine-v0.4.5
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.4
4+
version: v0.4.5
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.4'
4+
__VERSION__ = 'v0.4.5'
55
__DESCRIPTION__ = 'Decision AI Engine'
66
__AUTHOR__ = "OpenDILab Contributors"
77
__AUTHOR_EMAIL__ = "[email protected]"

ding/utils/tests/test_k8s_launcher.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
except ImportError:
1010
_test_mark = pytest.mark.ignore
1111
else:
12-
_test_mark = pytest.mark.unittest
12+
_test_mark = pytest.mark.envtest
1313

1414

1515
@_test_mark

0 commit comments

Comments
 (0)