Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

String Subsequence Kernel and SVM using Python

How can I use Subsequence String Kernel (SSK) [Lodhi 2002] to train a SVM (Support Vector Machine) in Python?

like image 776
gcedo Avatar asked Feb 10 '14 10:02

gcedo


2 Answers

Recently, the String Subsequence Kernel (SSK) [Lodhi. et. al., 2002] has been added to Shogun Machine Learning toolbox and is made available for using in all modular interfaces including Python. You can find a working example of using this kernel for a DNA classification problem here using LibSVM.

like image 36
Soumyajit De Avatar answered Oct 05 '22 11:10

Soumyajit De


I have come to a solution using the Shogun Library. You have to install it from the commit 0891f5a38bcb as later revisions would mistakenly remove the needed classes.

This is a working example:

from shogun.Features import *
from shogun.Kernel import *
from shogun.Classifier import *
from shogun.Evaluation import *
from modshogun import StringCharFeatures, RAWBYTE
from shogun.Kernel import SSKStringKernel


strings = ['cat', 'doom', 'car', 'boom']
test = ['bat', 'soon']

train_labels  = numpy.array([1, -1, 1, -1])
test_labels = numpy.array([1, -1])

features = StringCharFeatures(strings, RAWBYTE)
test_features = StringCharFeatures(test, RAWBYTE)

# 1 is n and 0.5 is lambda as described in Lodhi 2002
sk = SSKStringKernel(features, features, 1, 0.5)

# Train the Support Vector Machine
labels = BinaryLabels(train_labels)
C = 1.0
svm = LibSVM(C, sk, labels)
svm.train()

# Prediction
predicted_labels = svm.apply(test_features).get_labels()
print predicted_labels
like image 115
gcedo Avatar answered Oct 05 '22 13:10

gcedo