commit | 17d5e11e2fa170e37a5160ca77aaf6bd1b9380ea | [log] [tgz] |
---|---|---|
author | Phoenix Meadowlark <meadowlark@google.com> | Tue Oct 27 16:43:15 2020 -0700 |
committer | GitHub <noreply@github.com> | Tue Oct 27 16:43:15 2020 -0700 |
tree | c61faad6819018150d322fd3236ace40ce83e917 | |
parent | ec0b2fb7d000bc0730000c141a64d579840307a4 [diff] |
Remove undeleted print statement (#3637)
diff --git a/integrations/tensorflow/e2e/keras/train/classification_training_test.py b/integrations/tensorflow/e2e/keras/train/classification_training_test.py index cd3305b..0b3027a 100644 --- a/integrations/tensorflow/e2e/keras/train/classification_training_test.py +++ b/integrations/tensorflow/e2e/keras/train/classification_training_test.py
@@ -71,7 +71,6 @@ x = tf.keras.layers.Dense(NUM_CLASSES)(inputs) outputs = tf.keras.layers.Softmax()(x) self.model = tf.keras.Model(inputs, outputs) - print(self.model) self.loss = tf.keras.losses.SparseCategoricalCrossentropy() self.optimizer = tf.keras.optimizers.get(FLAGS.optimizer)