Update README.md
Browse files
README.md
CHANGED
@@ -24,5 +24,9 @@ model-index:
|
|
24 |
This is a trained model of a **PPO** agent playing **LunarLander-v2** using the [stable-baselines3 library](https://github.com/DLR-RM/stable-baselines3).
|
25 |
|
26 |
## Usage (with Stable-baselines3)
|
27 |
-
|
|
|
|
|
|
|
|
|
28 |
|
|
|
24 |
This is a trained model of a **PPO** agent playing **LunarLander-v2** using the [stable-baselines3 library](https://github.com/DLR-RM/stable-baselines3).
|
25 |
|
26 |
## Usage (with Stable-baselines3)
|
27 |
+
from huggingface_sb3 import load_from_hub
|
28 |
+
checkpoint = load_from_hub(
|
29 |
+
repo_id="XGBooster/LunarLanderPPO",
|
30 |
+
filename="{MODEL FILENAME}.zip",
|
31 |
+
)
|
32 |
|