File size: 810 Bytes
65505f6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
language:
- "uk"
tags:
- "ukrainian"
- "token-classification"
- "pos"
- "dependency-parsing"
base_model: benjamin/roberta-base-wechsel-ukrainian
datasets:
- "universal_dependencies"
license: "mit"
pipeline_tag: "token-classification"
---

# roberta-base-wechsel-ukrainian-ud-goeswith

## Model Description

This is a RoBERTa model for POS-tagging and dependency-parsing (using `goeswith` for subwords), derived from [roberta-base-wechsel-ukrainian](https://huggingface.co/benjamin/roberta-base-wechsel-ukrainian).

## How to Use

```py
from transformers import pipeline
nlp=pipeline("universal-dependencies","KoichiYasuoka/roberta-base-wechsel-ukrainian-ud-goeswith",trust_remote_code=True,aggregation_strategy="simple")
print(nlp("Біжать алеї звуків, саджених у гами."))
```