Property HumanVerificationRequired
- Namespace
- LMKit.Extraction
- Assembly
- LM-Kit.NET.dll
HumanVerificationRequired
Gets a value indicating whether a human reviewer should verify this element's extracted value.
public bool HumanVerificationRequired { get; }
Property Value
- bool
truewhen any of the following conditions is met:-
Confidence is available (not
-1) and falls below HumanVerificationThreshold. - Validation has a status of Repaired or Invalid.
-
The value was set to
nullby the NullOnDoubt filter because the model's output looked uncertain.
false.-
Confidence is available (not
Examples
foreach (var el in result.Elements)
{
if (el.HumanVerificationRequired)
{
Console.WriteLine($"Review needed: {el.TextExtractionElement.Name}");
}
}