For example, if I use some iterative solvers to find a solution to a non-linear least squares problem, is that already considered machine learning?
Asked
Active
Viewed 94 times
1 Answers
2
T. Mitchell defines machine learning in "Machine Learning" book as
a computer program is said to learn from experience concerning some class of tasks and performance measure , if its performance at tasks in , as measured by , improves with experience
Hence, based on the above definition, we can't say a machine learning method to every iterative method. In your specific example, it is just a non-linear solver such as the Newton method to finding roots.
However, you should notice that a non-specific machine learning method can be used in the learning process. For example, you might need some numerical methods to compute the measure $P$ (in the above definition). But, we can't say that the specified method is a machine learning method.
OmG
- 1,866
- 12
- 19