Skip to content
/ RL Public

test codes of SARSA, DQN, A3C, PPO and so on

Notifications You must be signed in to change notification settings

masszhou/RL

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

[TOC]

  • short summary about value-based method

Solved Problems in this Repo

1. Gym

refs: openai gym wiki

1.1 Classic Control

  • CartPole-v1
    • states space: Box(4, )
    • action space: discrete(2)
  • Acrobot-v1
    • state space: Box(6, )
    • action space: Discrete(3)
  • MountainCar-v0
    • state space: Box(2, )
    • action space: Discrete(3)
  • MountainCarContinuous-v0
    • state space: Box(2, )
    • action space: Box(1, )
  • Pendulum-v0
    • state space: Box(3, )
    • action space: Box(1, )

1.2 Box2D

  • CarRacing-v1

Box2D dependency, install discussion.

sudo apt-get install swig
workon your_venv
cd Box2D-py
python setup.py clean
python setup.py install

1.3 Atari

  • Breakout-v0
  • Pong-v0

1.4 MuJoCo

1.5 Others

2. Unity

  • Unity Banana Navigation
  • Unity Reacher to learn gesture
  • Unity Tennis

3. Self-Made

  • 2D arm tracking object

About

test codes of SARSA, DQN, A3C, PPO and so on

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published