
    Q3jh                         d dl Z d dlmZ d dlZd dlmZmZ d dlm	Z	 d dl
mZmZ d dlmZmZ d dlmZmZmZmZmZ d dlmZmZ d d	lmZ d d
lmZmZmZmZ  G d dee	      Z y)    N)Real)OneToOneFeatureMixin_fit_context)_BaseEncoder)_fit_encoding_fast_fit_encoding_fast_auto_smooth)Bunch	indexable)MetadataRouterMethodMapping_raise_for_params_routing_enabledprocess_routing)Interval
StrOptions)type_of_target)_check_feature_names_in_check_ycheck_consistent_lengthcheck_is_fittedc            	       ,    e Zd ZU dZ edh      eg eh d      g edh       eeddd      gdgd	 ed
h      gd ed
h      gdZe	e
d<   	 	 	 	 	 	 ddZ ed      d        Z ed      d        Zd Zd Zd Zd Zd ZddZd Z fdZ xZS )TargetEncoderu{#  Target Encoder for regression and classification targets.

    Each category is encoded based on a shrunk estimate of the average target
    values for observations belonging to the category. The encoding scheme mixes
    the global target mean with the target mean conditioned on the value of the
    category (see [MIC]_).

    When the target type is "multiclass", encodings are based
    on the conditional probability estimate for each class. The target is first
    binarized using the "one-vs-all" scheme via
    :class:`~sklearn.preprocessing.LabelBinarizer`, then the average target
    value for each class and each category is used for encoding, resulting in
    `n_features` * `n_classes` encoded output features.

    :class:`TargetEncoder` considers missing values, such as `np.nan` or `None`,
    as another category and encodes them like any other category. Categories
    that are not seen during :meth:`fit` are encoded with the target mean, i.e.
    `target_mean_`.

    For a demo on the importance of the `TargetEncoder` internal :term:`cross fitting`,
    see
    :ref:`sphx_glr_auto_examples_preprocessing_plot_target_encoder_cross_val.py`.
    For a comparison of different encoders, refer to
    :ref:`sphx_glr_auto_examples_preprocessing_plot_target_encoder.py`. Read
    more in the :ref:`User Guide <target_encoder>`.

    .. note::
        `fit(X, y).transform(X)` does not equal `fit_transform(X, y)` because a
        :term:`cross fitting` scheme is used in `fit_transform` for encoding.
        See the :ref:`User Guide <target_encoder>` for details.

    .. versionadded:: 1.3

    Parameters
    ----------
    categories : "auto" or list of shape (n_features,) of array-like, default="auto"
        Categories (unique values) per feature:

        - `"auto"` : Determine categories automatically from the training data.
        - list : `categories[i]` holds the categories expected in the i-th column. The
          passed categories should not mix strings and numeric values within a single
          feature, and should be sorted in case of numeric values.

        The used categories are stored in the `categories_` fitted attribute.

    target_type : {"auto", "continuous", "binary", "multiclass"}, default="auto"
        Type of target.

        - `"auto"` : Type of target is inferred with
          :func:`~sklearn.utils.multiclass.type_of_target`.
        - `"continuous"` : Continuous target
        - `"binary"` : Binary target
        - `"multiclass"` : Multiclass target

        .. note::
            The type of target inferred with `"auto"` may not be the desired target
            type used for modeling. For example, if the target consisted of integers
            between 0 and 100, then :func:`~sklearn.utils.multiclass.type_of_target`
            will infer the target as `"multiclass"`. In this case, setting
            `target_type="continuous"` will specify the target as a regression
            problem. The `target_type_` attribute gives the target type used by the
            encoder.

        .. versionchanged:: 1.4
           Added the option 'multiclass'.

    smooth : "auto" or float, default="auto"
        The amount of mixing of the target mean conditioned on the value of the
        category with the global target mean. A larger `smooth` value will put
        more weight on the global target mean.
        If `"auto"`, then `smooth` is set to an empirical Bayes estimate.

    cv : int, cross-validation generator or an iterable, default=None
        Determines the splitting strategy used in the internal :term:`cross fitting`
        during :meth:`fit_transform`. Splitters where each sample index doesn't appear
        in the validation fold exactly once, raise a `ValueError`.
        Possible inputs for cv are:

        - `None`, to use a 5-fold cross-validation chosen internally based on
            `target_type`,
        - integer, to specify the number of folds for the cross-validation chosen
            internally based on `target_type`,
        - :term:`CV splitter` that does not repeat samples across validation folds,
        - an iterable yielding (train, test) splits as arrays of indices.

        For integer/None inputs, if `target_type` is `"continuous"`, :class:`KFold` is
        used, otherwise :class:`StratifiedKFold` is used.

        Refer :ref:`User Guide <cross_validation>` for more information on
        cross-validation strategies.

        .. versionchanged:: 1.9
            Cross-validation generators and iterables can also be passed as `cv`.

    shuffle : bool, default=True
        Whether to shuffle the data in :meth:`fit_transform` before splitting into
        folds. Note that the samples within each split will not be shuffled. Only
        applies if `cv` is an int or `None`. If `cv` is a cross-validation generator or
        an iterable, `shuffle` is ignored.

        .. deprecated:: 1.9
            `shuffle` is deprecated and will be removed in 1.11. Pass a cross-validation
            generator as `cv` argument to specify the shuffling instead.

    random_state : int, RandomState instance or None, default=None
        When `shuffle` is True, `random_state` affects the ordering of the
        indices, which controls the randomness of each fold. Otherwise, this
        parameter has no effect.
        Pass an int for reproducible output across multiple function calls.
        See :term:`Glossary <random_state>`.

        .. deprecated:: 1.9
            `random_state` is deprecated and will be removed in 1.11. Pass a
            cross-validation generator as `cv` argument to specify the random state of
            the shuffling instead.

    Attributes
    ----------
    encodings_ : list of shape (n_features,) or (n_features * n_classes) of                     ndarray
        Encodings learnt on all of `X`.
        For feature `i`, `encodings_[i]` are the encodings matching the
        categories listed in `categories_[i]`. When `target_type_` is
        "multiclass", the encoding for feature `i` and class `j` is stored in
        `encodings_[j + (i * len(classes_))]`. E.g., for 2 features (f) and
        3 classes (c), encodings are ordered:
        f0_c0, f0_c1, f0_c2, f1_c0, f1_c1, f1_c2,

    categories_ : list of shape (n_features,) of ndarray
        The categories of each input feature determined during fitting or
        specified in `categories`
        (in order of the features in `X` and corresponding with the output
        of :meth:`transform`).

    target_type_ : str
        Type of target.

    target_mean_ : float
        The overall mean of the target. This value is only used in :meth:`transform`
        to encode categories.

    n_features_in_ : int
        Number of features seen during :term:`fit`.

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

    classes_ : ndarray or None
        If `target_type_` is 'binary' or 'multiclass', holds the label for each class,
        otherwise `None`.

    See Also
    --------
    OrdinalEncoder : Performs an ordinal (integer) encoding of the categorical features.
        Contrary to TargetEncoder, this encoding is not supervised. Treating the
        resulting encoding as a numerical features therefore lead arbitrarily
        ordered values and therefore typically lead to lower predictive performance
        when used as preprocessing for a classifier or regressor.
    OneHotEncoder : Performs a one-hot encoding of categorical features. This
        unsupervised encoding is better suited for low cardinality categorical
        variables as it generate one new feature per unique category.

    References
    ----------
    .. [MIC] :doi:`Micci-Barreca, Daniele. "A preprocessing scheme for high-cardinality
       categorical attributes in classification and prediction problems"
       SIGKDD Explor. Newsl. 3, 1 (July 2001), 27–32. <10.1145/507533.507538>`

    Examples
    --------
    With `smooth="auto"`, the smoothing parameter is set to an empirical Bayes estimate:

    >>> import numpy as np
    >>> from sklearn.preprocessing import TargetEncoder
    >>> X = np.array([["dog"] * 20 + ["cat"] * 30 + ["snake"] * 38], dtype=object).T
    >>> y = [90.3] * 5 + [80.1] * 15 + [20.4] * 5 + [20.1] * 25 + [21.2] * 8 + [49] * 30
    >>> enc_auto = TargetEncoder(smooth="auto")
    >>> X_trans = enc_auto.fit_transform(X, y)

    >>> # A high `smooth` parameter puts more weight on global mean on the categorical
    >>> # encodings:
    >>> enc_high_smooth = TargetEncoder(smooth=5000.0).fit(X, y)
    >>> enc_high_smooth.target_mean_
    np.float64(44.3)
    >>> enc_high_smooth.encodings_
    [array([44.1, 44.4, 44.3])]

    >>> # On the other hand, a low `smooth` parameter puts more weight on target
    >>> # conditioned on the value of the categorical:
    >>> enc_low_smooth = TargetEncoder(smooth=1.0).fit(X, y)
    >>> enc_low_smooth.encodings_
    [array([21, 80.8, 43.2])]
    auto>   r   binary
continuous
multiclassr   Nleft)closed	cv_objectboolean
deprecatedrandom_state)
categoriestarget_typesmoothcvshuffler"   _parameter_constraintsc                 X    || _         || _        || _        || _        || _        || _        y N)r#   r%   r$   r&   r'   r"   )selfr#   r$   r%   r&   r'   r"   s          R/DATA/.local/lib/python3.12/site-packages/sklearn/preprocessing/_target_encoder.py__init__zTargetEncoder.__init__   s0     %&(    T)prefer_skip_nested_validationc                 *    | j                  ||       | S )a  Fit the :class:`TargetEncoder` to X and y.

        It is discouraged to use this method because it can introduce data leakage.
        Use `fit_transform` on training data instead.

        .. note::
            `fit(X, y).transform(X)` does not equal `fit_transform(X, y)` because a
            :term:`cross fitting` scheme is used in `fit_transform` for encoding.
            See the :ref:`User Guide <target_encoder>` for details.

        Parameters
        ----------
        X : array-like of shape (n_samples, n_features)
            The data to determine the categories of each feature.

        y : array-like of shape (n_samples,)
            The target data used to encode the categories.

        Returns
        -------
        self : object
            Fitted encoder.
        )_fit_encodings_all)r+   Xys      r,   fitzTargetEncoder.fit   s    2 	1%r.   c           	         ddl m}m}m}m} ddlm} t        || d       | j                  ||      \  }	}
}}| j                  dk7  s| j                  dk7  rt        j                  dt               | j                  dk(  rdn| j                  }d|i}| j                  dk7  r| j                  |d	<    || j                  |fd
| j                  dk7  i|}t!               r*|d   t#        |||d         \  }}|d<   t%        | dfi |}nt'        t'        i             }t)        |||||f      st+        j,                  |j.                  d         } |j0                  ||fi |j2                  j0                  D ]  \  }}||xx   dz  cc<    t+        j4                  |dk(        st7        d      | j                  dk(  rXt+        j8                  |	j.                  d   |	j.                  d   t;        | j<                        z  ft*        j>                        }n%t+        j@                  |	t*        j>                        } |j0                  ||fi |j2                  j0                  D ]y  \  }}|	|ddf   ||   }}t+        jB                  |d      }| j                  dk(  r| jE                  ||||      }n| jG                  ||||      }| jI                  ||	|
 |||       { |S )a  Fit :class:`TargetEncoder` and transform `X` with the target encoding.

        This method uses a :term:`cross fitting` scheme to prevent target leakage
        and overfitting in downstream predictors. It is the recommended method for
        encoding training data.

        .. note::
            `fit(X, y).transform(X)` does not equal `fit_transform(X, y)` because a
            :term:`cross fitting` scheme is used in `fit_transform` for encoding.
            See the :ref:`User Guide <target_encoder>` for details.

        Parameters
        ----------
        X : array-like of shape (n_samples, n_features)
            The data to determine the categories of each feature.

        y : array-like of shape (n_samples,)
            The target data used to encode the categories.

        **params : dict
            Parameters to route to the internal CV object.

            Can only be used in conjunction with a cross-validation generator as CV
            object.

            For instance, `groups` (array-like of shape `(n_samples,)`) can be routed to
            a CV splitter that accepts `groups`, such as :class:`GroupKFold` or
            :class:`StratifiedGroupKFold`.

            .. versionadded:: 1.9
                Only available if `enable_metadata_routing=True`, which can be
                set by using ``sklearn.set_config(enable_metadata_routing=True)``.
                See :ref:`Metadata Routing User Guide <metadata_routing>` for
                more details.

        Returns
        -------
        X_trans : ndarray of shape (n_samples, n_features) or                     (n_samples, (n_features * n_classes))
            Transformed input.
        r   )
