Supervised Learning with scikit-learn
George Boorman
Core Curriculum Manager, DataCamp
Uncovering hidden patterns from unlabeled data
Example:
The predicted values are known
Aim: Predict the target values of unseen data, given the features
Feature = predictor variable = independent variable
Target variable = dependent variable = response variable
from sklearn.module import Model
model = Model()
model.fit(X, y)
predictions = model.predict(X_new)
print(predictions)
array([0, 0, 0, 0, 1, 0])
Supervised Learning with scikit-learn