Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 629 Bytes

SKLearn.md

File metadata and controls

23 lines (18 loc) · 629 Bytes

SKLEARN

SKLearn is the best machine learning package in python. It has all the known machine learning algorithms ready for you to use.

The best thing about SKLearn is that once you choose which algorithm to use. The implementation is the same accross all of them

Installation

The installation is fairly simple. We'll be using pip3

pip3 install -U scikit-learn

Basics Algorithms

There 6 algorithms that you must know.

  • LinearRegression
  • DecisionTree
  • SVM
  • RandomForest
  • K-NN
  • NeuralNetwork

Ones you decide which algorithm you're going to use. The next steps are exactly the same

Methods