I am deeply in need of a classification task example using LibSVM in python. The most important thing is I don't know how the Input should looks like and which function is responsible for training and which one for testing Thanks
LIBSVM reads the data from a tuple containing two lists. The first list contains the classes and the second list contains the input data. create simple dataset with two possible classes you also need to specify which kernel you want to use by creating svm_parameter.
|
|||||
|
This example demonstrates a one-class SVM classifier; it's about as simple as possible while still showing the complete LIBSVM workflow. Step 1: Import NumPy & LIBSVM
Step 2: Generate synthetic data: for this example, 500 points within a given boundary (note: quite a few real data sets are are provided on the LIBSVM website)
Step 3: Now, choose some non-linear decision boundary for a one-class classifier:
Step 4: Next, arbitrarily partition the data w/r/t this decision boundary:
The SVM Model Building begins here; all steps before this one were just to prepare some synthetic data. Step 5: Construct the problem description by calling svm_problem, passing in the decision boundary function and the data, then bind this result to a variable.
Step 6: Select a kernel function for the non-linear mapping For this exmaple, i chose RBF (radial basis function) as my kernel function
Step 7: Train the classifier, by calling svm_model, passing in the problem description (px) & kernel (pm)
Step 8: Finally, test the trained classifier by calling predict on the trained model object ('v')
For the example above, I used version 3.0 of LIBSVM (the current stable release at the time this answer was posted). Finally, w/r/t the part of your question regarding the choice of kernel function, Support Vector Machines are not specific to a particular kernel function--e.g., i could have chosen a different kernel (gaussian, polynomial, etc.). LIBSVM includes all of the most commonly used kernel functions--which is a big help because you can see all plausible alternatives and to select one for use in your model, is just a matter of calling svm_parameter and passing in a value for *kernel_type* (a three-letter abbreviation for the chosen kernel). Finally, the kernel function you choose for training must match the kernel function used against the testing data. |
||||
|
The code examples listed here don't work with LibSVM 3.1, so I've more or less ported the example by mossplix:
|
|||
|
You might consider using http://scikit-learn.sourceforge.net/ That has a great python binding of libsvm and should be easy to install |
|||
|
Adding to @shinNoNoir : param.kernel_type represents the type of kernel function you want to use, 0: Linear 1: polynomial 2: RBF 3: Sigmoid Also have in mind that, svm_problem(y,x) : here y is the class labels and x is the class instances and x and y can only be lists,tuples and dictionaries.(no numpy array) |
|||
|