InterviewSolution
Saved Bookmarks
| 1. |
How do you make sure which Machine Learning Algorithm to use? |
|
Answer» It completely DEPENDS on the dataset we have. If the data is discrete we use SVM. If the dataset is continuous we use linear regression. So there is no specific way that lets us know which ML algorithm to use, it all depends on the exploratory data analysis (EDA). EDA is LIKE “interviewing” the dataset; As part of our INTERVIEW we do the following:
Based on the above observations select one best-fit algorithm for a particular dataset. |
|