Spaces:
Runtime error
Runtime error
ORI-Muchim
commited on
Commit
•
937a9da
1
Parent(s):
5c3c029
Upload 5 files
Browse files- text/LICENSE +19 -0
- text/__init__.py +54 -0
- text/cleaners.py +17 -0
- text/japanese.py +153 -0
- text/symbols.py +25 -0
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.
|
text/__init__.py
ADDED
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
symbol_id = _symbol_to_id[symbol]
|
24 |
+
sequence += [symbol_id]
|
25 |
+
return sequence
|
26 |
+
|
27 |
+
|
28 |
+
def cleaned_text_to_sequence(cleaned_text):
|
29 |
+
'''Converts a string of text to a sequence of IDs corresponding to the symbols in the text.
|
30 |
+
Args:
|
31 |
+
text: string to convert to a sequence
|
32 |
+
Returns:
|
33 |
+
List of integers corresponding to the symbols in the text
|
34 |
+
'''
|
35 |
+
sequence = [_symbol_to_id[symbol] for symbol in cleaned_text]
|
36 |
+
return sequence
|
37 |
+
|
38 |
+
|
39 |
+
def sequence_to_text(sequence):
|
40 |
+
'''Converts a sequence of IDs back to a string'''
|
41 |
+
result = ''
|
42 |
+
for symbol_id in sequence:
|
43 |
+
s = _id_to_symbol[symbol_id]
|
44 |
+
result += s
|
45 |
+
return result
|
46 |
+
|
47 |
+
|
48 |
+
def _clean_text(text, cleaner_names):
|
49 |
+
for name in cleaner_names:
|
50 |
+
cleaner = getattr(cleaners, name)
|
51 |
+
if not cleaner:
|
52 |
+
raise Exception('Unknown cleaner: %s' % name)
|
53 |
+
text = cleaner(text)
|
54 |
+
return text
|
text/cleaners.py
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import re
|
2 |
+
from text.japanese import japanese_to_romaji_with_accent
|
3 |
+
from text.symbols import symbols
|
4 |
+
|
5 |
+
_cleaner_cleans = re.compile('['+'^'.join(symbols)+']')
|
6 |
+
|
7 |
+
|
8 |
+
def japanese_cleaners(text):
|
9 |
+
text = japanese_to_romaji_with_accent(text)
|
10 |
+
text = re.sub(r'([A-Za-z])$', r'\1.', text)
|
11 |
+
return text
|
12 |
+
|
13 |
+
|
14 |
+
def japanese_cleaners2(text):
|
15 |
+
text = japanese_cleaners(text).replace('ts', 'ʦ').replace('...', '…')
|
16 |
+
text = ''.join(_cleaner_cleans.findall(text))#.replace('_', '').replace(' ', '')
|
17 |
+
return text
|
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
|
text/symbols.py
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
""" from https://github.com/keithito/tacotron """
|
2 |
+
|
3 |
+
'''
|
4 |
+
Defines the set of symbols used in text input to the model.
|
5 |
+
'''
|
6 |
+
|
7 |
+
'''# korean_cleaners
|
8 |
+
_pad = '_'
|
9 |
+
_punctuation = ',.!?…~'
|
10 |
+
_letters = 'ㄱㄴㄷㄹㅁㅂㅅㅇㅈㅊㅋㅌㅍㅎㄲㄸㅃㅆㅉㅏㅓㅗㅜㅡㅣㅐㅔ '
|
11 |
+
'''
|
12 |
+
|
13 |
+
|
14 |
+
# japanese_cleaners2
|
15 |
+
_pad = '_'
|
16 |
+
_punctuation = ',.!?-~…'
|
17 |
+
_letters = 'AEINOQUabdefghijkmnoprstuvwyzʃʧʦ↓↑ '
|
18 |
+
|
19 |
+
|
20 |
+
|
21 |
+
# Export all symbols:
|
22 |
+
symbols = [_pad] + list(_punctuation) + list(_letters)
|
23 |
+
|
24 |
+
# Special symbol ids
|
25 |
+
SPACE_ID = symbols.index(" ")
|