-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

Python Machine Learning By Example
By :

Given a machine learning problem, the first question many people ask is usually: what is the best classification/regression algorithm to solve it? However, there is no one-size-fits-all solution or free lunch. No one could know which algorithm will work the best before trying multiple methods and fine-tuning the optimal one. We will be looking into best practices around this in the following sections.
Due to the fact that there are several parameters to tune for an algorithm, exhausting all algorithms and fine-tuning each one can be extremely time-consuming and computationally expensive. We should instead short-list one to three algorithms to start with following the general guidelines in the following list (note we herein focus on classification, but the theory transcends in regression and there is usually a counterpart algorithm in regression).
There are several...