具有非线性内核(RBF)的一类支持向量机(One-class SVM)

使用一类SVM进行新颖性检测的示例。

一类SVM是一种无监督算法,可学习用于新颖性检测的决策函数:将新数据分类为与训练集相似或不同。

输入:

print(__doc__)

import numpy as np
import matplotlib.pyplot as plt
import matplotlib.font_manager
from sklearn import svm

xx, yy = np.meshgrid(np.linspace(-55500), np.linspace(-55500))
# 获取训练数据
X = 0.3 * np.random.randn(1002)
X_train = np.r_[X + 2, X - 2]
# 获取一些常规的新颖观察值
X = 0.3 * np.random.randn(202)
X_test = np.r_[X + 2, X - 2]
# 获取一些异常的新颖观察值
X_outliers = np.random.uniform(low=-4, high=4, size=(202))

# 拟合模型
clf = svm.OneClassSVM(nu=0.1, kernel="rbf", gamma=0.1)
clf.fit(X_train)
y_pred_train = clf.predict(X_train)
y_pred_test = clf.predict(X_test)
y_pred_outliers = clf.predict(X_outliers)
n_error_train = y_pred_train[y_pred_train == -1].size
n_error_test = y_pred_test[y_pred_test == -1].size
n_error_outliers = y_pred_outliers[y_pred_outliers == 1].size

# 绘制直线,点和最接近平面的向量
Z = clf.decision_function(np.c_[xx.ravel(), yy.ravel()])
Z = Z.reshape(xx.shape)

plt.title("Novelty Detection")
plt.contourf(xx, yy, Z, levels=np.linspace(Z.min(), 07), cmap=plt.cm.PuBu)
a = plt.contour(xx, yy, Z, levels=[0], linewidths=2, colors='darkred')
plt.contourf(xx, yy, Z, levels=[0, Z.max()], colors='palevioletred')

s = 40
b1 = plt.scatter(X_train[:, 0], X_train[:, 1], c='white', s=s, edgecolors='k')
b2 = plt.scatter(X_test[:, 0], X_test[:, 1], c='blueviolet', s=s,
                 edgecolors='k')
c = plt.scatter(X_outliers[:, 0], X_outliers[:, 1], c='gold', s=s,
                edgecolors='k')
plt.axis('tight')
plt.xlim((-55))
plt.ylim((-55))
plt.legend([a.collections[0], b1, b2, c],
           ["learned frontier""training observations",
            "new regular observations""new abnormal observations"],
           loc="upper left",
           prop=matplotlib.font_manager.FontProperties(size=11))
plt.xlabel(
    "error train: %d/200 ; errors novel regular: %d/40 ; "
    "errors novel abnormal: %d/40"
    % (n_error_train, n_error_test, n_error_outliers))
plt.show()

脚本的总运行时间:(0分钟0.362秒)