araffin / ppo-LunarLander-v2

huggingface.co
Total runs: 28
24-hour runs: 0
7-day runs: -1
30-day runs: 26
Model's Last Updated: October 11 2022
reinforcement-learning

Introduction of ppo-LunarLander-v2

Model Details of ppo-LunarLander-v2

PPO Agent playing LunarLander-v2

This is a trained model of a PPO agent playing LunarLander-v2 using the stable-baselines3 library .

Usage (with Stable-baselines3)
from huggingface_sb3 import load_from_hub
from stable_baselines3 import PPO
from stable_baselines3.common.env_util import make_vec_env
from stable_baselines3.common.evaluation import evaluate_policy

# Download checkpoint
checkpoint = load_from_hub("araffin/ppo-LunarLander-v2", "ppo-LunarLander-v2.zip")
# Load the model
model = PPO.load(checkpoint)

env = make_vec_env("LunarLander-v2", n_envs=1)

# Evaluate
print("Evaluating model")
mean_reward, std_reward = evaluate_policy(
    model,
    env,
    n_eval_episodes=20,
    deterministic=True,
)
print(f"Mean reward = {mean_reward:.2f} +/- {std_reward:.2f}")

# Start a new episode
obs = env.reset()

try:
    while True:
        action, _states = model.predict(obs, deterministic=True)
        obs, rewards, dones, info = env.step(action)
        env.render()
except KeyboardInterrupt:
    pass
Training code (with SB3)
from stable_baselines3 import PPO
from stable_baselines3.common.env_util import make_vec_env
from stable_baselines3.common.callbacks import EvalCallback

# Create the environment
env_id = "LunarLander-v2"
n_envs = 16
env = make_vec_env(env_id, n_envs=n_envs)

# Create the evaluation envs
eval_envs = make_vec_env(env_id, n_envs=5)

# Adjust evaluation interval depending on the number of envs
eval_freq = int(1e5)
eval_freq = max(eval_freq // n_envs, 1)

# Create evaluation callback to save best model
# and monitor agent performance
eval_callback = EvalCallback(
    eval_envs,
    best_model_save_path="./logs/",
    eval_freq=eval_freq,
    n_eval_episodes=10,
)

# Instantiate the agent
# Hyperparameters from https://github.com/DLR-RM/rl-baselines3-zoo
model = PPO(
    "MlpPolicy",
    env,
    n_steps=1024,
    batch_size=64,
    gae_lambda=0.98,
    gamma=0.999,
    n_epochs=4,
    ent_coef=0.01,
    verbose=1,
)

# Train the agent (you can kill it before using ctrl+c)
try:
    model.learn(total_timesteps=int(5e6), callback=eval_callback)
except KeyboardInterrupt:
    pass

# Load best model
model = PPO.load("logs/best_model.zip")

Runs of araffin ppo-LunarLander-v2 on huggingface.co

28
Total runs
0
24-hour runs
0
3-day runs
-1
7-day runs
26
30-day runs

More Information About ppo-LunarLander-v2 huggingface.co Model

ppo-LunarLander-v2 huggingface.co

ppo-LunarLander-v2 huggingface.co is an AI model on huggingface.co that provides ppo-LunarLander-v2's model effect (), which can be used instantly with this araffin ppo-LunarLander-v2 model. huggingface.co supports a free trial of the ppo-LunarLander-v2 model, and also provides paid use of the ppo-LunarLander-v2. Support call ppo-LunarLander-v2 model through api, including Node.js, Python, http.

ppo-LunarLander-v2 huggingface.co Url

https://huggingface.co/araffin/ppo-LunarLander-v2

araffin ppo-LunarLander-v2 online free

ppo-LunarLander-v2 huggingface.co is an online trial and call api platform, which integrates ppo-LunarLander-v2's modeling effects, including api services, and provides a free online trial of ppo-LunarLander-v2, you can try ppo-LunarLander-v2 online for free by clicking the link below.

araffin ppo-LunarLander-v2 online free url in huggingface.co:

https://huggingface.co/araffin/ppo-LunarLander-v2

ppo-LunarLander-v2 install

ppo-LunarLander-v2 is an open source model from GitHub that offers a free installation service, and any user can find ppo-LunarLander-v2 on GitHub to install. At the same time, huggingface.co provides the effect of ppo-LunarLander-v2 install, users can directly use ppo-LunarLander-v2 installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

ppo-LunarLander-v2 install url in huggingface.co:

https://huggingface.co/araffin/ppo-LunarLander-v2

Url of ppo-LunarLander-v2

ppo-LunarLander-v2 huggingface.co Url

Provider of ppo-LunarLander-v2 huggingface.co

araffin
ORGANIZATIONS

Other API from araffin