上传者: 38620893
|
上传时间: 2022-11-10 16:19:10
|
文件大小: 138KB
|
文件类型: PDF
这里将加载iris数据集,创建一个山鸢尾花(I.setosa)的分类器。
# Nonlinear SVM Example
#----------------------------------
#
# This function wll illustrate how to
# implement the gaussian kernel on
# the iris dataset.
#
# Gaussian Kernel:
# K(x1, x2) = exp(-gamma * abs(x1 - x2)^2)
import matplotlib.pyplot as plt
import nump