What is Overfitting in machine learning and why is it bad?

144 views

What is Overfitting in machine learning and why is it bad?

In: 2

5 Answers

Anonymous 0 Comments

Overfitting means the system learned not the pattern you want it to learn, but rather just knows it’s training data completely.

If you give it 100 pics with 50 cats and let it learn wich ones are cats without any stop criteria it will overlearn that exactly those 50 pictures are cats, but not by what the pictures have in common. It will learn stuff like “oh yeah the one with the dark blue background is a cat pic”

To prevent that you use some part of your data not for training but for quality control. You feed it only 80 pics to learn from, and use 20 only to check if they are also recognized without ever being shown to it during training.

You are viewing 1 out of 5 answers, click here to view all answers.