--- language: en license: apache-2.0 library_name: pytorch tags: - deep-reinforcement-learning - reinforcement-learning - DI-engine - HalfCheetah-v3 benchmark_name: OpenAI/Gym/MuJoCo task_name: HalfCheetah-v3 pipeline_tag: reinforcement-learning model-index: - name: PPO results: - task: type: reinforcement-learning name: reinforcement-learning dataset: name: OpenAI/Gym/MuJoCo-HalfCheetah-v3 type: OpenAI/Gym/MuJoCo-HalfCheetah-v3 metrics: - type: mean_reward value: 5106.94 +/- 1455.5 name: mean_reward --- # Play **HalfCheetah-v3** with **PPO** Policy ## Model Description This is a simple **PPO** implementation to OpenAI/Gym/MuJoCo **HalfCheetah-v3** using the [DI-engine library](https://github.com/opendilab/di-engine) and the [DI-zoo](https://github.com/opendilab/DI-engine/tree/main/dizoo). **DI-engine** is a python library for solving general decision intelligence problems, which is based on implementations of reinforcement learning framework using PyTorch or JAX. This library aims to standardize the reinforcement learning framework across different algorithms, benchmarks, environments, and to support both academic researches and prototype applications. Besides, self-customized training pipelines and applications are supported by reusing different abstraction levels of DI-engine reinforcement learning framework. ## Model Usage ### Install the Dependencies
(Click for Details) ```shell # install huggingface_ding git clone https://github.com/opendilab/huggingface_ding.git pip3 install -e ./huggingface_ding/ # install environment dependencies if needed sudo apt update -y && sudo apt install -y build-essential libgl1-mesa-dev libgl1-mesa-glx libglew-dev libosmesa6-dev libglfw3 libglfw3-dev libsdl2-dev libsdl2-image-dev libglm-dev libfreetype6-dev patchelf mkdir -p ~/.mujoco wget https://mujoco.org/download/mujoco210-linux-x86_64.tar.gz -O mujoco.tar.gz tar -xf mujoco.tar.gz -C ~/.mujoco echo "export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:~/.mujoco/mjpro210/bin:~/.mujoco/mujoco210/bin" >> ~/.bashrc export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:~/.mujoco/mjpro210/bin:~/.mujoco/mujoco210/bin pip3 install "cython<3" pip3 install DI-engine[common_env,video] ```
### Git Clone from Huggingface and Run the Model
(Click for Details) ```shell # running with trained model python3 -u run.py ``` **run.py** ```python from ding.bonus import PPOF from ding.config import Config from easydict import EasyDict import torch # Pull model from files which are git cloned from huggingface policy_state_dict = torch.load("pytorch_model.bin", map_location=torch.device("cpu")) cfg = EasyDict(Config.file_to_dict("policy_config.py").cfg_dict) # Instantiate the agent agent = PPOF(env_id="HalfCheetah-v3", exp_name="HalfCheetah-v3-PPO", cfg=cfg.exp_config, policy_state_dict=policy_state_dict) # Continue training agent.train(step=5000) # Render the new agent performance agent.deploy(enable_save_replay=True) ```
### Run Model by Using Huggingface_ding
(Click for Details) ```shell # running with trained model python3 -u run.py ``` **run.py** ```python from ding.bonus import PPOF from huggingface_ding import pull_model_from_hub # Pull model from Hugggingface hub policy_state_dict, cfg = pull_model_from_hub(repo_id="OpenDILabCommunity/HalfCheetah-v3-PPO") # Instantiate the agent agent = PPOF(env_id="HalfCheetah-v3", exp_name="HalfCheetah-v3-PPO", cfg=cfg.exp_config, policy_state_dict=policy_state_dict) # Continue training agent.train(step=5000) # Render the new agent performance agent.deploy(enable_save_replay=True) ```
## Model Training ### Train the Model and Push to Huggingface_hub
(Click for Details) ```shell #Training Your Own Agent python3 -u train.py ``` **train.py** ```python from ding.bonus import PPOF from huggingface_ding import push_model_to_hub # Instantiate the agent agent = PPOF(env_id="HalfCheetah-v3", exp_name="HalfCheetah-v3-PPO") # Train the agent return_ = agent.train(step=int(5000000)) # Push model to huggingface hub push_model_to_hub( agent=agent.best, env_name="OpenAI/Gym/MuJoCo", task_name="HalfCheetah-v3", algo_name="PPO", wandb_url=return_.wandb_url, github_repo_url="https://github.com/opendilab/DI-engine", github_doc_model_url="https://di-engine-docs.readthedocs.io/en/latest/12_policies/ppo.html", github_doc_env_url="https://di-engine-docs.readthedocs.io/en/latest/13_envs/mujoco.html", installation_guide=''' sudo apt update -y \ && sudo apt install -y \ build-essential \ libgl1-mesa-dev \ libgl1-mesa-glx \ libglew-dev \ libosmesa6-dev \ libglfw3 \ libglfw3-dev \ libsdl2-dev \ libsdl2-image-dev \ libglm-dev \ libfreetype6-dev \ patchelf mkdir -p ~/.mujoco wget https://mujoco.org/download/mujoco210-linux-x86_64.tar.gz -O mujoco.tar.gz tar -xf mujoco.tar.gz -C ~/.mujoco echo "export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:~/.mujoco/mjpro210/bin:~/.mujoco/mujoco210/bin" >> ~/.bashrc export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:~/.mujoco/mjpro210/bin:~/.mujoco/mujoco210/bin pip3 install "cython<3" pip3 install DI-engine[common_env,video] ''', usage_file_by_git_clone="./ppo/halfcheetah_ppo_deploy.py", usage_file_by_huggingface_ding="./ppo/halfcheetah_ppo_download.py", train_file="./ppo/halfcheetah_ppo.py", repo_id="OpenDILabCommunity/HalfCheetah-v3-PPO", create_repo=False ) ```
**Configuration**
(Click for Details) ```python exp_config = { 'type': 'ppo', 'on_policy': True, 'cuda': True, 'action_space': 'continuous', 'discount_factor': 0.99, 'gae_lambda': 0.95, 'epoch_per_collect': 10, 'batch_size': 320, 'learning_rate': 0.0003, 'lr_scheduler': None, 'weight_decay': 0, 'value_weight': 0.5, 'entropy_weight': 0.01, 'clip_ratio': 0.2, 'adv_norm': True, 'value_norm': 'baseline', 'ppo_param_init': True, 'grad_norm': 0.5, 'n_sample': 3200, 'unroll_len': 1, 'deterministic_eval': True, 'model': {}, 'cfg_type': 'PPOFPolicyDict', 'env_id': 'HalfCheetah-v3', 'exp_name': 'HalfCheetah-v3-PPO' } ```
**Training Procedure** - **Weights & Biases (wandb):** [monitor link](https://wandb.ai/zjowowen/HalfCheetah-v3-PPO) ## Model Information - **Github Repository:** [repo link](https://github.com/opendilab/DI-engine) - **Doc**: [DI-engine-docs Algorithm link](https://di-engine-docs.readthedocs.io/en/latest/12_policies/ppo.html) - **Configuration:** [config link](https://huggingface.co/OpenDILabCommunity/HalfCheetah-v3-PPO/blob/main/policy_config.py) - **Demo:** [video](https://huggingface.co/OpenDILabCommunity/HalfCheetah-v3-PPO/blob/main/replay.mp4) - **Parameters total size:** 385.85 KB - **Last Update Date:** 2023-10-07 ## Environments - **Benchmark:** OpenAI/Gym/MuJoCo - **Task:** HalfCheetah-v3 - **Gym version:** 0.25.1 - **DI-engine version:** v0.4.9 - **PyTorch version:** 2.0.1+cu117 - **Doc**: [DI-engine-docs Environments link](https://di-engine-docs.readthedocs.io/en/latest/13_envs/mujoco.html)