metadata
language: en
license: apache-2.0
library_name: pytorch
tags:
- deep-reinforcement-learning
- reinforcement-learning
- DI-engine
- BipedalWalker-v3
benchmark_name: OpenAI/Gym/Box2d
task_name: BipedalWalker-v3
pipeline_tag: reinforcement-learning
model-index:
- name: SAC
results:
- task:
type: reinforcement-learning
name: reinforcement-learning
dataset:
name: OpenAI/Gym/Box2d-BipedalWalker-v3
type: OpenAI/Gym/Box2d-BipedalWalker-v3
metrics:
- type: mean_reward
value: 319.48 +/- 0.62
name: mean_reward
Play BipedalWalker-v3 with SAC Policy
Model Description
This is a simple SAC implementation to OpenAI/Gym/Box2d BipedalWalker-v3 using the DI-engine library and the DI-zoo.
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)
# install huggingface_ding
git clone https://github.com/opendilab/huggingface_ding.git
pip3 install -e ./huggingface_ding/
# install environment dependencies if needed
pip3 install DI-engine[common_env]
Git Clone from Huggingface and Run the Model
(Click for Details)
# running with trained model
python3 -u run.py
run.py
from ding.bonus import SACAgent
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"))
# Instantiate the agent
agent = SACAgent(
env="bipedalwalker", exp_name="BipedalWalker-v3-SAC", 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)
# running with trained model
python3 -u run.py
run.py
from ding.bonus import SACAgent
from huggingface_ding import pull_model_from_hub
# Pull model from Hugggingface hub
policy_state_dict, cfg = pull_model_from_hub(repo_id="OpenDILabCommunity/BipedalWalker-v3-SAC")
# Instantiate the agent
agent = SACAgent(
env="bipedalwalker",
exp_name="BipedalWalker-v3-SAC",
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)
#Training Your Own Agent
python3 -u train.py
train.py
from ding.bonus import SACAgent
from huggingface_ding import push_model_to_hub
# Instantiate the agent
agent = SACAgent("bipedalwalker", exp_name="BipedalWalker-v3-SAC")
# Train the agent
return_ = agent.train(step=int(200000))
# Push model to huggingface hub
push_model_to_hub(
agent=agent.best,
env_name="OpenAI/Gym/Box2d",
task_name="BipedalWalker-v3",
algo_name="SAC",
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/sac.html",
github_doc_env_url="https://di-engine-docs.readthedocs.io/en/latest/13_envs/bipedalwalker.html",
installation_guide="pip3 install DI-engine[common_env]",
usage_file_by_git_clone="./sac/bipedalwalker_sac_deploy.py",
usage_file_by_huggingface_ding="./sac/bipedalwalker_sac_download.py",
train_file="./sac/bipedalwalker_sac.py",
repo_id="OpenDILabCommunity/BipedalWalker-v3-SAC"
)
Configuration
(Click for Details)
exp_config = {
'env': {
'manager': {
'episode_num': float("inf"),
'max_retry': 1,
'retry_type': 'reset',
'auto_reset': True,
'step_timeout': None,
'reset_timeout': None,
'retry_waiting_time': 0.1,
'cfg_type': 'BaseEnvManagerDict'
},
'stop_value': 10000000000,
'n_evaluator_episode': 5,
'env_id': 'BipedalWalker-v3',
'collector_env_num': 8,
'evaluator_env_num': 5,
'act_scale': True,
'rew_clip': True
},
'policy': {
'model': {
'twin_critic': True,
'action_space': 'reparameterization',
'obs_shape': 24,
'action_shape': 4,
'actor_head_hidden_size': 128,
'critic_head_hidden_size': 128
},
'learn': {
'learner': {
'train_iterations': 1000000000,
'dataloader': {
'num_workers': 0
},
'log_policy': True,
'hook': {
'load_ckpt_before_run': '',
'log_show_after_iter': 1000,
'save_ckpt_after_iter': 10000,
'save_ckpt_after_run': True
},
'cfg_type': 'BaseLearnerDict'
},
'update_per_collect': 64,
'batch_size': 256,
'learning_rate_q': 0.0003,
'learning_rate_policy': 0.0003,
'learning_rate_alpha': 0.0003,
'target_theta': 0.005,
'discount_factor': 0.99,
'alpha': 0.2,
'auto_alpha': True,
'log_space': True,
'target_entropy': None,
'ignore_done': False,
'init_w': 0.003
},
'collect': {
'collector': {},
'n_sample': 64,
'unroll_len': 1,
'collector_logit': False
},
'eval': {
'evaluator': {
'eval_freq': 1000,
'render': {
'render_freq': -1,
'mode': 'train_iter'
},
'cfg_type': 'InteractionSerialEvaluatorDict',
'stop_value': 10000000000,
'n_episode': 5
}
},
'other': {
'replay_buffer': {
'replay_buffer_size': 300000
}
},
'on_policy': False,
'cuda': True,
'multi_gpu': False,
'bp_update_sync': True,
'traj_len_inf': False,
'type': 'sac',
'priority': False,
'priority_IS_weight': False,
'random_collect_size': 10000,
'transition_with_policy_data': True,
'multi_agent': False,
'cfg_type': 'SACPolicyDict'
},
'exp_name': 'BipedalWalker-v3-SAC',
'seed': 0,
'wandb_logger': {
'gradient_logger': True,
'video_logger': True,
'plot_logger': True,
'action_logger': True,
'return_logger': False
}
}
Training Procedure
- Weights & Biases (wandb): monitor link
Model Information
- Github Repository: repo link
- Doc: DI-engine-docs Algorithm link
- Configuration: config link
- Demo: video
- Parameters total size: 240.04 KB
- Last Update Date: 2023-05-17
Environments
- Benchmark: OpenAI/Gym/Box2d
- Task: BipedalWalker-v3
- Gym version: 0.25.1
- DI-engine version: v0.4.7
- PyTorch version: 1.7.1
- Doc: DI-engine-docs Environments link