BUG fix LinearSVM doctest

This commit is contained in:
GaelVaroquaux 2012-04-13 08:15:42 +02:00
parent 2d80ea66d9
commit 7e4ea9e4db
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ two classes, only one model is trained::
>>> lin_clf.fit(X, Y) # doctest: +NORMALIZE_WHITESPACE
LinearSVC(C=None, class_weight=None, dual=True, fit_intercept=True,
intercept_scaling=1, loss='l2', multi_class='ovr', penalty='l2',
scale_C=True, tol=0.0001)
scale_C=True, tol=0.0001, verbose=0)
>>> dec = lin_clf.decision_function([[1]])
>>> dec.shape[1]
4