
    0Ph2@                         d 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 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  G d de          ZdS )z*Incremental Principal Components Analysis.    )IntegralN)linalgsparse)metadata_routing   )_fit_context)gen_batches)Interval)_incremental_mean_and_varsvd_flip)validate_data   )_BasePCAc            	           e Zd ZU dZdej        iZ eeddd          dgdgdg eeddd          dgdZ	e
ed	<   dd
ddddZ ed          dd            Z ed          dd            Z fdZ fdZ xZS )IncrementalPCAax  Incremental principal components analysis (IPCA).

    Linear dimensionality reduction using Singular Value Decomposition of
    the data, keeping only the most significant singular vectors to
    project the data to a lower dimensional space. The input data is centered
    but not scaled for each feature before applying the SVD.

    Depending on the size of the input data, this algorithm can be much more
    memory efficient than a PCA, and allows sparse input.

    This algorithm has constant memory complexity, on the order
    of ``batch_size * n_features``, enabling use of np.memmap files without
    loading the entire file into memory. For sparse matrices, the input
    is converted to dense in batches (in order to be able to subtract the
    mean) which avoids storing the entire dense matrix at any one time.

    The computational overhead of each SVD is
    ``O(batch_size * n_features ** 2)``, but only 2 * batch_size samples
    remain in memory at a time. There will be ``n_samples / batch_size`` SVD
    computations to get the principal components, versus 1 large SVD of
    complexity ``O(n_samples * n_features ** 2)`` for PCA.

    For a usage example, see
    :ref:`sphx_glr_auto_examples_decomposition_plot_incremental_pca.py`.

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

    .. versionadded:: 0.16

    Parameters
    ----------
    n_components : int, default=None
        Number of components to keep. If ``n_components`` is ``None``,
        then ``n_components`` is set to ``min(n_samples, n_features)``.

    whiten : bool, default=False
        When True (False by default) the ``components_`` vectors are divided
        by ``n_samples`` times ``components_`` to ensure uncorrelated outputs
        with unit component-wise variances.

        Whitening will remove some information from the transformed signal
        (the relative variance scales of the components) but can sometimes
        improve the predictive accuracy of the downstream estimators by
        making data respect some hard-wired assumptions.

    copy : bool, default=True
        If False, X will be overwritten. ``copy=False`` can be used to
        save memory but is unsafe for general use.

    batch_size : int, default=None
        The number of samples to use for each batch. Only used when calling
        ``fit``. If ``batch_size`` is ``None``, then ``batch_size``
        is inferred from the data and set to ``5 * n_features``, to provide a
        balance between approximation accuracy and memory consumption.

    Attributes
    ----------
    components_ : ndarray of shape (n_components, n_features)
        Principal axes in feature space, representing the directions of
        maximum variance in the data. Equivalently, the right singular
        vectors of the centered input data, parallel to its eigenvectors.
        The components are sorted by decreasing ``explained_variance_``.

    explained_variance_ : ndarray of shape (n_components,)
        Variance explained by each of the selected components.

    explained_variance_ratio_ : ndarray of shape (n_components,)
        Percentage of variance explained by each of the selected components.
        If all components are stored, the sum of explained variances is equal
        to 1.0.

    singular_values_ : ndarray of shape (n_components,)
        The singular values corresponding to each of the selected components.
        The singular values are equal to the 2-norms of the ``n_components``
        variables in the lower-dimensional space.

    mean_ : ndarray of shape (n_features,)
        Per-feature empirical mean, aggregate over calls to ``partial_fit``.

    var_ : ndarray of shape (n_features,)
        Per-feature empirical variance, aggregate over calls to
        ``partial_fit``.

    noise_variance_ : float
        The estimated noise covariance following the Probabilistic PCA model
        from Tipping and Bishop 1999. See "Pattern Recognition and
        Machine Learning" by C. Bishop, 12.2.1 p. 574 or
        http://www.miketipping.com/papers/met-mppca.pdf.

    n_components_ : int
        The estimated number of components. Relevant when
        ``n_components=None``.

    n_samples_seen_ : int
        The number of samples processed by the estimator. Will be reset on
        new calls to fit, but increments across ``partial_fit`` calls.

    batch_size_ : int
        Inferred batch size from ``batch_size``.

    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
    --------
    PCA : Principal component analysis (PCA).
    KernelPCA : Kernel Principal component analysis (KPCA).
    SparsePCA : Sparse Principal Components Analysis (SparsePCA).
    TruncatedSVD : Dimensionality reduction using truncated SVD.

    Notes
    -----
    Implements the incremental PCA model from:
    *D. Ross, J. Lim, R. Lin, M. Yang, Incremental Learning for Robust Visual
    Tracking, International Journal of Computer Vision, Volume 77, Issue 1-3,
    pp. 125-141, May 2008.*
    See https://www.cs.toronto.edu/~dross/ivt/RossLimLinYang_ijcv.pdf

    This model is an extension of the Sequential Karhunen-Loeve Transform from:
    :doi:`A. Levy and M. Lindenbaum, Sequential Karhunen-Loeve Basis Extraction and
    its Application to Images, IEEE Transactions on Image Processing, Volume 9,
    Number 8, pp. 1371-1374, August 2000. <10.1109/83.855432>`

    We have specifically abstained from an optimization used by authors of both
    papers, a QR decomposition used in specific situations to reduce the
    algorithmic complexity of the SVD. The source for this technique is
    *Matrix Computations, Third Edition, G. Holub and C. Van Loan, Chapter 5,
    section 5.4.4, pp 252-253.*. This technique has been omitted because it is
    advantageous only when decomposing a matrix with ``n_samples`` (rows)
    >= 5/3 * ``n_features`` (columns), and hurts the readability of the
    implemented algorithm. This would be a good opportunity for future
    optimization, if it is deemed necessary.

    References
    ----------
    D. Ross, J. Lim, R. Lin, M. Yang. Incremental Learning for Robust Visual
    Tracking, International Journal of Computer Vision, Volume 77,
    Issue 1-3, pp. 125-141, May 2008.

    G. Golub and C. Van Loan. Matrix Computations, Third Edition, Chapter 5,
    Section 5.4.4, pp. 252-253.

    Examples
    --------
    >>> from sklearn.datasets import load_digits
    >>> from sklearn.decomposition import IncrementalPCA
    >>> from scipy import sparse
    >>> X, _ = load_digits(return_X_y=True)
    >>> transformer = IncrementalPCA(n_components=7, batch_size=200)
    >>> # either partially fit on smaller batches of data
    >>> transformer.partial_fit(X[:100, :])
    IncrementalPCA(batch_size=200, n_components=7)
    >>> # or let the fit function itself divide the data into batches
    >>> X_sparse = sparse.csr_matrix(X)
    >>> X_transformed = transformer.fit_transform(X_sparse)
    >>> X_transformed.shape
    (1797, 7)
    check_inputr   Nleft)closedbooleann_componentswhitencopy
