Update README.md
Browse files
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 |
```
|