Skip to content

Commit

Permalink
feature(pu): add atari 100k muzero configs
Browse files Browse the repository at this point in the history
  • Loading branch information
puyuan1996 committed Apr 23, 2024
1 parent dfc47e1 commit b8ae3b8
Show file tree
Hide file tree
Showing 6 changed files with 423 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lzero/model/muzero_context_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def __init__(
self.value_support_size = 1

self.action_space_size = action_space_size

print('action_space_size:', action_space_size)
assert discrete_action_encoding_type in ['one_hot', 'not_one_hot'], discrete_action_encoding_type
self.discrete_action_encoding_type = discrete_action_encoding_type
if self.discrete_action_encoding_type == 'one_hot':
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
# env_id = 'QbertNoFrameskip-v4'
# env_id = 'SeaquestNoFrameskip-v4'
# env_id = 'BoxingNoFrameskip-v4'
# env_id = 'FrostbiteNoFrameskip-v4'
# env_id = 'BreakoutNoFrameskip-v4' # TODO: eval_sample, episode_steps


Expand Down
210 changes: 210 additions & 0 deletions zoo/atari/config/atari_muzero_config_46464_stack4_context_20games.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,210 @@
from easydict import EasyDict
import torch
torch.cuda.set_device(4)

# env_id = 'AlienNoFrameskip-v4'
# env_id = 'AmidarNoFrameskip-v4'
# env_id = 'AssaultNoFrameskip-v4'
# env_id = 'AsterixNoFrameskip-v4'
# env_id = 'BankHeistNoFrameskip-v4'
# env_id = 'BattleZoneNoFrameskip-v4'
# env_id = 'ChopperCommandNoFrameskip-v4'
# env_id = 'CrazyClimberNoFrameskip-v4'
# env_id = 'DemonAttackNoFrameskip-v4'
# env_id = 'FrostbiteNoFrameskip-v4'
# env_id = 'FreewayNoFrameskip-v4'
# env_id = 'GopherNoFrameskip-v4'
# env_id = 'HeroNoFrameskip-v4'
# env_id = 'JamesbondNoFrameskip-v4'

# env_id = 'KangarooNoFrameskip-v4'
# env_id = 'KrullNoFrameskip-v4'
# env_id = 'KungFuMasterNoFrameskip-v4'

# env_id = 'PrivateEyeNoFrameskip-v4'
# env_id = 'RoadRunnerNoFrameskip-v4'

env_id = 'UpNdownNoFrameskip-v4'

update_per_collect = None # for others
if env_id == 'AlienNoFrameskip-v4':
action_space_size = 18
elif env_id == 'AmidarNoFrameskip-v4':
action_space_size = 10
elif env_id == 'AssaultNoFrameskip-v4':
action_space_size = 7
elif env_id == 'AsterixNoFrameskip-v4':
action_space_size = 9
elif env_id == 'BankHeistNoFrameskip-v4':
action_space_size = 18
elif env_id == 'BattleZoneNoFrameskip-v4':
action_space_size = 18
elif env_id == 'ChopperCommandNoFrameskip-v4':
action_space_size = 18
elif env_id == 'CrazyClimberNoFrameskip-v4':
action_space_size = 9
elif env_id == 'DemonAttackNoFrameskip-v4':
action_space_size = 6
elif env_id == 'FreewayNoFrameskip-v4':
action_space_size = 3
elif env_id == 'FrostbiteNoFrameskip-v4':
action_space_size = 18
elif env_id == 'GopherNoFrameskip-v4':
action_space_size = 8
elif env_id == 'HeroNoFrameskip-v4':
action_space_size = 18
elif env_id == 'JamesbondNoFrameskip-v4':
action_space_size = 18
elif env_id == 'KangarooNoFrameskip-v4':
action_space_size = 18
elif env_id == 'KrullNoFrameskip-v4':
action_space_size = 18
elif env_id == 'KungFuMasterNoFrameskip-v4':
action_space_size = 14
elif env_id == 'PrivateEyeNoFrameskip-v4':
action_space_size = 18
elif env_id == 'RoadRunnerNoFrameskip-v4':
action_space_size = 18
elif env_id == 'UpNdownNoFrameskip-v4':
action_space_size = 6

# ==============================================================
# begin of the most frequently changed config specified by the user
# ==============================================================
collector_env_num = 8
n_episode = 8
evaluator_env_num = 3
num_simulations = 50
model_update_ratio = 0.25
batch_size = 256
# max_env_step = int(5e5)
max_env_step = int(1e6)
reanalyze_ratio = 0.
eps_greedy_exploration_in_collect = True
num_unroll_steps = 5
context_length_init = 1
# for debug ===========
collector_env_num = 1
n_episode = 1
evaluator_env_num = 1
num_simulations = 2
update_per_collect = 2
model_update_ratio = 0.25
batch_size = 2
max_env_step = int(5e5)
reanalyze_ratio = 0.
eps_greedy_exploration_in_collect = True
num_unroll_steps = 5
context_length_init = 1
# ==============================================================
# end of the most frequently changed config specified by the user
# ==============================================================

atari_muzero_config = dict(
exp_name=f'data_paper_learn-dynamics_atari-20-games_0423/{env_id[:-14]}_muzero_stack4_H{num_unroll_steps}_initconlen{context_length_init}_simnorm-cossim_adamw1e-4_analysis_dratio0025_seed0',
# exp_name=f'data_paper_muzero_variants_0422/{env_id[:-14]}_muzero_stack4_H{num_unroll_steps}_conlen1_simnorm-cossim_adamw1e-4_seed0',
# exp_name=f'data_paper_muzero_variants_0422/{env_id[:-14]}_muzero_stack4_H{num_unroll_steps}_conlen1_simnorm-cossim_adamw1e-4_seed0',
# exp_name=f'data_paper_muzero_variants_0422/{env_id[:-14]}_muzero_stack4_H{num_unroll_steps}_conlen1_sslw2-cossim_adamw1e-4_seed0',
# exp_name=f'data_paper_muzero_variants_0422/{env_id[:-14]}_muzero_stack4_H{num_unroll_steps}_conlen1_sslw2-cossim_sgd02_seed0',
env=dict(
stop_value=int(1e6),
env_id=env_id,
observation_shape=(4, 64, 64),
frame_stack_num=4,
gray_scale=True,
collector_env_num=collector_env_num,
evaluator_env_num=evaluator_env_num,
n_evaluator_episode=evaluator_env_num,
manager=dict(shared_memory=False, ),
# TODO: debug
# collect_max_episode_steps=int(20),
# eval_max_episode_steps=int(20),
),
policy=dict(
model=dict(
observation_shape=(4, 64, 64),
image_channel=1,
frame_stack_num=4,
gray_scale=True,
action_space_size=action_space_size,
downsample=True,
self_supervised_learning_loss=True, # default is False
discrete_action_encoding_type='one_hot',
norm_type='BN',
reward_support_size=101,
value_support_size=101,
support_scale=50,
context_length_init=context_length_init, # NOTE:TODO num_unroll_steps
use_sim_norm=True,
# use_sim_norm_kl_loss=True, # TODO
use_sim_norm_kl_loss=False, # TODO
),
cuda=True,
env_type='not_board_games',
game_segment_length=400, # for collector orig
# game_segment_length=50, # for collector game_segment
random_collect_episode_num=0,
eps=dict(
eps_greedy_exploration_in_collect=eps_greedy_exploration_in_collect,
# need to dynamically adjust the number of decay steps
# according to the characteristics of the environment and the algorithm
type='linear',
start=1.,
end=0.01,
decay=int(2e4), # TODO: 20k
),
use_augmentation=True, # TODO
# use_augmentation=False,
use_priority=False,
model_update_ratio = model_update_ratio,
update_per_collect=update_per_collect,
batch_size=batch_size,
dormant_threshold=0.025,

# optim_type='SGD', # for collector orig
# lr_piecewise_constant_decay=True,
# learning_rate=0.2,

optim_type='AdamW', # for collector game_segment
lr_piecewise_constant_decay=False,
learning_rate=1e-4,

target_update_freq=100,
num_simulations=num_simulations,
reanalyze_ratio=reanalyze_ratio,
ssl_loss_weight=2, # default is 0
n_episode=n_episode,
eval_freq=int(2e3),
replay_buffer_size=int(1e6), # the size/capacity of replay_buffer, in the terms of transitions.
collector_env_num=collector_env_num,
evaluator_env_num=evaluator_env_num,
),
)
atari_muzero_config = EasyDict(atari_muzero_config)
main_config = atari_muzero_config

atari_muzero_create_config = dict(
env=dict(
type='atari_lightzero',
import_names=['zoo.atari.envs.atari_lightzero_env'],
),
env_manager=dict(type='subprocess'),
policy=dict(
type='muzero_context',
import_names=['lzero.policy.muzero_context'],
),
)
atari_muzero_create_config = EasyDict(atari_muzero_create_config)
create_config = atari_muzero_create_config

if __name__ == "__main__":
# from lzero.entry import train_muzero_context
# train_muzero_context([main_config, create_config], seed=0, max_env_step=max_env_step)

# Define a list of seeds for multiple runs
seeds = [0,1,2] # You can add more seed values here
for seed in seeds:
# Update exp_name to include the current seed
main_config.exp_name=f'data_paper_learn-dynamics_atari-20-games_0423/{env_id[:-14]}_muzero_stack4_H{num_unroll_steps}_initconlen{context_length_init}_simnorm-cossim_adamw1e-4_analysis_dratio0025_seed{seed}'
from lzero.entry import train_muzero_context
train_muzero_context([main_config, create_config], seed=seed, max_env_step=max_env_step)

0 comments on commit b8ae3b8

Please sign in to comment.