|
--- |
|
language: |
|
- "ru" |
|
tags: |
|
- "russian" |
|
- "token-classification" |
|
- "pos" |
|
- "dependency-parsing" |
|
base_model: deepvk/RuModernBERT-base |
|
datasets: |
|
- "universal_dependencies" |
|
license: "apache-2.0" |
|
pipeline_tag: "token-classification" |
|
--- |
|
|
|
# modernbert-base-russian-ud-goeswith |
|
|
|
## Model Description |
|
|
|
This is a ModernBERT model for POS-tagging and dependency-parsing (using `goeswith` for subwords), derived from [RuModernBERT-base](https://huggingface.co/deepvk/RuModernBERT-base). |
|
|
|
## How to Use |
|
|
|
```py |
|
from transformers import pipeline |
|
nlp=pipeline("universal-dependencies","KoichiYasuoka/modernbert-base-russian-ud-goeswith",trust_remote_code=True,aggregation_strategy="simple") |
|
print(nlp("Москва слезам не верила, а верила любви.")) |
|
``` |
|
|
|
|