torch.linalg.PcaLowrankOptions
export interface PcaLowrankOptions {
/** Number of components (default: computed) */
q?: number;
/** Center the data (default: true) */
center?: boolean;
/** Number of subspace iterations (default: 2) */
niter?: number;
}q(number)optional- – Number of components (default: computed)
center(boolean)optional- – Center the data (default: true)
niter(number)optional- – Number of subspace iterations (default: 2)
Options for pca_lowrank.