CoBaLD/enhanced-ud-syntax
Viewer • Updated • 27.3k • 107
How to use CoBaLD/cobald-parser-pretrain-en with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="CoBaLD/cobald-parser-pretrain-en", trust_remote_code=True) # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("CoBaLD/cobald-parser-pretrain-en", trust_remote_code=True, dtype="auto")A transformer-based multihead parser for CoBaLD annotation.
This model parses a pre-tokenized CoNLL-U text and jointly labels each token with three tiers of tags:
@inproceedings{baiuk2025cobald,
title={CoBaLD Parser: Joint Morphosyntactic and Semantic Annotation},
author={Baiuk, Ilia and Baiuk, Alexandra and Petrova, Maria},
booktitle={Proceedings of the International Conference "Dialogue"},
volume={I},
year={2025}
}
Base model
FacebookAI/xlm-roberta-base