Skip to main content

Polynomial String Kernel and linear time String Kernel. Supports multithreading and is compatible with Scikit-Learn SVMs.

Project description

String Kernels

This package contains an implementation of the Polynomial String Kernel and a linear time String Kernel algorithm as described in our paper, High Resolution Ancestry Deconvolution for Next Generation Genomic Data.

It offers

  • Linear time computation of two effective string kernels.

  • Compatibility with Scikit-Learn's Support Vector Machines (easy plug-in).

  • Multithreading.

Usage

To install the package, execute from the command line

pip install string-kernels

And then you're all set!

Assuming you have Scikit-Learn already installed, you can use Lodhi's string kernel via

from sklearn import svm
from stringkernels.kernels import string_kernel
model = svm.SVC(kernel=string_kernel())

and the polynomial string kernel,

from sklearn import svm
from stringkernels.kernels import polynomial_string_kernel
model = svm.SVC(kernel=polynomial_string_kernel())

For morer information read the docs or take a look at the notebook example.ipynb for further demonstration of usage.

If you end up using this in your research we kindly ask you to cite us! :)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

string-kernels-1.1.2.tar.gz (4.6 kB view hashes)

Uploaded Source

Built Distribution

string_kernels-1.1.2-py3-none-any.whl (5.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page