C# Class ABB.Swum.UnigramRule

An abstract rule using unigram part-of-speech data and tagging.
Inheritance: SwumRule
Show file Open project: abb-iss/Swum.NET

Protected Properties

Property Type Description
PosData ABB.Swum.WordData.PartOfSpeechData
PosTagger Tagger
Splitter IdSplitter

Public Methods

Method Description
UnigramRule ( ) : System

Creates a new UnigramRule using default values.

UnigramRule ( PartOfSpeechData posData, Tagger tagger, IdSplitter splitter ) : System

Creates a new UnigramRule.

Method Details

UnigramRule() public method

Creates a new UnigramRule using default values.
public UnigramRule ( ) : System
return System

UnigramRule() public method

Creates a new UnigramRule.
public UnigramRule ( PartOfSpeechData posData, Tagger tagger, IdSplitter splitter ) : System
posData ABB.Swum.WordData.PartOfSpeechData The part-of-speech data to use.
tagger Tagger The part-of-speech tagger to use.
splitter IdSplitter The identifier splitter to use.
return System

Property Details

PosData protected property

The part-of-speech data to use.
protected PartOfSpeechData,ABB.Swum.WordData PosData
return ABB.Swum.WordData.PartOfSpeechData

PosTagger protected property

The part-of-speech tagger to use.
protected Tagger,ABB.Swum PosTagger
return Tagger

Splitter protected property

The identifier splitter to use.
protected IdSplitter,ABB.Swum Splitter
return IdSplitter