How to use from the
Use from the
stable-baselines3 library
from huggingface_sb3 import load_from_hub
checkpoint = load_from_hub(
	repo_id="Sumayyakhalid92587/tempcontrol-ppo",
	filename="{MODEL FILENAME}.zip",
)

TempControl PPO โ€” task1

Trained with Stable-Baselines3 PPO on TempControl-OpenEnv.

Load & Run

from stable_baselines3 import PPO
from tasks.task1_* import make_env
model = PPO.load("ppo_task1")
env   = make_env()
obs, _ = env.reset()
action, _ = model.predict(obs)
Downloads last month
2
Video Preview
loading