Deep.Net


ZCA

Namespace: Tensor
Parent Module: Decomposition

ZCA whitening

Constructors

ConstructorDescription
new()
Signature: unit -> ZCA

CompiledName: .ctor

Static members

Static memberDescription
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].

Fork me on GitHub