stanfordnlp/CoreNLP

negation modifier

Closed this issue · 4 comments

Hi sir,

Can i get the complete list of words, which are considered in negation modifier.

List
advmod : never , n’t , not
det : no

Thanks in advance.

Regards
Shankar

Under basic dependencies of Stanford typed dependencies,
I need all the list of words, which are considered as negation modifiers.

example text
Bill is not a scientist. neg(scientist-5, not-3)

Bill is no scientist. neg(scientist-4, no-3)

Bill does n't drive. neg(drive-4, n't-3)

thanks in advance.

Thank You Sir.