sklearn.svm.libsvm.fit()
Train the model using libsvm (low-level method) Parameters:
X : array-like, dtype=float64, size=[n_samples, n_features] Y : array, dtype=float64, size=[n_samples] target vector svm_type : {0, 1, 2, 3, 4}, optional Type of SVM: C_SVC, NuSVC, OneClassSVM, EpsilonSVR or NuSVR respectively. 0 by default. kernel : {?linear?, ?rbf?, ?poly?, ?sigmoid?, ?precomputed?}, optional Kernel to use in the model: linear, polynomial, RBF, sigmoid or precomputed. ?rbf? by defau