Q-Learning Agent for Taxi-v3
Student: Sami Chellia Hugging Face username: Sami94
This repository contains a Q-Learning agent trained for the Hugging Face Deep RL course.
Mean reward: 7.48 +/- 2.78
from huggingface_hub import hf_hub_download
import pickle
model_path = hf_hub_download(repo_id="Sami94/q-Taxi-v3", filename="q-learning.pkl")
with open(model_path, "rb") as f:
model = pickle.load(f)
Evaluation results
- mean_reward on Taxi-v3self-reported7.48 +/- 2.78