设置感知器的阈值

时间:2018-09-08 15:17:36

标签: python scikit-learn perceptron

如何设置单层感知器的阈值?

我有

import numpy as np
import sklearn
from sklearn.linear_model import Perceptron

xs = np.array([
    0, 0,
    0, 1,
    1, 0,
    1, 1
]).reshape(4, 2)

ys = np.array([1, 1, 0, 1]).reshape(4,)

ppn = Perceptron(max_iter=2, eta0=0.4, random_state=0)

ppn.fit(xs, ys)

我想做的是训练我的ppn的重量来学习ys。

如何将ppn的阈值设置为-0.5并获得最终权重?

0 个答案:

没有答案