GroupKFoldKFoldStratifiedGroupKFoldStratifiedKFold)check_cvfit_transformr!   z`TargetEncoder.shuffle` and `TargetEncoder.random_state` are deprecated in version 1.9 and will be removed in version 1.11. Pass a cross-validation generator as `cv` argument to specify the shuffling behaviour instead.Tr'   r"   
classifierr   groupsN)split)splitter   zValidation indices from `cv` must cover each sample index exactly once with no overlap. Pass a splitter with non-overlapping validation folds as `cv` or refer to the docs for other options.r   dtypeaxis)%sklearn.model_selectionr6   r7   r8   r9   sklearn.model_selection._splitr:   r   r1   r'   r"   warningswarnFutureWarningr&   target_type_r   r
   r   r	   
isinstancenpzerosshaper>   r?   all
ValueErroremptylenclasses_float64
empty_likemean_fit_encoding_multiclass"_fit_encoding_binary_or_continuous_transform_X_ordinal)r+   r2   r3   paramsr6   r7   r8   r9   r:   	X_ordinalX_known_mask	y_encodedn_categoriesr'   	cv_kwargsr&   routed_params
seen_count_test_idxX_out	train_idxX_trainy_trainy_train_mean	encodingss                             r,   r;   zTargetEncoder.fit_transform  s   X	
 	
 	<&$8;?;R;RSTVW;X8	<L <<<'4+<+<+LMM%  ,,,6$DLL(	,(,(9(9In% GG
 ((L8
 	
 h+)21a9I)J&1fX&+D/LVLM!5r?;M
 UO5IJ
 !''!*-J'rxx1M0F0F0L0LM88$)$  N66*/* W  ,HH#Y__Q%7#dmm:L%LMjjE
 MM)2::>E#+288Aq#QM4J4J4P4P#QIx(A6	)8LWG7773L  L0 99  		 !CC  		 %%% $R4 r.   c                    | j                  |dd      \  }}| j                  dk(  rXt        j                  |j                  d   |j                  d   t        | j                        z  ft        j                        }n%t        j                  |t        j                        }| j                  ||| t        d      | j                  | j                         |S )	a  Transform X with the target encoding.

        This method internally uses the `encodings_` attribute learnt during
        :meth:`TargetEncoder.fit_transform` to transform test data.

        .. note::
            `fit(X, y).transform(X)` does not equal `fit_transform(X, y)` because a
            :term:`cross fitting` scheme is used in `fit_transform` for encoding.
            See the :ref:`User Guide <target_encoder>` for details.

        Parameters
        ----------
        X : array-like of shape (n_samples, n_features)
            The data to determine the categories of each feature.

        Returns
        -------
        X_trans : ndarray of shape (n_samples, n_features) or                     (n_samples, (n_features * n_classes))
            Transformed input.
        ignore	allow-nanhandle_unknownensure_all_finiter   r   r@   rA   N)
