Skip to content

Looking at the 10-arm bandit problem using epsilon-greedy, UCB, and learning automata for action selection.

Notifications You must be signed in to change notification settings

nsaftarli/RL_Bandits

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Reinforcement Learning - Assignment 1

Nariman Saftarli - [email protected] - 500615448

Instructions for running

Requirements/Dependencies:

  • Python 3.6
  • Numpy
  • Matplotlib

Instructions for running

  • The UCB algorithm is implemented in Q1.py. The learning automata are implemented in Q2.py. I've also implemented the epsilon-greedy algorithm in egreedy.py. All of these can be run with python3 [filename].py. By default, they each run for 100,000 steps. To make the runs shorter, the iterations variable (first variable specified) can be changed. The algorithm will run for the specified number of iterations and every 100 steps will print the optimal move percentage and average reward. Once the program finishes running, the probability distributions (estimated and real), optimal move percentages over time, and average rewards over time will be plotted using MatPlotLib's PyPlot library.

  • I've included an argument parser. -i specifies iterations, -lr specifies the learning rate (for Q2), and -a specifies whether or not the automaton is linear (for Q2)

About

Looking at the 10-arm bandit problem using epsilon-greedy, UCB, and learning automata for action selection.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published