c-amr / camr

Transition-based tree-to-graph AMR Parser
GNU General Public License v2.0
125 stars 44 forks source link

Cannot deal with negation #17

Open ChandlerBang opened 6 years ago

ChandlerBang commented 6 years ago

When my input is like this, ''' not now doesn't don't can't ''' I will get result like this, ::id 1 ::snt not now (x2 / now)

::id 2 ::snt doesn't (x1 / do-02)

::id 3 ::snt don't (x1 / do-02)

::id 4 ::snt can't (x / xconcept)

It seems the algorithm ignore the negative words. I try to deal with this problem by myself , but I failed... So is there anyone who can help me?