
    t]e:                     D   d Z ddlZddlmZ ddlmZ ddlZddlZddlm	Z
 ddlmZ ddlmZ ddlmZmZ dd	lmZ dd
lmZ ddlmZmZmZ ddlmZ ddlmZ ddlmZm Z m!Z! ddl"m#Z# ddl$m%Z% 	 ddl&m'Z'm(Z( n# e)e*f$ r ddl+m'Z' ddl,m(Z( Y nw xY wddl-m.Z. ddl/m0Z0 ddl1m2Z2 ddl3m4Z4 ddl5m6Z6m7Z7 ddl8m9Z9m:Z:m;Z; ddl<m=Z= ddl>m?Z? ddl@mAZA  ejB        ejC                  jD        ZE e!ejF                  ZG	 	 	 	 d#dZH e4e6e7            G d! d"e.e                      ZIdS )$z9Forest classifiers trained on balanced boostrasp samples.    N)deepcopy)warn)float32)float64)issparse)cloneis_classifier)RandomForestClassifier)_set_random_states)_generate_unsampled_indices_get_n_samples_bootstrap_parallel_build_trees)DataConversionWarning)DecisionTreeClassifier)_safe_indexingcheck_random_stateparse_version)type_of_target)_check_sample_weight)Paralleldelayed)r   )r      )_ParamsValidationMixin)make_pipeline)RandomUnderSampler)Substitution)_n_jobs_docstring_random_state_docstring)HiddenInterval
StrOptions)check_sampling_strategy)_fit_context   )/_random_forest_classifier_parameter_constraintsc                 D   |                      ||          \  }}|t          || j                  }t          t	          |
|j        d                   }
t          t          d          k    rt          |||||||||	|

  
        }nt          |||||||||	|

  
        }| |fS )Nr   z1.1)verboseclass_weightn_samples_bootstrap)	fit_resampler   sample_indices_r   minshapesklearn_versionr   r   )samplertree	bootstrapXysample_weighttree_idxn_treesr'   r(   r)   forestX_resampledy_resampleds                 9lib/python3.11/site-packages/imblearn/ensemble/_forest.py_local_parallel_build_treesr;   2   s      '33Aq99K &}g6MNN+!"5{7H7KLL-....$% 3
 
 
 %% 3
 
 
 D=    )n_jobsrandom_statec                       e Zd ZdZe ed          k    r eej                  Zn ee	          Ze
                     eej        ddd           eh d          ee e edh                    gd	 e edh                    gd
           	 ddddddddddddddddddddd fdZ e            fdZddZ ed          dd            Zd Zd Zed             Zed             Zd Z xZS ) BalancedRandomForestClassifiera2  A balanced random forest classifier.

    A balanced random forest randomly under-samples each bootstrap sample to
    balance it.

    Read more in the :ref:`User Guide <forest>`.

    .. versionadded:: 0.4

    Parameters
    ----------
    n_estimators : int, default=100
        The number of trees in the forest.

    criterion : {{"gini", "entropy"}}, default="gini"
        The function to measure the quality of a split. Supported criteria are
        "gini" for the Gini impurity and "entropy" for the information gain.
        Note: this parameter is tree-specific.

    max_depth : int, default=None
        The maximum depth of the tree. If None, then nodes are expanded until
        all leaves are pure or until all leaves contain less than
        min_samples_split samples.

    min_samples_split : int or float, default=2
        The minimum number of samples required to split an internal node:

        - If int, then consider `min_samples_split` as the minimum number.
        - If float, then `min_samples_split` is a percentage and
          `ceil(min_samples_split * n_samples)` are the minimum
          number of samples for each split.

    min_samples_leaf : int or float, default=1
        The minimum number of samples required to be at a leaf node:

        - If int, then consider ``min_samples_leaf`` as the minimum number.
        - If float, then ``min_samples_leaf`` is a fraction and
          `ceil(min_samples_leaf * n_samples)` are the minimum
          number of samples for each node.

    min_weight_fraction_leaf : float, default=0.0
        The minimum weighted fraction of the sum total of weights (of all
        the input samples) required to be at a leaf node. Samples have
        equal weight when sample_weight is not provided.

    max_features : {{"auto", "sqrt", "log2"}}, int, float, or None,             default="sqrt"
        The number of features to consider when looking for the best split:

        - If int, then consider `max_features` features at each split.
        - If float, then `max_features` is a percentage and
          `int(max_features * n_features)` features are considered at each
          split.
        - If "auto", then `max_features=sqrt(n_features)`.
        - If "sqrt", then `max_features=sqrt(n_features)` (same as "auto").
        - If "log2", then `max_features=log2(n_features)`.
        - If None, then `max_features=n_features`.

        Note: the search for a split does not stop until at least one
        valid partition of the node samples is found, even if it requires to
        effectively inspect more than ``max_features`` features.

    max_leaf_nodes : int, default=None
        Grow trees with ``max_leaf_nodes`` in best-first fashion.
        Best nodes are defined as relative reduction in impurity.
        If None then unlimited number of leaf nodes.

    min_impurity_decrease : float, default=0.0
        A node will be split if this split induces a decrease of the impurity
        greater than or equal to this value.
        The weighted impurity decrease equation is the following::

            N_t / N * (impurity - N_t_R / N_t * right_impurity
                                - N_t_L / N_t * left_impurity)

        where ``N`` is the total number of samples, ``N_t`` is the number of
        samples at the current node, ``N_t_L`` is the number of samples in the
        left child, and ``N_t_R`` is the number of samples in the right child.
        ``N``, ``N_t``, ``N_t_R`` and ``N_t_L`` all refer to the weighted sum,
        if ``sample_weight`` is passed.

    bootstrap : bool, default=True
        Whether bootstrap samples are used when building trees.

    oob_score : bool, default=False
        Whether to use out-of-bag samples to estimate
        the generalization accuracy.

    sampling_strategy : float, str, dict, callable, default="auto"
        Sampling information to sample the data set.

        - When ``float``, it corresponds to the desired ratio of the number of
          samples in the minority class over the number of samples in the
          majority class after resampling. Therefore, the ratio is expressed as
          :math:`\alpha_{{us}} = N_{{m}} / N_{{rM}}` where :math:`N_{{m}}` is the
          number of samples in the minority class and
          :math:`N_{{rM}}` is the number of samples in the majority class
          after resampling.

          .. warning::
             ``float`` is only available for **binary** classification. An
             error is raised for multi-class classification.

        - When ``str``, specify the class targeted by the resampling. The
          number of samples in the different classes will be equalized.
          Possible choices are:

            ``'majority'``: resample only the majority class;

            ``'not minority'``: resample all classes but the minority class;

            ``'not majority'``: resample all classes but the majority class;

            ``'all'``: resample all classes;

            ``'auto'``: equivalent to ``'not minority'``.

        - When ``dict``, the keys correspond to the targeted classes. The
          values correspond to the desired number of samples for each targeted
          class.

        - When callable, function taking ``y`` and returns a ``dict``. The keys
          correspond to the targeted classes. The values correspond to the
          desired number of samples for each class.

        .. versionchanged:: 0.11
           The default of `sampling_strategy` will change from `"auto"` to
           `"all"` in version 0.13. This forces to use a bootstrap of the
           minority class as proposed in [1]_.

    replacement : bool, default=False
        Whether or not to sample randomly with replacement or not.

        .. versionchanged:: 0.11
           The default of `replacement` will change from `False` to `True` in
           version 0.13. This forces to use a bootstrap of the
           minority class and draw with replacement as proposed in [1]_.

    {n_jobs}

    {random_state}

    verbose : int, default=0
        Controls the verbosity of the tree building process.

    warm_start : bool, default=False
        When set to ``True``, reuse the solution of the previous call to fit
        and add more estimators to the ensemble, otherwise, just fit a whole
        new forest.

    class_weight : dict, list of dicts, {{"balanced", "balanced_subsample"}},             default=None
        Weights associated with classes in the form dictionary with the key
        being the class_label and the value the weight.
        If not given, all classes are supposed to have weight one. For
        multi-output problems, a list of dicts can be provided in the same
        order as the columns of y.
        Note that for multioutput (including multilabel) weights should be
        defined for each class of every column in its own dict. For example,
        for four-class multilabel classification weights should be
        [{{0: 1, 1: 1}}, {{0: 1, 1: 5}}, {{0: 1, 1: 1}}, {{0: 1, 1: 1}}]
        instead of [{{1:1}}, {{2:5}}, {{3:1}}, {{4:1}}].
        The "balanced" mode uses the values of y to automatically adjust
        weights inversely proportional to class frequencies in the input data
        as ``n_samples / (n_classes * np.bincount(y))``
        The "balanced_subsample" mode is the same as "balanced" except that
        weights are computed based on the bootstrap sample for every tree
        grown.
        For multi-output, the weights of each column of y will be multiplied.
        Note that these weights will be multiplied with sample_weight (passed
        through the fit method) if sample_weight is specified.

    ccp_alpha : non-negative float, default=0.0
        Complexity parameter used for Minimal Cost-Complexity Pruning. The
        subtree with the largest cost complexity that is smaller than
        ``ccp_alpha`` will be chosen. By default, no pruning is performed.

        .. versionadded:: 0.6
           Added in `scikit-learn` in 0.22

    max_samples : int or float, default=None
        If bootstrap is True, the number of samples to draw from X
        to train each base estimator.
            - If None (default), then draw `X.shape[0]` samples.
            - If int, then draw `max_samples` samples.
            - If float, then draw `max_samples * X.shape[0]` samples. Thus,
              `max_samples` should be in the interval `(0, 1)`.
        Be aware that the final number samples used will be the minimum between
        the number of samples given in `max_samples` and the number of samples
        obtained after resampling.

        .. versionadded:: 0.6
           Added in `scikit-learn` in 0.22

    Attributes
    ----------
    estimator_ : :class:`~sklearn.tree.DecisionTreeClassifier` instance
        The child estimator template used to create the collection of fitted
        sub-estimators.

        .. versionadded:: 0.10

    base_estimator_ : :class:`~sklearn.tree.DecisionTreeClassifier` instance
        The child estimator template used to create the collection of fitted
        sub-estimators.

        .. deprecated:: 1.2
           `base_estimator_` is deprecated in `scikit-learn` 1.2 and will be
           removed in 1.4. Use `estimator_` instead. When the minimum version
           of `scikit-learn` supported by `imbalanced-learn` will reach 1.4,
           this attribute will be removed.

    estimators_ : list of :class:`~sklearn.tree.DecisionTreeClassifier`
        The collection of fitted sub-estimators.

    base_sampler_ : :class:`~imblearn.under_sampling.RandomUnderSampler`
        The base sampler used to construct the subsequent list of samplers.

    samplers_ : list of :class:`~imblearn.under_sampling.RandomUnderSampler`
        The collection of fitted samplers.

    pipelines_ : list of Pipeline.
        The collection of fitted pipelines (samplers + trees).

    classes_ : ndarray of shape (n_classes,) or a list of such arrays
        The classes labels (single output problem), or a list of arrays of
        class labels (multi-output problem).

    n_classes_ : int or list
        The number of classes (single output problem), or a list containing the
        number of classes for each output (multi-output problem).

    n_features_ : int
        The number of features when `fit` is performed.

        .. deprecated:: 1.0
           `n_features_` is deprecated in `scikit-learn` 1.0 and will be removed
           in version 1.2. When the minimum version of `scikit-learn` supported
           by `imbalanced-learn` will reach 1.2, this attribute will be removed.

    n_features_in_ : int
        Number of features in the input dataset.

        .. versionadded:: 0.9

    feature_names_in_ : ndarray of shape (`n_features_in_`,)
        Names of features seen during `fit`. Defined only when `X` has feature
        names that are all strings.

        .. versionadded:: 0.9

    n_outputs_ : int
        The number of outputs when ``fit`` is performed.

    feature_importances_ : ndarray of shape (n_features,)
        The feature importances (the higher, the more important the feature).

    oob_score_ : float
        Score of the training dataset obtained using an out-of-bag estimate.

    oob_decision_function_ : ndarray of shape (n_samples, n_classes)
        Decision function computed with out-of-bag estimate on the training
        set. If n_estimators is small it might be possible that a data point
        was never left out during the bootstrap. In this case,
        `oob_decision_function_` might contain NaN.

    See Also
    --------
    BalancedBaggingClassifier : Bagging classifier for which each base
        estimator is trained on a balanced bootstrap.

    EasyEnsembleClassifier : Ensemble of AdaBoost classifier trained on
        balanced bootstraps.

    RUSBoostClassifier : AdaBoost classifier were each bootstrap is balanced
        using random-under sampling at each round of boosting.

    References
    ----------
    .. [1] Chen, Chao, Andy Liaw, and Leo Breiman. "Using random forest to
       learn imbalanced data." University of California, Berkeley 110 (2004):
       1-12.

    Examples
    --------
    >>> from imblearn.ensemble import BalancedRandomForestClassifier
    >>> from sklearn.datasets import make_classification
    >>>
    >>> X, y = make_classification(n_samples=1000, n_classes=3,
    ...                            n_informative=4, weights=[0.2, 0.3, 0.5],
    ...                            random_state=0)
    >>> clf = BalancedRandomForestClassifier(
    ...     sampling_strategy="all", replacement=True, max_depth=2, random_state=0)
    >>> clf.fit(X, y)
    BalancedRandomForestClassifier(...)
    >>> print(clf.feature_importances_)
    [...]
    >>> print(clf.predict([[0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
    ...                     0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]))
    [1]
    z1.3r   r$   right)closed>   not majoritynot minorityallautomajorityr   booleansampling_strategyreplacementd   giniNr   g        sqrtTF)	criterion	max_depthmin_samples_splitmin_samples_leafmin_weight_fraction_leafmax_featuresmax_leaf_nodesmin_impurity_decreaser1   	oob_scorerJ   rK   r=   r>   r'   
