Accept directly EnsembleEstimator as model for MapieRegressor #371
Labels
Backlog
This is in the MAPIE team development backlog, yet to be prioritised.
Enhancement
Type: enhancement (new feature or request)
Other or internal
If no other grey tag is relevant or if issue from the MAPIE team
Source: developers
Proposed by developers.
Why this can be useful ?
When creating some custom non-conformity score with your very nice interface, one might want to compare different scores on the same dataset. For instance, I might want to use the gamma conformity score with different powers of
y_pred
in the denominator.Right now, if I want to do this, I have to fit a new MapieRegressor each time, and if I'm using the Jackknife method it can be very long
Solution
Here, what is done is that if my
estimator
is an EnsembleRegressor that is already fitted, then I don't need re-fit all the LOO models, by I can change my conformity score (and even change the methodplus
tominmax
if I change the attribute in the EnsembleRegressor estimatorWe should also need to have a is_fitted method in the EnsembleRegressor
The text was updated successfully, but these errors were encountered: