You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The project I'm working on requires models with multiple parameters that depend on covariates.
Examples include beta regression with both the mean and precision depending on covariates, as well as multinomial regression.
For these examples I'm currently using R and MultinomialRegression.jl respectively (I'm the author of the latter).
Turns out the solver in MultinomialRegression.jl can be used for both examples, as well as other models including those in GLM.
It's a block-wise cyclic coordinate descent algorithm with a line search. Here is an implementation, including examples of beta regression and multinomial regression. Being a proof-of-concept, it's pretty bare bones at the moment. But there's no reason it can't be elaborated into a fully-fledged GLM API.
I'm looking for a place for the 2-parameter beta regression code. Options include:
Write a new package. Then we'd have New2ParamBetaRegession.jl, BetaRegression.jl, MultinomialRegression.jl, GLM.jl.
Merge the code into BetaRegression.jl. We'd have BetaRegression.jl, MultinomialRegression.jl, GLM.jl.
Merge the code into GLM.jl and retire MultinomialRegression.jl. We'd have GLM.jl and BetaRegression.jl, with the latter being unnecessary. Ideally we'd end up with just GLM.jl.
Build on GLMpoc and release it as something like MultiParamGLM.jl. Then we'd have GLM.jl and MultiParamGLM.jl. But the latter would be capable of all of the models in GLM.jl.
Other?
With a bit more work, the solver may have a place in Optim.jl.
Is there any appetite for Option 3?
The text was updated successfully, but these errors were encountered:
Hi there,
The project I'm working on requires models with multiple parameters that depend on covariates.
Examples include beta regression with both the mean and precision depending on covariates, as well as multinomial regression.
For these examples I'm currently using R and MultinomialRegression.jl respectively (I'm the author of the latter).
Turns out the solver in MultinomialRegression.jl can be used for both examples, as well as other models including those in GLM.
It's a block-wise cyclic coordinate descent algorithm with a line search.
Here is an implementation, including examples of beta regression and multinomial regression. Being a proof-of-concept, it's pretty bare bones at the moment. But there's no reason it can't be elaborated into a fully-fledged GLM API.
I'm looking for a place for the 2-parameter beta regression code. Options include:
With a bit more work, the solver may have a place in Optim.jl.
Is there any appetite for Option 3?
The text was updated successfully, but these errors were encountered: