Created
August 2, 2019 18:36
-
-
Save techwithshadab/dc24d1c8296fa00a96552d0434de0b98 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
import matplotlib.pyplot as plt | |
plt.xlabel('Epoch Number') | |
plt.ylabel("Loss Magnitude") | |
plt.plot(trained_model.history['loss']) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
there is something wrong is this block. When I am trying to compile it, it is showing me "trained_model" is not defined. After I opened your notebook which you linked in the blog it was also showing the same. Can you please help me out ?