jax-js
    Preparing search index...

    Interface ONNXRunOptions

    Options for running an ONNX model.

    interface ONNXRunOptions {
        additionalOutputs?: string[];
        debugStats?: string[];
        verbose?: boolean;
    }

    Properties

    additionalOutputs?: string[]

    Return intermediate tensors in addition to graph outputs.

    debugStats?: string[]

    Tensors for which to log debug information during execution. When provided, logs statistics (min, max, mean, variance) for intermediate tensors matching these names.

    This is an unstable API and may be removed without notice.

    verbose?: boolean

    Print out names, input and output shapes when running each operation.