File size: 584 Bytes
51bac69 acdb890 51bac69 acdb890 0eaa143 208e180 0eaa143 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
---
license: apache-2.0
language:
- th
---
# Thai G2P v2.0
This is a grapheme-to-phoneme model for Thai language. It trained from [wiktionary-23-7-2022-clean.tsv](https://github.com/PyThaiNLP/thai-g2p-wiktionary-corpus/blob/main/wiktionary-23-7-2022-clean.tsv).
**source code**: [https://github.com/wannaphong/thai-g2p-v2](https://github.com/wannaphong/thai-g2p-v2)
```python
from transformers import pipeline
generator = pipeline("text2text-generation", model = "pythainlp/thaig2p-v2.0")
generator("สามารถ")
# {'generated_text': 's aː ˩˩˦ . m aː t̚ ˥˩'}
``` |