# Q-Learning Agent for FrozenLake-v1 Trained Q-table for: - `FrozenLake-v1` - `map_name="4x4"` - `is_slippery=False` ## Files - `q-learning.pkl`: Pickled Python dict containing the Q-table and metadata - `replay.mp4`: Replay of the greedy policy ## Load ```python import pickle from huggingface_hub import hf_hub_download path = hf_hub_download(repo_id="Maenglife/q-FrozenLake-v1-4x4-noSlippery", filename="q-learning.pkl") with open(path, "rb") as f: model = pickle.load(f) Q = model["qtable"]