Skip to content

Commit

Permalink
Update Part 2 - Introduction to Neural Networks with TensorFlow.md
Browse files Browse the repository at this point in the history
  • Loading branch information
cfiutak1 authored Apr 2, 2019
1 parent 33e9f58 commit a9f8e42
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Part 2 - Introduction to Neural Networks with TensorFlow.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit a9f8e42

Please sign in to comment.