-
Notifications
You must be signed in to change notification settings - Fork 373
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change test for mdqn from asterix to cartpole because of platform tes…
…t failed
- Loading branch information
Showing
4 changed files
with
64 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
58 changes: 58 additions & 0 deletions
58
dizoo/classic_control/cartpole/config/cartpole_mdqn_config.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
from easydict import EasyDict | ||
|
||
cartpole_mdqn_config = dict( | ||
exp_name='cartpole_mdqn_seed0', | ||
env=dict( | ||
collector_env_num=8, | ||
evaluator_env_num=5, | ||
n_evaluator_episode=5, | ||
stop_value=195, | ||
), | ||
policy=dict( | ||
cuda=False, | ||
model=dict( | ||
obs_shape=4, | ||
action_shape=2, | ||
encoder_hidden_size_list=[128, 128, 64], | ||
dueling=True, | ||
), | ||
nstep=1, | ||
discount_factor=0.97, | ||
entropy_tau=0.03, | ||
m_alpha=0.9, | ||
learn=dict( | ||
update_per_collect=5, | ||
batch_size=64, | ||
learning_rate=0.001, | ||
), | ||
collect=dict(n_sample=8), | ||
eval=dict(evaluator=dict(eval_freq=40, )), | ||
other=dict( | ||
eps=dict( | ||
type='exp', | ||
start=0.95, | ||
end=0.1, | ||
decay=10000, | ||
), | ||
replay_buffer=dict(replay_buffer_size=20000, ), | ||
), | ||
), | ||
) | ||
cartpole_mdqn_config = EasyDict(cartpole_mdqn_config) | ||
main_config = cartpole_mdqn_config | ||
cartpole_mdqn_create_config = dict( | ||
env=dict( | ||
type='cartpole', | ||
import_names=['dizoo.classic_control.cartpole.envs.cartpole_env'], | ||
), | ||
env_manager=dict(type='base'), | ||
policy=dict(type='mdqn'), | ||
replay_buffer=dict(type='deque', import_names=['ding.data.buffer.deque_buffer_wrapper']), | ||
) | ||
cartpole_mdqn_create_config = EasyDict(cartpole_mdqn_create_config) | ||
create_config = cartpole_mdqn_create_config | ||
|
||
if __name__ == "__main__": | ||
# or you can enter `ding -m serial -c cartpole_dqn_config.py -s 0` | ||
from ding.entry import serial_pipeline | ||
serial_pipeline((main_config, create_config), seed=0, is_dynamic_seed=False) |