@@ -23,8 +23,8 @@ class SVC(SparseBaseLibSVM, ClassifierMixin):
2323    >>> from sklearn.svm.sparse import SVC 
2424    >>> clf = SVC() 
2525    >>> clf.fit(X, y) 
26-     SVC(C=1.0, coef0=0.0, degree=3, gamma=0.5, kernel='rbf', probability=False , 
27-       shrinking=True, tol=0.001) 
26+     SVC(C=1.0, cache_size=200,  coef0=0.0, degree=3, gamma=0.5, kernel='rbf', 
27+       probability=False,  shrinking=True, tol=0.001) 
2828    >>> print clf.predict([[-0.8, -1]]) 
2929    [ 1.] 
3030    """ 
@@ -57,8 +57,8 @@ class NuSVC(SparseBaseLibSVM, ClassifierMixin):
5757    >>> from sklearn.svm.sparse import NuSVC 
5858    >>> clf = NuSVC() 
5959    >>> clf.fit(X, y) 
60-     NuSVC(coef0=0.0, degree=3, gamma=0.5, kernel='rbf', nu=0.5, probability=False , 
61-        shrinking=True, tol=0.001) 
60+     NuSVC(cache_size=200,  coef0=0.0, degree=3, gamma=0.5, kernel='rbf', nu=0.5, 
61+        probability=False,  shrinking=True, tol=0.001) 
6262    >>> print clf.predict([[-0.8, -1]]) 
6363    [ 1.] 
6464    """ 
@@ -93,8 +93,8 @@ class SVR(SparseBaseLibSVM, RegressorMixin):
9393    >>> X = np.random.randn(n_samples, n_features) 
9494    >>> clf = SVR(C=1.0, epsilon=0.2) 
9595    >>> clf.fit(X, y) 
96-     SVR(C=1.0, coef0=0.0, degree=3, epsilon=0.2, gamma=0.2, kernel='rbf', nu=0.5 , 
97-       probability=False, shrinking=True, tol=0.001) 
96+     SVR(C=1.0, cache_size=200,  coef0=0.0, degree=3, epsilon=0.2, gamma=0.2, 
97+       kernel='rbf', nu=0.5,  probability=False, shrinking=True, tol=0.001) 
9898    """ 
9999
100100    def  __init__ (self , kernel = 'rbf' , degree = 3 , gamma = 0.0 , coef0 = 0.0 ,
@@ -127,8 +127,8 @@ class NuSVR(SparseBaseLibSVM, RegressorMixin):
127127    >>> X = np.random.randn(n_samples, n_features) 
128128    >>> clf = NuSVR(nu=0.1, C=1.0) 
129129    >>> clf.fit(X, y) 
130-     NuSVR(C=1.0, coef0=0.0, degree=3, epsilon=0.1, gamma=0.2, kernel='rbf' , 
131-        nu=0.1, probability=False, shrinking=True, tol=0.001) 
130+     NuSVR(C=1.0, cache_size=200,  coef0=0.0, degree=3, epsilon=0.1, gamma=0.2, 
131+        kernel='rbf',  nu=0.1, probability=False, shrinking=True, tol=0.001) 
132132    """ 
133133
134134    def  __init__ (self , nu = 0.5 , C = 1.0 , kernel = 'rbf' , degree = 3 ,
0 commit comments