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

    Interface OnnxDescriptor

    ONNX graph shape information extracted from the exported model.

    interface OnnxDescriptor {
        input_name: string;
        input_shape: readonly number[];
        outputs: Record<string, readonly number[]>;
        opset: number;
        sha256: string;
        size_bytes: number;
        precision?: ModelPrecision;
    }
    Index

    Properties

    input_name: string
    input_shape: readonly number[]
    outputs: Record<string, readonly number[]>
    opset: number
    sha256: string
    size_bytes: number
    precision?: ModelPrecision

    Weight precision of the exported ONNX graph. Optional for backward compatibility with schema-1 descriptors produced before INT8 support. Defaults to 'fp32' when absent.