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

    Interface CSVForecastOptions

    interface CSVForecastOptions {
        inputPath: string;
        horizon: number;
        modelPath: string;
        dateCol: string;
        valueCols?: string[];
        outputPath?: string;
        outputFormat: "csv" | "json";
        maxContext: number;
        normalizeInputs: boolean;
        forceFlipInvariance: boolean;
        inferIsPositive: boolean;
        fixQuantileCrossing: boolean;
        useContinuousQuantileHead: boolean;
        logger?: CSVForecastLogger;
    }
    Index

    Properties

    inputPath: string
    horizon: number
    modelPath: string
    dateCol: string
    valueCols?: string[]
    outputPath?: string
    outputFormat: "csv" | "json"
    maxContext: number
    normalizeInputs: boolean
    forceFlipInvariance: boolean
    inferIsPositive: boolean
    fixQuantileCrossing: boolean
    useContinuousQuantileHead: boolean

    Optional progress logger (defaults to console.error).