warm_startr(   	ccp_alphamax_samplesc                    t                                          ||||
||||||||||||	||           || _        || _        d S )N)rO   rP   n_estimatorsr1   rW   r=   r>   r'   rX   r(   rQ   rR   rS   rT   rU   rV   rY   rZ   )super__init__rJ   rK   )selfr\   rO   rP   rQ   rR   rS   rT   rU   rV   r1   rW   rJ   rK   r=   r>   r'   rX   r(   rY   rZ   	__class__s                        r:   r^   z'BalancedRandomForestClassifier.__init__  st    0 	%%!%/-%=%)"7#% 	 	
 	
 	
* "3&r<   c                    t          | d          r| j        }n| j        }|t          |          | _        nt          |          | _        	 | j        | _        n# t          $ r Y nw xY wt          | j        | j	                  | _
        dS )zZCheck the estimator and the n_estimator attribute, set the
        `estimator_` attribute.	estimatorNrI   )hasattrrb   base_estimatorr   
_estimatorbase_estimator_AttributeErrorr   _sampling_strategy_replacementbase_sampler_)r_   defaultrd   s      r:   _validate_estimatorz2BalancedRandomForestClassifier._validate_estimator  s     4%% 	1!^NN!0N%#N33DOO#GnnDO	#'?D   	 	 	D	 0"5)
 
 
s   A 
A&%A&c                      t           j                  } |j        di  fd j        D              t           j                  }| t          ||           t          ||           ||fS )zMake and configure a copy of the `base_estimator_` attribute.
        Warning: This method should be used to properly instantiate new
        sub-estimators.
        c                 2    i | ]}|t          |          S  )getattr).0pr_   s     r:   
