ZCA
Namespace: Tensor
Parent Module: Decomposition
Constructors
Constructor | Description |
new()
Signature: unit -> ZCA
|
CompiledName: .ctor
|
Static members
Static member | Description |
Perform(data)
Signature: data:Tensor<'T> -> Tensor<'T> * PCAInfo<'T>
Type parameters: 'T
|
Apply ZCA whitening.
data must be of the form [sample, feature].
Returns a tensor of the form [sample, component].
|
Reverse(zcaed, info)
Signature: (zcaed:Tensor<'T> * info:PCAInfo<'T>) -> Tensor<'T>
Type parameters: 'T
|
Reverses ZCA whitening.
whitened must be of the form [sample, component].
|