Table of Contents

Property HumanVerificationRequired

Namespace
LMKit.Extraction
Assembly
LM-Kit.NET.dll

HumanVerificationRequired

Gets a value indicating whether any extracted element has a confidence score below the configured verification threshold, suggesting that a human reviewer should verify the extraction results.

public bool HumanVerificationRequired { get; }

Property Value

bool

true if at least one element's confidence score falls below HumanVerificationThreshold; otherwise false. Also false when confidence data is not available.

Examples

var result = extractor.Parse();
if (result.HumanVerificationRequired)
{
    Console.WriteLine("Low confidence detected. Please review the results.");
}