我正在研究支持向量机,在 Python 中使用 sci-kit learn。
我已经训练了模型,使用 GridSearch 和交叉验证来找到最佳参数,并在 15% 的保留集上评估了最佳模型。
最后的混淆矩阵说我有 0 个错误分类。
后来,当我给它一个手写数字时,模型给了我不正确的预测(我没有包含这个代码,以保持这个问题简短)。
因为 SVM 的误差为零,而且后来它无法正确预测,所以我错误地构建了这个 SVM。
我的问题是这样的:
我是否正确地怀疑我以某种方式错误地使用了交叉验证和 GridSearch?还是我给了 GridSearch 参数有些荒谬,并且给了我错误的结果?
感谢您花时间和精力阅读本文。
第 1 步:使用 train_test_split 函数将数据集拆分为 85%/15%
X_train, X_test, y_train, y_test =
cross_validation.train_test_split(X, y, test_size=0.15,
random_state=0)
第 2 步:将 GridSearchCV 函数应用于训练集以调整分类器
C_range = 10.0 ** np.arange(-2, 9)
gamma_range = 10.0 ** np.arange(-5, 4)
param_grid = dict(gamma=gamma_range, C=C_range)
cv = StratifiedKFold(y=y, n_folds=3)
grid = GridSearchCV(SVC(), param_grid=param_grid, cv=cv)
grid.fit(X, y)
print("The best classifier is: ", grid.best_estimator_)
输出在这里:
('The best classifier is: ', SVC(C=10.0, cache_size=200,
class_weight=None, coef0=0.0, degree=3,
gamma=0.0001, kernel='rbf', max_iter=-1, probability=False,
random_state=None, shrinking=True, tol=0.001, verbose=False))
第 3 步:最后,在剩余的 15% 保留集上评估调整后的分类器。
clf = svm.SVC(C=10.0, cache_size=200, class_weight=None, coef0=0.0, degree=3,
gamma=0.001, kernel='rbf', max_iter=-1, probability=False,
random_state=None, shrinking=True, tol=0.001, verbose=False)
clf.fit(X_train, y_train)
clf.score(X_test, y_test)
y_pred = clf.predict(X_test)
输出在这里:
precision recall f1-score support
-1.0 1.00 1.00 1.00 6
1.0 1.00 1.00 1.00 30
avg / total 1.00 1.00 1.00 36
Confusion Matrix:
[[ 6 0]
[ 0 30]]