Aquagym
Collection
A collection of reinforcement learning models for Gymnasium environments (see more: https://github.com/coding-kelps/aquagym).
•
8 items
•
Updated
This is a trained model of a Q-Learning agent playing to the Gymnasium Taxi-v3 reinforcement learning environment.
model = load_from_hub(repo_id="coding-kelps/q-taxi-v3", filename="q-learning.pkl")
# Don't forget to check if you need to add additional attributes
env = gym.make(model["env_id"])
You can find the original source code of the model training in the corresponding Coding Kelps aquaqym repository.