Tag parts of speech using Natural

Hannah Davis
InstructorHannah Davis
Share this video with your friends

Social Share Links

Send Tweet
Published 7 years ago
Updated 5 years ago

An important component of many natural language processing projects is being able to identify the grammar of a piece of text. We’ll learn how to do that with Natural’s parts of speech (POS) tagger.

There are many tags, and it's worth looking them up online (search "POS tag symbols") to become familiar with them all.

The setup of the tagger may seem a little strange, but it allows you to replace the lexicon or the rules with a different lexicon or rule set of your choice.

Greg
Greg
~ 5 years ago

This didn't work for some reason with the latest version. Used the sample from https://github.com/NaturalNode/natural#pos-tagger

var natural = require("natural");

var path = require("path");

var base_folder = path.join(path.dirname(require.resolve("natural")), "brill_pos_tagger");

var rulesFilename = base_folder + "/data/English/tr_from_posjs.txt";

var lexiconFilename = base_folder + "/data/English/lexicon_from_posjs.json";

var defaultCategory = 'N';

var lexicon = new natural.Lexicon(lexiconFilename, defaultCategory);

var rules = new natural.RuleSet(rulesFilename);

var tagger = new natural.BrillPOSTagger(lexicon, rules);

var myString = "Lys soldered the beautiful jewelry pieces".split(" ");

console.log(tagger.tag(myString));

Markdown supported.
Become a member to join the discussionEnroll Today