Class ConlluWordLine
public class ConlluWordLine
- Inheritance
-
ConlluWordLine
- Inherited Members
Properties
Deprel
Gets the universal dependency relation to the HEAD (root iff HEAD = 0) or a defined language-specific subtype of one.
public string Deprel { get; }
Property Value
Deps
Gets the enhanced dependency graph in the form of a list of head-deprel pairs.
public string Deps { get; }
Property Value
Feats
Gets the list of morphological features from the universal feature inventory or from a defined language-specific extension; underscore if not available.
public string Feats { get; }
Property Value
Form
Gets the word form or punctuation symbol.
public string Form { get; }
Property Value
Head
Gets the head of the current word, which is either a value of ID or zero (0).
public string Head { get; }
Property Value
Id
Gets the word index. An int starting at 1 for each new sentence; may be a range for multiword tokens; may be a decimal number for empty nodes.
public string Id { get; }
Property Value
Lemma
Gets the lemma or stem of the word form.
public string Lemma { get; }
Property Value
Misc
Gets any other annotation.
public string Misc { get; }
Property Value
Methods
GetPosTag(ConlluTagset)
Retrieve the Universal part-of-speech tag or the language-specific part-of-speech tag; underscore if not available.
public string GetPosTag(ConlluTagset tagset)
Parameters
tagsetConlluTagsetthe type of tag to retrieve, either universal (U) or language specific (X)