Q-Learning Agent playing Taxi-v3
This is a trained Q-Learning agent for Taxi-v3.
Usage
import json
import numpy as np
import gym
qtable = np.load("qtable.npy")
with open("config.json") as f:
config = json.load(f)
env = gym.make(config["env_id"])
model = {**config, "qtable": qtable}