Created
December 20, 2020 22:53
-
-
Save roclark/e5e346ac8ccc578d899f1f2b1b941b07 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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