Views
No views yet
v0
1from stable_baselines3 import PPO 2from huggingface_hub import hf_hub_download 3 4model_path = hf_hub_download(repo_id="akantox/mario-rl-model", filename="mario_ppo.zip") 5model = PPO.load(model_path)