Q-Learning Agent playing Taxi-v3
This is a trained model of a Q-Learning agent playing Taxi-v3 .
Usage
from huggingface_hub import hf_hub_download
import pickle5 as pickle
model_file = hf_hub_download(repo_id="atorre/Taxi-v3", filename="q-learning.pkl")
with open(model_file, 'rb') as f:
model = pickle.load(f)
env = gym.make(model["env_id"])