Views
No views yet
# Q-Learning Agent for FrozenLake-v1
Trained using Q-Learning with parameters:
- Alpha: 0.7
- Gamma: 0.95
- Epsilon: 0.01
- Decay: 0.9995
## Usage
```
from huggingface_hub import snapshot_download
import pickle
repo_path = snapshot_download("EricStiefel8/q-learning-frozenlake")
with open(repo_path / "q_learning.pkl", "rb") as f:
Q = pickle.load(f)
```