ParakeetEricRoss/g2p/__init__.py

34 lines
634 B
Python

# coding: utf-8
"""Text processing frontend
All frontend module should have the following functions:
- text_to_sequence(text, p)
- sequence_to_text(sequence)
and the property:
- n_vocab
"""
from g2p import en
# optinoal Japanese frontend
try:
from g2p import jp
except ImportError:
jp = None
try:
from g2p import ko
except ImportError:
ko = None
# if you are going to use the frontend, you need to modify _characters in symbol.py:
# _characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz!\'(),-.:;? ' + '¡¿ñáéíóúÁÉÍÓÚÑ'
try:
from g2p import es
except ImportError:
es = None