Python Forum
Loss and Accuracy Figures. - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Data Science (https://python-forum.io/forum-44.html)
+--- Thread: Loss and Accuracy Figures. (/thread-26889.html)



Loss and Accuracy Figures. - Hani - May-17-2020

Anyone can help me understand the following figures?

https://drive.google.com/open?id=1YZmVh7jyvUgsfVgh6HpZAXsB9-cTelVT

https://drive.google.com/open?id=1ztRU82Zr-O5_V4cHh9hPyKrS5OoWJ7WC

Thank you


RE: Loss and Accuracy Figures. - Larz60+ - May-18-2020

Please don't use links, rather post code here using bbcode tags.


RE: Loss and Accuracy Figures. - Hani - May-20-2020

[Image: open?id=1YZmVh7jyvUgsfVgh6HpZAXsB9-cTelVT]
[Image: open?id=1ztRU82Zr-O5_V4cHh9hPyKrS5OoWJ7WC]


RE: Loss and Accuracy Figures. - jefsummers - May-20-2020

That didn't exactly work either, but -
In general, the loss decreases and accuracy increases as you run more cycles in your model (sometimes called epochs). The down side of this is that you can "overfit" your model so it is really really good at predicting the data in your training set, but when tested on other data the results start getting worse. From your graphs you appear to have hit the "sweet spot", where the accuracy and loss in the test sets have flattened out, before they start getting worse.
Make sense?