_transformrJ   rL   rQ   rN   rR   rS   rT   rU   rY   slice
encodings_target_mean_)r+   r2   r[   r\   rd   s        r,   	transformzTargetEncoder.transform  s    , #'//h+ #2 #
	<
 ,HH#Y__Q%7#dmm:L%LMjjE
 MM)2::>E!!M$KOO	
 r.   c                    ddl m}m} t        ||       | j	                  |dd       | j
                  dk(  r-d}t        |d	      }||vrt        d
|d| d      || _        n| j
                  | _        d| _	        | j                  dk(  r* |       }|j                  |      }|j                  | _	        nG| j                  dk(  r* |       }|j                  |      }|j                  | _	        nt        |d|       }t        j                  |d      | _        | j                  |dd      \  }	}
t        j                   d | j"                  D        t        j$                  t'        | j"                              }| j                  dk(  r| j)                  |	||| j                        }n| j+                  |	||| j                        }|| _        |	|
||fS )z(Fit a target encoding with all the data.r   )LabelBinarizerLabelEncoderrk   rl   rm   r   )r   r   r   r3   )
input_namez3Unknown label type: Target type was inferred to be z. Only z are supported.Nr   r   T)	y_numeric	estimatorrC   c              3   2   K   | ]  }t        |        y wr*   )rR   ).0category_for_features     r,   	<genexpr>z3TargetEncoder._fit_encodings_all.<locals>.<genexpr>  s     TCS+?S%&CSs   )rB   count)sklearn.preprocessingrv   rw   r   _fitr$   r   rP   rJ   rS   r;   r   rL   rV   rs   rp   fromitercategories_int64rR   rW   rX   rr   )r+   r2   r3   rv   rw   accepted_target_typesinferred_type_of_targetlabel_encoderlabel_binarizerr[   r\   r^   ri   s                r,   r1   z TargetEncoder._fit_encodings_all  s    	G1%		!H	Lv%$J!&4Q3&G#&.CC I.19N8O P!! 
 !8D $ 0 0D((NM++A.A)22DM,.,.O--a0A+44DMdd;AGGAA."&//h+ #2 #
	< {{T4CSCST((d&&'

 ,55!!	I ??!!	I $,<77r.   c                     | j                   dk(  r&t        j                  |      }t        |||||      }|S t	        |||| j                   |      }|S )zLearn target encodings.r   )r%   rL   varr   r   )r+   r[   r3   r^   target_mean
y_varianceri   s          r,   rX   z0TargetEncoder._fit_encoding_binary_or_continuous  se     ;;& J6I  +I r.   c                 (   | j                   t        | j                        g }t              D ]3  }|dd|f   }| j	                  |||||         }|j                  |       5 fdt              D        }	|	D 
cg c]  }
||
   	 c}
