--- language: - "uk" tags: - "ukrainian" - "token-classification" - "pos" - "dependency-parsing" base_model: Goader/modern-liberta-large datasets: - "universal_dependencies" license: "cc-by-4.0" pipeline_tag: "token-classification" --- # modernbert-large-ukrainian-ud-goeswith ## Model Description This is a ModernBERT model for POS-tagging and dependency-parsing (using `goeswith` for subwords), derived from [modern-liberta-large](https://huggingface.co/Goader/modern-liberta-large). ## How to Use ```py from transformers import pipeline nlp=pipeline("universal-dependencies","KoichiYasuoka/modernbert-large-ukrainian-ud-goeswith",trust_remote_code=True,aggregation_strategy="simple") print(nlp("Біжать алеї звуків, саджених у гами.")) ```