update
Browse files
README.md
CHANGED
@@ -29,8 +29,10 @@ 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="rainbow/rainbow-LunarLander-v2",
|
35 |
+
filename="{MODEL FILENAME}.zip",
|
36 |
+
)
|
37 |
...
|
38 |
```
|