timesfm-ts - v1.0.0
    Preparing search index...
    interface CovariateForecastOutput {
        pointForecast: Float32Array<ArrayBufferLike>[];
        quantileForecast: Float32Array<ArrayBufferLike>[][];
        backcast?: Float32Array<ArrayBufferLike>[];
        xregOutputs: Float32Array<ArrayBufferLike>[];
    }

    Hierarchy

    • ForecastOutput
      • CovariateForecastOutput
    Index

    Properties

    pointForecast: Float32Array<ArrayBufferLike>[]

    Point (median) forecast. Shape: [numSeries, horizon] as an array of Float32Arrays.

    quantileForecast: Float32Array<ArrayBufferLike>[][]

    Quantile forecasts. Shape: [numSeries, horizon, 10] as nested arrays. Quantile indices: 0=mean, 1=q10, 2=q20, …, 5=q50, …, 9=q90.

    backcast?: Float32Array<ArrayBufferLike>[]

    Model reconstruction of historical context (backcast). Only populated when returnBackcast is true. Shape: [numSeries, contextLen] as an array of Float32Arrays.

    xregOutputs: Float32Array<ArrayBufferLike>[]

    The pure xreg contribution for each series.