Group
Show / Hide Table of Contents

Interface IBimetricScoredResult

A single result containing information about the bimetric score between a target and source document

Namespace: Textkernel.Tx.Models.API.Matching.Response
Assembly: Textkernel.Tx.SDK.dll
Syntax
public interface IBimetricScoredResult

Properties

| Improve this Doc View Source

EnrichedRCSScoreData

Detailed information/evidence about the ReverseCompatibilityScore

Declaration
EnrichedScoreData EnrichedRCSScoreData { get; set; }
Property Value
Type Description
EnrichedScoreData
| Improve this Doc View Source

EnrichedScoreData

Detailed information/evidence about the WeightedScore

Declaration
EnrichedScoreData EnrichedScoreData { get; set; }
Property Value
Type Description
EnrichedScoreData
| Improve this Doc View Source

ReverseCompatibilityScore

An integer score from 0-100 which represents how well the target document matched to the source document. This is equivalent to the WeightedScore if you ran the match/score with the source and target documents swapped. A score of 100 means that all of the data points in the target document were found in the source document, but the source document may have had many extra data points.

Declaration
int ReverseCompatibilityScore { get; set; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

SovScore

An integer score from 0-100 representing the overall fit of the match. This is the result of a proprietary algorithm that combines the WeightedScore and the ReverseCompatibilityScore into one overall score. Results are sorted by this parameter in descending order.

Declaration
int SovScore { get; set; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

WeightedScore

An integer score from 0-100 representing how well the current document matched the source document. This calculation is the sum of the unweighted category scores multiplied by their respective applied weight. A score of 100 means that all of the data points in the source document were found in the target document, but the target document may have had many extra data points.

See also:
UnweightedScore
AppliedCategoryWeights

Declaration
int WeightedScore { get; set; }
Property Value
Type Description
System.Int32
  • Improve this Doc
  • View Source
☀
☾
In This Article
Back to top
Generated by DocFX
☀
☾