zjowowen commited on
Commit
42dd50a
1 Parent(s): 1589da4

Upload policy_config.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. policy_config.py +114 -0
policy_config.py ADDED
@@ -0,0 +1,114 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ exp_config = {
2
+ 'main_config': {
3
+ 'exp_name': 'Pendulum-v1-MuZero',
4
+ 'seed': 0,
5
+ 'env': {
6
+ 'env_id': 'Pendulum-v1',
7
+ 'continuous': False,
8
+ 'manually_discretization': True,
9
+ 'each_dim_disc_size': 11,
10
+ 'collector_env_num': 8,
11
+ 'evaluator_env_num': 3,
12
+ 'n_evaluator_episode': 3,
13
+ 'manager': {
14
+ 'shared_memory': False
15
+ }
16
+ },
17
+ 'policy': {
18
+ 'on_policy': False,
19
+ 'cuda': True,
20
+ 'multi_gpu': False,
21
+ 'bp_update_sync': True,
22
+ 'traj_len_inf': False,
23
+ 'model': {
24
+ 'observation_shape': 3,
25
+ 'action_space_size': 11,
26
+ 'model_type': 'mlp',
27
+ 'lstm_hidden_size': 128,
28
+ 'latent_state_dim': 128,
29
+ 'self_supervised_learning_loss': True
30
+ },
31
+ 'use_rnd_model': False,
32
+ 'sampled_algo': False,
33
+ 'gumbel_algo': False,
34
+ 'mcts_ctree': True,
35
+ 'collector_env_num': 8,
36
+ 'evaluator_env_num': 3,
37
+ 'env_type': 'not_board_games',
38
+ 'action_type': 'fixed_action_space',
39
+ 'battle_mode': 'play_with_bot_mode',
40
+ 'monitor_extra_statistics': True,
41
+ 'game_segment_length': 50,
42
+ 'transform2string': False,
43
+ 'gray_scale': False,
44
+ 'use_augmentation': False,
45
+ 'augmentation': ['shift', 'intensity'],
46
+ 'ignore_done': False,
47
+ 'update_per_collect': 200,
48
+ 'model_update_ratio': 0.1,
49
+ 'batch_size': 256,
50
+ 'optim_type': 'Adam',
51
+ 'learning_rate': 0.003,
52
+ 'target_update_freq': 100,
53
+ 'target_update_freq_for_intrinsic_reward': 1000,
54
+ 'weight_decay': 0.0001,
55
+ 'momentum': 0.9,
56
+ 'grad_clip_value': 10,
57
+ 'n_episode': 8,
58
+ 'num_simulations': 50,
59
+ 'discount_factor': 0.997,
60
+ 'td_steps': 5,
61
+ 'num_unroll_steps': 5,
62
+ 'reward_loss_weight': 1,
63
+ 'value_loss_weight': 0.25,
64
+ 'policy_loss_weight': 1,
65
+ 'policy_entropy_loss_weight': 0,
66
+ 'ssl_loss_weight': 2,
67
+ 'lr_piecewise_constant_decay': False,
68
+ 'threshold_training_steps_for_final_lr': 50000,
69
+ 'manual_temperature_decay': False,
70
+ 'threshold_training_steps_for_final_temperature': 100000,
71
+ 'fixed_temperature_value': 0.25,
72
+ 'use_ture_chance_label_in_chance_encoder': False,
73
+ 'use_priority': True,
74
+ 'priority_prob_alpha': 0.6,
75
+ 'priority_prob_beta': 0.4,
76
+ 'root_dirichlet_alpha': 0.3,
77
+ 'root_noise_weight': 0.25,
78
+ 'random_collect_episode_num': 0,
79
+ 'eps': {
80
+ 'eps_greedy_exploration_in_collect': False,
81
+ 'type': 'linear',
82
+ 'start': 1.0,
83
+ 'end': 0.05,
84
+ 'decay': 100000
85
+ },
86
+ 'cfg_type': 'MuZeroPolicyDict',
87
+ 'reanalyze_ratio': 0,
88
+ 'eval_freq': 2000,
89
+ 'replay_buffer_size': 1000000
90
+ },
91
+ 'wandb_logger': {
92
+ 'gradient_logger': False,
93
+ 'video_logger': False,
94
+ 'plot_logger': False,
95
+ 'action_logger': False,
96
+ 'return_logger': False
97
+ }
98
+ },
99
+ 'create_config': {
100
+ 'env': {
101
+ 'type':
102
+ 'pendulum_lightzero',
103
+ 'import_names':
104
+ ['zoo.classic_control.pendulum.envs.pendulum_lightzero_env']
105
+ },
106
+ 'env_manager': {
107
+ 'type': 'subprocess'
108
+ },
109
+ 'policy': {
110
+ 'type': 'muzero',
111
+ 'import_names': ['lzero.policy.muzero']
112
+ }
113
+ }
114
+ }