A good candidate scoring function (per @andywong36) is $R^2$ for regression models.
A good candidate scoring function (per @jwdink) is logloss for classification models.
It will be difficult to have foundry identify which Glms are for regression v.s. classification. We can just default to logloss
Currently the error thrown is
AttributeError: 'Glm' object has no attribute 'score'
To increase compatibility with
sklearn
, we should add a.score
method to the models infoundry/glm
Ideally we could do train and score a model like this
A good candidate scoring function (per @andywong36) is $R^2$ for regression models. A good candidate scoring function (per @jwdink) is
logloss
for classification models.It will be difficult to have
foundry
identify which Glms are for regression v.s. classification. We can just default tologloss
Currently the error thrown is