Bases: nnfbp.Reductors.Reductor
An implementation of a Reductor that performs no reduction at all.
Bases: nnfbp.Reductors.Reductor
An implementation of a Reductor with exponentially growing bin widths, and symmetric bins.
Parameters: | nLinear (int) – Number of bins of width 1 before starting exponential growth.’ |
---|
Bases: object
Base object of a Reductor, that takes input data and reduces it.
Implementing objects should define outSize, the number of elements after reduction, and a filters numpy.ndarray of size (inSize,outSize), where each row is a basis vector.
Parameters: | inSize (int) – Input size of vectors. |
---|