First, let's start off mentioning that ML models do pretty much two things:
1) Quantitative Predictions
2) Classification
I know some people might disagree with me, but I feel like that's a good way to classify the purpose of *most* (if not all) ML models
1) Quantitative Predictions
2) Classification
I know some people might disagree with me, but I feel like that's a good way to classify the purpose of *most* (if not all) ML models
There's also two concepts regarding the way we train our models:
Supervised and Non-supervised learning
In short, supervised learning is when you work with tagged data
you know what that piece of data represents beforehand and the model can adjust accordingly if mislabeled
Supervised and Non-supervised learning
In short, supervised learning is when you work with tagged data
you know what that piece of data represents beforehand and the model can adjust accordingly if mislabeled
Non-supervised learning is when you supply your model with untagged data and expect it to learn from the patterns it might have
it's like guessing whether a person could become a client or not depending on some data you might have
it's like guessing whether a person could become a client or not depending on some data you might have
Loading suggestions...