Q-Learning Agent playing FrozenLake-v1
This is a trained Q-Learning agent on environment FrozenLake-v1.
Usage
```python
from huggingface_hub import hf_hub_download
import pickle
file = hf_hub_download(repo_id="Sanssss133/frozenlake-qlearning", filename="q-learning.pkl")
with open(file, "rb") as f:
model = pickle.load(f)
print(model.keys())
```
Evaluation
Mean reward = 1.00 ± 0.00