leonsting commited on
Commit
7adec70
1 Parent(s): ccfa5d3

Update README.md

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