This repository was archived by the owner on Oct 21, 2025. It is now read-only.

Description
It doesn't seem possible currently to use noise_models other than NB, yet these should be implemented in batchGLM ? Could this feature be added ?
|
if noise_model == "nb" or noise_model == "negative_binomial": |
|
from batchglm.api.models.numpy.glm_nb import Estimator, InputDataGLM |
|
else: |
|
raise ValueError('noise_model="%s" not recognized.' % noise_model) |