Created
April 5, 2019 10:24
-
-
Save sam-thecoder/73e13d998513c4ebeae501630c767685 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 os | |
import sys | |
import cv2 | |
import random | |
import numpy as np | |
from tqdm import tqdm | |
import pickle | |
from keras.models import Sequential | |
from keras.layers import Conv2D, MaxPooling2D | |
from keras.layers import Activation, Dropout, Flatten, Dense | |
from keras.callbacks import TensorBoard, EarlyStopping, ModelCheckpoint | |
import matplotlib.pyplot as plt | |
%matplotlib inline |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment