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
trueif at least one element's confidence score falls below HumanVerificationThreshold; otherwisefalse. Alsofalsewhen confidence data is not available.
Examples
var result = extractor.Parse();
if (result.HumanVerificationRequired)
{
Console.WriteLine("Low confidence detected. Please review the results.");
}