# -*- coding: utf-8 -*- # SPDX-FileCopyrightText: 2016-2025 PyThaiNLP Project # SPDX-FileType: SOURCE # SPDX-License-Identifier: Apache-2.0 """ Thai Grapheme-to-Phoneme (Thai G2P) huggingface: https://huggingface.co/pythainlp/thaig2p-v2.0 """ # Use a pipeline as a high-level helper from transformers import pipeline class ThaiG2P: """ Latin transliteration of Thai words, using International Phonetic Alphabet """ def __init__(self, device: str = "cpu"): self.pipe = pipeline("text2text-generation", model="pythainlp/thaig2p-v2.0", device=device) def g2p(self, text: str) -> str: return self.pipe(text)[0]["generated_text"] _THAI_G2P = None def transliterate(text: str, device="cpu") -> str: global _THAI_G2P if _THAI_G2P is None: _THAI_G2P = ThaiG2P(device=device) return _THAI_G2P.g2p(text)