Overfitting vs Underfitting in PyTorch

Buy Me a Coffee☕

Overfitting:

is the problem which a model can make accurate predictions for train data a lot but a little for new data(including test data) so the model fits train data much more than new data.
occurs because:

train data…


This content originally appeared on DEV Community and was authored by Super Kai (Kazuya Ito)

Buy Me a Coffee

Overfitting:

  • is the problem which a model can make accurate predictions for train data a lot but a little for new data(including test data) so the model fits train data much more than new data.
  • occurs because:
    • train data is small(not enough) so the model can only learn a small number of patterns.
    • train data is imbalanced(biased) having a lot of specific(limitted), similar or same data but not a lot of various data so the model can only learn a small number of patterns.
    • train data has a lot of noise(noisy data) so the model learns the patterns of the noise a lot but not the patters of normal data. *Noise(noisy data) means outliers, anomalies or sometimes duplicated data.
    • the training time is too long with a too large number of epochs.
    • the model is too complex.
  • can be mitigated by:

Underfitting:

  • is the problem which a model cannot make accurate predictions both for train data and new data(including test data) a lot so the model doesn't fit both train data and new data.
  • occurs because:
    • the model is too simple(not complex enough).
    • the training time is too short with a too small number of epochs.
    • Excessive regularization is applied.
  • can be mitigated by:
    • Increasing model complexity.
    • Increasing the training time with a larger number of epochs
    • Decreasing regularization.


This content originally appeared on DEV Community and was authored by Super Kai (Kazuya Ito)


Print Share Comment Cite Upload Translate Updates
APA

Super Kai (Kazuya Ito) | Sciencx (2024-09-26T16:21:46+00:00) Overfitting vs Underfitting in PyTorch. Retrieved from https://www.scien.cx/2024/09/26/overfitting-vs-underfitting-in-pytorch/

MLA
" » Overfitting vs Underfitting in PyTorch." Super Kai (Kazuya Ito) | Sciencx - Thursday September 26, 2024, https://www.scien.cx/2024/09/26/overfitting-vs-underfitting-in-pytorch/
HARVARD
Super Kai (Kazuya Ito) | Sciencx Thursday September 26, 2024 » Overfitting vs Underfitting in PyTorch., viewed ,<https://www.scien.cx/2024/09/26/overfitting-vs-underfitting-in-pytorch/>
VANCOUVER
Super Kai (Kazuya Ito) | Sciencx - » Overfitting vs Underfitting in PyTorch. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2024/09/26/overfitting-vs-underfitting-in-pytorch/
CHICAGO
" » Overfitting vs Underfitting in PyTorch." Super Kai (Kazuya Ito) | Sciencx - Accessed . https://www.scien.cx/2024/09/26/overfitting-vs-underfitting-in-pytorch/
IEEE
" » Overfitting vs Underfitting in PyTorch." Super Kai (Kazuya Ito) | Sciencx [Online]. Available: https://www.scien.cx/2024/09/26/overfitting-vs-underfitting-in-pytorch/. [Accessed: ]
rf:citation
» Overfitting vs Underfitting in PyTorch | Super Kai (Kazuya Ito) | Sciencx | https://www.scien.cx/2024/09/26/overfitting-vs-underfitting-in-pytorch/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.