jren123 commited on
Commit
35b72bf
·
verified ·
1 Parent(s): 44ec4d2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -3
README.md CHANGED
@@ -30,8 +30,11 @@ TODO: Add your code
30
 
31
 
32
  ```python
33
- from stable_baselines3 import ...
34
  from huggingface_sb3 import load_from_hub
35
-
36
- ...
 
 
 
37
  ```
 
30
 
31
 
32
  ```python
33
+ from stable_baselines3 import SAC
34
  from huggingface_sb3 import load_from_hub
35
+ checkpoint = load_from_hub(
36
+ repo_id="jren123/sac-ant-v4",
37
+ filename="SAC-Ant-v4.zip",
38
+ )
39
+ model = SAC.load(checkpoint)
40
  ```