<dictcomp>zJBalancedRandomForestClassifier._make_sampler_estimator.<locals>.<dictcomp>  s%    SSS74#3#3SSSr<   Nro   )r   re   
set_paramsestimator_paramsrj   r   )r_   r>   rb   r/   s   `   r:   _make_sampler_estimatorz6BalancedRandomForestClassifier._make_sampler_estimator  s    
 $/**		TTSSSST=RSSSTTT*++#y,777w555'!!r<   )prefer_skip_nested_validationc           	      V
                                        j        dk    rt          dt                     d _        n j         _         j        dk    rt          dt                     d _        n j         _        t          |          rt          d           	                    |ddt          	          \  }t                    j        d          _        t                    r                                 t          j        |          }|j        dk    r(|j        d         dk    rt          dt$          d           |j        dk    rt          j        |d          }|j        d          _                             |          \  }t-          |dd
          t.          k    s|j        j        st          j        t.                    t7           j        t8                    r: fdt;           j        |d                                          D              _        n j         _        |
|z  n|t?          j        d          j                    !                                  j"        s j#        rt          d          tI           j%                  } j&        rtO           d          sg  _(        g  _)        g  _*         j+        tY           j(                  z
  }|dk     r+t          d j+        tY           j(                  fz            |dk    rt          d           ni j&        rFtY           j(                  dk    r.|-                    t\          tY           j(                             g g }t_          |          D ]E} 0                    |          \  }	}
1                    |	           |1                    |
           F te           j3         j4        d           fdtk          tm          |                    D                       }tm          | \  } j(        7                                j)        7                    |            j*        7                    d tm          |          D                         j#        r<tq          |          }|d v rt          d!| d"           9                               tO           d#          r/ j        dk    r$ j:        d          _:         j;        d          _;         S )$aI  Build a forest of trees from the training set (X, y).

        Parameters
        ----------
        X : {array-like, sparse matrix} of shape (n_samples, n_features)
            The training input samples. Internally, its dtype will be converted
            to ``dtype=np.float32``. If a sparse matrix is provided, it will be
            converted into a sparse ``csc_matrix``.

        y : array-like of shape (n_samples,) or (n_samples, n_outputs)
            The target values (class labels in classification, real numbers in
            regression).

        sample_weight : array-like of shape (n_samples,)
            Sample weights. If None, then samples are equally weighted. Splits
            that would create child nodes with net zero or negative weight are
            ignored while searching for a split in each node. In the case of
            classification, splits are also ignored if they would result in any
            single class carrying a negative weight in either child node.

        Returns
        -------
        self : object
            The fitted instance.
        r   zThe default of `sampling_strategy` will change from `'auto'` to `'all'` in version 0.13. This change will follow the implementation proposed in the original paper. Set to `'all'` to silence this warning and adopt the future behaviour.rF   zThe default of `replacement` will change from `False` to `True` in version 0.13. This change will follow the implementation proposed in the original paper. Set to `True` to silence this warning and adopt the future behaviour.Fz3sparse multilabel-indicator for y is not supported.Tcsc)multi_outputaccept_sparsedtypeNr$   r   zA column-vector y was passed when a 1d array was expected. Please change the shape of y to (n_samples,), for example using ravel().)
stacklevel)r$   r|   r|   c                 v    i | ]5\  }}t          j        j        d          |k              d          d          |6S )r   )npwhereclasses_)rq   keyvaluer_   s      r:   rs   z6BalancedRandomForestClassifier.fit.<locals>.<dictcomp>_  sO     ' ' 'C q)S011!4Q7' ' 'r<   zunder-samplingr   )	n_samplesrZ   z6Out of bag estimation only available if bootstrap=Trueestimators_zTn_estimators=%d must be larger or equal to len(estimators_)=%d when warm_start==TruezJWarm-start fitting without increasing n_estimators does not fit new trees.)size)r>   threads)r=   r'   preferc              3      K   | ]O\  }\  }} t          t                    ||j        	|t                    j        j                   V  PdS ))r'   r(   r)   r7   N)r   r;   r1   lenr'   r(   )
rq   istr2   r)   r4   r_   trees	y_encodeds
       r:   	<genexpr>z5BalancedRandomForestClassifier.fit.<locals>.<genexpr>  s         Av1 5344N!JJ L!%!2(;       r<   c                 h    g | ]/\  }}t          t          |          t          |                    0S ro   )r   r   )rq   r   r   s      r:   
<listcomp>z6BalancedRandomForestClassifier.fit.<locals>.<listcomp>  sB       1 "(1++x{{;;  r<   )zmulticlass-multioutputunknownz@The type of target cannot be used to compute OOB estimates. Got zv while only the following are supported: continuous, continuous-multioutput, binary, multiclass, multilabel-indicator.r   )<_validate_paramsrJ   r   FutureWarningrh   rK   ri   r   
ValueError_validate_dataDTYPEr   r-   _n_featuressort_indicesr   
atleast_1dndimr   reshape
n_outputs__validate_y_class_weightrp   DOUBLEflags
contiguousascontiguousarray
isinstancedictr"   itemsr   rZ   rl   r1   rW   r   r>   rX   rc   r   	samplers_
pipelines_r\   r   randintMAX_INTrangerv   appendr   r=   r'   	enumeratezipextendr   _set_oob_score_and_attributes
n_classes_r   )r_   r2   r3   r4   expanded_class_weightr>   n_more_estimatorssamplers_r0   r/   samplers_treesy_typer)   r   r   s   `` `         @@@r:   fitz"BalancedRandomForestClassifier.fit  s   6 	!V++:    '-D##&*&<D#v%%:    !&D $ 0D A;; 	TRSSS""qt5 # 
 
