Last active
July 30, 2020 06:22
-
-
Save sadimanna/ff6cbe2880543f18a32e1fcc0b847878 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
| model.compile(optimizer = tf.keras.optimizers.Adam(0.00001), | |
| loss = loss_fn, | |
| metrics = [tf.keras.metrics.BinaryAccuracy(),tf.keras.metrics.AUC()]) | |
| history = model.fit(train_datagen, epochs = 10, verbose = 1, validation_data = valid_datagen, shuffle = True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment