Skip to content

willemolding/ivm-wrapper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ivm-wrapper

Python wrappers for the Matlab code for the Import Vector Machine (IVM) classifier from Freie University (http://www.ipb.uni-bonn.de/ivm/?L=1)

Install

This assumes the following:

Installation Steps:

Example

The wrapper extends scikit-learn base classifier so it should be compatible with all the scikit-learn extras such as grid_search and cross_val_score. A simple test on the iris dataset:

from sklearn import datasets
from sklearn.cross_validation import cross_val_score
from ivm import IVM

data = datasets.load_iris()
clf = IVM()
print cross_val_score(clf, data.data, data.target)

About

Python wrappers for the Matlab code for the Import Vector Machine (IVM) classifier from Freie University

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages