KoichiYasuoka's picture
without ufal.chu-liu.edmonds
dacea24
|
raw
history blame contribute delete
No virus
723 Bytes
---
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"))
```