From a9f8e42cd5e6a0832a3a2e740455af03875aea06 Mon Sep 17 00:00:00 2001 From: cfiutak1 Date: Tue, 2 Apr 2019 12:29:47 -0400 Subject: [PATCH] Update Part 2 - Introduction to Neural Networks with TensorFlow.md --- Part 2 - Introduction to Neural Networks with TensorFlow.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Part 2 - Introduction to Neural Networks with TensorFlow.md b/Part 2 - Introduction to Neural Networks with TensorFlow.md index 7ee7652..7e33741 100644 --- a/Part 2 - Introduction to Neural Networks with TensorFlow.md +++ b/Part 2 - Introduction to Neural Networks with TensorFlow.md @@ -83,7 +83,8 @@ model.compile(optimizer='adam', loss='sparse_categorical_crossentropy', metrics=['accuracy']) -# Fit the model to the training set. Epochs is the number of times we fit the neural network to the training set. +# Fit the model to the training set. Epochs is the number of times we fit the neural network to the +# training set. # Be careful of adding too many epochs, however! Overfitting can be just as bad as underfitting. model.fit(x_train, y_train, epochs=5)