We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 77cc12e + fade074 commit d435fdbCopy full SHA for d435fdb
tuw_nlp/grammar/lexicon.py
@@ -501,7 +501,8 @@ def get_mod_edges(self):
501
("NOUN", "ACL", "ADJ"),
502
("NOUN", "NUMMOD", "NUM"),
503
("NUM", "ADVMOD", "ADV"),
504
- ("NUM", "ADVMOD", "ADV"),
+ # maximal 6,0 m
505
+ ("NUM", "ADVMOD", "ADJ"),
506
("NUM", "ADVMOD", "NUM"),
507
("VERB", "ADVMOD", "ADJ"),
508
("VERB", "ADVMOD", "ADV"),
@@ -543,8 +544,10 @@ def r(edge):
543
544
# ...wird bestimmt, dass...
545
("VERB", "CCOMP", "VERB"): [r("2")],
546
# ...wird bestimmt: Die Errichtung...zulaesssig (8159_21_0)
- # erroneously parsed as parataxis
547
+ # ...wird bestimmt: ...betragen
548
+ # parsed as parataxis
549
("VERB", "PARATAXIS", "ADJ"): [r("2")],
550
+ ("VERB", "PARATAXIS", "VERB"): [r("2")],
551
# ...so auszubilden, dass...
552
("VERB", "CCOMP", "ADJ"): [r("0")], # TODO
553
# sind Vorkehrungen zu treffen, dass...moeglich
0 commit comments