1 $0BBM71:A;; 	 NNM!6Q;;171:??; &    6Q;; 
1g&&A'!*+/+H+H+K+K(	(1gt$$..ag6H.,YfEEEId-t44 
	>' ' ' '"9*$# # %''' ' 'D## '+&=D# ,( -0E E 5 7gajd.>
 
 

 	  """~ 	W$. 	WUVVV)$*;<< 	!gdM&B&B 	!!DDN DO -D4D0E0EEq  <$c$*:&;&;<=   !##!   
  J3t'7#8#81#<#< $$W3t7G3H3H$IIIEH,-- ) ) $ < <, < W WgT"""((((X{            "+3x+?+?!@!@  	 N* ">2OHe ##E***N!!(+++ O""  #He 4 4     > 	=#A&&F>>>
 !8&,8 8 8   ..q)<<< 4$$ 	-A)=)="oa0DO M!,DMr<   c                    |                      ||          | _        | j        j        d         dk    r | j                            d          | _        ddlm}  ||t          j        | j        d                    | _        dS )a  Compute and set the OOB score and attributes.

        Parameters
        ----------
        X : array-like of shape (n_samples, n_features)
            The data matrix.
        y : ndarray of shape (n_samples, n_outputs)
            The target matrix.
        r~   r$   )axisr   )accuracy_scoreN)	_compute_oob_predictionsoob_decision_function_r-   squeezesklearn.metricsr   r   argmax
