What types of Problems can Machine Learning solve?
- Problems the human brain does easily, but we aren’t sure how they are accomplished. e.g. 3D object recognition
- Problems without simple and reliable rules. The answer might be a combination of a large number of weak rules. e.g. detecting credit card fraud
- Moving targets where programs need to change because methods change in the real world. e.g. again credit card fraud
Since we don’t know the exact methods by which to code these types of examples, the machine learning approach is to provide a generic algorithm a bunch of correct examples and let the machine figure out how to get there.
Done well, this approach should work well for new data fed into the program, as well as the examples given to it initially while training.
Also, if the data changes over time (as in the credit card fraud detection problem) the program can change by being trained on new data.
This boils down to:
- Recognizing patterns
- Recognizing anomalies
- Making predictions
Credit
Summarized and adapted from https://www.coursera.org/learn/neural-networks/lecture/Hxnaz/why-do-we-need-machine-learning-13-min