ORI-Muchim
commited on
Commit
•
c29d9b6
1
Parent(s):
5dc50a6
Upload 23 files
Browse files- ko_fine_tuning_22050hz/text/LICENSE +19 -0
- ko_fine_tuning_22050hz/text/__init__.py +56 -0
- ko_fine_tuning_22050hz/text/__pycache__/__init__.cpython-38.pyc +0 -0
- ko_fine_tuning_22050hz/text/__pycache__/__init__.cpython-39.pyc +0 -0
- ko_fine_tuning_22050hz/text/__pycache__/cleaners.cpython-38.pyc +0 -0
- ko_fine_tuning_22050hz/text/__pycache__/cleaners.cpython-39.pyc +0 -0
- ko_fine_tuning_22050hz/text/__pycache__/english.cpython-38.pyc +0 -0
- ko_fine_tuning_22050hz/text/__pycache__/japanese.cpython-38.pyc +0 -0
- ko_fine_tuning_22050hz/text/__pycache__/japanese.cpython-39.pyc +0 -0
- ko_fine_tuning_22050hz/text/__pycache__/korean.cpython-38.pyc +0 -0
- ko_fine_tuning_22050hz/text/__pycache__/mandarin.cpython-38.pyc +0 -0
- ko_fine_tuning_22050hz/text/__pycache__/symbols.cpython-38.pyc +0 -0
- ko_fine_tuning_22050hz/text/cantonese.py +59 -0
- ko_fine_tuning_22050hz/text/cleaners.py +144 -0
- ko_fine_tuning_22050hz/text/english.py +188 -0
- ko_fine_tuning_22050hz/text/japanese.py +153 -0
- ko_fine_tuning_22050hz/text/korean.py +210 -0
- ko_fine_tuning_22050hz/text/mandarin.py +326 -0
- ko_fine_tuning_22050hz/text/ngu_dialect.py +30 -0
- ko_fine_tuning_22050hz/text/sanskrit.py +62 -0
- ko_fine_tuning_22050hz/text/shanghainese.py +64 -0
- ko_fine_tuning_22050hz/text/symbols.py +10 -0
- ko_fine_tuning_22050hz/text/thai.py +44 -0
ko_fine_tuning_22050hz/text/LICENSE
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Copyright (c) 2017 Keith Ito
|
2 |
+
|
3 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
4 |
+
of this software and associated documentation files (the "Software"), to deal
|
5 |
+
in the Software without restriction, including without limitation the rights
|
6 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7 |
+
copies of the Software, and to permit persons to whom the Software is
|
8 |
+
furnished to do so, subject to the following conditions:
|
9 |
+
|
10 |
+
The above copyright notice and this permission notice shall be included in
|
11 |
+
all copies or substantial portions of the Software.
|
12 |
+
|
13 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
19 |
+
THE SOFTWARE.
|
ko_fine_tuning_22050hz/text/__init__.py
ADDED
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
""" from https://github.com/keithito/tacotron """
|
2 |
+
from text import cleaners
|
3 |
+
from text.symbols import symbols
|
4 |
+
|
5 |
+
|
6 |
+
# Mappings from symbol to numeric ID and vice versa:
|
7 |
+
_symbol_to_id = {s: i for i, s in enumerate(symbols)}
|
8 |
+
_id_to_symbol = {i: s for i, s in enumerate(symbols)}
|
9 |
+
|
10 |
+
|
11 |
+
def text_to_sequence(text, cleaner_names):
|
12 |
+
'''Converts a string of text to a sequence of IDs corresponding to the symbols in the text.
|
13 |
+
Args:
|
14 |
+
text: string to convert to a sequence
|
15 |
+
cleaner_names: names of the cleaner functions to run the text through
|
16 |
+
Returns:
|
17 |
+
List of integers corresponding to the symbols in the text
|
18 |
+
'''
|
19 |
+
sequence = []
|
20 |
+
|
21 |
+
clean_text = _clean_text(text, cleaner_names)
|
22 |
+
for symbol in clean_text:
|
23 |
+
if symbol not in _symbol_to_id.keys():
|
24 |
+
continue
|
25 |
+
symbol_id = _symbol_to_id[symbol]
|
26 |
+
sequence += [symbol_id]
|
27 |
+
return sequence
|
28 |
+
|
29 |
+
|
30 |
+
def cleaned_text_to_sequence(cleaned_text):
|
31 |
+
'''Converts a string of text to a sequence of IDs corresponding to the symbols in the text.
|
32 |
+
Args:
|
33 |
+
text: string to convert to a sequence
|
34 |
+
Returns:
|
35 |
+
List of integers corresponding to the symbols in the text
|
36 |
+
'''
|
37 |
+
sequence = [_symbol_to_id[symbol] for symbol in cleaned_text if symbol in _symbol_to_id.keys()]
|
38 |
+
return sequence
|
39 |
+
|
40 |
+
|
41 |
+
def sequence_to_text(sequence):
|
42 |
+
'''Converts a sequence of IDs back to a string'''
|
43 |
+
result = ''
|
44 |
+
for symbol_id in sequence:
|
45 |
+
s = _id_to_symbol[symbol_id]
|
46 |
+
result += s
|
47 |
+
return result
|
48 |
+
|
49 |
+
|
50 |
+
def _clean_text(text, cleaner_names):
|
51 |
+
for name in cleaner_names:
|
52 |
+
cleaner = getattr(cleaners, name)
|
53 |
+
if not cleaner:
|
54 |
+
raise Exception('Unknown cleaner: %s' % name)
|
55 |
+
text = cleaner(text)
|
56 |
+
return text
|
ko_fine_tuning_22050hz/text/__pycache__/__init__.cpython-38.pyc
ADDED
Binary file (2.13 kB). View file
|
|
ko_fine_tuning_22050hz/text/__pycache__/__init__.cpython-39.pyc
ADDED
Binary file (2.11 kB). View file
|
|
ko_fine_tuning_22050hz/text/__pycache__/cleaners.cpython-38.pyc
ADDED
Binary file (7.33 kB). View file
|
|
ko_fine_tuning_22050hz/text/__pycache__/cleaners.cpython-39.pyc
ADDED
Binary file (6.86 kB). View file
|
|
ko_fine_tuning_22050hz/text/__pycache__/english.cpython-38.pyc
ADDED
Binary file (4.86 kB). View file
|
|
ko_fine_tuning_22050hz/text/__pycache__/japanese.cpython-38.pyc
ADDED
Binary file (4.45 kB). View file
|
|
ko_fine_tuning_22050hz/text/__pycache__/japanese.cpython-39.pyc
ADDED
Binary file (4.41 kB). View file
|
|
ko_fine_tuning_22050hz/text/__pycache__/korean.cpython-38.pyc
ADDED
Binary file (5.48 kB). View file
|
|
ko_fine_tuning_22050hz/text/__pycache__/mandarin.cpython-38.pyc
ADDED
Binary file (6.37 kB). View file
|
|
ko_fine_tuning_22050hz/text/__pycache__/symbols.cpython-38.pyc
ADDED
Binary file (351 Bytes). View file
|
|
ko_fine_tuning_22050hz/text/cantonese.py
ADDED
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import re
|
2 |
+
import cn2an
|
3 |
+
import opencc
|
4 |
+
|
5 |
+
|
6 |
+
converter = opencc.OpenCC('jyutjyu')
|
7 |
+
|
8 |
+
# List of (Latin alphabet, ipa) pairs:
|
9 |
+
_latin_to_ipa = [(re.compile('%s' % x[0]), x[1]) for x in [
|
10 |
+
('A', 'ei˥'),
|
11 |
+
('B', 'biː˥'),
|
12 |
+
('C', 'siː˥'),
|
13 |
+
('D', 'tiː˥'),
|
14 |
+
('E', 'iː˥'),
|
15 |
+
('F', 'e˥fuː˨˩'),
|
16 |
+
('G', 'tsiː˥'),
|
17 |
+
('H', 'ɪk̚˥tsʰyː˨˩'),
|
18 |
+
('I', 'ɐi˥'),
|
19 |
+
('J', 'tsei˥'),
|
20 |
+
('K', 'kʰei˥'),
|
21 |
+
('L', 'e˥llou˨˩'),
|
22 |
+
('M', 'ɛːm˥'),
|
23 |
+
('N', 'ɛːn˥'),
|
24 |
+
('O', 'ou˥'),
|
25 |
+
('P', 'pʰiː˥'),
|
26 |
+
('Q', 'kʰiːu˥'),
|
27 |
+
('R', 'aː˥lou˨˩'),
|
28 |
+
('S', 'ɛː˥siː˨˩'),
|
29 |
+
('T', 'tʰiː˥'),
|
30 |
+
('U', 'juː˥'),
|
31 |
+
('V', 'wiː˥'),
|
32 |
+
('W', 'tʊk̚˥piː˥juː˥'),
|
33 |
+
('X', 'ɪk̚˥siː˨˩'),
|
34 |
+
('Y', 'waːi˥'),
|
35 |
+
('Z', 'iː˨sɛːt̚˥')
|
36 |
+
]]
|
37 |
+
|
38 |
+
|
39 |
+
def number_to_cantonese(text):
|
40 |
+
return re.sub(r'\d+(?:\.?\d+)?', lambda x: cn2an.an2cn(x.group()), text)
|
41 |
+
|
42 |
+
|
43 |
+
def latin_to_ipa(text):
|
44 |
+
for regex, replacement in _latin_to_ipa:
|
45 |
+
text = re.sub(regex, replacement, text)
|
46 |
+
return text
|
47 |
+
|
48 |
+
|
49 |
+
def cantonese_to_ipa(text):
|
50 |
+
text = number_to_cantonese(text.upper())
|
51 |
+
text = converter.convert(text).replace('-','').replace('$',' ')
|
52 |
+
text = re.sub(r'[A-Z]', lambda x: latin_to_ipa(x.group())+' ', text)
|
53 |
+
text = re.sub(r'[、;:]', ',', text)
|
54 |
+
text = re.sub(r'\s*,\s*', ', ', text)
|
55 |
+
text = re.sub(r'\s*。\s*', '. ', text)
|
56 |
+
text = re.sub(r'\s*?\s*', '? ', text)
|
57 |
+
text = re.sub(r'\s*!\s*', '! ', text)
|
58 |
+
text = re.sub(r'\s*$', '', text)
|
59 |
+
return text
|
ko_fine_tuning_22050hz/text/cleaners.py
ADDED
@@ -0,0 +1,144 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import re
|
2 |
+
from text.japanese import japanese_to_romaji_with_accent, japanese_to_ipa, japanese_to_ipa2, japanese_to_ipa3
|
3 |
+
from text.korean import latin_to_hangul, number_to_hangul, divide_hangul, korean_to_lazy_ipa, korean_to_ipa
|
4 |
+
from g2pk2 import G2p
|
5 |
+
from text.mandarin import number_to_chinese, chinese_to_bopomofo, latin_to_bopomofo, chinese_to_romaji, chinese_to_lazy_ipa, chinese_to_ipa, chinese_to_ipa2
|
6 |
+
#from text.sanskrit import devanagari_to_ipa
|
7 |
+
from text.english import english_to_lazy_ipa, english_to_ipa2, english_to_lazy_ipa2
|
8 |
+
#from text.thai import num_to_thai, latin_to_thai
|
9 |
+
#from text.shanghainese import shanghainese_to_ipa
|
10 |
+
#from text.cantonese import cantonese_to_ipa
|
11 |
+
#from text.ngu_dialect import ngu_dialect_to_ipa
|
12 |
+
|
13 |
+
|
14 |
+
def fix_g2pk2_error(text):
|
15 |
+
new_text = ""
|
16 |
+
i = 0
|
17 |
+
while i < len(text) - 4:
|
18 |
+
if (text[i:i+3] == 'ㅇㅡㄹ' or text[i:i+3] == 'ㄹㅡㄹ') and text[i+3] == ' ' and text[i+4] == 'ㄹ':
|
19 |
+
new_text += text[i:i+3] + ' ' + 'ㄴ'
|
20 |
+
i += 5
|
21 |
+
else:
|
22 |
+
new_text += text[i]
|
23 |
+
i += 1
|
24 |
+
|
25 |
+
new_text += text[i:]
|
26 |
+
return new_text
|
27 |
+
|
28 |
+
|
29 |
+
def japanese_cleaners(text):
|
30 |
+
text = japanese_to_romaji_with_accent(text)
|
31 |
+
text = re.sub(r'([A-Za-z])$', r'\1.', text)
|
32 |
+
return text
|
33 |
+
|
34 |
+
|
35 |
+
def japanese_cleaners2(text):
|
36 |
+
return japanese_cleaners(text).replace('ts', 'ʦ').replace('...', '…')
|
37 |
+
|
38 |
+
|
39 |
+
def korean_cleaners(text):
|
40 |
+
'''Pipeline for Korean text'''
|
41 |
+
text = latin_to_hangul(text)
|
42 |
+
g2p = G2p()
|
43 |
+
text = g2p(text)
|
44 |
+
text = divide_hangul(text)
|
45 |
+
text = fix_g2pk2_error(text)
|
46 |
+
text = re.sub(r'([\u3131-\u3163])$', r'\1.', text)
|
47 |
+
return text
|
48 |
+
|
49 |
+
|
50 |
+
def chinese_cleaners(text):
|
51 |
+
'''Pipeline for Chinese text'''
|
52 |
+
text = number_to_chinese(text)
|
53 |
+
text = chinese_to_bopomofo(text)
|
54 |
+
text = latin_to_bopomofo(text)
|
55 |
+
text = re.sub(r'([ˉˊˇˋ˙])$', r'\1。', text)
|
56 |
+
return text
|
57 |
+
|
58 |
+
|
59 |
+
def zh_ja_mixture_cleaners(text):
|
60 |
+
text = re.sub(r'\[ZH\](.*?)\[ZH\]',
|
61 |
+
lambda x: chinese_to_romaji(x.group(1))+' ', text)
|
62 |
+
text = re.sub(r'\[JA\](.*?)\[JA\]', lambda x: japanese_to_romaji_with_accent(
|
63 |
+
x.group(1)).replace('ts', 'ʦ').replace('u', 'ɯ').replace('...', '…')+' ', text)
|
64 |
+
text = re.sub(r'\s+$', '', text)
|
65 |
+
text = re.sub(r'([^\.,!\?\-…~])$', r'\1.', text)
|
66 |
+
return text
|
67 |
+
|
68 |
+
|
69 |
+
def sanskrit_cleaners(text):
|
70 |
+
text = text.replace('॥', '।').replace('ॐ', 'ओम्')
|
71 |
+
text = re.sub(r'([^।])$', r'\1।', text)
|
72 |
+
return text
|
73 |
+
|
74 |
+
|
75 |
+
def cjks_cleaners(text):
|
76 |
+
text = re.sub(r'\[ZH\](.*?)\[ZH\]',
|
77 |
+
lambda x: chinese_to_lazy_ipa(x.group(1))+' ', text)
|
78 |
+
text = re.sub(r'\[JA\](.*?)\[JA\]',
|
79 |
+
lambda x: japanese_to_ipa(x.group(1))+' ', text)
|
80 |
+
text = re.sub(r'\[KO\](.*?)\[KO\]',
|
81 |
+
lambda x: korean_to_lazy_ipa(x.group(1))+' ', text)
|
82 |
+
text = re.sub(r'\[SA\](.*?)\[SA\]',
|
83 |
+
lambda x: devanagari_to_ipa(x.group(1))+' ', text)
|
84 |
+
text = re.sub(r'\[EN\](.*?)\[EN\]',
|
85 |
+
lambda x: english_to_lazy_ipa(x.group(1))+' ', text)
|
86 |
+
text = re.sub(r'\s+$', '', text)
|
87 |
+
text = re.sub(r'([^\.,!\?\-…~])$', r'\1.', text)
|
88 |
+
return text
|
89 |
+
|
90 |
+
def cjke_cleaners(text):
|
91 |
+
text = re.sub(r'\[ZH\](.*?)\[ZH\]', lambda x: chinese_to_lazy_ipa(x.group(1)).replace(
|
92 |
+
'ʧ', 'tʃ').replace('ʦ', 'ts').replace('ɥan', 'ɥæn')+' ', text)
|
93 |
+
text = re.sub(r'\[JA\](.*?)\[JA\]', lambda x: japanese_to_ipa(x.group(1)).replace('ʧ', 'tʃ').replace(
|
94 |
+
'ʦ', 'ts').replace('ɥan', 'ɥæn').replace('ʥ', 'dz')+' ', text)
|
95 |
+
text = re.sub(r'\[KO\](.*?)\[KO\]',
|
96 |
+
lambda x: korean_to_ipa(x.group(1))+' ', text)
|
97 |
+
text = re.sub(r'\[EN\](.*?)\[EN\]', lambda x: english_to_ipa2(x.group(1)).replace('ɑ', 'a').replace(
|
98 |
+
'ɔ', 'o').replace('ɛ', 'e').replace('ɪ', 'i').replace('ʊ', 'u')+' ', text)
|
99 |
+
text = re.sub(r'\s+$', '', text)
|
100 |
+
text = re.sub(r'([^\.,!\?\-…~])$', r'\1.', text)
|
101 |
+
return text
|
102 |
+
|
103 |
+
def cjke_cleaners2(text):
|
104 |
+
text = re.sub(r'\[ZH\](.*?)\[ZH\]',
|
105 |
+
lambda x: chinese_to_ipa(x.group(1))+' ', text)
|
106 |
+
text = re.sub(r'\[JA\](.*?)\[JA\]',
|
107 |
+
lambda x: japanese_to_ipa2(x.group(1))+' ', text)
|
108 |
+
text = re.sub(r'\[KO\](.*?)\[KO\]',
|
109 |
+
lambda x: korean_to_ipa(x.group(1))+' ', text)
|
110 |
+
text = re.sub(r'\[EN\](.*?)\[EN\]',
|
111 |
+
lambda x: english_to_ipa2(x.group(1))+' ', text)
|
112 |
+
text = re.sub(r'\s+$', '', text)
|
113 |
+
text = re.sub(r'([^\.,!\?\-…~])$', r'\1.', text)
|
114 |
+
return text
|
115 |
+
|
116 |
+
|
117 |
+
def thai_cleaners(text):
|
118 |
+
text = num_to_thai(text)
|
119 |
+
text = latin_to_thai(text)
|
120 |
+
return text
|
121 |
+
|
122 |
+
|
123 |
+
def shanghainese_cleaners(text):
|
124 |
+
text = shanghainese_to_ipa(text)
|
125 |
+
text = re.sub(r'([^\.,!\?\-…~])$', r'\1.', text)
|
126 |
+
return text
|
127 |
+
|
128 |
+
|
129 |
+
def chinese_dialect_cleaners(text):
|
130 |
+
text = re.sub(r'\[ZH\](.*?)\[ZH\]',
|
131 |
+
lambda x: chinese_to_ipa2(x.group(1))+' ', text)
|
132 |
+
text = re.sub(r'\[JA\](.*?)\[JA\]',
|
133 |
+
lambda x: japanese_to_ipa3(x.group(1)).replace('Q', 'ʔ')+' ', text)
|
134 |
+
text = re.sub(r'\[SH\](.*?)\[SH\]', lambda x: shanghainese_to_ipa(x.group(1)).replace('1', '˥˧').replace('5',
|
135 |
+
'˧˧˦').replace('6', '˩˩˧').replace('7', '˥').replace('8', '˩˨').replace('ᴀ', 'ɐ').replace('ᴇ', 'e')+' ', text)
|
136 |
+
text = re.sub(r'\[GD\](.*?)\[GD\]',
|
137 |
+
lambda x: cantonese_to_ipa(x.group(1))+' ', text)
|
138 |
+
text = re.sub(r'\[EN\](.*?)\[EN\]',
|
139 |
+
lambda x: english_to_lazy_ipa2(x.group(1))+' ', text)
|
140 |
+
text = re.sub(r'\[([A-Z]{2})\](.*?)\[\1\]', lambda x: ngu_dialect_to_ipa(x.group(2), x.group(
|
141 |
+
1)).replace('ʣ', 'dz').replace('ʥ', 'dʑ').replace('ʦ', 'ts').replace('ʨ', 'tɕ')+' ', text)
|
142 |
+
text = re.sub(r'\s+$', '', text)
|
143 |
+
text = re.sub(r'([^\.,!\?\-…~])$', r'\1.', text)
|
144 |
+
return text
|
ko_fine_tuning_22050hz/text/english.py
ADDED
@@ -0,0 +1,188 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
""" from https://github.com/keithito/tacotron """
|
2 |
+
|
3 |
+
'''
|
4 |
+
Cleaners are transformations that run over the input text at both training and eval time.
|
5 |
+
|
6 |
+
Cleaners can be selected by passing a comma-delimited list of cleaner names as the "cleaners"
|
7 |
+
hyperparameter. Some cleaners are English-specific. You'll typically want to use:
|
8 |
+
1. "english_cleaners" for English text
|
9 |
+
2. "transliteration_cleaners" for non-English text that can be transliterated to ASCII using
|
10 |
+
the Unidecode library (https://pypi.python.org/pypi/Unidecode)
|
11 |
+
3. "basic_cleaners" if you do not want to transliterate (in this case, you should also update
|
12 |
+
the symbols in symbols.py to match your data).
|
13 |
+
'''
|
14 |
+
|
15 |
+
|
16 |
+
# Regular expression matching whitespace:
|
17 |
+
|
18 |
+
|
19 |
+
import re
|
20 |
+
import inflect
|
21 |
+
from unidecode import unidecode
|
22 |
+
import eng_to_ipa as ipa
|
23 |
+
_inflect = inflect.engine()
|
24 |
+
_comma_number_re = re.compile(r'([0-9][0-9\,]+[0-9])')
|
25 |
+
_decimal_number_re = re.compile(r'([0-9]+\.[0-9]+)')
|
26 |
+
_pounds_re = re.compile(r'£([0-9\,]*[0-9]+)')
|
27 |
+
_dollars_re = re.compile(r'\$([0-9\.\,]*[0-9]+)')
|
28 |
+
_ordinal_re = re.compile(r'[0-9]+(st|nd|rd|th)')
|
29 |
+
_number_re = re.compile(r'[0-9]+')
|
30 |
+
|
31 |
+
# List of (regular expression, replacement) pairs for abbreviations:
|
32 |
+
_abbreviations = [(re.compile('\\b%s\\.' % x[0], re.IGNORECASE), x[1]) for x in [
|
33 |
+
('mrs', 'misess'),
|
34 |
+
('mr', 'mister'),
|
35 |
+
('dr', 'doctor'),
|
36 |
+
('st', 'saint'),
|
37 |
+
('co', 'company'),
|
38 |
+
('jr', 'junior'),
|
39 |
+
('maj', 'major'),
|
40 |
+
('gen', 'general'),
|
41 |
+
('drs', 'doctors'),
|
42 |
+
('rev', 'reverend'),
|
43 |
+
('lt', 'lieutenant'),
|
44 |
+
('hon', 'honorable'),
|
45 |
+
('sgt', 'sergeant'),
|
46 |
+
('capt', 'captain'),
|
47 |
+
('esq', 'esquire'),
|
48 |
+
('ltd', 'limited'),
|
49 |
+
('col', 'colonel'),
|
50 |
+
('ft', 'fort'),
|
51 |
+
]]
|
52 |
+
|
53 |
+
|
54 |
+
# List of (ipa, lazy ipa) pairs:
|
55 |
+
_lazy_ipa = [(re.compile('%s' % x[0]), x[1]) for x in [
|
56 |
+
('r', 'ɹ'),
|
57 |
+
('æ', 'e'),
|
58 |
+
('ɑ', 'a'),
|
59 |
+
('ɔ', 'o'),
|
60 |
+
('ð', 'z'),
|
61 |
+
('θ', 's'),
|
62 |
+
('ɛ', 'e'),
|
63 |
+
('ɪ', 'i'),
|
64 |
+
('ʊ', 'u'),
|
65 |
+
('ʒ', 'ʥ'),
|
66 |
+
('ʤ', 'ʥ'),
|
67 |
+
('ˈ', '↓'),
|
68 |
+
]]
|
69 |
+
|
70 |
+
# List of (ipa, lazy ipa2) pairs:
|
71 |
+
_lazy_ipa2 = [(re.compile('%s' % x[0]), x[1]) for x in [
|
72 |
+
('r', 'ɹ'),
|
73 |
+
('ð', 'z'),
|
74 |
+
('θ', 's'),
|
75 |
+
('ʒ', 'ʑ'),
|
76 |
+
('ʤ', 'dʑ'),
|
77 |
+
('ˈ', '↓'),
|
78 |
+
]]
|
79 |
+
|
80 |
+
# List of (ipa, ipa2) pairs
|
81 |
+
_ipa_to_ipa2 = [(re.compile('%s' % x[0]), x[1]) for x in [
|
82 |
+
('r', 'ɹ'),
|
83 |
+
('ʤ', 'dʒ'),
|
84 |
+
('ʧ', 'tʃ')
|
85 |
+
]]
|
86 |
+
|
87 |
+
|
88 |
+
def expand_abbreviations(text):
|
89 |
+
for regex, replacement in _abbreviations:
|
90 |
+
text = re.sub(regex, replacement, text)
|
91 |
+
return text
|
92 |
+
|
93 |
+
|
94 |
+
def collapse_whitespace(text):
|
95 |
+
return re.sub(r'\s+', ' ', text)
|
96 |
+
|
97 |
+
|
98 |
+
def _remove_commas(m):
|
99 |
+
return m.group(1).replace(',', '')
|
100 |
+
|
101 |
+
|
102 |
+
def _expand_decimal_point(m):
|
103 |
+
return m.group(1).replace('.', ' point ')
|
104 |
+
|
105 |
+
|
106 |
+
def _expand_dollars(m):
|
107 |
+
match = m.group(1)
|
108 |
+
parts = match.split('.')
|
109 |
+
if len(parts) > 2:
|
110 |
+
return match + ' dollars' # Unexpected format
|
111 |
+
dollars = int(parts[0]) if parts[0] else 0
|
112 |
+
cents = int(parts[1]) if len(parts) > 1 and parts[1] else 0
|
113 |
+
if dollars and cents:
|
114 |
+
dollar_unit = 'dollar' if dollars == 1 else 'dollars'
|
115 |
+
cent_unit = 'cent' if cents == 1 else 'cents'
|
116 |
+
return '%s %s, %s %s' % (dollars, dollar_unit, cents, cent_unit)
|
117 |
+
elif dollars:
|
118 |
+
dollar_unit = 'dollar' if dollars == 1 else 'dollars'
|
119 |
+
return '%s %s' % (dollars, dollar_unit)
|
120 |
+
elif cents:
|
121 |
+
cent_unit = 'cent' if cents == 1 else 'cents'
|
122 |
+
return '%s %s' % (cents, cent_unit)
|
123 |
+
else:
|
124 |
+
return 'zero dollars'
|
125 |
+
|
126 |
+
|
127 |
+
def _expand_ordinal(m):
|
128 |
+
return _inflect.number_to_words(m.group(0))
|
129 |
+
|
130 |
+
|
131 |
+
def _expand_number(m):
|
132 |
+
num = int(m.group(0))
|
133 |
+
if num > 1000 and num < 3000:
|
134 |
+
if num == 2000:
|
135 |
+
return 'two thousand'
|
136 |
+
elif num > 2000 and num < 2010:
|
137 |
+
return 'two thousand ' + _inflect.number_to_words(num % 100)
|
138 |
+
elif num % 100 == 0:
|
139 |
+
return _inflect.number_to_words(num // 100) + ' hundred'
|
140 |
+
else:
|
141 |
+
return _inflect.number_to_words(num, andword='', zero='oh', group=2).replace(', ', ' ')
|
142 |
+
else:
|
143 |
+
return _inflect.number_to_words(num, andword='')
|
144 |
+
|
145 |
+
|
146 |
+
def normalize_numbers(text):
|
147 |
+
text = re.sub(_comma_number_re, _remove_commas, text)
|
148 |
+
text = re.sub(_pounds_re, r'\1 pounds', text)
|
149 |
+
text = re.sub(_dollars_re, _expand_dollars, text)
|
150 |
+
text = re.sub(_decimal_number_re, _expand_decimal_point, text)
|
151 |
+
text = re.sub(_ordinal_re, _expand_ordinal, text)
|
152 |
+
text = re.sub(_number_re, _expand_number, text)
|
153 |
+
return text
|
154 |
+
|
155 |
+
|
156 |
+
def mark_dark_l(text):
|
157 |
+
return re.sub(r'l([^aeiouæɑɔəɛɪʊ ]*(?: |$))', lambda x: 'ɫ'+x.group(1), text)
|
158 |
+
|
159 |
+
|
160 |
+
def english_to_ipa(text):
|
161 |
+
text = unidecode(text).lower()
|
162 |
+
text = expand_abbreviations(text)
|
163 |
+
text = normalize_numbers(text)
|
164 |
+
phonemes = ipa.convert(text)
|
165 |
+
phonemes = collapse_whitespace(phonemes)
|
166 |
+
return phonemes
|
167 |
+
|
168 |
+
|
169 |
+
def english_to_lazy_ipa(text):
|
170 |
+
text = english_to_ipa(text)
|
171 |
+
for regex, replacement in _lazy_ipa:
|
172 |
+
text = re.sub(regex, replacement, text)
|
173 |
+
return text
|
174 |
+
|
175 |
+
|
176 |
+
def english_to_ipa2(text):
|
177 |
+
text = english_to_ipa(text)
|
178 |
+
text = mark_dark_l(text)
|
179 |
+
for regex, replacement in _ipa_to_ipa2:
|
180 |
+
text = re.sub(regex, replacement, text)
|
181 |
+
return text.replace('...', '…')
|
182 |
+
|
183 |
+
|
184 |
+
def english_to_lazy_ipa2(text):
|
185 |
+
text = english_to_ipa(text)
|
186 |
+
for regex, replacement in _lazy_ipa2:
|
187 |
+
text = re.sub(regex, replacement, text)
|
188 |
+
return text
|
ko_fine_tuning_22050hz/text/japanese.py
ADDED
@@ -0,0 +1,153 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import re
|
2 |
+
from unidecode import unidecode
|
3 |
+
import pyopenjtalk
|
4 |
+
|
5 |
+
|
6 |
+
# Regular expression matching Japanese without punctuation marks:
|
7 |
+
_japanese_characters = re.compile(
|
8 |
+
r'[A-Za-z\d\u3005\u3040-\u30ff\u4e00-\u9fff\uff11-\uff19\uff21-\uff3a\uff41-\uff5a\uff66-\uff9d]')
|
9 |
+
|
10 |
+
# Regular expression matching non-Japanese characters or punctuation marks:
|
11 |
+
_japanese_marks = re.compile(
|
12 |
+
r'[^A-Za-z\d\u3005\u3040-\u30ff\u4e00-\u9fff\uff11-\uff19\uff21-\uff3a\uff41-\uff5a\uff66-\uff9d]')
|
13 |
+
|
14 |
+
# List of (symbol, Japanese) pairs for marks:
|
15 |
+
_symbols_to_japanese = [(re.compile('%s' % x[0]), x[1]) for x in [
|
16 |
+
('%', 'パーセント')
|
17 |
+
]]
|
18 |
+
|
19 |
+
# List of (romaji, ipa) pairs for marks:
|
20 |
+
_romaji_to_ipa = [(re.compile('%s' % x[0]), x[1]) for x in [
|
21 |
+
('ts', 'ʦ'),
|
22 |
+
('u', 'ɯ'),
|
23 |
+
('j', 'ʥ'),
|
24 |
+
('y', 'j'),
|
25 |
+
('ni', 'n^i'),
|
26 |
+
('nj', 'n^'),
|
27 |
+
('hi', 'çi'),
|
28 |
+
('hj', 'ç'),
|
29 |
+
('f', 'ɸ'),
|
30 |
+
('I', 'i*'),
|
31 |
+
('U', 'ɯ*'),
|
32 |
+
('r', 'ɾ')
|
33 |
+
]]
|
34 |
+
|
35 |
+
# List of (romaji, ipa2) pairs for marks:
|
36 |
+
_romaji_to_ipa2 = [(re.compile('%s' % x[0]), x[1]) for x in [
|
37 |
+
('u', 'ɯ'),
|
38 |
+
('ʧ', 'tʃ'),
|
39 |
+
('j', 'dʑ'),
|
40 |
+
('y', 'j'),
|
41 |
+
('ni', 'n^i'),
|
42 |
+
('nj', 'n^'),
|
43 |
+
('hi', 'çi'),
|
44 |
+
('hj', 'ç'),
|
45 |
+
('f', 'ɸ'),
|
46 |
+
('I', 'i*'),
|
47 |
+
('U', 'ɯ*'),
|
48 |
+
('r', 'ɾ')
|
49 |
+
]]
|
50 |
+
|
51 |
+
# List of (consonant, sokuon) pairs:
|
52 |
+
_real_sokuon = [(re.compile('%s' % x[0]), x[1]) for x in [
|
53 |
+
(r'Q([↑↓]*[kg])', r'k#\1'),
|
54 |
+
(r'Q([↑↓]*[tdjʧ])', r't#\1'),
|
55 |
+
(r'Q([↑↓]*[sʃ])', r's\1'),
|
56 |
+
(r'Q([↑↓]*[pb])', r'p#\1')
|
57 |
+
]]
|
58 |
+
|
59 |
+
# List of (consonant, hatsuon) pairs:
|
60 |
+
_real_hatsuon = [(re.compile('%s' % x[0]), x[1]) for x in [
|
61 |
+
(r'N([↑↓]*[pbm])', r'm\1'),
|
62 |
+
(r'N([↑↓]*[ʧʥj])', r'n^\1'),
|
63 |
+
(r'N([↑↓]*[tdn])', r'n\1'),
|
64 |
+
(r'N([↑↓]*[kg])', r'ŋ\1')
|
65 |
+
]]
|
66 |
+
|
67 |
+
|
68 |
+
def symbols_to_japanese(text):
|
69 |
+
for regex, replacement in _symbols_to_japanese:
|
70 |
+
text = re.sub(regex, replacement, text)
|
71 |
+
return text
|
72 |
+
|
73 |
+
|
74 |
+
def japanese_to_romaji_with_accent(text):
|
75 |
+
'''Reference https://r9y9.github.io/ttslearn/latest/notebooks/ch10_Recipe-Tacotron.html'''
|
76 |
+
text = symbols_to_japanese(text)
|
77 |
+
sentences = re.split(_japanese_marks, text)
|
78 |
+
marks = re.findall(_japanese_marks, text)
|
79 |
+
text = ''
|
80 |
+
for i, sentence in enumerate(sentences):
|
81 |
+
if re.match(_japanese_characters, sentence):
|
82 |
+
if text != '':
|
83 |
+
text += ' '
|
84 |
+
labels = pyopenjtalk.extract_fullcontext(sentence)
|
85 |
+
for n, label in enumerate(labels):
|
86 |
+
phoneme = re.search(r'\-([^\+]*)\+', label).group(1)
|
87 |
+
if phoneme not in ['sil', 'pau']:
|
88 |
+
text += phoneme.replace('ch', 'ʧ').replace('sh',
|
89 |
+
'ʃ').replace('cl', 'Q')
|
90 |
+
else:
|
91 |
+
continue
|
92 |
+
# n_moras = int(re.search(r'/F:(\d+)_', label).group(1))
|
93 |
+
a1 = int(re.search(r"/A:(\-?[0-9]+)\+", label).group(1))
|
94 |
+
a2 = int(re.search(r"\+(\d+)\+", label).group(1))
|
95 |
+
a3 = int(re.search(r"\+(\d+)/", label).group(1))
|
96 |
+
if re.search(r'\-([^\+]*)\+', labels[n + 1]).group(1) in ['sil', 'pau']:
|
97 |
+
a2_next = -1
|
98 |
+
else:
|
99 |
+
a2_next = int(
|
100 |
+
re.search(r"\+(\d+)\+", labels[n + 1]).group(1))
|
101 |
+
# Accent phrase boundary
|
102 |
+
if a3 == 1 and a2_next == 1:
|
103 |
+
text += ' '
|
104 |
+
# Falling
|
105 |
+
elif a1 == 0 and a2_next == a2 + 1:
|
106 |
+
text += '↓'
|
107 |
+
# Rising
|
108 |
+
elif a2 == 1 and a2_next == 2:
|
109 |
+
text += '↑'
|
110 |
+
if i < len(marks):
|
111 |
+
text += unidecode(marks[i]).replace(' ', '')
|
112 |
+
return text
|
113 |
+
|
114 |
+
|
115 |
+
def get_real_sokuon(text):
|
116 |
+
for regex, replacement in _real_sokuon:
|
117 |
+
text = re.sub(regex, replacement, text)
|
118 |
+
return text
|
119 |
+
|
120 |
+
|
121 |
+
def get_real_hatsuon(text):
|
122 |
+
for regex, replacement in _real_hatsuon:
|
123 |
+
text = re.sub(regex, replacement, text)
|
124 |
+
return text
|
125 |
+
|
126 |
+
|
127 |
+
def japanese_to_ipa(text):
|
128 |
+
text = japanese_to_romaji_with_accent(text).replace('...', '…')
|
129 |
+
text = re.sub(
|
130 |
+
r'([aiueo])\1+', lambda x: x.group(0)[0]+'ː'*(len(x.group(0))-1), text)
|
131 |
+
text = get_real_sokuon(text)
|
132 |
+
text = get_real_hatsuon(text)
|
133 |
+
for regex, replacement in _romaji_to_ipa:
|
134 |
+
text = re.sub(regex, replacement, text)
|
135 |
+
return text
|
136 |
+
|
137 |
+
|
138 |
+
def japanese_to_ipa2(text):
|
139 |
+
text = japanese_to_romaji_with_accent(text).replace('...', '…')
|
140 |
+
text = get_real_sokuon(text)
|
141 |
+
text = get_real_hatsuon(text)
|
142 |
+
for regex, replacement in _romaji_to_ipa2:
|
143 |
+
text = re.sub(regex, replacement, text)
|
144 |
+
return text
|
145 |
+
|
146 |
+
|
147 |
+
def japanese_to_ipa3(text):
|
148 |
+
text = japanese_to_ipa2(text).replace('n^', 'ȵ').replace(
|
149 |
+
'ʃ', 'ɕ').replace('*', '\u0325').replace('#', '\u031a')
|
150 |
+
text = re.sub(
|
151 |
+
r'([aiɯeo])\1+', lambda x: x.group(0)[0]+'ː'*(len(x.group(0))-1), text)
|
152 |
+
text = re.sub(r'((?:^|\s)(?:ts|tɕ|[kpt]))', r'\1ʰ', text)
|
153 |
+
return text
|
ko_fine_tuning_22050hz/text/korean.py
ADDED
@@ -0,0 +1,210 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import re
|
2 |
+
from jamo import h2j, j2hcj
|
3 |
+
import ko_pron
|
4 |
+
|
5 |
+
|
6 |
+
# This is a list of Korean classifiers preceded by pure Korean numerals.
|
7 |
+
_korean_classifiers = '군데 권 개 그루 닢 대 두 마리 모 모금 뭇 발 발짝 방 번 벌 보루 살 수 술 시 쌈 움큼 정 짝 채 척 첩 축 켤레 톨 통'
|
8 |
+
|
9 |
+
# List of (hangul, hangul divided) pairs:
|
10 |
+
_hangul_divided = [(re.compile('%s' % x[0]), x[1]) for x in [
|
11 |
+
# ('ㄳ', 'ㄱㅅ'), # g2pk2, A Syllable-ending Rule
|
12 |
+
# ('ㄵ', 'ㄴㅈ'),
|
13 |
+
# ('ㄶ', 'ㄴㅎ'),
|
14 |
+
# ('ㄺ', 'ㄹㄱ'),
|
15 |
+
# ('ㄻ', 'ㄹㅁ'),
|
16 |
+
# ('ㄼ', 'ㄹㅂ'),
|
17 |
+
# ('ㄽ', 'ㄹㅅ'),
|
18 |
+
# ('ㄾ', 'ㄹㅌ'),
|
19 |
+
# ('ㄿ', 'ㄹㅍ'),
|
20 |
+
# ('ㅀ', 'ㄹㅎ'),
|
21 |
+
# ('ㅄ', 'ㅂㅅ'),
|
22 |
+
('ㅘ', 'ㅗㅏ'),
|
23 |
+
('ㅙ', 'ㅗㅐ'),
|
24 |
+
('ㅚ', 'ㅗㅣ'),
|
25 |
+
('ㅝ', 'ㅜㅓ'),
|
26 |
+
('ㅞ', 'ㅜㅔ'),
|
27 |
+
('ㅟ', 'ㅜㅣ'),
|
28 |
+
('ㅢ', 'ㅡㅣ'),
|
29 |
+
('ㅑ', 'ㅣㅏ'),
|
30 |
+
('ㅒ', 'ㅣㅐ'),
|
31 |
+
('ㅕ', 'ㅣㅓ'),
|
32 |
+
('ㅖ', 'ㅣㅔ'),
|
33 |
+
('ㅛ', 'ㅣㅗ'),
|
34 |
+
('ㅠ', 'ㅣㅜ')
|
35 |
+
]]
|
36 |
+
|
37 |
+
# List of (Latin alphabet, hangul) pairs:
|
38 |
+
_latin_to_hangul = [(re.compile('%s' % x[0], re.IGNORECASE), x[1]) for x in [
|
39 |
+
('a', '에이'),
|
40 |
+
('b', '비'),
|
41 |
+
('c', '시'),
|
42 |
+
('d', '디'),
|
43 |
+
('e', '이'),
|
44 |
+
('f', '에프'),
|
45 |
+
('g', '지'),
|
46 |
+
('h', '에이치'),
|
47 |
+
('i', '아이'),
|
48 |
+
('j', '제이'),
|
49 |
+
('k', '케이'),
|
50 |
+
('l', '엘'),
|
51 |
+
('m', '엠'),
|
52 |
+
('n', '엔'),
|
53 |
+
('o', '오'),
|
54 |
+
('p', '피'),
|
55 |
+
('q', '큐'),
|
56 |
+
('r', '아르'),
|
57 |
+
('s', '에스'),
|
58 |
+
('t', '티'),
|
59 |
+
('u', '유'),
|
60 |
+
('v', '브이'),
|
61 |
+
('w', '더블유'),
|
62 |
+
('x', '엑스'),
|
63 |
+
('y', '와이'),
|
64 |
+
('z', '제트')
|
65 |
+
]]
|
66 |
+
|
67 |
+
# List of (ipa, lazy ipa) pairs:
|
68 |
+
_ipa_to_lazy_ipa = [(re.compile('%s' % x[0], re.IGNORECASE), x[1]) for x in [
|
69 |
+
('t͡ɕ','ʧ'),
|
70 |
+
('d͡ʑ','ʥ'),
|
71 |
+
('ɲ','n^'),
|
72 |
+
('ɕ','ʃ'),
|
73 |
+
('ʷ','w'),
|
74 |
+
('ɭ','l`'),
|
75 |
+
('ʎ','ɾ'),
|
76 |
+
('ɣ','ŋ'),
|
77 |
+
('ɰ','ɯ'),
|
78 |
+
('ʝ','j'),
|
79 |
+
('ʌ','ə'),
|
80 |
+
('ɡ','g'),
|
81 |
+
('\u031a','#'),
|
82 |
+
('\u0348','='),
|
83 |
+
('\u031e',''),
|
84 |
+
('\u0320',''),
|
85 |
+
('\u0339','')
|
86 |
+
]]
|
87 |
+
|
88 |
+
|
89 |
+
def latin_to_hangul(text):
|
90 |
+
for regex, replacement in _latin_to_hangul:
|
91 |
+
text = re.sub(regex, replacement, text)
|
92 |
+
return text
|
93 |
+
|
94 |
+
|
95 |
+
def divide_hangul(text):
|
96 |
+
text = j2hcj(h2j(text))
|
97 |
+
for regex, replacement in _hangul_divided:
|
98 |
+
text = re.sub(regex, replacement, text)
|
99 |
+
return text
|
100 |
+
|
101 |
+
|
102 |
+
def hangul_number(num, sino=True):
|
103 |
+
'''Reference https://github.com/Kyubyong/g2pK'''
|
104 |
+
num = re.sub(',', '', num)
|
105 |
+
|
106 |
+
if num == '0':
|
107 |
+
return '영'
|
108 |
+
if not sino and num == '20':
|
109 |
+
return '스무'
|
110 |
+
|
111 |
+
digits = '123456789'
|
112 |
+
names = '일이삼사오육칠팔구'
|
113 |
+
digit2name = {d: n for d, n in zip(digits, names)}
|
114 |
+
|
115 |
+
modifiers = '한 두 세 네 다섯 여섯 일곱 여덟 아홉'
|
116 |
+
decimals = '열 스물 서른 마흔 쉰 예순 일흔 여든 아흔'
|
117 |
+
digit2mod = {d: mod for d, mod in zip(digits, modifiers.split())}
|
118 |
+
digit2dec = {d: dec for d, dec in zip(digits, decimals.split())}
|
119 |
+
|
120 |
+
spelledout = []
|
121 |
+
for i, digit in enumerate(num):
|
122 |
+
i = len(num) - i - 1
|
123 |
+
if sino:
|
124 |
+
if i == 0:
|
125 |
+
name = digit2name.get(digit, '')
|
126 |
+
elif i == 1:
|
127 |
+
name = digit2name.get(digit, '') + '십'
|
128 |
+
name = name.replace('일십', '십')
|
129 |
+
else:
|
130 |
+
if i == 0:
|
131 |
+
name = digit2mod.get(digit, '')
|
132 |
+
elif i == 1:
|
133 |
+
name = digit2dec.get(digit, '')
|
134 |
+
if digit == '0':
|
135 |
+
if i % 4 == 0:
|
136 |
+
last_three = spelledout[-min(3, len(spelledout)):]
|
137 |
+
if ''.join(last_three) == '':
|
138 |
+
spelledout.append('')
|
139 |
+
continue
|
140 |
+
else:
|
141 |
+
spelledout.append('')
|
142 |
+
continue
|
143 |
+
if i == 2:
|
144 |
+
name = digit2name.get(digit, '') + '백'
|
145 |
+
name = name.replace('일백', '백')
|
146 |
+
elif i == 3:
|
147 |
+
name = digit2name.get(digit, '') + '천'
|
148 |
+
name = name.replace('일천', '천')
|
149 |
+
elif i == 4:
|
150 |
+
name = digit2name.get(digit, '') + '만'
|
151 |
+
name = name.replace('일만', '만')
|
152 |
+
elif i == 5:
|
153 |
+
name = digit2name.get(digit, '') + '십'
|
154 |
+
name = name.replace('일십', '십')
|
155 |
+
elif i == 6:
|
156 |
+
name = digit2name.get(digit, '') + '백'
|
157 |
+
name = name.replace('일백', '백')
|
158 |
+
elif i == 7:
|
159 |
+
name = digit2name.get(digit, '') + '천'
|
160 |
+
name = name.replace('일천', '천')
|
161 |
+
elif i == 8:
|
162 |
+
name = digit2name.get(digit, '') + '억'
|
163 |
+
elif i == 9:
|
164 |
+
name = digit2name.get(digit, '') + '십'
|
165 |
+
elif i == 10:
|
166 |
+
name = digit2name.get(digit, '') + '백'
|
167 |
+
elif i == 11:
|
168 |
+
name = digit2name.get(digit, '') + '천'
|
169 |
+
elif i == 12:
|
170 |
+
name = digit2name.get(digit, '') + '조'
|
171 |
+
elif i == 13:
|
172 |
+
name = digit2name.get(digit, '') + '십'
|
173 |
+
elif i == 14:
|
174 |
+
name = digit2name.get(digit, '') + '백'
|
175 |
+
elif i == 15:
|
176 |
+
name = digit2name.get(digit, '') + '천'
|
177 |
+
spelledout.append(name)
|
178 |
+
return ''.join(elem for elem in spelledout)
|
179 |
+
|
180 |
+
|
181 |
+
def number_to_hangul(text):
|
182 |
+
'''Reference https://github.com/Kyubyong/g2pK'''
|
183 |
+
tokens = set(re.findall(r'(\d[\d,]*)([\uac00-\ud71f]+)', text))
|
184 |
+
for token in tokens:
|
185 |
+
num, classifier = token
|
186 |
+
if classifier[:2] in _korean_classifiers or classifier[0] in _korean_classifiers:
|
187 |
+
spelledout = hangul_number(num, sino=False)
|
188 |
+
else:
|
189 |
+
spelledout = hangul_number(num, sino=True)
|
190 |
+
text = text.replace(f'{num}{classifier}', f'{spelledout}{classifier}')
|
191 |
+
# digit by digit for remaining digits
|
192 |
+
digits = '0123456789'
|
193 |
+
names = '영일이삼사오육칠팔구'
|
194 |
+
for d, n in zip(digits, names):
|
195 |
+
text = text.replace(d, n)
|
196 |
+
return text
|
197 |
+
|
198 |
+
|
199 |
+
def korean_to_lazy_ipa(text):
|
200 |
+
text = latin_to_hangul(text)
|
201 |
+
text = number_to_hangul(text)
|
202 |
+
text=re.sub('[\uac00-\ud7af]+',lambda x:ko_pron.romanise(x.group(0),'ipa').split('] ~ [')[0],text)
|
203 |
+
for regex, replacement in _ipa_to_lazy_ipa:
|
204 |
+
text = re.sub(regex, replacement, text)
|
205 |
+
return text
|
206 |
+
|
207 |
+
|
208 |
+
def korean_to_ipa(text):
|
209 |
+
text = korean_to_lazy_ipa(text)
|
210 |
+
return text.replace('ʧ','tʃ').replace('ʥ','dʑ')
|
ko_fine_tuning_22050hz/text/mandarin.py
ADDED
@@ -0,0 +1,326 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
import sys
|
3 |
+
import re
|
4 |
+
from pypinyin import lazy_pinyin, BOPOMOFO
|
5 |
+
import jieba
|
6 |
+
import cn2an
|
7 |
+
import logging
|
8 |
+
|
9 |
+
|
10 |
+
# List of (Latin alphabet, bopomofo) pairs:
|
11 |
+
_latin_to_bopomofo = [(re.compile('%s' % x[0], re.IGNORECASE), x[1]) for x in [
|
12 |
+
('a', 'ㄟˉ'),
|
13 |
+
('b', 'ㄅㄧˋ'),
|
14 |
+
('c', 'ㄙㄧˉ'),
|
15 |
+
('d', 'ㄉㄧˋ'),
|
16 |
+
('e', 'ㄧˋ'),
|
17 |
+
('f', 'ㄝˊㄈㄨˋ'),
|
18 |
+
('g', 'ㄐㄧˋ'),
|
19 |
+
('h', 'ㄝˇㄑㄩˋ'),
|
20 |
+
('i', 'ㄞˋ'),
|
21 |
+
('j', 'ㄐㄟˋ'),
|
22 |
+
('k', 'ㄎㄟˋ'),
|
23 |
+
('l', 'ㄝˊㄛˋ'),
|
24 |
+
('m', 'ㄝˊㄇㄨˋ'),
|
25 |
+
('n', 'ㄣˉ'),
|
26 |
+
('o', 'ㄡˉ'),
|
27 |
+
('p', 'ㄆㄧˉ'),
|
28 |
+
('q', 'ㄎㄧㄡˉ'),
|
29 |
+
('r', 'ㄚˋ'),
|
30 |
+
('s', 'ㄝˊㄙˋ'),
|
31 |
+
('t', 'ㄊㄧˋ'),
|
32 |
+
('u', 'ㄧㄡˉ'),
|
33 |
+
('v', 'ㄨㄧˉ'),
|
34 |
+
('w', 'ㄉㄚˋㄅㄨˋㄌㄧㄡˋ'),
|
35 |
+
('x', 'ㄝˉㄎㄨˋㄙˋ'),
|
36 |
+
('y', 'ㄨㄞˋ'),
|
37 |
+
('z', 'ㄗㄟˋ')
|
38 |
+
]]
|
39 |
+
|
40 |
+
# List of (bopomofo, romaji) pairs:
|
41 |
+
_bopomofo_to_romaji = [(re.compile('%s' % x[0]), x[1]) for x in [
|
42 |
+
('ㄅㄛ', 'p⁼wo'),
|
43 |
+
('ㄆㄛ', 'pʰwo'),
|
44 |
+
('ㄇㄛ', 'mwo'),
|
45 |
+
('ㄈㄛ', 'fwo'),
|
46 |
+
('ㄅ', 'p⁼'),
|
47 |
+
('ㄆ', 'pʰ'),
|
48 |
+
('ㄇ', 'm'),
|
49 |
+
('ㄈ', 'f'),
|
50 |
+
('ㄉ', 't⁼'),
|
51 |
+
('ㄊ', 'tʰ'),
|
52 |
+
('ㄋ', 'n'),
|
53 |
+
('ㄌ', 'l'),
|
54 |
+
('ㄍ', 'k⁼'),
|
55 |
+
('ㄎ', 'kʰ'),
|
56 |
+
('ㄏ', 'h'),
|
57 |
+
('ㄐ', 'ʧ⁼'),
|
58 |
+
('ㄑ', 'ʧʰ'),
|
59 |
+
('ㄒ', 'ʃ'),
|
60 |
+
('ㄓ', 'ʦ`⁼'),
|
61 |
+
('ㄔ', 'ʦ`ʰ'),
|
62 |
+
('ㄕ', 's`'),
|
63 |
+
('ㄖ', 'ɹ`'),
|
64 |
+
('ㄗ', 'ʦ⁼'),
|
65 |
+
('ㄘ', 'ʦʰ'),
|
66 |
+
('ㄙ', 's'),
|
67 |
+
('ㄚ', 'a'),
|
68 |
+
('ㄛ', 'o'),
|
69 |
+
('ㄜ', 'ə'),
|
70 |
+
('ㄝ', 'e'),
|
71 |
+
('ㄞ', 'ai'),
|
72 |
+
('ㄟ', 'ei'),
|
73 |
+
('ㄠ', 'au'),
|
74 |
+
('ㄡ', 'ou'),
|
75 |
+
('ㄧㄢ', 'yeNN'),
|
76 |
+
('ㄢ', 'aNN'),
|
77 |
+
('ㄧㄣ', 'iNN'),
|
78 |
+
('ㄣ', 'əNN'),
|
79 |
+
('ㄤ', 'aNg'),
|
80 |
+
('ㄧㄥ', 'iNg'),
|
81 |
+
('ㄨㄥ', 'uNg'),
|
82 |
+
('ㄩㄥ', 'yuNg'),
|
83 |
+
('ㄥ', 'əNg'),
|
84 |
+
('ㄦ', 'əɻ'),
|
85 |
+
('ㄧ', 'i'),
|
86 |
+
('ㄨ', 'u'),
|
87 |
+
('ㄩ', 'ɥ'),
|
88 |
+
('ˉ', '→'),
|
89 |
+
('ˊ', '↑'),
|
90 |
+
('ˇ', '↓↑'),
|
91 |
+
('ˋ', '↓'),
|
92 |
+
('˙', ''),
|
93 |
+
(',', ','),
|
94 |
+
('。', '.'),
|
95 |
+
('!', '!'),
|
96 |
+
('?', '?'),
|
97 |
+
('—', '-')
|
98 |
+
]]
|
99 |
+
|
100 |
+
# List of (romaji, ipa) pairs:
|
101 |
+
_romaji_to_ipa = [(re.compile('%s' % x[0], re.IGNORECASE), x[1]) for x in [
|
102 |
+
('ʃy', 'ʃ'),
|
103 |
+
('ʧʰy', 'ʧʰ'),
|
104 |
+
('ʧ⁼y', 'ʧ⁼'),
|
105 |
+
('NN', 'n'),
|
106 |
+
('Ng', 'ŋ'),
|
107 |
+
('y', 'j'),
|
108 |
+
('h', 'x')
|
109 |
+
]]
|
110 |
+
|
111 |
+
# List of (bopomofo, ipa) pairs:
|
112 |
+
_bopomofo_to_ipa = [(re.compile('%s' % x[0]), x[1]) for x in [
|
113 |
+
('ㄅㄛ', 'p⁼wo'),
|
114 |
+
('ㄆㄛ', 'pʰwo'),
|
115 |
+
('ㄇㄛ', 'mwo'),
|
116 |
+
('ㄈㄛ', 'fwo'),
|
117 |
+
('ㄅ', 'p⁼'),
|
118 |
+
('ㄆ', 'pʰ'),
|
119 |
+
('ㄇ', 'm'),
|
120 |
+
('ㄈ', 'f'),
|
121 |
+
('ㄉ', 't⁼'),
|
122 |
+
('ㄊ', 'tʰ'),
|
123 |
+
('ㄋ', 'n'),
|
124 |
+
('ㄌ', 'l'),
|
125 |
+
('ㄍ', 'k⁼'),
|
126 |
+
('ㄎ', 'kʰ'),
|
127 |
+
('ㄏ', 'x'),
|
128 |
+
('ㄐ', 'tʃ⁼'),
|
129 |
+
('ㄑ', 'tʃʰ'),
|
130 |
+
('ㄒ', 'ʃ'),
|
131 |
+
('ㄓ', 'ts`⁼'),
|
132 |
+
('ㄔ', 'ts`ʰ'),
|
133 |
+
('ㄕ', 's`'),
|
134 |
+
('ㄖ', 'ɹ`'),
|
135 |
+
('ㄗ', 'ts⁼'),
|
136 |
+
('ㄘ', 'tsʰ'),
|
137 |
+
('ㄙ', 's'),
|
138 |
+
('ㄚ', 'a'),
|
139 |
+
('ㄛ', 'o'),
|
140 |
+
('ㄜ', 'ə'),
|
141 |
+
('ㄝ', 'ɛ'),
|
142 |
+
('ㄞ', 'aɪ'),
|
143 |
+
('ㄟ', 'eɪ'),
|
144 |
+
('ㄠ', 'ɑʊ'),
|
145 |
+
('ㄡ', 'oʊ'),
|
146 |
+
('ㄧㄢ', 'jɛn'),
|
147 |
+
('ㄩㄢ', 'ɥæn'),
|
148 |
+
('ㄢ', 'an'),
|
149 |
+
('ㄧㄣ', 'in'),
|
150 |
+
('ㄩㄣ', 'ɥn'),
|
151 |
+
('ㄣ', 'ən'),
|
152 |
+
('ㄤ', 'ɑŋ'),
|
153 |
+
('ㄧㄥ', 'iŋ'),
|
154 |
+
('ㄨㄥ', 'ʊŋ'),
|
155 |
+
('ㄩㄥ', 'jʊŋ'),
|
156 |
+
('ㄥ', 'əŋ'),
|
157 |
+
('ㄦ', 'əɻ'),
|
158 |
+
('ㄧ', 'i'),
|
159 |
+
('ㄨ', 'u'),
|
160 |
+
('ㄩ', 'ɥ'),
|
161 |
+
('ˉ', '→'),
|
162 |
+
('ˊ', '↑'),
|
163 |
+
('ˇ', '↓↑'),
|
164 |
+
('ˋ', '↓'),
|
165 |
+
('˙', ''),
|
166 |
+
(',', ','),
|
167 |
+
('。', '.'),
|
168 |
+
('!', '!'),
|
169 |
+
('?', '?'),
|
170 |
+
('—', '-')
|
171 |
+
]]
|
172 |
+
|
173 |
+
# List of (bopomofo, ipa2) pairs:
|
174 |
+
_bopomofo_to_ipa2 = [(re.compile('%s' % x[0]), x[1]) for x in [
|
175 |
+
('ㄅㄛ', 'pwo'),
|
176 |
+
('ㄆㄛ', 'pʰwo'),
|
177 |
+
('ㄇㄛ', 'mwo'),
|
178 |
+
('ㄈㄛ', 'fwo'),
|
179 |
+
('ㄅ', 'p'),
|
180 |
+
('ㄆ', 'pʰ'),
|
181 |
+
('ㄇ', 'm'),
|
182 |
+
('ㄈ', 'f'),
|
183 |
+
('ㄉ', 't'),
|
184 |
+
('ㄊ', 'tʰ'),
|
185 |
+
('ㄋ', 'n'),
|
186 |
+
('ㄌ', 'l'),
|
187 |
+
('ㄍ', 'k'),
|
188 |
+
('ㄎ', 'kʰ'),
|
189 |
+
('ㄏ', 'h'),
|
190 |
+
('ㄐ', 'tɕ'),
|
191 |
+
('ㄑ', 'tɕʰ'),
|
192 |
+
('ㄒ', 'ɕ'),
|
193 |
+
('ㄓ', 'tʂ'),
|
194 |
+
('ㄔ', 'tʂʰ'),
|
195 |
+
('ㄕ', 'ʂ'),
|
196 |
+
('ㄖ', 'ɻ'),
|
197 |
+
('ㄗ', 'ts'),
|
198 |
+
('ㄘ', 'tsʰ'),
|
199 |
+
('ㄙ', 's'),
|
200 |
+
('ㄚ', 'a'),
|
201 |
+
('ㄛ', 'o'),
|
202 |
+
('ㄜ', 'ɤ'),
|
203 |
+
('ㄝ', 'ɛ'),
|
204 |
+
('ㄞ', 'aɪ'),
|
205 |
+
('ㄟ', 'eɪ'),
|
206 |
+
('ㄠ', 'ɑʊ'),
|
207 |
+
('ㄡ', 'oʊ'),
|
208 |
+
('ㄧㄢ', 'jɛn'),
|
209 |
+
('ㄩㄢ', 'yæn'),
|
210 |
+
('ㄢ', 'an'),
|
211 |
+
('ㄧㄣ', 'in'),
|
212 |
+
('ㄩㄣ', 'yn'),
|
213 |
+
('ㄣ', 'ən'),
|
214 |
+
('ㄤ', 'ɑŋ'),
|
215 |
+
('ㄧㄥ', 'iŋ'),
|
216 |
+
('ㄨㄥ', 'ʊŋ'),
|
217 |
+
('ㄩㄥ', 'jʊŋ'),
|
218 |
+
('ㄥ', 'ɤŋ'),
|
219 |
+
('ㄦ', 'əɻ'),
|
220 |
+
('ㄧ', 'i'),
|
221 |
+
('ㄨ', 'u'),
|
222 |
+
('ㄩ', 'y'),
|
223 |
+
('ˉ', '˥'),
|
224 |
+
('ˊ', '˧˥'),
|
225 |
+
('ˇ', '˨˩˦'),
|
226 |
+
('ˋ', '˥˩'),
|
227 |
+
('˙', ''),
|
228 |
+
(',', ','),
|
229 |
+
('。', '.'),
|
230 |
+
('!', '!'),
|
231 |
+
('?', '?'),
|
232 |
+
('—', '-')
|
233 |
+
]]
|
234 |
+
|
235 |
+
|
236 |
+
def number_to_chinese(text):
|
237 |
+
numbers = re.findall(r'\d+(?:\.?\d+)?', text)
|
238 |
+
for number in numbers:
|
239 |
+
text = text.replace(number, cn2an.an2cn(number), 1)
|
240 |
+
return text
|
241 |
+
|
242 |
+
|
243 |
+
def chinese_to_bopomofo(text):
|
244 |
+
text = text.replace('、', ',').replace(';', ',').replace(':', ',')
|
245 |
+
words = jieba.lcut(text, cut_all=False)
|
246 |
+
text = ''
|
247 |
+
for word in words:
|
248 |
+
bopomofos = lazy_pinyin(word, BOPOMOFO)
|
249 |
+
if not re.search('[\u4e00-\u9fff]', word):
|
250 |
+
text += word
|
251 |
+
continue
|
252 |
+
for i in range(len(bopomofos)):
|
253 |
+
bopomofos[i] = re.sub(r'([\u3105-\u3129])$', r'\1ˉ', bopomofos[i])
|
254 |
+
if text != '':
|
255 |
+
text += ' '
|
256 |
+
text += ''.join(bopomofos)
|
257 |
+
return text
|
258 |
+
|
259 |
+
|
260 |
+
def latin_to_bopomofo(text):
|
261 |
+
for regex, replacement in _latin_to_bopomofo:
|
262 |
+
text = re.sub(regex, replacement, text)
|
263 |
+
return text
|
264 |
+
|
265 |
+
|
266 |
+
def bopomofo_to_romaji(text):
|
267 |
+
for regex, replacement in _bopomofo_to_romaji:
|
268 |
+
text = re.sub(regex, replacement, text)
|
269 |
+
return text
|
270 |
+
|
271 |
+
|
272 |
+
def bopomofo_to_ipa(text):
|
273 |
+
for regex, replacement in _bopomofo_to_ipa:
|
274 |
+
text = re.sub(regex, replacement, text)
|
275 |
+
return text
|
276 |
+
|
277 |
+
|
278 |
+
def bopomofo_to_ipa2(text):
|
279 |
+
for regex, replacement in _bopomofo_to_ipa2:
|
280 |
+
text = re.sub(regex, replacement, text)
|
281 |
+
return text
|
282 |
+
|
283 |
+
|
284 |
+
def chinese_to_romaji(text):
|
285 |
+
text = number_to_chinese(text)
|
286 |
+
text = chinese_to_bopomofo(text)
|
287 |
+
text = latin_to_bopomofo(text)
|
288 |
+
text = bopomofo_to_romaji(text)
|
289 |
+
text = re.sub('i([aoe])', r'y\1', text)
|
290 |
+
text = re.sub('u([aoəe])', r'w\1', text)
|
291 |
+
text = re.sub('([ʦsɹ]`[⁼ʰ]?)([→↓↑ ]+|$)',
|
292 |
+
r'\1ɹ`\2', text).replace('ɻ', 'ɹ`')
|
293 |
+
text = re.sub('([ʦs][⁼ʰ]?)([→↓↑ ]+|$)', r'\1ɹ\2', text)
|
294 |
+
return text
|
295 |
+
|
296 |
+
|
297 |
+
def chinese_to_lazy_ipa(text):
|
298 |
+
text = chinese_to_romaji(text)
|
299 |
+
for regex, replacement in _romaji_to_ipa:
|
300 |
+
text = re.sub(regex, replacement, text)
|
301 |
+
return text
|
302 |
+
|
303 |
+
|
304 |
+
def chinese_to_ipa(text):
|
305 |
+
text = number_to_chinese(text)
|
306 |
+
text = chinese_to_bopomofo(text)
|
307 |
+
text = latin_to_bopomofo(text)
|
308 |
+
text = bopomofo_to_ipa(text)
|
309 |
+
text = re.sub('i([aoe])', r'j\1', text)
|
310 |
+
text = re.sub('u([aoəe])', r'w\1', text)
|
311 |
+
text = re.sub('([sɹ]`[⁼ʰ]?)([→↓↑ ]+|$)',
|
312 |
+
r'\1ɹ`\2', text).replace('ɻ', 'ɹ`')
|
313 |
+
text = re.sub('([s][⁼ʰ]?)([→↓↑ ]+|$)', r'\1ɹ\2', text)
|
314 |
+
return text
|
315 |
+
|
316 |
+
|
317 |
+
def chinese_to_ipa2(text):
|
318 |
+
text = number_to_chinese(text)
|
319 |
+
text = chinese_to_bopomofo(text)
|
320 |
+
text = latin_to_bopomofo(text)
|
321 |
+
text = bopomofo_to_ipa2(text)
|
322 |
+
text = re.sub(r'i([aoe])', r'j\1', text)
|
323 |
+
text = re.sub(r'u([aoəe])', r'w\1', text)
|
324 |
+
text = re.sub(r'([ʂɹ]ʰ?)([˩˨˧˦˥ ]+|$)', r'\1ʅ\2', text)
|
325 |
+
text = re.sub(r'(sʰ?)([˩˨˧˦˥ ]+|$)', r'\1ɿ\2', text)
|
326 |
+
return text
|
ko_fine_tuning_22050hz/text/ngu_dialect.py
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import re
|
2 |
+
import opencc
|
3 |
+
|
4 |
+
|
5 |
+
dialects = {'SZ': 'suzhou', 'WX': 'wuxi', 'CZ': 'changzhou', 'HZ': 'hangzhou',
|
6 |
+
'SX': 'shaoxing', 'NB': 'ningbo', 'JJ': 'jingjiang', 'YX': 'yixing',
|
7 |
+
'JD': 'jiading', 'ZR': 'zhenru', 'PH': 'pinghu', 'TX': 'tongxiang',
|
8 |
+
'JS': 'jiashan', 'HN': 'xiashi', 'LP': 'linping', 'XS': 'xiaoshan',
|
9 |
+
'FY': 'fuyang', 'RA': 'ruao', 'CX': 'cixi', 'SM': 'sanmen',
|
10 |
+
'TT': 'tiantai', 'WZ': 'wenzhou', 'SC': 'suichang', 'YB': 'youbu'}
|
11 |
+
|
12 |
+
converters = {}
|
13 |
+
|
14 |
+
for dialect in dialects.values():
|
15 |
+
try:
|
16 |
+
converters[dialect] = opencc.OpenCC(dialect)
|
17 |
+
except:
|
18 |
+
pass
|
19 |
+
|
20 |
+
|
21 |
+
def ngu_dialect_to_ipa(text, dialect):
|
22 |
+
dialect = dialects[dialect]
|
23 |
+
text = converters[dialect].convert(text).replace('-','').replace('$',' ')
|
24 |
+
text = re.sub(r'[、;:]', ',', text)
|
25 |
+
text = re.sub(r'\s*,\s*', ', ', text)
|
26 |
+
text = re.sub(r'\s*。\s*', '. ', text)
|
27 |
+
text = re.sub(r'\s*?\s*', '? ', text)
|
28 |
+
text = re.sub(r'\s*!\s*', '! ', text)
|
29 |
+
text = re.sub(r'\s*$', '', text)
|
30 |
+
return text
|
ko_fine_tuning_22050hz/text/sanskrit.py
ADDED
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import re
|
2 |
+
from indic_transliteration import sanscript
|
3 |
+
|
4 |
+
|
5 |
+
# List of (iast, ipa) pairs:
|
6 |
+
_iast_to_ipa = [(re.compile('%s' % x[0]), x[1]) for x in [
|
7 |
+
('a', 'ə'),
|
8 |
+
('ā', 'aː'),
|
9 |
+
('ī', 'iː'),
|
10 |
+
('ū', 'uː'),
|
11 |
+
('ṛ', 'ɹ`'),
|
12 |
+
('ṝ', 'ɹ`ː'),
|
13 |
+
('ḷ', 'l`'),
|
14 |
+
('ḹ', 'l`ː'),
|
15 |
+
('e', 'eː'),
|
16 |
+
('o', 'oː'),
|
17 |
+
('k', 'k⁼'),
|
18 |
+
('k⁼h', 'kʰ'),
|
19 |
+
('g', 'g⁼'),
|
20 |
+
('g⁼h', 'gʰ'),
|
21 |
+
('ṅ', 'ŋ'),
|
22 |
+
('c', 'ʧ⁼'),
|
23 |
+
('ʧ⁼h', 'ʧʰ'),
|
24 |
+
('j', 'ʥ⁼'),
|
25 |
+
('ʥ⁼h', 'ʥʰ'),
|
26 |
+
('ñ', 'n^'),
|
27 |
+
('ṭ', 't`⁼'),
|
28 |
+
('t`⁼h', 't`ʰ'),
|
29 |
+
('ḍ', 'd`⁼'),
|
30 |
+
('d`⁼h', 'd`ʰ'),
|
31 |
+
('ṇ', 'n`'),
|
32 |
+
('t', 't⁼'),
|
33 |
+
('t⁼h', 'tʰ'),
|
34 |
+
('d', 'd⁼'),
|
35 |
+
('d⁼h', 'dʰ'),
|
36 |
+
('p', 'p⁼'),
|
37 |
+
('p⁼h', 'pʰ'),
|
38 |
+
('b', 'b⁼'),
|
39 |
+
('b⁼h', 'bʰ'),
|
40 |
+
('y', 'j'),
|
41 |
+
('ś', 'ʃ'),
|
42 |
+
('ṣ', 's`'),
|
43 |
+
('r', 'ɾ'),
|
44 |
+
('l̤', 'l`'),
|
45 |
+
('h', 'ɦ'),
|
46 |
+
("'", ''),
|
47 |
+
('~', '^'),
|
48 |
+
('ṃ', '^')
|
49 |
+
]]
|
50 |
+
|
51 |
+
|
52 |
+
def devanagari_to_ipa(text):
|
53 |
+
text = text.replace('ॐ', 'ओम्')
|
54 |
+
text = re.sub(r'\s*।\s*$', '.', text)
|
55 |
+
text = re.sub(r'\s*।\s*', ', ', text)
|
56 |
+
text = re.sub(r'\s*॥', '.', text)
|
57 |
+
text = sanscript.transliterate(text, sanscript.DEVANAGARI, sanscript.IAST)
|
58 |
+
for regex, replacement in _iast_to_ipa:
|
59 |
+
text = re.sub(regex, replacement, text)
|
60 |
+
text = re.sub('(.)[`ː]*ḥ', lambda x: x.group(0)
|
61 |
+
[:-1]+'h'+x.group(1)+'*', text)
|
62 |
+
return text
|
ko_fine_tuning_22050hz/text/shanghainese.py
ADDED
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import re
|
2 |
+
import cn2an
|
3 |
+
import opencc
|
4 |
+
|
5 |
+
|
6 |
+
converter = opencc.OpenCC('zaonhe')
|
7 |
+
|
8 |
+
# List of (Latin alphabet, ipa) pairs:
|
9 |
+
_latin_to_ipa = [(re.compile('%s' % x[0]), x[1]) for x in [
|
10 |
+
('A', 'ᴇ'),
|
11 |
+
('B', 'bi'),
|
12 |
+
('C', 'si'),
|
13 |
+
('D', 'di'),
|
14 |
+
('E', 'i'),
|
15 |
+
('F', 'ᴇf'),
|
16 |
+
('G', 'dʑi'),
|
17 |
+
('H', 'ᴇtɕʰ'),
|
18 |
+
('I', 'ᴀi'),
|
19 |
+
('J', 'dʑᴇ'),
|
20 |
+
('K', 'kʰᴇ'),
|
21 |
+
('L', 'ᴇl'),
|
22 |
+
('M', 'ᴇm'),
|
23 |
+
('N', 'ᴇn'),
|
24 |
+
('O', 'o'),
|
25 |
+
('P', 'pʰi'),
|
26 |
+
('Q', 'kʰiu'),
|
27 |
+
('R', 'ᴀl'),
|
28 |
+
('S', 'ᴇs'),
|
29 |
+
('T', 'tʰi'),
|
30 |
+
('U', 'ɦiu'),
|
31 |
+
('V', 'vi'),
|
32 |
+
('W', 'dᴀbɤliu'),
|
33 |
+
('X', 'ᴇks'),
|
34 |
+
('Y', 'uᴀi'),
|
35 |
+
('Z', 'zᴇ')
|
36 |
+
]]
|
37 |
+
|
38 |
+
|
39 |
+
def _number_to_shanghainese(num):
|
40 |
+
num = cn2an.an2cn(num).replace('一十','十').replace('二十', '廿').replace('二', '两')
|
41 |
+
return re.sub(r'((?:^|[^三四五六七八九])十|廿)两', r'\1二', num)
|
42 |
+
|
43 |
+
|
44 |
+
def number_to_shanghainese(text):
|
45 |
+
return re.sub(r'\d+(?:\.?\d+)?', lambda x: _number_to_shanghainese(x.group()), text)
|
46 |
+
|
47 |
+
|
48 |
+
def latin_to_ipa(text):
|
49 |
+
for regex, replacement in _latin_to_ipa:
|
50 |
+
text = re.sub(regex, replacement, text)
|
51 |
+
return text
|
52 |
+
|
53 |
+
|
54 |
+
def shanghainese_to_ipa(text):
|
55 |
+
text = number_to_shanghainese(text.upper())
|
56 |
+
text = converter.convert(text).replace('-','').replace('$',' ')
|
57 |
+
text = re.sub(r'[A-Z]', lambda x: latin_to_ipa(x.group())+' ', text)
|
58 |
+
text = re.sub(r'[、;:]', ',', text)
|
59 |
+
text = re.sub(r'\s*,\s*', ', ', text)
|
60 |
+
text = re.sub(r'\s*。\s*', '. ', text)
|
61 |
+
text = re.sub(r'\s*?\s*', '? ', text)
|
62 |
+
text = re.sub(r'\s*!\s*', '! ', text)
|
63 |
+
text = re.sub(r'\s*$', '', text)
|
64 |
+
return text
|
ko_fine_tuning_22050hz/text/symbols.py
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# korean_cleaners
|
2 |
+
_pad = '_'
|
3 |
+
_punctuation = ',.!?…~'
|
4 |
+
_letters = 'ㄱㄴㄷㄹㅁㅂㅅㅇㅈㅊㅋㅌㅍㅎㄲㄸㅃㅆㅉㅏㅓㅗㅜㅡㅣㅐㅔ '
|
5 |
+
|
6 |
+
|
7 |
+
# Export all symbols:
|
8 |
+
symbols = [_pad] + list(_punctuation) + list(_letters)
|
9 |
+
# Special symbol ids
|
10 |
+
SPACE_ID = symbols.index(' ')
|
ko_fine_tuning_22050hz/text/thai.py
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import re
|
2 |
+
from num_thai.thainumbers import NumThai
|
3 |
+
|
4 |
+
|
5 |
+
num = NumThai()
|
6 |
+
|
7 |
+
# List of (Latin alphabet, Thai) pairs:
|
8 |
+
_latin_to_thai = [(re.compile('%s' % x[0], re.IGNORECASE), x[1]) for x in [
|
9 |
+
('a', 'เอ'),
|
10 |
+
('b','บี'),
|
11 |
+
('c','ซี'),
|
12 |
+
('d','ดี'),
|
13 |
+
('e','อี'),
|
14 |
+
('f','เอฟ'),
|
15 |
+
('g','จี'),
|
16 |
+
('h','เอช'),
|
17 |
+
('i','ไอ'),
|
18 |
+
('j','เจ'),
|
19 |
+
('k','เค'),
|
20 |
+
('l','แอล'),
|
21 |
+
('m','เอ็ม'),
|
22 |
+
('n','เอ็น'),
|
23 |
+
('o','โอ'),
|
24 |
+
('p','พี'),
|
25 |
+
('q','คิว'),
|
26 |
+
('r','แอร์'),
|
27 |
+
('s','เอส'),
|
28 |
+
('t','ที'),
|
29 |
+
('u','ยู'),
|
30 |
+
('v','วี'),
|
31 |
+
('w','ดับเบิลยู'),
|
32 |
+
('x','เอ็กซ์'),
|
33 |
+
('y','วาย'),
|
34 |
+
('z','ซี')
|
35 |
+
]]
|
36 |
+
|
37 |
+
|
38 |
+
def num_to_thai(text):
|
39 |
+
return re.sub(r'(?:\d+(?:,?\d+)?)+(?:\.\d+(?:,?\d+)?)?', lambda x: ''.join(num.NumberToTextThai(float(x.group(0).replace(',', '')))), text)
|
40 |
+
|
41 |
+
def latin_to_thai(text):
|
42 |
+
for regex, replacement in _latin_to_thai:
|
43 |
+
text = re.sub(regex, replacement, text)
|
44 |
+
return text
|