Reinforcement Learning
stable-baselines3
LunarLander-v3
deep-reinforcement-learning
Eval Results (legacy)
Instructions to use Sahilsea/ppo-LunarLander-v3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- stable-baselines3
How to use Sahilsea/ppo-LunarLander-v3 with stable-baselines3:
from huggingface_sb3 import load_from_hub checkpoint = load_from_hub( repo_id="Sahilsea/ppo-LunarLander-v3", filename="{MODEL FILENAME}.zip", ) - Notebooks
- Google Colab
- Kaggle
PPO Agent playing LunarLander-v3
This is a trained model of a PPO agent playing LunarLander-v3 using the stable-baselines3 library.
Usage (with Stable-baselines3)
TODO: Add your code
import gymnasium as gym
from stable_baselines3 import PPO
from huggingface_sb3 import load_from_hub
from gymnasium.wrappers import RecordVideo
from IPython.display import Video, display
import glob
import os
# 1. Download and load your checkpoint
checkpoint = load_from_hub(
repo_id="Sahilsea/ppo-LunarLander-v3",
filename="ppo-LunarLander-v3.zip",
)
model = PPO.load(checkpoint)
# 2. Set up the environment with a video recorder wrapper
video_folder = "./videos"
env = gym.make("LunarLander-v3", render_mode="rgb_array")
env = RecordVideo(env, video_folder=video_folder, episode_trigger=lambda e: True)
# 3. Run one full landing episode
obs, info = env.reset()
done = False
while not done:
action, _states = model.predict(obs, deterministic=True)
obs, reward, terminated, truncated, info = env.step(action)
done = terminated or truncated
env.close()
# 4. Display the recorded MP4 file
mp4_files = glob.glob(f"{video_folder}/*.mp4")
if mp4_files:
display(Video(mp4_files[-1], embed=True, html_attributes="controls autoplay loop"))
else:
print("No video file found.")
...
- Downloads last month
- 21
Model tree for Sahilsea/ppo-LunarLander-v3
Evaluation results
- mean_reward on LunarLander-v3self-reported230.80 +/- 13.38