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.
1 parent a2f73fd commit 46022aaCopy full SHA for 46022aa
lib/Treex/Block/T2A/GenerateEmptyNodes.pm
@@ -197,7 +197,10 @@ sub guess_and_set_morphology
197
elsif($tlemma eq '#Neg')
198
{
199
$anode->set_tag('PART');
200
- $anode->iset()->set_hash({'pos' => 'part', 'polarity' => 'neg'});
+ # It would make sense to set polarity=neg but we currently do not have it
201
+ # for overt "ne" particles and the UD validator does not allow Polarity
202
+ # with particles in Czech.
203
+ $anode->iset()->set_hash({'pos' => 'part'}); #, 'polarity' => 'neg'});
204
$anode->set_form('ne') if($language eq 'cs');
205
}
206
# Empty verb that cannot be copied from an overt node but it has overt dependents.
0 commit comments