This is a trained model of a
PPO agent playing
LunarLander-v2
using the
stable-baselines3 library.
1from stable_baselines3 import ...
2from huggingface_sb3 import load_from_hub
3
4# Load the pre-trained PPO agent for LunarLander-v2
5model = load_from_hub("username/stable-baselines3-lunarlander-ppo")
Once you have loaded the model, you can use it to interact with the LunarLander-v2 environment and observe its performance or fine-tune it for your specific use case.
Feel free to adapt and extend this code snippet to suit your reinforcement learning needs with the stable-baselines3 library and this pre-trained PPO agent.