File tree 6 files changed +25
-4
lines changed
6 files changed +25
-4
lines changed Original file line number Diff line number Diff line change 5
5
ding/utils/linklink_dist_helper.py
6
6
ding/utils/pytorch_ddp_dist_helper.py
7
7
ding/utils/k8s_helper.py
8
+ ding/utils/tests/test_k8s_launcher.py
8
9
ding/utils/time_helper_cuda.py
9
10
ding/utils/time_helper_base.py
10
11
ding/utils/data/tests/test_dataloader.py
Original file line number Diff line number Diff line change
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
+
1
21
2022.10.31(v0.4.4)
2
22
- env: add modified gym-hybrid including moving, sliding and hardmove (#505) (#519)
3
23
- env: add evogym support (#495) (#527)
Original file line number Diff line number Diff line change 32
32
[ ![ Contributors] ( https://img.shields.io/github/contributors/opendilab/DI-engine )] ( https://github.com/opendilab/DI-engine/graphs/contributors )
33
33
[ ![ GitHub license] ( https://img.shields.io/github/license/opendilab/DI-engine )] ( https://github.com/opendilab/DI-engine/blob/master/LICENSE )
34
34
35
- Updated on 2022.10.31 DI-engine-v0.4.4
35
+ Updated on 2022.12.13 DI-engine-v0.4.5
36
36
37
37
38
38
## Introduction to DI-engine
Original file line number Diff line number Diff line change 1
1
{% set data = load_setup_py_data() %}
2
2
package :
3
3
name : di-engine
4
- version : v0.4.4
4
+ version : v0.4.5
5
5
6
6
source :
7
7
path : ..
Original file line number Diff line number Diff line change 1
1
import os
2
2
3
3
__TITLE__ = 'DI-engine'
4
- __VERSION__ = 'v0.4.4 '
4
+ __VERSION__ = 'v0.4.5 '
5
5
__DESCRIPTION__ = 'Decision AI Engine'
6
6
__AUTHOR__ = "OpenDILab Contributors"
7
7
__AUTHOR_EMAIL__ = "[email protected] "
Original file line number Diff line number Diff line change 9
9
except ImportError :
10
10
_test_mark = pytest .mark .ignore
11
11
else :
12
- _test_mark = pytest .mark .unittest
12
+ _test_mark = pytest .mark .envtest
13
13
14
14
15
15
@_test_mark
You can’t perform that action at this time.
0 commit comments