udapi-python icon indicating copy to clipboard operation
udapi-python copied to clipboard

Python framework for processing Universal Dependencies data

Results 9 udapi-python issues
Sort by recently updated
recently updated
newest added

improving the code for better handling the relations... do not merge yet.

Hi! I cannot find this in documentation: I was wondering if UDAPI already includes ways to deal with CoNLL-U plus files (i.e. read, write...). In particular, I am interested in...

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

Implement methods `eparent` and `echildren` for the Node object.

specification needed

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

The file for the tutorial [02-blocks.ipynb](https://nbviewer.jupyter.org/github/udapi/udapi-python/blob/master/tutorial/01-blocks.ipynb) is missing.

Moving a mention from one cluster to another cluster is not supported yet (but it seems @dan-zeman [would like to use it](https://github.com/udapi/udapi-python/pull/96/commits/4b63606129bbe642bf8fec6ec3d3e180a2112e05#diff-cd419721f8faa1a25890db96f1cc928a07be0264103bde2f7c0930607172f4b4R39)). We should: * remove the `NotImplementedError` in the...

When running the following command ``` cat *.conllu | udapy -q util.Eval node='if (node.upos == "ADJ" and node.deprel == "amod" and node.parent.upos == "NOUN" and (node.feats["Gender"] != node.parent.feats["Gender"] or node.feats["Number"]...