shogun-toolbox / shogun

Shōgun
http://shogun-toolbox.org
BSD 3-Clause "New" or "Revised" License
3.03k stars 1.04k forks source link

Add a Poisson regression model to Shogun #5000

Open Khalifa1997 opened 4 years ago

Khalifa1997 commented 4 years ago

As needed for my GSoC project, it would be quite beneficial for me and future Shogun users aswell to have a possion regression model, especially for count-based problems. If it's possible I'd like to be working on this issue

karlnapf commented 4 years ago

As said on irc, this is very welcome and useful. You will need to write a new machine class (potentially inheriting from LinearMachine but not necessarily). I think it might be nice to make this modular wrt likelihood (and link) functions, although we can certainly start without that (as long as the likelihood codes inside the class are separate from the rest). As you will need to use gradient descent to fit this model, make sure to check out Shogun's optimization algorithms, which you should use. Re gradient, you could start by implementing it by hand, and then make that also modular wrt the likelihood function. I suggest you start by sending class headers, a diagram how things are intended to interact, then some pseudo-code, and then we can take it from there. Check how other libs are dealing with design/modularity/optimization. You could also start by writing a Python (object oriented, roughly following Shogun's API) draft of everything if that helps.

karlnapf commented 4 years ago

https://en.wikipedia.org/wiki/Poisson_regression

karlnapf commented 4 years ago

Here is a list of common link functions and likelihoods: https://www.statsmodels.org/stable/glm.html

geektoni commented 4 years ago

As I mentioned in the email, also this lib here could be used as an inspiration https://github.com/glm-tools/pyglmnet

Khalifa1997 commented 4 years ago

Untitled Diagram This is a class-diagram of what I propose, we'd inherit from the Machine class since we are using the train() and apply() functions anyways. I have added a question mark on exposure since I am not sure if its applicable to all GLMs. Also to further add onto that, I don't think that different GLMs would have anything that's unique to them so no need to implement a unique class per GLM (they would all just share the same data members namely: betas/weight)

vigsterkr commented 4 years ago

linearmachine?

Khalifa1997 commented 4 years ago

linearmachine?

if you mean inheriting from LinearMachine well the issue comes that it already has things like bias that aren't applicable at all -to my knowledge- to GLMs

geektoni commented 4 years ago

linearmachine?

if you mean inheriting from LinearMachine well the issue comes that it already has things like bias that aren't applicable at all -to my knowledge- to GLMs

GLMs can have a bias :) they are just another type of "linear model" after all. Try to have a look to this page here http://glm-tools.github.io/pyglmnet/ for the math.

Khalifa1997 commented 4 years ago

linearmachine?

if you mean inheriting from LinearMachine well the issue comes that it already has things like bias that aren't applicable at all -to my knowledge- to GLMs

GLMs can have a bias :) they are just another type of "linear model" after all. Try to have a look to this page here http://glm-tools.github.io/pyglmnet/ for the math.

do you mean the epsilon is the bias in this examples?

geektoni commented 4 years ago

The bias is usually represented by beta_0. The epsilon means a noise value.

Khalifa1997 commented 4 years ago

Ahh this makes sense in my model, I added all betas including the bias to one array, splitting them into one bias variable that would be inherited from LinearMachine and the rest "weights" which would be inherited from LinearMachine aswell would solve things regarding this problem

karlnapf commented 4 years ago
Khalifa1997 commented 4 years ago

@karlnapf Yea the Distribution class doesn't belong here, I was confused about that part. But I don't understand points 2 and 3 you mentionned, shouldn't there be some gradient update algorithm for poission to update the weights? and for 3 what do you mean with link function being modular?

karlnapf commented 4 years ago

link function modular -> different link functions possible.

About the optimizer, nevermind for now. I suggest we move into some actual code for discussing this further

Khalifa1997 commented 4 years ago

Hey @karlnapf I have made an intial header file but I wanted to take your opinion on it before hand, https://pastebin.com/VbeNDyM2 So those are just some things I had thought of Since the Link Functions and Distributions/Family are meant to be modular, I thought of using an enum for Link Functions and for Distributions/Families instead of adding an extra layer of un-needed complexity where we'd have a class for Link Fns and Families.. I also would like to know which type of Features should I be using I saw some Regressions using DenseFeatures and others using DotFeatures which one would you recommend here

Also one last point, I am not sure how would I fit in LikelihoodModels and DescendUpdaters here I used a pastebin instead of a PR so that I hear your thoughts about the points I mentionned and then start porting a PR

karlnapf commented 4 years ago

It is really hard to give feedback from a pastebin because I canot comment inline.

However