March 2019
Intermediate to advanced
642 pages
22h 54m
English
Let's see how to build a logistic regression classifier:
import numpy as npfrom sklearn import linear_modelimport matplotlib.pyplot as pltX = np.array([[4, 7], [3.5, 8], [3.1, 6.2], [0.5, 1], [1, 2], [1.2, 1.9], [6, 2], [5.7, 1.5], [5.4, 2.2]])y = np.array([0, 0, 0, 1, 1, 1, 2, 2, 2])
Here, we assume that we have three classes (0, 1, and 2).
classifier = linear_model.LogisticRegression(solver='lbfgs', C=100)
There are a number of input parameters that ...
Read now
Unlock full access