Currently, we import a mixin and several functions directly from specific modules in scikit-learn. This includes SparseCoefMixin, _check_multi_class, and _intercept_dot. The latter two come from the logistic module.
scikit-learn has updated their linear_model module organization, making most of it private. We must either update these imports to get it directly from the private API, or include the functions directly into PyUoI. The latter might be more stable.
Currently, we import a mixin and several functions directly from specific modules in scikit-learn. This includes
SparseCoefMixin
,_check_multi_class
, and_intercept_dot
. The latter two come from the logistic module.scikit-learn has updated their
linear_model
module organization, making most of it private. We must either update these imports to get it directly from the private API, or include the functions directly into PyUoI. The latter might be more stable.