Created
July 20, 2019 09:08
-
-
Save NMZivkovic/36e8db25e5d94e5ec11d69c7e6a368fc 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 numpy as np | |
import random | |
from collections import deque | |
import matplotlib.pyplot as plt | |
from PIL import Image | |
import imageio | |
import os | |
import gym | |
from tqdm import tqdm | |
from tensorflow.keras import Model, Sequential | |
from tensorflow.keras.layers import Dense, Conv2D, Flatten, Input | |
from tensorflow.keras.optimizers import Adam | |
from tensorflow.keras.losses import Huber |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment