Last active
August 29, 2021 15:12
-
-
Save bartubozkurt/2b7bbf760ad75fb528c54d430c84fa48 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.fit(train_images, train_labels, epochs=10) | |
''' | |
Epoch 1/10 | |
1875/1875 [==============================] - 3s 1ms/step - loss: 0.4982 - accuracy: 0.8256 | |
Epoch 2/10 | |
1875/1875 [==============================] - 3s 1ms/step - loss: 0.3747 - accuracy: 0.8658 | |
Epoch 3/10 | |
1875/1875 [==============================] - 3s 1ms/step - loss: 0.3356 - accuracy: 0.8770 | |
Epoch 4/10 | |
1875/1875 [==============================] - 3s 1ms/step - loss: 0.3112 - accuracy: 0.8856 | |
Epoch 5/10 | |
1875/1875 [==============================] - 3s 1ms/step - loss: 0.2941 - accuracy: 0.8915 | |
Epoch 6/10 | |
1875/1875 [==============================] - 3s 1ms/step - loss: 0.2776 - accuracy: 0.8972 | |
Epoch 7/10 | |
1875/1875 [==============================] - 3s 1ms/step - loss: 0.2678 - accuracy: 0.9000 | |
Epoch 8/10 | |
1875/1875 [==============================] - 3s 1ms/step - loss: 0.2564 - accuracy: 0.9049 | |
Epoch 9/10 | |
1875/1875 [==============================] - 3s 1ms/step - loss: 0.2467 - accuracy: 0.9083 | |
Epoch 10/10 | |
1875/1875 [==============================] - 3s 1ms/step - loss: 0.2399 - accuracy: 0.9103 | |
<tensorflow.python.keras.callbacks.History at 0x7fe108a0c150> | |
''' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment