Parameters for asset tag detection.

interface AssetTagDetectionParameters {
    assetSubtreeIds?: number[];
    partialMatch?: boolean;
    threshold?: number;
}

Properties

assetSubtreeIds?: number[]

Search for external ID or name of assets that are in a subtree rooted at one of the assetSubtreeIds (including the roots given).

[1,2]
partialMatch?: boolean

Allow partial (fuzzy) matching of detected external IDs in the file. Will only match when it is possible to do so unambiguously.

true
threshold?: number

The confidence threshold returns predictions as positive if their confidence score is the selected value or higher. A higher confidence threshold increases precision but lowers recall, and vice versa.