Created
August 11, 2019 21:50
-
-
Save techwithshadab/84054797cb2fdd8a64939a5e99dfd63a 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, cv2, random | |
import numpy as np | |
import pandas as pd | |
%pylab inline | |
import matplotlib.pyplot as plt | |
import matplotlib.image as mpimg | |
from matplotlib import ticker | |
import seaborn as sns | |
%matplotlib inline | |
from keras.models import Sequential | |
from keras.layers import Input, Dropout, Flatten, Convolution2D, MaxPooling2D, Dense, Activation | |
from keras.optimizers import RMSprop | |
from keras.callbacks import ModelCheckpoint, Callback, EarlyStopping | |
from keras.utils import np_utils |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment