Ë
    ÷Q(h*B  ã                   ó¬   — d dl Z d dlmZ d dlZddlmZmZ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mZmZ d
dlmZ  G d„ dee«      Zy)é    N)ÚIntegralé   )ÚBaseEstimatorÚTransformerMixinÚ_fit_context)Úresample)ÚIntervalÚOptionsÚ
StrOptions)Ú"_deprecate_Xt_in_inverse_transform)Ú_weighted_percentile)Ú_check_feature_names_inÚ_check_sample_weightÚcheck_arrayÚcheck_is_fittedÚvalidate_dataé   )ÚOneHotEncoderc            
       ó  — e Zd ZU dZ eeddd¬«      dg eh d£«      g eh d£«      g eee	j                  e	j                  h«      dg eed	dd¬«      dgd
gdœZeed<   	 dddddddœd„Z ed¬«      dd„«       Zd„ Zd„ Zdddœd„Zdd„Zy)ÚKBinsDiscretizera  
    Bin continuous data into intervals.

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

    .. versionadded:: 0.20

    Parameters
    ----------
    n_bins : int or array-like of shape (n_features,), default=5
        The number of bins to produce. Raises ValueError if ``n_bins < 2``.

    encode : {'onehot', 'onehot-dense', 'ordinal'}, default='onehot'
        Method used to encode the transformed result.

        - 'onehot': Encode the transformed result with one-hot encoding
          and return a sparse matrix. Ignored features are always
          stacked to the right.
        - 'onehot-dense': Encode the transformed result with one-hot encoding
          and return a dense array. Ignored features are always
          stacked to the right.
        - 'ordinal': Return the bin identifier encoded as an integer value.

    strategy : {'uniform', 'quantile', 'kmeans'}, default='quantile'
        Strategy used to define the widths of the bins.

        - 'uniform': All bins in each feature have identical widths.
        - 'quantile': All bins in each feature have the same number of points.
        - 'kmeans': Values in each bin have the same nearest center of a 1D
          k-means cluster.

        For an example of the different strategies see:
        :ref:`sphx_glr_auto_examples_preprocessing_plot_discretization_strategies.py`.

    dtype : {np.float32, np.float64}, default=None
        The desired data-type for the output. If None, output dtype is
        consistent with input dtype. Only np.float32 and np.float64 are
        supported.

        .. versionadded:: 0.24

    subsample : int or None, default=200_000
        Maximum number of samples, used to fit the model, for computational
        efficiency.
        `subsample=None` means that all the training samples are used when
        computing the quantiles that determine the binning thresholds.
        Since quantile computation relies on sorting each column of `X` and
        that sorting has an `n log(n)` time complexity,
        it is recommended to use subsampling on datasets with a
        very large number of samples.

        .. versionchanged:: 1.3
            The default value of `subsample` changed from `None` to `200_000` when
            `strategy="quantile"`.

        .. versionchanged:: 1.5
            The default value of `subsample` changed from `None` to `200_000` when
            `strategy="uniform"` or `strategy="kmeans"`.

    random_state : int, RandomState instance or None, default=None
        Determines random number generation for subsampling.
        Pass an int for reproducible results across multiple function calls.
        See the `subsample` parameter for more details.
        See :term:`Glossary <random_state>`.

        .. versionadded:: 1.1

    Attributes
    ----------
    bin_edges_ : ndarray of ndarray of shape (n_features,)
        The edges of each bin. Contain arrays of varying shapes ``(n_bins_, )``
        Ignored features will have empty arrays.

    n_bins_ : ndarray of shape (n_features,), dtype=np.int64
        Number of bins per feature. Bins whose width are too small
        (i.e., <= 1e-8) are removed with a warning.

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

        .. versionadded:: 0.24

    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.

        .. versionadded:: 1.0

    See Also
    --------
    Binarizer : Class used to bin values as ``0`` or
        ``1`` based on a parameter ``threshold``.

    Notes
    -----

    For a visualization of discretization on different datasets refer to
    :ref:`sphx_glr_auto_examples_preprocessing_plot_discretization_classification.py`.
    On the effect of discretization on linear models see:
    :ref:`sphx_glr_auto_examples_preprocessing_plot_discretization.py`.

    In bin edges for feature ``i``, the first and last values are used only for
    ``inverse_transform``. During transform, bin edges are extended to::

      np.concatenate([-np.inf, bin_edges_[i][1:-1], np.inf])

    You can combine ``KBinsDiscretizer`` with
    :class:`~sklearn.compose.ColumnTransformer` if you only want to preprocess
    part of the features.

    ``KBinsDiscretizer`` might produce constant features (e.g., when
    ``encode = 'onehot'`` and certain bins do not contain any data).
    These features can be removed with feature selection algorithms
    (e.g., :class:`~sklearn.feature_selection.VarianceThreshold`).

    Examples
    --------
    >>> from sklearn.preprocessing import KBinsDiscretizer
    >>> X = [[-2, 1, -4,   -1],
    ...      [-1, 2, -3, -0.5],
    ...      [ 0, 3, -2,  0.5],
    ...      [ 1, 4, -1,    2]]
    >>> est = KBinsDiscretizer(
    ...     n_bins=3, encode='ordinal', strategy='uniform'
    ... )
    >>> est.fit(X)
    KBinsDiscretizer(...)
    >>> Xt = est.transform(X)
    >>> Xt  # doctest: +SKIP
    array([[ 0., 0., 0., 0.],
           [ 1., 1., 1., 0.],
           [ 2., 2., 2., 1.],
           [ 2., 2., 2., 2.]])

    Sometimes it may be useful to convert the data back into the original
    feature space. The ``inverse_transform`` function converts the binned
    data into the original feature space. Each value will be equal to the mean
    of the two bin edges.

    >>> est.bin_edges_[0]
    array([-2., -1.,  0.,  1.])
    >>> est.inverse_transform(Xt)
    array([[-1.5,  1.5, -3.5, -0.5],
           [-0.5,  2.5, -2.5, -0.5],
           [ 0.5,  3.5, -1.5,  0.5],
           [ 0.5,  3.5, -1.5,  1.5]])
    r   NÚleft)Úclosedz
array-like>   úonehot-denseÚonehotÚordinal>   ÚkmeansÚuniformÚquantiler   Úrandom_state©Ún_binsÚencodeÚstrategyÚdtypeÚ	subsampler   Ú_parameter_constraintsr   r   i@ )r"   r#   r$   r%   r   c                óX   — || _         || _        || _        || _        || _        || _        y ©Nr    )Úselfr!   r"   r#   r$   r%   r   s          úc/var/www/skyplay_api_hub/venv/lib/python3.12/site-packages/sklearn/preprocessing/_discretization.pyÚ__init__zKBinsDiscretizer.__init__·   s/   € ð ˆŒØˆŒØ ˆŒØˆŒ
Ø"ˆŒØ(ˆÕó    T)Úprefer_skip_nested_validationc                 ó	  — t        | |d¬«      }| j                  t        j                  t        j                  fv r| j                  }n|j                  }|j
                  \  }}|�(| j                  dk(  rt        d| j                  ›d�«      ‚| j                  �2|| j                  kD  r#t        |d| j                  | j                  ¬«      }|j
                  d	   }| j                  |«      }|�t        |||j                  ¬«      }t        j                  |t        ¬«      }t        |«      D �]œ  }	|dd…|	f   }
|
j!                  «       |
j#                  «       }}||k(  rUt%        j&                  d
|	z  «       d	||	<   t        j(                  t        j*                   t        j*                  g«      ||	<   Œ‡| j                  dk(  r"t        j,                  ||||	   d	z   «      ||	<   �nZ| j                  dk(  rŽt        j,                  dd||	   d	z   «      }|€-t        j.                  t        j0                  |
|«      «      ||	<   nÿt        j.                  |D �cg c]  }t3        |
||«      ‘Œ c}t        j                  ¬«      ||	<   n½| j                  dk(  r®ddlm} t        j,                  ||||	   d	z   «      }|d	d |dd z   dd…df   dz  } |||	   |d	¬«      }|j9                  |
dd…df   |¬«      j:                  dd…df   }|j=                  «        |d	d |dd z   dz  ||	<   t        j>                  |||	   |f   ||	<   | j                  dv s�Œ"t        j@                  ||	   t        j*                  ¬«      dkD  }||	   |   ||	<   tC        ||	   «      d	z
  ||	   k7  s�Œqt%        j&                  d|	z  «       tC        ||	   «      d	z
  ||	<   �ŒŸ || _"        || _#        d| jH                  v rŽtK        | jF                  D �cg c]  }t        jL                  |«      ‘Œ c}| jH                  dk(  |¬«      | _'        | jN                  j9                  t        j                  d	tC        | jF                  «      f«      «       | S c c}w c c}w )as  
        Fit the estimator.

        Parameters
        ----------
        X : array-like of shape (n_samples, n_features)
            Data to be discretized.

        y : None
            Ignored. This parameter exists only for compatibility with
            :class:`~sklearn.pipeline.Pipeline`.

        sample_weight : ndarray of shape (n_samples,)
            Contains weight values to be associated with each sample.
            Cannot be used when `strategy` is set to `"uniform"`.

            .. versionadded:: 1.3

        Returns
        -------
        self : object
            Returns the instance itself.
        Únumeric©r$   Nr   zY`sample_weight` was provided but it cannot be used with strategy='uniform'. Got strategy=z	 instead.F)ÚreplaceÚ	n_samplesr   r   z3Feature %d is constant and will be replaced with 0.r   r   éd   r   r   )ÚKMeanséÿÿÿÿç      à?)Ú
n_clustersÚinitÚn_init)Úsample_weight)r   r   )Úto_beging:Œ0âŽyE>zqBins whose width are too small (i.e., <= 1e-8) in feature %d are removed. Consider decreasing the number of bins.r   )Ú
categoriesÚsparse_outputr$   )(r   r$   ÚnpÚfloat64Úfloat32Úshaper#   Ú
ValueErrorr%   r   r   Ú_validate_n_binsr   ÚzerosÚobjectÚrangeÚminÚmaxÚwarningsÚwarnÚarrayÚinfÚlinspaceÚasarrayÚ
percentiler   Úclusterr4   ÚfitÚcluster_centers_ÚsortÚr_Úediff1dÚlenÚ
bin_edges_Ún_bins_r"   r   ÚarangeÚ_encoder)r)   ÚXÚyr:   Úoutput_dtyper2   Ú
n_featuresr!   Ú	bin_edgesÚjjÚcolumnÚcol_minÚcol_maxÚ	quantilesÚqr4   Úuniform_edgesr8   ÚkmÚcentersÚmaskÚis                         r*   rQ   zKBinsDiscretizer.fitÈ   s&  € ô2 ˜$ ¨Ô3ˆà�:‰:œ"Ÿ*™*¤b§j¡jÐ1Ñ1ØŸ:™:‰LàŸ7™7ˆLà !§¡Ñˆ	�:àÐ$¨¯©¸)Ò)CÜð>à—=‘=Ð# 9ð.óð ð �>‰>Ð%¨)°d·n±nÒ*DäØØØŸ.™.Ø!×.Ñ.ô	ˆAð —W‘W˜Q‘Zˆ
Ø×&Ñ& zÓ2ˆàÐ$Ü0°ÀÈÏÉÔQˆMä—H‘H˜Z¬vÔ6ˆ	Ü˜
Ó#ó 6	8ˆBØ’q˜"�u‘XˆFØ%Ÿz™z›|¨V¯Z©Z«\�WˆGà˜'Ò!Ü—‘ØIÈBÑNôð ��r‘
Ü "§¡¬2¯6©6¨'´2·6±6Ð):Ó ;�	˜"‘Øà�}‰} 	Ò)Ü "§¡¨G°W¸fÀR¹jÈ1¹nÓ M�	˜"“à—‘ *Ò,ÜŸK™K¨¨3°°r±
¸Q±Ó?�	Ø Ð(Ü$&§J¡J¬r¯}©}¸VÀYÓ/OÓ$P�I˜b’Mä$&§J¡Jð &/öà !ô 1°¸ÈÕJòô !Ÿj™jô%�I˜b’Mð —‘ (Ò*Ý,ô !#§¡¨G°W¸fÀR¹jÈ1¹nÓ M�Ø% a bÐ)¨M¸#¸2Ð,>Ñ>ÂÀ4ÀÑHÈ3ÑN�ñ  v¨b¡z¸ÀQÔG�ØŸ&™&Øš1˜d˜7‘O°=ð !ó ç"Ñ"¢1 a 4ñ)�ð —‘”Ø!(¨¨ ¨w°s¸¨|Ñ!;¸sÑ B�	˜"‘Ü "§¡ g¨y¸©}¸gÐ&EÑ F�	˜"‘ð �}‰}Ð 6Ó6Ü—z‘z )¨B¡-¼"¿&¹&ÔAÀDÑH�Ø )¨"¡¨dÑ 3�	˜"‘Ü�y ‘}Ó%¨Ñ)¨V°B©ZÔ7Ü—M‘Mð9à;=ñ>ôô
 "% Y¨r¡]Ó!3°aÑ!7�F˜2“Jðm6	8ðp $ˆŒØˆŒà�t—{‘{Ñ"Ü)Ø26·,±,Ö?¨QœBŸI™I a�LÒ?Ø"Ÿk™k¨XÑ5Ø"ôˆDŒMð �M‰M×ÑœbŸh™h¨¬3¨t¯|©|Ó+<Ð'=Ó>Ô?àˆùòaùòP @s   ÉQ7
Ï:Q<c                 óà  — | j                   }t        |t        «      rt        j                  ||t
        ¬«      S t        |t
        dd¬«      }|j                  dkD  s|j                  d   |k7  rt        d«      ‚|dk  ||k7  z  }t        j                  |«      d   }|j                  d   dkD  rAd	j                  d
„ |D «       «      }t        dj                  t        j                  |«      «      ‚|S )z0Returns n_bins_, the number of bins per feature.r0   TF)r$   ÚcopyÚ	ensure_2dr   r   z8n_bins must be a scalar or array of shape (n_features,).r   z, c              3   ó2   K  — | ]  }t        |«      –— Œ y ­wr(   )Ústr)Ú.0rj   s     r*   ú	<genexpr>z4KBinsDiscretizer._validate_n_bins.<locals>.<genexpr>W  s   è ø€ ÒB¨1¤ A§ÑBùs   ‚zk{} received an invalid number of bins at indices {}. Number of bins must be at least 2, and must be an int.)r!   Ú
isinstancer   r>   ÚfullÚintr   ÚndimrA   rB   ÚwhereÚjoinÚformatr   Ú__name__)r)   r^   Ú	orig_binsr!   Úbad_nbins_valueÚviolating_indicesÚindicess          r*   rC   z!KBinsDiscretizer._validate_n_binsH  sÛ   € à—K‘Kˆ	Ü�i¤Ô*Ü—7‘7˜: y¼Ô<Ð<ä˜Y¬c¸ÈÔNˆà�;‰;˜Š?˜fŸl™l¨1™o°Ò;ÜÐWÓXÐXà! A™:¨&°IÑ*=Ñ>ˆäŸH™H _Ó5°aÑ8ÐØ×"Ñ" 1Ñ%¨Ò)Ø—i‘iÑBÐ0AÔBÓBˆGÜð:ç:@¹&Ü$×-Ñ-¨wó;óð ð ˆr,   c                 ó€  — t        | «       | j                  € t        j                  t        j                  fn| j                  }t        | |d|d¬«      }| j                  }t        |j                  d   «      D ].  }t        j                  ||   dd |dd…|f   d¬«      |dd…|f<   Œ0 | j                  d	k(  r|S d}d
| j                  v r1| j                  j                  }|j                  | j                  _        	 | j                  j                  |«      }|| j                  _        |S # || j                  _        w xY w)a‹  
        Discretize the data.

        Parameters
        ----------
        X : array-like of shape (n_samples, n_features)
            Data to be discretized.

        Returns
        -------
        Xt : {ndarray, sparse matrix}, dtype={np.float32, np.float64}
            Data in the binned space. Will be a sparse matrix if
            `self.encode='onehot'` and ndarray otherwise.
        NTF)rl   r$   Úresetr   r5   Úright)Úsider   r   )r   r$   r>   r?   r@   r   rW   rF   rA   Úsearchsortedr"   rZ   Ú	transform)r)   r[   r$   ÚXtr_   r`   Ú
