Class EvidenceRegion<T>
Represents a region in the document that provides evidence for an answer.
public class EvidenceRegion<T>
Type Parameters
TThe numeric type used for calculations.
- Inheritance
-
EvidenceRegion<T>
- Inherited Members
Properties
BoundingBox
Gets the bounding box of the evidence region.
public Vector<T> BoundingBox { get; init; }
Property Value
- Vector<T>
PageIndex
Gets the page number where the evidence was found (0-indexed).
public int PageIndex { get; init; }
Property Value
Relevance
Gets how relevant this evidence is to the answer (0-1).
public T Relevance { get; init; }
Property Value
- T
Text
Gets the text content of the evidence.
public string Text { get; init; }