kovvalsky / prove_SICK_NL

Prove Ducth NLI problems of SICK-NL with LangPro
MIT License
3 stars 0 forks source link

Determiners immediately attached to head nouns #4

Closed kovvalsky closed 3 years ago

kovvalsky commented 3 years ago

Now there is a rule that digs Det from np-Mods and attaches at the top of NP.

(1) Mod1 @ (...(ModN @ (Det @ N))...) ===> Det @ (Mod1 @ (...(ModN @ N)...))

Caution: this is very close to the existing rule (2) DetMod @ (Det @ N) ===> (DetMod @ Det) @ N that is responsible for not (all dogs) ===> (not all) dogs. These two rules are very close for instances like almost (all dogs) ===> (almost all) dogs where almost easily gets same JJ pos. Currently, (2) is used only for DetMod with RB pos.

image

_Originally posted by @kovvalsky in https://github.com/kovvalsky/prove_SICK_NL/issues/2#issuecomment-785137719_

kovvalsky commented 3 years ago

After applying (1) rule: image