Class PosTagResult

Definition

Namespace:
Tizen.Nlp
Assembly:
Tizen.Nlp.dll

This class contains result of position tagged .

C#
Copy
public class PosTagResult
Inheritance
object
PosTagResult

Properties

View Source

Tags

The tags of sentence.

Declaration
C#
Copy
public IList<string> Tags { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<T><string>
View Source

Tokens

The tokens of sentence.

Declaration
C#
Copy
public IList<string> Tokens { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<T><string>