Is there a plan to add support for a gamma distribution GLM in the future?
The current list of supported GLM distributions are:
['bernoulli', 'binomial', 'categorical', 'multinomial', 'poisson', 'negative_binomial', 'exponential', 'weibull', 'gaussian', 'ceiling_weibull']
There are also a large number of transforms defined in foundry/glm/glm.py:66-120. Have these been validated? Can we assume that we're actually doing MLE of the parameters in the GLM (assuming penalty=0.), or are we optimizing for some other objective?
Is there a plan to add support for a gamma distribution GLM in the future?
The current list of supported GLM distributions are:
['bernoulli', 'binomial', 'categorical', 'multinomial', 'poisson', 'negative_binomial', 'exponential', 'weibull', 'gaussian', 'ceiling_weibull']There are also a large number of transforms defined in
foundry/glm/glm.py:66-120. Have these been validated? Can we assume that we're actually doing MLE of the parameters in the GLM (assumingpenalty=0.), or are we optimizing for some other objective?