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