Views
No views yet
1from huggingface_hub import hf_hub_download
2import pickle
3
4model_path = hf_hub_download(repo_id="Sami94/q-FrozenLake-v1-4x4-noSlippery", filename="q-learning.pkl")
5with open(model_path, "rb") as f:
6 model = pickle.load(f)