Table of Contents

Class SkillMatch

Namespace
Textkernel.Tx.Models.DataEnrichment
Assembly
Textkernel.Tx.SDK.dll

A matched skill that was found in the text provided.

public class SkillMatch
Inheritance
SkillMatch
Inherited Members

Properties

BeginSpan

The index of the first character of the match (0-based)

public int BeginSpan { get; set; }

Property Value

int

EndSpan

The index of the last character of the match (0-based).

public int EndSpan { get; set; }

Property Value

int

Likelihood

Likelihood that the matched term actually refers to a skill in the context of the text.

public float Likelihood { get; set; }

Property Value

float

RawText

The actual term that was found as evidence of this skill (the substring from BeginSpan to EndSpan).

public string RawText { get; set; }

Property Value

string