Skip to content

BhushanGatty/q-learning-frozenlake

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

3 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Q-Learning on FrozenLake-v1 (4x4, No Slippery)

This project implements a Q-Learning agent trained on the FrozenLake-v1 environment as part of the Hugging Face Deep Reinforcement Learning course.


πŸŽ₯ Agent in Action

frozenlake_demo


πŸ“Œ Environment

  • FrozenLake-v1
  • 4x4 grid
  • No slippery (deterministic)

βš™οΈ Algorithm

Tabular Q-Learning with Ξ΅-greedy exploration.

Q-update rule:

Q(s,a) = Q(s,a) + Ξ± (r + Ξ³ max Q(s',a') - Q(s,a))


πŸ“Š Results

The trained agent consistently reaches the goal in the deterministic FrozenLake environment.


πŸ€— Hugging Face Model

https://huggingface.co/BhushanGatty/q-FrozenLake-v1-4x4-noSlippery


πŸ‘¨β€πŸ’» Author

Bhushan Gatty
Robotics Engineering Student
Deep Reinforcement Learning Enthusiast

About

Q-Learning agent for FrozenLake-v1 (4x4, no slippery) from Hugging Face Deep RL course.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors