File size: 680 Bytes
c77d9b9 |
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: answerdotai/ModernBERT-large
datasets:
- "universal_dependencies"
license: "apache-2.0"
pipeline_tag: "token-classification"
---
# modernbert-large-english-ud-embeds
## Model Description
This is a ModernBERT model for POS-tagging and dependency-parsing, derived from [ModernBERT-large](https://huggingface.co/answerdotai/ModernBERT-large).
## How to Use
```py
from transformers import pipeline
nlp=pipeline("universal-dependencies","KoichiYasuoka/modernbert-large-english-ud-embeds",trust_remote_code=True)
print(nlp("I saw a horse yesterday which had no name"))
```
|