Views
No views yet
q-FrozenLake-v1-no-slipperyFrozenLake-v1-4x4-no_slippery1.00 ± 0.001from huggingface_hub import load_from_hub
2import gym
3
4# Load the trained Q-learning model
5model = load_from_hub(
6 repo_id="KraTUZen/q-FrozenLake-v1-no-slippery",
7 filename="q-learning.pkl"
8)
9
10# Initialize environment (ensure no_slippery flag is set)
11env = gym.make(model["env_id"], is_slippery=False)is_slippery=False when creating the environment to reproduce results.q-learning.pkl → Serialized Q-table of the trained agentREADME.md → Documentation and usage guide