oob_score_)r_   r2   r3   r   s       r:   r   z<BalancedRandomForestClassifier._set_oob_score_and_attributes  s     '+&C&CAq&I&I#&,R0A55*.*E*M*MSU*M*V*VD'222222(.ry41===
 
r<   c                    t          |          r|                                }|j        d         }| j        }t	          |           r!t          | d          r|| j        d         |f}n|d|f}t          j        |t          j	                  }t          j        ||ft          j
                  }t          | j        | j                  D ]\  }}	||j                 }
||j                 }|j        d         }t          || j                  }t#          |	j        ||          }|                     |	|
|ddf                   }|j        |         }||dfxx         |z  cc<   ||ddfxx         dz  cc<   t)          |          D ]S}|dk                                    rt-          dt.                     d||dk    <   |d|fxx         |d|gf         z  cc<   T|S )	a  Compute and set the OOB score.

        Parameters
        ----------
        X : array-like of shape (n_samples, n_features)
            The data matrix.
        y : ndarray of shape (n_samples, n_outputs)
            The target matrix.

        Returns
        -------
        oob_pred : ndarray of shape (n_samples, n_classes, n_outputs) or                 (n_samples, 1, n_outputs)
            The OOB predictions.
        r   r   r$   )r-   r|   r   N.zvSome inputs do not have OOB scores. This probably means too few trees were used to compute any reliable OOB estimates.)r   tocsrr-   r   r	   rc   r   r   zerosr   int64r   r   r   r+   r   rZ   r   r>   _get_oob_predictionsr   anyr   UserWarning)r_   r2   r3   r   	n_outputsoob_pred_shapeoob_pred
