File size: 373 Bytes
bdc03b4 3fe5dd3 48daf4e 770d869 793cbb6 770d869 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
---
license: unlicense
pipeline_tag: reinforcement-learning
library_name: stable-baselines3
---
# A2C lunar lander
An example of using A2C policy for RL, does surprisingly well for the little time it was trained for.
# Usage
```python
from huggingface_sb3 import load_from_hub
checkpoint = load_from_hub(
repo_id="SE6446/A2C-LunarLander",
filename="A2C_lander.zip",
)
``` |