KoichiYasuoka's picture
initial release
1bdd9b7
|
raw
history blame
838 Bytes
---
language:
- "th"
tags:
- "thai"
- "pos"
- "dependency-parsing"
base_model: scb10x/llama3.2-typhoon2-1b
datasets:
- "universal_dependencies"
license: "llama3.2"
pipeline_tag: "token-classification"
widget:
- text: "หลายหัวดีกว่าหัวเดียว"
---
# llama3.2-typhoon2-1b-ud-embeds
## Model Description
This is a LLaMA model pre-trained for POS-tagging and dependency-parsing, derived from [llama3.2-typhoon2-1b](https://huggingface.co/scb10x/llama3.2-typhoon2-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/llama3.2-typhoon2-1b-ud-embeds",trust_remote_code=True)
print(nlp("หลายหัวดีกว่าหัวเดียว"))
```