X : ndarray
n_components : int
The number of components in the decomposition. Note that unlike PCA or
SVD, the decomposition of n_components + 1 DOES NOT contain
the basis from the decomposition of n_components.
tol : float, optional (default=1E-4)
Stopping tolerance for reconstruction error.
max_iter : int, optional (default=500)
Maximum number of iterations to perform before exiting.
init_type : string, optional (default=”hosvd”)
How to initialize the decomposition. Choices are “random” or “hosvd”,
where “random” is initialized with uniform random values, and “hosvd” is
initialized by the high order SVD of the dataset.
random_state : int, None, or np.RandomState instance
Random seed information to use when init_type == “random”
|