dswah / pyGAM

[HELP REQUESTED] Generalized Additive Models in Python
https://pygam.readthedocs.io
Apache License 2.0
871 stars 159 forks source link

Ordered Logit in pygam? #166

Open RobbieShan opened 6 years ago

RobbieShan commented 6 years ago

Is there a way to do an ordered logit with pygam? Can't find a way to do it in sklearn either.

dswah commented 6 years ago

@RobbieShan not yet, but that would be cool.

im not very familiar with the ordered logit. does it require multiple decision functions the way a catgorical distribution would?

shyamcody commented 4 years ago

(1) this book has detailed theoretical work on ordered logit. (2) this repo has implemented a version of ordered logistic regression. The question is that, ordered logit uses a normal mle minimization procedure for solving it. will it be easy to integrate this into our pirls setting somehow?