batch_size_parameter_constraintsFT)r   r   r   c                >    || _         || _        || _        || _        d S Nr   )selfr   r   r   r   s        f/var/www/html/test/jupyter/venv/lib/python3.11/site-packages/sklearn/decomposition/_incremental_pca.py__init__zIncrementalPCA.__init__   s#    (	$    )prefer_skip_nested_validationc                    d| _         d| _        d| _        d| _        d| _        d| _        d| _        d| _        t          | |g d| j	        t          j        t          j        gd          }|j        \  }}| j        d|z  | _        n| j        | _        t!          || j        | j        pd          D ]I}||         }t%          j        |          r|                                }|                     |d	
           J| S )a  Fit the model with X, using minibatches of size batch_size.

        Parameters
        ----------
        X : {array-like, sparse matrix} of shape (n_samples, n_features)
            Training data, where `n_samples` is the number of samples and
            `n_features` is the number of features.

        y : Ignored
            Not used, present for API consistency by convention.

        Returns
        -------
        self : object
            Returns the instance itself.
        Nr           )csrcsclilT)accept_sparser   dtypeforce_writeable   min_batch_sizeF)r   )components_n_samples_seen_mean_var_singular_values_explained_variance_explained_variance_ratio_noise_variance_r   r   npfloat64float32shaper   batch_size_r	   r   r   issparsetoarraypartial_fit)r   Xy	n_samples
n_featuresbatchX_batchs          r   fitzIncrementalPCA.fit   s%   $   
	 $#' )-&#///:rz* 
 
 
 !"	:?" :~D#D t'8I8NQ
 
 
 	9 	9E hGw'' ,!//++W%8888r!   c           
         t          | d           }|rSt          j        |          rt          d          t	          | || j        t          j        t          j        gd|          }|j	        \  }}|rd| _
        | j        5| j
        t          ||          | _        np| j
        j	        d         | _        nX| j        |k    st          d| j        |fz            | j        |k    r|rt          d| j         d	| d
          | j        | _        | j
        D| j
        j	        d         | j        k    r)t          d| j
        j	        d         | j        fz            t          | d          sd| _        d| _        d| _        t%          || j        | j        t          j        | j        |j	        d                             \  }}}	|	d         }	| j        dk    r||z  }n|t          j        |d          }
