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
Remove InputDataGLM entirely: We only use it as a container now that does some type checks in the beginning which we could do statically in utils anyway.
Keep InputDataGLM and reference the attributes in the model properties, i.e. model.input_data.<attribute> when calling model.attribute
Need to discuss how we handle this:
batchglm/batchglm/models/base_glm/model.py
Lines 66 to 82 in 6048230
There are basically three options in my opinion:
InputDataGLM
entirely: We only use it as a container now that does some type checks in the beginning which we could do statically inutils
anyway.InputDataGLM
and reference the attributes in the model properties, i.e.model.input_data.<attribute>
when callingmodel.attribute
model.__getattr__
like so:I'm in favour of 2 but as a way in between to keep this support, maybe 3 would be an elegant solution for now.
Please advise @ilan-gold @davidsebfischer
The text was updated successfully, but these errors were encountered: