Skip to content

Common ML Algorithms

Ishaan Javali edited this page Jul 1, 2019 · 20 revisions

ML Classification Algorithms

One of the methods of doing machine learning is through using algorithms. Many of the popular machine learning algorithms come from the scikit learn module which can be installed through the pip package manager.

Using an algorithm:

  1. A classifier must be created and have its hyperparameters optimized.
  2. A classifier must be trained on the data.
  3. A classifier must be tested on the test data.

Clone this wiki locally