Skip to content

Instantly share code, notes, and snippets.

@vivekpadia70
Created February 20, 2020 07:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vivekpadia70/4bf1c893d9ac5f28811ccf076f1033a5 to your computer and use it in GitHub Desktop.
Save vivekpadia70/4bf1c893d9ac5f28811ccf076f1033a5 to your computer and use it in GitHub Desktop.
import numpy as np
import gym
from keras.models import Sequential
from keras.layers import Dense, Activation, Flatten
from keras.optimizers import Adam
from rl.agents.dqn import DQNAgent
from rl.policy import EpsGreedyQPolicy
from rl.memory import SequentialMemory
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment