Table of Contents

Property HumanVerificationRequired

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

HumanVerificationRequired

Gets a value indicating whether any extracted element requires human verification. This is true when at least one element's HumanVerificationRequired property is true.

public bool HumanVerificationRequired { get; }

Property Value

bool

true if at least one element meets any of the following conditions: its confidence score falls below HumanVerificationThreshold, its validation status is Repaired or Invalid, or its value was set to null by the NullOnDoubt filter. Otherwise false.

Examples

var result = extractor.Parse();
if (result.HumanVerificationRequired)
{
    // Identify which elements need review
    foreach (var el in result.Elements)
    {
        if (el.HumanVerificationRequired)
        {
            Console.WriteLine($"Review needed: {el.TextExtractionElement.Name}");
        }
    }
}
Share