Code Monkey home page Code Monkey logo

nesgym's Introduction

NESGym

An openai-gym wrapper for nes games.

Installation

  • Install nes emulator and make sure fceux is in your $PATH. In ubuntu, simple use apt install fceux.
  • Copy state files from roms/fcs/* to your `~/.fceux/fcs/``

Example usage

# import nesgym to register environments to gym
import nesgym
env = gym.make('nesgym/NekketsuSoccerPK-v0')
obs = env.reset()

for step in range(10000):
  action = env.action_space.sample()
  obs, reward, done, info = env.step(action)

Examples for training dqn

An implementation of dqn is in src/dqn. You can train dqn model for atari and nes with run-atari.py and run-soccer.py, respectively.

Integrating new nes games

You need two files: a lua interface file, and an openai gym environment class(python) file. The lua file needs to get the reward from emulator(typically extracting from a memory location), and the python file defines the game specific environment. For an example of lua file, see src/lua/soccer.lua; for an example of gym env file, see src/nesgym/nekketsu_soccer_env.py.

Gallery

training atari games

atari

training fc games

fc-soccer

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.