ABB.Swum.UnigramTagger.TagNounPhrase C# (CSharp) Метод

TagNounPhrase() публичный Метод

Assigns part-of-speech tags to the word nodes in the given phrase, assuming it is a noun phrase.
public TagNounPhrase ( PhraseNode phrase ) : void
phrase ABB.Swum.Nodes.PhraseNode The noun phrase to tag.
Результат void
        public override void TagNounPhrase(PhraseNode phrase)
        {
            TagNounPhrase(phrase, 0, phrase.Size() - 1);
        }

Same methods

UnigramTagger::TagNounPhrase ( PhraseNode phrase, int startIndex, int stopIndex ) : void