File size: 723 Bytes
563a060
 
 
 
 
 
 
 
08a9c4f
563a060
 
 
 
 
 
 
 
 
 
08a9c4f
563a060
 
 
 
6fd5751
58474dc
6fd5751
 
 
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:
- "en"
tags:
- "english"
- "token-classification"
- "pos"
- "dependency-parsing"
base_model: FacebookAI/roberta-base
datasets:
- "universal_dependencies"
license: "cc-by-sa-4.0"
pipeline_tag: "token-classification"
---

# roberta-base-english-ud-goeswith

## Model Description

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

## How to Use

```py
from transformers import pipeline
nlp=pipeline("universal-dependencies","KoichiYasuoka/roberta-base-english-ud-goeswith",trust_remote_code=True,aggregation_strategy="simple")
print(nlp("I saw a horse yesterday which had no name"))
```