Ë
    ÷Q(h�P  ã                   ó”   — d dl mZmZ d dlZddl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 dd	lmZ dd
lmZmZ  G d„ dee«      Zy)é    )ÚIntegralÚRealNé   )ÚOneToOneFeatureMixinÚ_fit_context)ÚIntervalÚ
StrOptions)Útype_of_target)Ú_check_feature_names_inÚ_check_yÚcheck_consistent_lengthÚcheck_is_fittedé   )Ú_BaseEncoder)Ú_fit_encoding_fastÚ_fit_encoding_fast_auto_smoothc            	       ó  ‡ — 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 eeddd¬«      gd	gd
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ˆ 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 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, default=5
        Determines the number of folds in the :term:`cross fitting` strategy used in
        :meth:`fit_transform`. For classification targets, `StratifiedKFold` is used
        and for continuous targets, `KFold` is used.

    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.

    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>`.

    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...)
    >>> enc_high_smooth.encodings_
    [array([44..., 44..., 44...])]

    >>> # 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([20..., 80..., 43...])]
    Úauto>   r   ÚbinaryÚ
continuousÚ
multiclassr   NÚleft)Úclosedr   ÚbooleanÚrandom_state)Ú
categoriesÚtarget_typeÚsmoothÚcvÚshuffler   Ú_parameter_constraintsTc                 óX   — || _         || _        || _        || _        || _        || _        y ©N)r   r   r   r    r!   r   )Úselfr   r   r   r    r!   r   s          úc/var/www/skyplay_api_hub/venv/lib/python3.12/site-packages/sklearn/preprocessing/_target_encoder.pyÚ__init__zTargetEncoder.__init__Æ   s0   € ð %ˆŒØˆŒØ&ˆÔØˆŒØˆŒØ(ˆÕó    )Úprefer_skip_nested_validationc                 ó*   — | j                  ||«       | S )a�  Fit the :class:`TargetEncoder` to X and y.

        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   € ð" 	×Ñ  1Ô%Øˆr(   c           	      ó<  — ddl m}m} | j                  ||«      \  }}}}| j                  dk(  r* || j
                  | j                  | j                  ¬«      }	n) || j
                  | j                  | j                  ¬«      }	| j                  dk(  rXt        j                  |j                  d   |j                  d   t        | j                  «      z  ft        j                  ¬«      }
n%t        j                  |t        j                  ¬«      }
|	j                  ||«      D ]y  \  }}||d	d	…f   ||   }}t        j                   |d¬
«      }| j                  dk(  r| j#                  ||||«      }n| j%                  ||||«      }| j'                  |
|| |||«       Œ{ |
S )a  Fit :class:`TargetEncoder` and transform X with the target encoding.

        .. 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
        -------
        X_trans : ndarray of shape (n_samples, n_features) or                     (n_samples, (n_features * n_classes))
            Transformed input.
        r   )ÚKFoldÚStratifiedKFoldr   )r!   r   r   r   r   ©ÚdtypeN©Úaxis)Úmodel_selectionr0   r1   r+   Útarget_type_r    r!   r   ÚnpÚemptyÚshapeÚlenÚclasses_Úfloat64Ú
empty_likeÚsplitÚmeanÚ_fit_encoding_multiclassÚ"_fit_encoding_binary_or_continuousÚ_transform_X_ordinal)r%   r,   r-   r0   r1   Ú	X_ordinalÚX_known_maskÚ	y_encodedÚn_categoriesr    ÚX_outÚ	train_idxÚtest_idxÚX_trainÚy_trainÚy_train_meanÚ	encodingss                    r&   Úfit_transformzTargetEncoder.fit_transformê   sŠ  € ÷. 	=à;?×;RÑ;RÐSTÐVWÓ;XÑ8ˆ	�< ¨Lð
 ×Ñ Ò,Ù�t—w‘w¨¯©À4×CTÑCTÔU‰Bá Ø—‘ §¡¸D×<MÑ<MôˆBð
 ×Ñ Ò,Ü—H‘HØ—‘ Ñ# Y§_¡_°QÑ%7¼#¸d¿m¹mÓ:LÑ%LÐMÜ—j‘jô‰Eô
 —M‘M )´2·:±:Ô>ˆEà#%§8¡8¨A¨q£>ò 	ÑˆI�xØ(¨²A¨Ñ6¸	À)Ñ8L�WˆGÜŸ7™7 7°Ô3ˆLà× Ñ  LÒ0Ø ×9Ñ9ØØØ Ø ó	‘	ð !×CÑCØØØ Ø ó	�	ð ×%Ñ%ØØØ�ØØØõð%	ð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.

        .. 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   r2   N)Ú
_transformr7   r8   r9   r:   r;   r<   r=   r>   rC   ÚsliceÚ
encodings_Útarget_mean_)r%   r,   rD   rE   rH   s        r&   Ú	transformzTargetEncoder.transform4  s½   € ð& #'§/¡/Ø˜h¸+ð #2ó #
Ñˆ	�<ð
 ×Ñ Ò,Ü—H‘HØ—‘ Ñ# Y§_¡_°QÑ%7¼#¸d¿m¹mÓ:LÑ%LÐMÜ—j‘jô‰Eô
 —M‘M )´2·:±:Ô>ˆEà×!Ñ!ØØØˆMÜ�$‹KØ�O‰OØ×Ñô	
ð ˆ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ÚLabelEncoderrQ   rR   rS   r   )r   r   r   r-   )Ú
input_namez3Unknown label type: Target type was inferred to be z. Only z are supported.Nr   r   T)Ú	y_numericÚ	estimatorr   r4   c              3   ó2   K  — | ]  }t        |«      –— Œ y ­wr$   )r;   )Ú.0Úcategory_for_features     r&   ú	<genexpr>z3TargetEncoder._fit_encodings_all.<locals>.<genexpr>ˆ  s   è ø€ ÒTÐ+?ŒSÐ%×&ÑTùs   ‚)r3   Úcount)Úpreprocessingr\   r]   r   Ú_fitr   r
   Ú
ValueErrorr7   r<   rO   r   r8   r@   rY   rV   ÚfromiterÚcategories_Úint64r;   rA   rB   rX   )r%   r,   r-   r\   r]   Úaccepted_target_typesÚinferred_type_of_targetÚlabel_encoderÚlabel_binarizerrD   rE   rG   rN   s                r&   r+   z TargetEncoder._fit_encodings_all^  sÝ  € ÷	
ô
 	   1Ô%Ø�	‰	�! HÀˆ	ÔLà×Ñ˜vÒ%Ø$JÐ!Ü&4°QÀ3Ô&GÐ#Ø&Ð.CÑCÜ ØIØ.Ð1°Ð9NÐ8Oð P!ð!óð ð
 !8ˆDÕà $× 0Ñ 0ˆDÔàˆŒØ×Ñ Ò(Ù(›NˆMØ×+Ñ+¨AÓ.ˆAØ)×2Ñ2ˆD�MØ×Ñ ,Ò.Ù,Ó.ˆOØ×-Ñ-¨aÓ0ˆAØ+×4Ñ4ˆD�Mä˜ d°dÔ;ˆAäŸG™G A¨AÔ.ˆÔà"&§/¡/Ø˜h¸+ð #2ó #
Ñˆ	�<ô —{‘{ÙTÀ4×CSÑCSÔ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   r8   Úvarr   r   )r%   rD   r-   rG   Útarget_meanÚ
y_variancerN   s          r&   rB   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)rb   ÚstartÚidxÚ	n_classesÚ
n_featuress      €€r&   rd   z9TargetEncoder._fit_encoding_multiclass.<locals>.<genexpr>Í  s<   øè ø€ ò 
àÜ˜U Y°Ñ%;¸jÓIò
ð ô ð
Øñ
ùs   ƒ!$)Ún_features_in_r;   r<   rv   rB   Úextend)r%   rD   r-   rG   rr   rN   ÚiÚy_classÚencodingÚreorder_indexrx   ry   rz   s              @@r&   rA   z&TargetEncoder._fit_encoding_multiclassµ  s¢   ù€ ð ×(Ñ(ˆ
Ü˜Ÿ™Ó&ˆ	àˆ	Ü�yÓ!ò 	'ˆAØš˜1˜‘gˆGØ×>Ñ>ØØØØ˜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)r7   r;   r<   Ú	enumerate)r%   rH   rD   ÚX_unknown_maskÚrow_indicesrN   rr   ry   Úe_idxr   Úfeat_idxÚmean_idxs               r&   rC   z"TargetEncoder._transform_X_ordinalÔ  sÛ   € ð( ×Ñ Ò,Ü˜DŸM™MÓ*ˆIÜ#,¨YÓ#7ò R‘��xà  IÑ-�à  9Ñ,�Ø,4°Y¸{ÈHÐ?TÑ5UÑ,V��k 5Ð(Ñ)Ø<GÈÑ<Q��n¢Q¨ [Ñ1°5Ð8Ò9ñRô $-¨YÓ#7ò E‘��xØ,4°Y¸{ÈEÐ?QÑ5RÑ,S��k 5Ð(Ñ)Ø9D��n¢Q¨ XÑ.°Ð5Ò6ñEr(   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   Ú_r2   )r   r   r7   r<   r8   ÚasarrayÚobject)r%   Úinput_featuresÚfeature_namesÚfeature_nameÚ
class_names        r&   Úget_feature_names_outz#TargetEncoder.get_feature_names_outö  sŠ   € ô" 	˜Ð.Ô/Ü/°°nÓEˆØ×Ñ Ò,ð %2÷à Ø"&§-¡-òð ð  �.  * Ò.ðØ.ðˆMñ ô
 —:‘:˜m´6Ô:Ð:à Ð ùós   ­A,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   é   TNr$   )Ú__name__Ú
__module__Ú__qualname__Ú__doc__r	   Úlistr   r   r   r"   ÚdictÚ__annotations__r'   r   r.   rO   rZ   r+   rB   rA   rC   r�   r“   Ú__classcell__)r—   s   @r&   r   r      sæ   ø… ñeñP " 6 (Ó+¨TÐ2Ù"Ò#QÓRÐSÙ˜v˜hÓ'©°$¸¸4ÈÔ)OÐPÙ˜ ! T°&Ô9Ð:Ø�;Ø'Ð(ñ$Ð˜Dó ð ØØØØØó)ñ  °Ô5ñó 6ðñ& °Ô5ñGó 6ðGòR(òT>8ò@ò.9ò> EóD!÷:ð r(   r   )Únumbersr   r   Únumpyr8   Úbaser   r   Úutils._param_validationr   r	   Úutils.multiclassr
   Úutils.validationr   r   r   r   Ú	_encodersr   Ú_target_encoder_fastr   r   r   © r(   r&   ú<module>rª      s9   ð÷ #ã ç 5ß :Ý -÷ó õ $ß TôAÐ(¨,õ Ar(   