Skip to content

Instantly share code, notes, and snippets.

@roclark
Created December 20, 2020 22:53
Show Gist options
  • Save roclark/e5e346ac8ccc578d899f1f2b1b941b07 to your computer and use it in GitHub Desktop.
Save roclark/e5e346ac8ccc578d899f1f2b1b941b07 to your computer and use it in GitHub Desktop.
import gym
import gym_super_mario_bros
import ray
from argparse import ArgumentParser
from gym_super_mario_bros.actions import SIMPLE_MOVEMENT
from nes_py.wrappers import JoypadSpace
from ray import tune
from ray.tune.registry import register_env
from ray.rllib.agents.impala import ImpalaTrainer
from ray.rllib.env.atari_wrappers import (MonitorEnv,
NoopResetEnv,
WarpFrame,
FrameStack)
from tabulate import tabulate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment