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
trueif 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 tonullby the NullOnDoubt filter. Otherwisefalse.
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}");
}
}
}