S c c}
w )aD  Learn multiclass encodings.

        Learn encodings for each class (c) then reorder encodings such that
        the same features (f) are grouped together. `reorder_index` enables
        converting from:
        f0_c0, f1_c0, f0_c1, f1_c1, f0_c2, f1_c2
        to:
        f0_c0, f0_c1, f0_c2, f1_c0, f1_c1, f1_c2
        Nc              3   L   K   | ]  }t        |z        D ]  }|   y wr*   )range)r|   startidx	n_classes
n_featuress      r,   r~   z9TargetEncoder._fit_encoding_multiclass.<locals>.<genexpr>A  s4      
*UY%;jI I *s   !$)n_features_in_rR   rS   r   rX   extend)r+   r[   r3   r^   r   ri   iy_classencodingreorder_indexr   r   r   s              @@r,   rW   z&TargetEncoder._fit_encoding_multiclass)  s     ((
&		y!A1gG>>A	H X& "
z*

 +88-3	#-888s    Bc                 (   | j                   dk(  rSt        | j                        }t        |      D ]/  \  }}	||z  }
||z  }|	|||
f      |||f<   ||   ||dd|
f   |f<   1 yt        |      D ]"  \  }}	|	|||f      |||f<   |||dd|f   |f<   $ y)a  Transform X_ordinal using encodings.

        In the multiclass case, `X_ordinal` and `X_unknown_mask` have column
        (axis=1) size `n_features`, while `encodings` has length of size
        `n_features * n_classes`. `feat_idx` deals with this by repeating
        feature indices by `n_classes` E.g., for 3 features, 2 classes:
        0,0,1,1,2,2

        Additionally, `target_mean` is of shape (`n_classes`,) so `mean_idx`
        cycles through 0 to `n_classes` - 1, `n_features` times.
        r   N)rJ   rR   rS   	enumerate)r+   rd   r[   X_unknown_maskrow_indicesri   r   r   e_idxr   feat_idxmean_idxs               r,   rY   z"TargetEncoder._transform_X_ordinalH  s    ( ,DMM*I#,Y#7x I- 9,,4Y{H?T5U,Vk5()<G<QnQ[1589 $8 $-Y#7x,4Y{E?Q5R,Sk5()9DnQX.56 $8r.   c                     t        | d       t        | |      }| j                  dk(  rB|D cg c]  }| j                  D ]	  }| d|   }}}t	        j
                  |t              S |S c c}}w )a  Get output feature names for transformation.

        Parameters
        ----------
        input_features : array-like of str or None, default=None
            Not used, present here for API consistency by convention.

        Returns
        -------
        feature_names_out : ndarray of str objects
            Transformed feature names. `feature_names_in_` is used unless it is
            not defined, in which case the following input feature names are
            generated: `["x0", "x1", ..., "x(n_features_in_ - 1)"]`.
            When `type_of_target_` is "multiclass" the names are of the format
            '<feature_name>_<class_name>'.
        r   r   rb   rA   )r   r   rJ   rS   rL   asarrayobject)r+   input_featuresfeature_namesfeature_name
