Views
No views yet
1# install huggingface_ding
2git clone https://github.com/opendilab/huggingface_ding.git
3pip3 install -e ./huggingface_ding/
4# install environment dependencies if needed
5
6pip3 install DI-engine[common_env,video]
7pip3 install LightZero
81# running with trained model
2python3 -u run.py1from lzero.agent import MuZeroAgent
2from ding.config import Config
3from easydict import EasyDict
4import torch
5
6# Pull model from files which are git cloned from huggingface
7policy_state_dict = torch.load("pytorch_model.bin", map_location=torch.device("cpu"))
8cfg = EasyDict(Config.file_to_dict("policy_config.py").cfg_dict)
9# Instantiate the agent
10agent = MuZeroAgent(
11 env_id="Pendulum-v1", exp_name="Pendulum-v1-MuZero", cfg=cfg.exp_config, policy_state_dict=policy_state_dict
12)
13# Continue training
14agent.train(step=5000)
15# Render the new agent performance
16agent.deploy(enable_save_replay=True)
171# running with trained model
2python3 -u run.py1from lzero.agent import MuZeroAgent
2from huggingface_ding import pull_model_from_hub
3
4# Pull model from Hugggingface hub
5policy_state_dict, cfg = pull_model_from_hub(repo_id="OpenDILabCommunity/Pendulum-v1-MuZero")
6# Instantiate the agent
7agent = MuZeroAgent(
8 env_id="Pendulum-v1", exp_name="Pendulum-v1-MuZero", cfg=cfg.exp_config, policy_state_dict=policy_state_dict
9)
10# Continue training
11agent.train(step=5000)
12# Render the new agent performance
13agent.deploy(enable_save_replay=True)
141#Training Your Own Agent
2python3 -u train.py1from lzero.agent import MuZeroAgent
2from huggingface_ding import push_model_to_hub
3
4# Instantiate the agent
5agent = MuZeroAgent(env_id="Pendulum-v1", exp_name="Pendulum-v1-MuZero")
6# Train the agent
7return_ = agent.train(step=int(500000))
8# Push model to huggingface hub
9push_model_to_hub(
10 agent=agent.best,
11 env_name="OpenAI/Gym/Box2d",
12 task_name="Pendulum-v1",
13 algo_name="MuZero",
14 github_repo_url="https://github.com/opendilab/LightZero",
15 github_doc_model_url=None,
16 github_doc_env_url=None,
17 installation_guide='''
18pip3 install DI-engine[common_env,video]
19pip3 install LightZero
20''',
21 usage_file_by_git_clone="./muzero/pendulum_muzero_deploy.py",
22 usage_file_by_huggingface_ding="./muzero/pendulum_muzero_download.py",
23 train_file="./muzero/pendulum_muzero.py",
24 repo_id="OpenDILabCommunity/Pendulum-v1-MuZero",
25 platform_info="[LightZero](https://github.com/opendilab/LightZero) and [DI-engine](https://github.com/opendilab/di-engine)",
26 model_description="**LightZero** is an efficient, easy-to-understand open-source toolkit that merges Monte Carlo Tree Search (MCTS) with Deep Reinforcement Learning (RL), simplifying their integration for developers and researchers. More details are in paper [LightZero: A Unified Benchmark for Monte Carlo Tree Search in General Sequential Decision Scenarios](https://huggingface.co/papers/2310.08348).",
27 create_repo=True
28)
291exp_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}
115