n_oob_predr/   rb   
X_resample
y_resamplen_sample_subsetr)   unsampled_indicesy_predindicesks                     r:   r   z7BalancedRandomForestClassifier._compute_oob_predictions  s7   " A;; 			AGAJ	O	 		774#>#> 		7 ();YGNN
 (I6N8.
CCCXy)4BHEEE
"%dnd6F"G"G 	( 	(GY723J723J(.q1O":!1# # !<&9L! ! ..:&7&:; F -.?@GWc\"""f,"""wz"""a'""""y!! 		5 		5Aa$$&& 0!  	   /0
:?+S!V
38 44r<   c                     | j         S )z$Estimator used to grow the ensemble.)re   r_   s    r:   
estimator_z)BalancedRandomForestClassifier.estimator_9  s     r<   c                 :    t          dt                     | j        S )z-Number of features when ``fit`` is performed.z`n_features_` was deprecated in scikit-learn 1.0. This attribute will not be accessible when the minimum supported version of scikit-learn is 1.2.)r   r   n_features_in_r   s    r:   n_features_z*BalancedRandomForestClassifier.n_features_?  s+     	 		
 	
 	
 ""r<   c                     dddS )NF)multioutput
multilabelro   r   s    r:   
_more_tagsz)BalancedRandomForestClassifier._more_tagsJ  s     
 
 	
r<   )rL   )N)__name__
__module____qualname____doc__r.   r   r   r
   _parameter_constraintsr%   updater    numbersRealr!   r   callabler   r^   r   rl   rv   r#   r   r   r   propertyr   r   r   __classcell__)r`   s   @r:   r@   r@   e   s?       
