timesfm-ts - v1.0.0
    Preparing search index...
    interface CovariateForecastParams {
        inputs: Float32Array<ArrayBufferLike>[];
        dynamicNumericalCovariates?: Record<
            string,
            Float32Array<ArrayBufferLike>[],
        >;
        dynamicCategoricalCovariates?: Record<string, Category[][]>;
        staticNumericalCovariates?: Record<string, number[]>;
        staticCategoricalCovariates?: Record<string, Category[]>;
        xregMode?: XRegMode;
        normalizeXregTargetPerInput?: boolean;
        ridge?: number;
        maxRowsPerCol?: number;
    }
    Index

    Properties

    inputs: Float32Array<ArrayBufferLike>[]
    dynamicNumericalCovariates?: Record<string, Float32Array<ArrayBufferLike>[]>
    dynamicCategoricalCovariates?: Record<string, Category[][]>
    staticNumericalCovariates?: Record<string, number[]>
    staticCategoricalCovariates?: Record<string, Category[]>
    xregMode?: XRegMode
    normalizeXregTargetPerInput?: boolean
    ridge?: number
    maxRowsPerCol?: number