This is a trained model of a Q-Learning agent playing Taxi-v3.
import pickle with open("q-learning.pkl", "rb") as f: model = pickle.load(f) # Use model['qtable']
-