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
When Value is
null, absence is judged by the schema:trueif the element is required (IsRequired),falseotherwise - a missing optional value is an acceptable outcome, not a doubt, whether the model omitted it or the NullOnDoubt filter nulled it. For a present value,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.
Otherwise
false.-
Confidence is available (not
Examples
foreach (var el in result.Elements)
{
if (el.HumanVerificationRequired)
{
Console.WriteLine($"Review needed: {el.TextExtractionElement.Name}");
}
}