dtype_initÚXt_encs           r*   rƒ   zKBinsDiscretizer.transforma  s  € ô 	˜Ôð -1¯J©JÐ,>”—‘œRŸZ™ZÑ(ÀDÇJÁJˆÜ˜4 ¨°UÀ%ÔHˆà—O‘Oˆ	Ü˜Ÿ™ ™Ó$ò 	VˆBÜŸ™¨	°"©°a¸Ð(;¸RÂÀ2À¹YÈWÔUˆBŠq�"ˆuŠIð	Vð �;‰;˜)Ò#ØˆIàˆ
Ø�t—{‘{Ñ"ØŸ™×,Ñ,ˆJØ"$§(¡(ˆD�M‰MÔð	-Ø—]‘]×,Ñ,¨RÓ0ˆFð #-ˆD�M‰MÔØˆøð #-ˆD�M‰MÕús   Ã<D* Ä*D=)r„   c                ó>  — t        ||«      }t        | «       d| j                  v r| j                  j	                  |«      }t        |dt        j                  t        j                  f¬«      }| j                  j                  d   }|j                  d   |k7  r(t        dj                  ||j                  d   «      «      ‚t        |«      D ]O  }| j                  |   }|dd |dd z   d	z  }||dd…|f   j                  t        j                   «         |dd…|f<   ŒQ |S )
a¹  
        Transform discretized data back to original feature space.

        Note that this function does not regenerate the original data
        due to discretization rounding.

        Parameters
        ----------
        X : array-like of shape (n_samples, n_features)
            Transformed data in the binned space.

        Xt : array-like of shape (n_samples, n_features)
            Transformed data in the binned space.

            .. deprecated:: 1.5
                `Xt` was deprecated in 1.5 and will be removed in 1.7. Use `X` instead.

        Returns
        -------
        Xinv : ndarray, dtype={np.float32, np.float64}
            Data in the original feature space.
        r   T)rl   r$   r   r   z8Incorrect number of features. Expecting {}, received {}.Nr5   r6   )r   r   r"   rZ   Úinverse_transformr   r>   r?   r@   rX   rA   rB   rx   rF   rW   ÚastypeÚint64)r)   r[   r„   ÚXinvr^   r`   r_   Úbin_centerss           r*   rˆ   z"KBinsDiscretizer.inverse_transformˆ  s  € ô. /¨q°"Ó5ˆä˜Ôà�t—{‘{Ñ"Ø—‘×/Ñ/°Ó2ˆAä˜1 4´·
±
¼B¿J¹JÐ/GÔHˆØ—\‘\×'Ñ'¨Ñ*ˆ
Ø�:‰:�a‰=˜JÒ&ÜØJ×QÑQØ §
¡
¨1¡óóð ô ˜
Ó#ò 	FˆBØŸ™¨Ñ+ˆIØ$ Q R˜=¨9°S°b¨>Ñ9¸SÑ@ˆKØ% tªA¨r¨E¡{×&:Ñ&:¼2¿8¹8Ó&DÑEˆD’�B�ŠKð	Fð
 ˆr,   c                 ó„   — t        | d«       t        | |«      }t        | d«      r| j                  j	                  |«      S |S )aÔ  Get output feature names.

        Parameters
        ----------
        input_features : array-like of str or None, default=None
            Input features.

            - If `input_features` is `None`, then `feature_names_in_` is
              used as feature names in. If `feature_names_in_` is not defined,
              then the following input feature names are generated:
              `["x0", "x1", ..., "x(n_features_in_ - 1)"]`.
            - If `input_features` is an array-like, then `input_features` must
              match `feature_names_in_` if `feature_names_in_` is defined.

        Returns
        -------
        feature_names_out : ndarray of str objects
            Transformed feature names.
        Ún_features_in_rZ   )r   r   ÚhasattrrZ   Úget_feature_names_out)r)   Úinput_featuress     r*   r�   z&KBinsDiscretizer.get_feature_names_out¶  sB   € ô( 	˜Ð.Ô/Ü0°°~ÓFˆÜ�4˜Ô$Ø—=‘=×6Ñ6°~ÓFÐFð Ðr,   )é   )NNr(   )ry   Ú
__module__Ú__qualname__Ú__doc__r	   r   r   r
   Útyper>   r?   r@   r&   ÚdictÚ__annotations__r+   r   rQ   rC   rƒ   rˆ   r�   © r,   r*   r   r      sÓ   … ñRñj ˜H a¨°fÔ=¸|ÐLÙÒCÓDÐEÙÒ AÓBÐCÙ˜$ §¡¨R¯Z©ZÐ 8Ó9¸4Ð@Ù˜x¨¨D¸Ô@À$ÐGØ'Ð(ñ$Ð˜Dó ð ð)ð ØØØØô)ñ" °Ô5ò}ó 6ð}ò~ò2%ðN,¨dô ,ô\r,   r   )rI   Únumbersr   Únumpyr>   Úbaser   r   r   Úutilsr   Úutils._param_validationr	   r
   r   Úutils.deprecationr   Úutils.statsr   Úutils.validationr   r   r   r   r   Ú	_encodersr   r   r™   r,   r*   ú<module>r£      sE   ðó
 Ý ã ç @Ñ @Ý ß CÑ CÝ BÝ .÷õ õ %ôwÐ'¨õ wr,   