Tolga commited on
Commit
6797d4f
1 Parent(s): fb9603a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -4
README.md CHANGED
@@ -29,8 +29,9 @@ TODO: Add your code
29
 
30
 
31
  ```python
32
- from stable_baselines3 import ...
33
  from huggingface_sb3 import load_from_hub
34
-
35
- ...
36
- ```
 
 
 
29
 
30
 
31
  ```python
 
32
  from huggingface_sb3 import load_from_hub
33
+ checkpoint = load_from_hub(
34
+ repo_id="tkurtulus/ppo-LunarLander-v3",
35
+ filename="ppo-LunarLander-v3.zip",
36
+ )
37
+ ```