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
As a cherry on top this would enable us to replace the hardcoded isclassif in _glm_fit, that currently checks if a datafit is for classif by checking if it's equal to Logistic or QuadraticSVC.
The text was updated successfully, but these errors were encountered:
A datafit can implement a score (based on its use for classif or regression) and this score can be accessed by GeneralizedLinearEstimator.score()
This would be one more step towards sklearn-like behavior
I think this should be done with Mixins:
ClassificationDatafitMixin
,RegressionDatafitMixin
that have their ownscore()
As a cherry on top this would enable us to replace the hardcoded
isclassif
in_glm_fit
, that currently checks if a datafit is for classif by checking if it's equal to Logistic or QuadraticSVC.The text was updated successfully, but these errors were encountered: