File size: 726 Bytes
6d03916
 
9f824d8
6d03916
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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:
- "tr"
tags:
- "turkish"
- "token-classification"
- "pos"
- "dependency-parsing"
base_model: 99eren99/ModernBERT-base-Turkish-uncased-mlm
datasets:
- "universal_dependencies"
license: "apache-2.0"
pipeline_tag: "token-classification"
---

# modernbert-base-turkish-ud-embeds

## Model Description

This is a ModernBERT model for POS-tagging and dependency-parsing, derived from [ModernBERT-base-Turkish-uncased-mlm](https://huggingface.co/99eren99/ModernBERT-base-Turkish-uncased-mlm).

## How to Use

```py
from transformers import pipeline
nlp=pipeline("universal-dependencies","KoichiYasuoka/modernbert-base-turkish-ud-embeds",trust_remote_code=True)
print(nlp("Ay dağın diğer tarafında yükseldi"))
```