xxldmm commited on
Commit
462d522
1 Parent(s): 999dca2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -2
README.md CHANGED
@@ -30,8 +30,10 @@ 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 huggingface_sb3 import load_from_hub
34
+ checkpoint = load_from_hub(
35
+ repo_id="BlackFaceCat/ppo-LunarLander-v2",
36
+ filename="{MODEL FILENAME}.zip",
37
+ )
38
  ...
39
  ```