Views
No views yet
1from stable_baselines3 import PPO
2from huggingface_sb3 import load_from_hub
3
4repo_id = "ccattomio/PPO-LunarLander-v2"
5filename = "PPO-LunarLander-v2.zip"
6
7checkpoint = load_from_hub(repo_id, filename)
8model = PPO.load(checkpoint)