Created
January 20, 2022 14:35
-
-
Save dpoulopoulos/aec4b831be8f14682dd1df0da349cba8 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
BATCH_SIZE = 64 | |
train_data = tf.data.Dataset(...).batch(BATCH_SIZE) | |
model = tf.keras.Sequential(...) | |
model.compile(...) | |
model.fit(train_data, epochs=4) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment