What are the available options for Scoring in Document Manager, that apply only to string content type?
What are the available options for Scoring in Document Manager, that apply only to string content type?
The available options for scoring in Document Manager that apply to string content type are Exact match and Levenshtein. Exact match scoring is used when a prediction is deemed correct only if it exactly matches the true value. Levenshtein scoring considers partial correctness based on the Levenshtein distance between the prediction and the true value.
C is correct https://docs.uipath.com/document-understanding/automation-suite/2023.4/user-guide/document-manager-create-and-configure-fields#edit-a-column-field
Scoring Advanced The measure used to determine accuracy when running evaluations of model predictions. It can only be configured for string content type. All other content types use an Exact Match scoring strategy. Options: exact match: a prediction is only deemed to be correct (score of 1) if it exactly matches the true value. If it differs by even a single character, then it is deemed to be incorrect (score of 0). levenshtein: a prediction is deemed to be partially correct according to the Levenshtein distance between the prediction and the true value. If a 10-letter value is predicted correctly, except for the last 2 characters, then the score of that prediction will be 0.8.