Interface nmfOptions

interface nmfOptions {
    maxFBIteration: number;
    maximumIteration: number;
    phaseRatio: number;
    toleranceFB: number;
    useTranspose: boolean;
}

Properties

maxFBIteration: number

Maximum number of iterations of the Forward-Backward subroutine.

Default

80

maximumIteration: number

Maximum number of iterations

Default

500

phaseRatio: number

Transition between decreasing thresholding phase and refinement phase in percent of the iterations.

Default

0.8

toleranceFB: number

Relative difference tolerance for convergence of the Forward-Backward sub-iterations.

Default

1e-5

useTranspose: boolean

If true the originalMatrix is transposed.

Default

false