From 3ae3be7ca82d8d3b39358781bf3b3c7683df84c7 Mon Sep 17 00:00:00 2001 From: Valentin Laurent Date: Mon, 13 Jan 2025 11:29:48 +0100 Subject: [PATCH] REFACTOR: remove random_state from EnsembleRegressor (not used) --- mapie/estimator/regressor.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/mapie/estimator/regressor.py b/mapie/estimator/regressor.py index 52c56f0e..3ec18bb1 100644 --- a/mapie/estimator/regressor.py +++ b/mapie/estimator/regressor.py @@ -125,12 +125,6 @@ class EnsembleRegressor: By default ``0``. - random_state: Optional[Union[int, RandomState]] - Pseudo random number generator state used for random sampling. - Pass an int for reproducible output across multiple function calls. - - By default ``None``. - Attributes ---------- single_estimator_: sklearn.RegressorMixin