||
z  }t          j        | j        |	z  |z            | j        |
z
  z  }t          j        | j                            d          | j
        z  ||f          }t3          j        |dd          \  }}}t7          ||d          \  }}|dz  |	dz
  z  }|dz  t          j        ||	z            z  }|	| _        |d| j                 | _
        |d| j                 | _        || _        || _        |d| j                 | _        |d| j                 | _        | j        ||fvr'|| j        d                                         | _        nd| _        | S )a(  Incremental fit with X. All of X is processed as a single batch.

        Parameters
        ----------
        X : array-like of shape (n_samples, n_features)
            Training data, where `n_samples` is the number of samples and
            `n_features` is the number of features.

        y : Ignored
            Not used, present for API consistency by convention.

        check_input : bool, default=True
            Run check_array on X.

        Returns
        -------
        self : object
            Returns the instance itself.
        r.   zIncrementalPCA.partial_fit does not support sparse input. Either convert data to dense or use IncrementalPCA.fit to do so in batches.T)r   r)   r*   resetNr   zdn_components=%r invalid for n_features=%d, need more rows than columns for IncrementalPCA processingzn_components=z6 must be less or equal to the batch number of samples z  for the first partial_fit call.z{Number of input features has changed from %i to %i between calls to partial_fit! Try setting n_components to a fixed value.r/   r$   r   )	last_meanlast_variancelast_sample_count)axis)r   F)full_matricescheck_finite)u_based_decisionr   ) hasattrr   r;   	TypeErrorr   r   r6   r7   r8   r9   r.   r   minn_components_
ValueErrorr/   r0   r1   r   repeatmeansqrtvstackr2   reshaper   svdr   sumr3   r4   r5   )r   r>   r?   r   
first_passr@   rA   col_meancol_varn_total_samplescol_batch_meanmean_correctionUSVtexplained_varianceexplained_variance_ratios                    r   r=   zIncrementalPCA.partial_fit   s   * !}555
 	q!! E  
 Yz2:. $   A !"	: 	$#D$'%(J%?%?""%)%5%;A%>"""j00 $ 1:>?  
 **z*$ 1 $ $/8$ $ $   "&!2D("1%);;;9 #)!,d.@AB   t.// 	#$D DJDI .Gj) i(<agajII	.
 .
 .
*'? *!, 1$$MAAWQQ///NA g%79D n,.O 	)11'::T=MM# A :au5III1bB7772T_q%89#$a4"&?1J*K*K#K .2 223 !"6D$6"6 7
	#56J8J6J#K )ABVDDVBV)W&i%<<<#5d6H6J6J#K#P#P#R#RD  #&D r!   c                    t          j        |          r|j        d         }g }t          || j        | j        pd          D ]N}|                    t                                          ||         	                                                     Ot          j        |          S t                                          |          S )a  Apply dimensionality reduction to X.

        X is projected on the first principal components previously extracted
        from a training set, using minibatches of size batch_size if X is
        sparse.

        Parameters
        ----------
        X : {array-like, sparse matrix} of shape (n_samples, n_features)
            New data, where `n_samples` is the number of samples
            and `n_features` is the number of features.

        Returns
        -------
        X_new : ndarray of shape (n_samples, n_components)
            Projection of X in the first principal components.

        Examples
        --------

        >>> import numpy as np
        >>> from sklearn.decomposition import IncrementalPCA
        >>> X = np.array([[-1, -1], [-2, -1], [-3, -2],
        ...               [1, 1], [2, 1], [3, 2]])
        >>> ipca = IncrementalPCA(n_components=2, batch_size=3)
        >>> ipca.fit(X)
        IncrementalPCA(batch_size=3, n_components=2)
        >>> ipca.transform(X) # doctest: +SKIP
        r   r,   )r   r;   r9   r	   r:   r   appendsuper	transformr<   r6   rW   )r   r>   r@   outputrB   	__class__s        r   ri   zIncrementalPCA.transform}  s    < ?1 		(
IF$4+D<M<RQR   E E egg//%0@0@0B0BCCDDDD9V$$$77$$Q'''r!   c                 `    t                                                      }d|j        _        |S NT)rh   __sklearn_tags__
input_tagsr   )r   tagsrk   s     r   rn   zIncrementalPCA.__sklearn_tags__  s'    ww''))!%r!   r   rm   )__name__
__module____qualname____doc__r   UNUSED._IncrementalPCA__metadata_request__partial_fitr
   r   r   dict__annotations__r    r   rD   r=   ri   rn   __classcell__)rk   s   @r   r   r      sY        e eN (56F6M&N# "(AtFCCCTJ+x!T&AAA4H	$ $D   %EQU % % % % % \5551 1 1 651f \555z z z 65zx'( '( '( '( '(R        r!   r   )rt   numbersr   numpyr6   scipyr   r   sklearn.utilsr   baser   utilsr	   utils._param_validationr
   utils.extmathr   r   utils.validationr   _baser   r    r!   r   <module>r      s   0 0
                           * * * * * *             . . . . . . ? ? ? ? ? ? ? ? , , , , , ,      U U U U UX U U U U Ur!   