-
Notifications
You must be signed in to change notification settings - Fork 14
Description
Title
Kernel methods library for machine learning applications
Presentor and Affiliation
Pradeep Reddy Raamana,
Rotman Research Institute, Baycrest Health Sciences,
University of Toronto, Toronto, Canada.
Collaborators
TBD
Github Link (if applicable)
kernelmethods
Abstract (max. 200 words):
kernelmethods is a pure python library defining modular classes that provides basic kernel methods and an intuitive interface for advanced functionality such as composite and hyper kernels. This library fills an important void in the ever-growing python-based machine learning ecosystem, where users are limited to few predefined kernels without the ability to customize or extend them for their own applications. This library defines the KernelMatrix class that is central to all the kernel methods. As it is a key bridge between input data and kernel learning algorithms, it is designed to be highly usable and extensible to different applications and data types. Kernel operations implemented are normalization, centering, product, alignment, linear combination and ranking. Convenience classes, such as Kernel{Set,Bucket}, are designed for easy management of a large collection of kernels. Dealing with diverse kernels and their fusion is necessary for automatic kernel selection in applications such as Multiple Kernel Learning. Besides numerical kernels, we designed this library to provide categorical, string and graph kernels, with the same attractive properties of intuitive and highly-testable API. Besides non-numerical kernels, we aim to provide a deeply extensible framework for arbitrary input data types, such as sequences and trees, via pyradigm. Moreover, drop-in Estimator classes are provided for seamless usage in scikit-learn ecosystem.
Preferred Session
Demo: New advances in open neuroimaging methods
Additional Context
With the ever-increasing diversity of datasets and diseases in neuroimaging research, having the ability to learn the kernel on one's own dataset/application (instead of ramming a pre-defined kernel that users can't inspect or customize) is crucial to optimize the performance of a kernel-based machine learning technique such as SVM, MKL and the like.