Table of Contents

Property Confidence

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

Confidence

Gets the overall confidence score of the splitting result.

public float Confidence { get; }

Property Value

float

A value between 0.0 and 1.0, where values closer to 1.0 indicate higher confidence in the detected document boundaries.

Examples

DocumentSplittingResult result = splitter.Split(new Attachment("batch.pdf"));
if (result.Confidence < 0.6f)
{
    Console.WriteLine("Low confidence: consider manual review.");
}
Share