Last active
May 12, 2016 11:58
-
-
Save Izhaki/21687d23274ca8bc18ad4f2c235d7834 to your computer and use it in GitHub Desktop.
Part of Speech tokens used by CoreNLP, based on the Penn Treebank Project.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Based on http://www.ling.upenn.edu/courses/Fall_2003/ling001/penn_treebank_pos.html | |
// Note that CoreNLP sometimes emit POS that are not in this list, like "``" or "." | |
var iCoreNlpPos = [ "CC", "CD", "DT", "EX", "FW", "IN", "JJ", "JJR", "JJS", "LS", "MD", "NN", "NNS", "NNP", "NNPS", "PDT", "POS", "PRP", "PRP$", "RB", "RBR", "RBS", "RP", "SYM", "TO", "UH", "VB", "VBD", "VBG", "VBN", "VBP", "VBZ", "WDT", "WP", "WP$", "WRB" ]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment