timesfm-ts - v1.0.0
    Preparing search index...

    Interface DecodeResult

    interface DecodeResult {
        pfOutputs: Float32Array<ArrayBufferLike>[];
        quantileSpreads: Float32Array<ArrayBufferLike>[];
        arOutputs: Float32Array<ArrayBufferLike>[] | null;
    }
    Index

    Properties

    pfOutputs: Float32Array<ArrayBufferLike>[]

    Denormalised output: [batch][numPatches, outputPatchLen, numQuantiles] — prefill outputs.

    quantileSpreads: Float32Array<ArrayBufferLike>[]

    Denormalised quantile spread: [batch][outputQuantileLen, numQuantiles] — from last patch.

    arOutputs: Float32Array<ArrayBufferLike>[] | null

    Denormalised AR outputs: [batch] — each entry is the concatenated flat quantile array from all autoregressive decode steps. Indexing: arOutputs[b] contains all AR steps for batch element b, each step produces outputPatchLen * numQuantiles floats in the same interleaved (time × quantile) layout as the prefill output, allowing uniform post-processing across all forecast steps.