September 2019
Intermediate to advanced
420 pages
10h 29m
English
In the following steps, you will learn to fit a perceptron algorithm on the given data:
In [6]: p = Perceptron(lr=0.1, n_iter=10)
Here, we chose a learning rate of 0.1 and told the perceptron to terminate after 10 iterations. These values are chosen rather arbitrarily at this point, although we will come back to them in a little while.
Read now
Unlock full access