|
--- |
|
language: |
|
- "th" |
|
tags: |
|
- "thai" |
|
- "token-classification" |
|
- "pos" |
|
- "dependency-parsing" |
|
base_model: KoichiYasuoka/camembert-thai-base-upos |
|
datasets: |
|
- "universal_dependencies" |
|
license: "apache-2.0" |
|
pipeline_tag: "token-classification" |
|
widget: |
|
- text: "หลายหัวดีกว่าหัวเดียว" |
|
--- |
|
|
|
# camembert-thai-base-ud-goeswith |
|
|
|
## Model Description |
|
|
|
This is a CamemBERT model pre-trained on Thai texts for POS-tagging and dependency-parsing (using `goeswith` for subwords), derived from [camembert-thai-base-upos](https://huggingface.co/KoichiYasuoka/camembert-thai-base-upos). |
|
|
|
## How to Use |
|
|
|
``` |
|
from transformers import pipeline |
|
nlp=pipeline("universal-dependencies","KoichiYasuoka/camembert-thai-base-ud-goeswith",trust_remote_code=True,aggregation_strategy="simple") |
|
print(nlp("หลายหัวดีกว่าหัวเดียว")) |
|
``` |
|
|
|
|