SE6446 commited on
Commit
793cbb6
1 Parent(s): 48daf4e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -0
README.md CHANGED
@@ -7,4 +7,9 @@ library_name: stable-baselines3
7
  An example of using A2C policy for RL, does surprisingly well for the little time it was trained for.
8
  # Usage
9
  ```python
 
 
 
 
 
10
  ```
 
7
  An example of using A2C policy for RL, does surprisingly well for the little time it was trained for.
8
  # Usage
9
  ```python
10
+ from huggingface_sb3 import load_from_hub
11
+ checkpoint = load_from_hub(
12
+ repo_id="SE6446/A2C-LunarLander",
13
+ filename="A2C_lander.zip",
14
+ )
15
  ```