l l^	 --....!)*@*W!X!X!);"
 "
 !! q!G<<<
VVVWWzz6(++,," &vvjj&.B.B'C'CD		
 		
   .' !$! -.' .' .' .' .' .' .'` +A*@*B*B 
 
 
 
0" " " " \555V V V 65Vp
 
 
(E E EP   X
 # # X#
 
 
 
 
 
 
r<   r@   )r   NNN)Jr   r   copyr   warningsr   numpyr   sklearnr   r   r   r   scipy.sparser   sklearn.baser   r	   sklearn.ensembler
   sklearn.ensemble._baser   sklearn.ensemble._forestr   r   r   sklearn.exceptionsr   sklearn.treer   sklearn.utilsr   r   r   sklearn.utils.multiclassr   sklearn.utils.validationr   sklearn.utils.parallelr   r   ImportErrorModuleNotFoundErrorjoblibsklearn.utils.fixesbaser   pipeliner   under_samplingr   utilsr   utils._docstringr   r   utils._param_validationr   r    r!   utils._validationr"   utils.fixesr#   _commonr%   iinfoint32maxr   __version__r.   r;   r@   ro   r<   r:   <module>r     s/   ? ?
                   " " " " " " # # # # # # ! ! ! ! ! ! - - - - - - - - 3 3 3 3 3 3 5 5 5 5 5 5         
 5 4 4 4 4 4 / / / / / / K K K K K K K K K K 3 3 3 3 3 3 9 9 9 9 9 9,888888888() , , ,++++++++, * ) ) ) ) ) $ $ $ $ $ $ / / / / / /             I I I I I I I I B B B B B B B B B B 7 7 7 7 7 7 & & & & & & D D D D D D
"(28


 - 344 0 0 0 0f (  e
 e
 e
 e
 e
%;=S e
 e
	 e
 e
 e
s   .A7 7BB