class_names        r,   get_feature_names_outz#TargetEncoder.get_feature_names_outj  s    " 	.//nE, %2$1L"&--J  .*."/ /$1  
 ::m6::  s   A,c                     t        |       }|j                  | j                  t               j                  dd             |S )aj  Get metadata routing of this object.

        Please check :ref:`User Guide <metadata_routing>` on how the routing
        mechanism works.

        .. versionadded:: 1.9

        Returns
        -------
        routing : MetadataRouter
            A :class:`~sklearn.utils.metadata_routing.MetadataRouter` encapsulating
            routing information.
        )ownerr;   r>   )callercallee)r?   method_mapping)r   addr&   r   )r+   routers     r,   get_metadata_routingz"TargetEncoder.get_metadata_routing  sD      d+

 WW(?..og.V 	 	
 r.   c                 F    t         |          }d|j                  _        |S )NT)super__sklearn_tags__target_tagsrequired)r+   tags	__class__s     r,   r   zTargetEncoder.__sklearn_tags__  s#    w')$(!r.   )r   r   r      r!   r!   r*   )__name__
__module____qualname____doc__r   listr   r   r(   dict__annotations__r-   r   r4   r;   rt   r1   rX   rW   rY   r   r   r   __classcell__)r   s   @r,   r   r   !   s    AH "6(+T2"#QRSvh'$4)OPmz<.9:'\N)CD$D  !)  5 66 5J 6JX+Z;8z.9> ED!:6 r.   r   )!rG   numbersr   numpyrL   sklearn.baser   r   sklearn.preprocessing._encodersr   *sklearn.preprocessing._target_encoder_fastr   r   sklearn.utilsr	   r
    sklearn.utils._metadata_requestsr   r   r   r   r   sklearn.utils._param_validationr   r   sklearn.utils.multiclassr   sklearn.utils.validationr   r   r   r   r    r.   r,   <module>r      sN       ; 8 +  A 3 D
(, D
r.   