Skip to content

Implementation of a Q-Learning Agent and an Expected Sarsa agent for the game Flappy Bird.

Notifications You must be signed in to change notification settings

ArtNd/flappy_bird_RL

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

flappy_bird_RL

Implementation of a Q-Learning Agent and an Expected Sarsa agent for the game Flappy Bird.

To launch a game of flappy bird, you need to choose the trained agent to be imported with pickle:

with open('models/q_learning.pkl', 'rb') as pickle_file:
        Q = pickle.load(pickle_file)

And launch the main.py file through the CLI:

python main.py

About

Implementation of a Q-Learning Agent and an Expected Sarsa agent for the game Flappy Bird.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published