Dan Zeman
Results
2
issues of
Dan Zeman
I have the following code to fix tokenization issues in Spanish AnCora (https://github.com/UniversalDependencies/UD_Spanish-AnCora/issues/6): if re.search(r'\w[¡!]$', node.form): # Separate the punctuation and attach it to the rest. punct = node.create_child() punct.shift_after_node(node)...
bug
I have repeatedly encountered the following situation: A small change is needed for a batch of nodes, such as changing the DEPREL (or both the HEAD and the DEPREL) for...
enhancement