Last active
June 28, 2020 07:36
-
-
Save Flock1/da009376e6fc0efa84693469d1c3c73e to your computer and use it in GitHub Desktop.
This file contains 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 matplotlib.pyplot as plt | |
from sklearn.model_selection import train_test_split | |
from sklearn.utils import shuffle | |
import tensorflow as tf | |
from tensorflow import keras | |
from tensorflow.keras import backend as K | |
from tensorflow.keras.models import load_model, Sequential | |
from tensorflow.keras.layers import Dense | |
from tensorflow.keras.utils import Sequence | |
from tensorflow.keras.callbacks import Callback |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment