stanfordnlp / CoreNLP

CoreNLP: A Java suite of core NLP tools for tokenization, sentence segmentation, NER, parsing, coreference, sentiment analysis, etc.
http://stanfordnlp.github.io/CoreNLP/
GNU General Public License v3.0
9.65k stars 2.7k forks source link

Is there a part of speech summary document? I can't find it on the official website #1243

Closed Jzow closed 2 years ago

Jzow commented 2 years ago

such as:

How many parts of speech are there? Where do I look, or where do I look at the source code

ROOT:要处理文本的语句
IP:简单从句
NP:名词短语
VP:动词短语
PU:断句符,通常是句号、问号、感叹号等标点符号
LCP:方位词短语
PP:介词短语
CP:由‘的’构成的表示修饰性关系的短语
DNP:由‘的’构成的表示所属关系的短语
ADVP:副词短语
ADJP:形容词短语
DP:限定词短语
QP:量词短语
NN:常用名词
NR:固有名词
NT:时间名词
PN:代词
VV:动词
VC:是
CC:表示连词
VE:有
VA:表语形容词
AS:内容标记(如:了)
VRD:动补复合词
CD: 表示基数词
DT: determiner 表示限定词
EX: existential there 存在句
FW: foreign word 外来词
IN: preposition or conjunction, subordinating 介词或从属连词
JJ: adjective or numeral, ordinal 形容词或序数词
JJR: adjective, comparative 形容词比较级
AngledLuffa commented 2 years ago

POS should be here:

https://hanlp.hankcs.com/docs/annotations/pos/ctb.html

but you've listed some category tags, so look here:

https://www.cs.brandeis.edu/~clp/ctb/

there's some more info on bracketing there

On Wed, Jan 19, 2022 at 7:12 PM James Zow @.***> wrote:

such as:

How many parts of speech are there? Where do I look, or where do I look at the source code

ROOT:要处理文本的语句 IP:简单从句 NP:名词短语 VP:动词短语 PU:断句符,通常是句号、问号、感叹号等标点符号 LCP:方位词短语 PP:介词短语 CP:由‘的’构成的表示修饰性关系的短语 DNP:由‘的’构成的表示所属关系的短语 ADVP:副词短语 ADJP:形容词短语 DP:限定词短语 QP:量词短语 NN:常用名词 NR:固有名词 NT:时间名词 PN:代词 VV:动词 VC:是 CC:表示连词 VE:有 VA:表语形容词 AS:内容标记(如:了) VRD:动补复合词 CD: 表示基数词 DT: determiner 表示限定词 EX: existential there 存在句 FW: foreign word 外来词 IN: preposition or conjunction, subordinating 介词或从属连词 JJ: adjective or numeral, ordinal 形容词或序数词 JJR: adjective, comparative 形容词比较级

— Reply to this email directly, view it on GitHub https://github.com/stanfordnlp/CoreNLP/issues/1243, or unsubscribe https://github.com/notifications/unsubscribe-auth/AA2AYWIIB6HP7NZTOA36TC3UW54QLANCNFSM5MLS7YNA . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

You are receiving this because you are subscribed to this thread.Message ID: @.***>

Jzow commented 2 years ago

thanks @AngledLuffa

Jzow commented 2 years ago

@AngledLuffa hi , I'm sorry to bother you. I want to know which address is the part of speech in English, not in Chinese

AngledLuffa commented 2 years ago

Not to be too much of a jerk but you can just search for this ... [ptb pos tags] or something like that

https://www.ling.upenn.edu/courses/Fall_2003/ling001/penn_treebank_pos.html

Jzow commented 2 years ago

thanks