--[=[
This module contains abbreviations of part-of-speech tags.
--]=]
local pos_tags = {
= "adjective",
= "adjective",
= "adverb",
= "article",
= "determiner",
= "cardinal numeral",
= "conjunction",
= "interjection",
= "interjection",
= "noun",
= "numeral",
= "participle",
= "particle",
= "proper noun",
= "proper noun",
= "postposition",
= "preposition",
= "preposition",
= "pronoun",
= "pronoun",
= "ordinal numeral",
= "verb",
= "verb",
= "intransitive verb",
= "transitive verb",
= "transitive and intransitive verb",
}
return pos_tags
-- For Vim, so we get 4-space tabs
-- vim: set ts=4 sw=4 noet: