|
--- |
|
language: |
|
- "th" |
|
tags: |
|
- "thai" |
|
- "pos" |
|
- "dependency-parsing" |
|
base_model: meta-llama/Llama-3.2-1B |
|
datasets: |
|
- "universal_dependencies" |
|
license: "llama3.2" |
|
pipeline_tag: "token-classification" |
|
widget: |
|
- text: "หลายหัวดีกว่าหัวเดียว" |
|
--- |
|
|
|
# Llama-3.2-1B-thai-ud-causal |
|
|
|
## Model Description |
|
|
|
This is a LLaMA model pre-trained for POS-tagging and dependency-parsing, derived from [Llama-3.2-1B](https://huggingface.co/meta-llama/Llama-3.2-1B) refined for [Thai Universal Dependency Treebank](https://github.com/nlp-chula/TUD). |
|
|
|
## How to Use |
|
|
|
```py |
|
from transformers import pipeline |
|
nlp=pipeline("universal-dependencies","KoichiYasuoka/Llama-3.2-1B-thai-ud-causal",trust_remote_code=True) |
|
print(nlp("หลายหัวดีกว่าหัวเดียว")) |
|
``` |
|
|
|
|