Skip to content
Discussion options

You must be logged in to vote

The TIGER dependency conversion is in an older CoNLL-2009 format that predates UD (https://ufal.mff.cuni.cz/conll2009-st/task-description.html). It won't contain UD POS and the morphological features are also in an older format, but if you adjust the token IDs and rearrange columns to correspond to CoNLL-U, then you should be able to convert it with spacy convert.

I think the CoNLL-2009 columns are:

ID FORM LEMMA PLEMMA POS PPOS FEAT PFEAT HEAD PHEAD DEPREL PDEPREL FILLPRED PRED APREDs 

And CoNLL-U has:

ID FORM LEMMA UPOS XPOS FEATS HEAD DEPREL DEPS MISC

You should convert POS->XPOS and I think you'll still need some valid UPOS tag in the UPOS column, so just for testing you could initi…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@polkaYK
Comment options

Answer selected by polkaYK
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
lang / de German language data and models
2 participants