Skip to content

GSoC_2016_project_fundamental_usual_suspects

Heiko Strathmann edited this page Feb 8, 2017 · 17 revisions

Fundamental Machine Learning Algorithms

The aim of the project is to improve our implementation of fundamental ML algorithms. You can build on a good foundation - and continue where we stopped last year.

The usual suspects

Update: This project is in high demand. As Shogun has a richness of algorithms, we might take two students. They will work on separate projects -- each student will benchmark and tune their own distinct set of different algorithms.

This requires some preparation: we need a well-documented list of all the algorithms that need work. So if you're interested in this project, it would be a good idea to start benchmarking some of our algorithms. Eventually, rather than doing this with Python scripts, we would like to use an existing benchmarking system. This could be your first pull-request :)

But make sure you also look at the other projects -- the point is to get involved in Shogun itself.

Mentors

Difficulty & Requirements

Medium to hard -- depends on you. You need

  • ML Algorithms in C++
  • Re-factoring existing code / design patterns
  • Knowledge of very basic ML algorithms
  • Basic Linear Algebra
  • Desirable: Experience with other ML toolkits (preferably Python, such as scikit-learn, or c++ such as MLPack)
  • Desirable: Some initial experience in an existing benchmarking system
  • Desirable: Practical experience with ML
  • Desirable: Some experience with Shogun

Description

This project is about improving Shogun's implementations of "the usual suspects". That is, basic ML algorithms that should be available in every toolbox (see below). The focus in Shogun often lies on cutting-edge algorithms, leaving the usual suspects with too little attention. This results in non competitive implementations in terms of speed, scalability, and stability. We aim to identify such algorithms, benchmark them, and finally improve efficiency, code cleanliness, and test coverage. We want Shogun's implementations to be (at least) as fast as the fastest third party library!

Details

Involved algorithms definitely would include:

  • K-Means
  • (Kernel) Ridge Regression
  • Lasso/Group lasso
  • KNN
  • PCA/LDA
  • Neural networks (see also the NN project)
  • Gaussian Processes (see also the GP project)
  • SVM (in all the 100s variations we have)
  • ...

As an example, have a look at issue #2987, which illustrates the problems on KMeans: It is slow, partly wrong, and does not scale. Another example is #3048 which shows that Shogun's PCA is 10x faster than sklearn.

Waypoints and initial work

After having identified a number of algorithms, the typical approach would be to

1.) Write a script/program to compare performance with an existing ML library, on a challenging practical application. Such a benchmark should test various aspects: correctness, speed, different data sizes, different problem flavours. UPDATE: This step now should be done as part of mlpack's benchmarks. Ryan will be an additional mentor to help us. The results page can be found here. We highly appreciate any ideas to make this part as smooth as possible.

2.) Identify the most severe bottlenecks where Shogun does not perform well. This might be pure software-engineering related questions, but also depends on the mathematical formulations of the algorithms (see e.g. PCA improvements).

3.) Re-write the code that concerns the algorithms in question. Test. Produce clean code that is easy to read (see for example our HMM implementation if you want to see unreadable code)

4.) Give the whole implementation a general clean-up: Documentation, unit testing, examples.

5.) IPython notebook with a real-world application

6.) A report showcasing Shogun's performance compared to other libraries.

The K-means issue is a great place to start.

Optional

Once the Shogun implementation runs competitive, we can look to gain further speed-ups by multicore computations, approximations, and other means. We can also have a survey on Shogun's mailing list to identify methods that people like to be improved. A third option would be to simplify existing interfaces to make our algorithms easier to use.

Why this is cool

This project offers the chance to learn about many fundamental ML algorithms from a practical perspective, with a focus on efficiency. As the usual suspects are the most used algorithms by Shogun users, it is likely that many people will execute code that you wrote.

Clone this wiki locally