Method Perform
static member Perform: Tensor<'T> * int64 option -> Tensor<'T> * PCAInfo<'T>
Apply Principal Component Analysis (PCA) whitening.
data
must be of the form [sample, feature].
nComps
optionally specifies how many components to keep.
Returns a tensor of the form [sample, component].
Declaration
static member Perform: data:Tensor<'T> * nComps:int64 option -> Tensor<'T> * PCAInfo<'T>
Parameters
Type | Name | Description |
---|---|---|
Tensor<'T> | data | |
int64 option | nComps |
Returns
Type | Description |
---|---|
Tensor<'T> * PCAInfo<'T> |
Type Parameters
Name | Description |
---|---|
'T |