tjbot-ce - v3.0.0
    Preparing search index...

    Interface ModelEntry

    Custom model registry entry.

    interface ModelEntry {
        folder?: string;
        inputShape?: number[];
        key: string;
        kind?: string;
        label: string;
        labelUrl?: string;
        required?: string[];
        type: ModelEntryType;
        url: string;
    }
    Index

    Properties

    folder?: string

    Folder name to use after extracting the model.

    inputShape?: number[]

    Optional tensor input shape for ONNX vision models.

    key: string

    Unique key used to reference the model in config.

    kind?: string

    Model subtype used by the vision runtime.

    label: string

    Human-readable model name.

    labelUrl?: string

    URL or file URI for a companion labels file.

    required?: string[]

    Files that must exist after the model is installed.

    url: string

    URL or file URI where the model archive can be retrieved.