Skip to content

Jnkmura/Reinforcement-Learning

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Reinforcement Learning Solutions

The idea behind this reposity is to build Reinforcement Learning solutions to different type of games / environments.

Requisite:

  • python 3.7

Algos:

  • PPO
    • BipedalWalker-v2
      python ppo.py -env BipedalWalker-v3
    • LunarLanderContinuous
      python ppo.py -env LunarLanderContinuous-v2 -e 50

  • DDPG
    • MontainCarContinuous
      python ddpg.py -env MountainCarContinuous-v0 -t 100 -noise 1
    • Pendulum-v0
      python ddpg.py -env Pendulum-v0 -t 200

  • REINFORCE

    • Cartpole
  • Q-Learning

    • TicTacToe
  • DQN

    • Cartpole
    • Pong
    • SpaceInvaders