Sumayyakhalid92587 commited on
Commit
b022a38
·
verified ·
1 Parent(s): 775ca99

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +22 -0
README.md ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: stable-baselines3
3
+ tags:
4
+ - tempcontrol
5
+ - openenv
6
+ - gymnasium
7
+ - reinforcement-learning
8
+ ---
9
+
10
+ # TempControl PPO — task1
11
+
12
+ Trained with Stable-Baselines3 PPO on TempControl-OpenEnv.
13
+
14
+ ## Load & Run
15
+ ```python
16
+ from stable_baselines3 import PPO
17
+ from tasks.task1_* import make_env
18
+ model = PPO.load("ppo_task1")
19
+ env = make_env()
20
+ obs, _ = env.reset()
21
+ action, _ = model.predict(obs)
22
+ ```