sklearn.svm.libsvm.cross_validation()

sklearn.svm.libsvm.cross_validation() Binding of the cross-validation routine (low-level routine)

2017-01-15 04:26:55
svm.OneClassSVM()

class sklearn.svm.OneClassSVM(kernel='rbf', degree=3, gamma='auto', coef0=0.0, tol=0.001, nu=0.5, shrinking=True, cache_size=200, verbose=False

2017-01-15 04:27:09
sklearn.svm.libsvm.predict()

sklearn.svm.libsvm.predict() Predict target values of X given a model (low-level method)

2017-01-15 04:26:56
svm.SVR()

class sklearn.svm.SVR(kernel='rbf', degree=3, gamma='auto', coef0=0.0, tol=0.001, C=1.0, epsilon=0.1, shrinking=True, cache_size=200, verbose=False

2017-01-15 04:27:12
sklearn.svm.libsvm.fit()

sklearn.svm.libsvm.fit() Train the model using libsvm (low-level method)

2017-01-15 04:26:56
sklearn.svm.l1_min_c()

sklearn.svm.l1_min_c(X, y, loss='squared_hinge', fit_intercept=True, intercept_scaling=1.0)

2017-01-15 04:26:55
svm.LinearSVC()

class sklearn.svm.LinearSVC(penalty='l2', loss='squared_hinge', dual=True, tol=0.0001, C=1.0, multi_class='ovr', fit_intercept=True, intercept_scaling=1

2017-01-15 04:27:07
svm.NuSVR()

class sklearn.svm.NuSVR(nu=0.5, C=1.0, kernel='rbf', degree=3, gamma='auto', coef0=0.0, shrinking=True, tol=0.001, cache_size=200, verbose=False

2017-01-15 04:27:09
svm.LinearSVR()

class sklearn.svm.LinearSVR(epsilon=0.0, tol=0.0001, C=1.0, loss='epsilon_insensitive', fit_intercept=True, intercept_scaling=1.0, dual=True

2017-01-15 04:27:07
svm.NuSVC()

class sklearn.svm.NuSVC(nu=0.5, kernel='rbf', degree=3, gamma='auto', coef0=0.0, shrinking=True, probability=False, tol=0.001, cache_size=200, class_weight=None

2017-01-15 04:27:08