Orange-OpenSource / conllueditor

ConllEditor is a tool to edit dependency syntax trees in CoNLL-U format.
BSD 3-Clause "New" or "Revised" License
54 stars 17 forks source link

CoNLL-U plus, split & compose #37

Closed Stormur closed 3 months ago

Stormur commented 5 months ago

I have found a couple of small inconvenients when splitting/composing tokens in a text with more than the regular 10 UD columns.

  1. When saving the file, additional columns of a newly composed MWT are left empty; this then gives an error when validating, or also when restarting conllueditor. The expected behaviour would be to put * there for "non-applicable"
    1. Besides, it seems it is not possible to modify that value for a MWT, at least from a table view.
  2. From a table view, it is not possible to modify the form of a MWT; I have to switch to the tree view

Thank you again!

jheinecke commented 5 months ago

Oh yes you're right. I'm on it. For the additional columns for MWT, I think I'll put _ in the conllu-plus file. Since MWT's only have an id, a form and a MISC column, all other columns will be un-editable

Stormur commented 5 months ago

I just note that the standard value for a plus column is *, while _ means that it should be assigned one, but it was not. So the former should be preferred, I think.

jheinecke commented 5 months ago

I released a new version (2.25.3) which corrects all these issues

Stormur commented 5 months ago

Great! I am updating it!