File size: 808 Bytes
d8ebfde
 
 
 
 
 
 
 
8e49d81
d8ebfde
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c1fcc42
08176a3
c1fcc42
 
 
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
31
32
---
language:
- "la"
tags:
- "latin"
- "token-classification"
- "pos"
- "dependency-parsing"
base_model: ClassCat/roberta-base-latin-v2
datasets:
- "universal_dependencies"
license: "cc-by-sa-4.0"
pipeline_tag: "token-classification"
widget:
- text: "deus videt te non sentientem"
---

# roberta-base-latin-ud-goeswith

## Model Description

This is a RoBERTa model pre-trained on CC-100 Latin texts for POS-tagging and dependency-parsing (using `goeswith` for subwords), derived from [roberta-base-latin-v2](https://huggingface.co./ClassCat/roberta-base-latin-v2).

## How to Use

```py
from transformers import pipeline
nlp=pipeline("universal-dependencies","KoichiYasuoka/roberta-base-latin-ud-goeswith",trust_remote_code=True,aggregation_strategy="simple")
print(nlp("deus videt te non sentientem"))
```