Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upFix Binomial_adaboost with link functions #63
Comments
|
I think arbitrary distributions should work again, e.g., with @mayrandy: Can you please add code for the |
|
@hofnerb OK |
|
I've implemented now the other glm-type link functions While doing that, I think I better understood what the classical family was doing: In case of The latter is the actual reason we are getting coefficients half the size than usual, not the coding of y. In case of As a result, |
I was a bit too fast. I've changed
link2dist()tomake.link()inBinomial_adaboost(see commit 2562b07), however did not change all further occurrences oflink$d,link$dandlink$q.I think it would be preferable to use
make.link(with correct code afterwards). However it might be that Torsten needs thelink2distinterface for his CTMs? Hence we might need to keep this.