-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathsynthesize.py
257 lines (225 loc) · 8.75 KB
/
synthesize.py
1
2
3
4
5
6
7
8
9
10
11
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
import re
import os
import json
import argparse
from string import punctuation
from collections import defaultdict
import torch
import yaml
import numpy as np
from torch.utils.data import DataLoader
from g2p_en import G2p
# from pypinyin import pinyin, Style
import tgt
import librosa
import audio as Audio
from utils.model import get_model, get_vocoder
from utils.tools import get_configs_of, to_device, synth_samples, get_alignment
from dataset import TextDataset
from text import text_to_sequence
def read_lexicon(lex_path):
lexicon = {}
with open(lex_path) as f:
for line in f:
temp = re.split(r"\s+", line.strip("\n"))
word = temp[0]
phones = temp[1:]
if word.lower() not in lexicon:
lexicon[word.lower()] = phones
return lexicon
def preprocess_english(text, preprocess_config):
text = text.rstrip(punctuation)
lexicon = read_lexicon(preprocess_config["path"]["lexicon_path"])
g2p = G2p()
phones = []
words = re.split(r"([,;.\-\?\!\s+])", text)
for w in words:
if w.lower() in lexicon:
phones += lexicon[w.lower()]
else:
phones += list(filter(lambda p: p != " ", g2p(w)))
phones = "{" + "}{".join(phones) + "}"
phones = re.sub(r"\{[^\w\s]?\}", "{sp}", phones)
phones = phones.replace("}{", " ")
print("Raw Text Sequence: {}".format(text))
print("Phoneme Sequence: {}".format(phones))
sequence = np.array(
text_to_sequence(
phones, preprocess_config["preprocessing"]["text"]["text_cleaners"]
)
)
return np.array(sequence)
def get_audio(preprocess_config, wav_path):
preprocessed_path = preprocess_config["path"]["preprocessed_path"]
hop_length = preprocess_config["preprocessing"]["stft"]["hop_length"]
sampling_rate = preprocess_config["preprocessing"]["audio"]["sampling_rate"]
STFT = Audio.stft.TacotronSTFT(
preprocess_config["preprocessing"]["stft"]["filter_length"],
hop_length,
preprocess_config["preprocessing"]["stft"]["win_length"],
preprocess_config["preprocessing"]["mel"]["n_mel_channels"],
sampling_rate,
preprocess_config["preprocessing"]["mel"]["mel_fmin"],
preprocess_config["preprocessing"]["mel"]["mel_fmax"],
)
# Check TextGrid
basename = wav_path.split("/")[-1].replace(".wav", "")
speaker = basename.split("-")[-1]
tg_path = os.path.join(preprocessed_path, "TextGrid",
speaker, f'{basename}.TextGrid')
if os.path.exists(tg_path):
# Get alignments
textgrid = tgt.io.read_textgrid(tg_path)
_, duration, start, end = get_alignment(
textgrid.get_tier_by_name("phones"),
sampling_rate,
hop_length,
)
if start >= end:
raise ValueError()
# Read and trim wav files
wav, _ = librosa.load(wav_path, sampling_rate)
if os.path.exists(tg_path):
wav = wav[
int(sampling_rate * start): int(sampling_rate * end)
]
# Compute mel-scale spectrogram
mel_spectrogram, _ = Audio.tools.get_mel_from_wav(
wav.astype(np.float32), STFT)
if os.path.exists(tg_path):
mel_spectrogram = mel_spectrogram[:, : sum(duration)]
mels = mel_spectrogram.T[None].astype(np.float32)
mel_lens = np.array([len(mels[0])])
return mels, mel_lens
def synthesize(device, model, args, configs, vocoder, batchs):
preprocess_config, model_config, train_config = configs
for batch in batchs:
batch = to_device(batch, device)
with torch.no_grad():
# Forward
output = model(*batch[2:], inference=True)
synth_samples(
batch,
output,
vocoder,
model_config,
preprocess_config,
train_config["path"]["result_path"],
args,
)
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument("--restore_step", type=int, required=True)
parser.add_argument(
"--mode",
type=str,
choices=["batch", "single"],
required=True,
help="Synthesize a whole dataset or a single sentence",
)
parser.add_argument(
"--source",
type=str,
default=None,
help="path to a source file with format like train.txt and val.txt, for batch mode only",
)
parser.add_argument(
"--text",
type=str,
default=None,
help="raw text to synthesize, for single-sentence mode only",
)
parser.add_argument(
"--speaker_id",
type=str,
default="Actor_01",
help="speaker ID for multi-speaker synthesis, for single-sentence mode only",
)
parser.add_argument(
"--dataset",
type=str,
required=True,
help="name of dataset",
)
parser.add_argument(
"--emotion_id",
type=str,
default=None,
help="emotion ID for multi-emotion synthesis, for single-sentence mode only",
)
parser.add_argument(
"--ref_audio",
type=str,
default=None,
help="reference audio path to extract the speech style, for single-sentence mode only",
)
args = parser.parse_args()
assert args.emotion_id != None and args.ref_audio == None \
or args.emotion_id == None and args.ref_audio != None, "(Only) One of SOFT and HARD should be active at a time."
# Check source texts
if args.mode == "batch":
assert args.source is not None and args.text is None
if args.mode == "single":
assert args.source is None and args.text is not None
# Read Config
preprocess_config, model_config, train_config = get_configs_of(
args.dataset)
configs = (preprocess_config, model_config, train_config)
os.makedirs(
os.path.join(train_config["path"]["result_path"], str(args.restore_step)), exist_ok=True)
# Set Device
torch.manual_seed(train_config["seed"])
if torch.cuda.is_available():
torch.cuda.manual_seed(train_config["seed"])
device = torch.device('cuda')
else:
device = torch.device('cpu')
print("Device of XSpkEmoTrans:", device)
# Get model
model = get_model(args, configs, device, train=False,
ignore_layers=train_config["ignore_layers"])
# Load vocoder
vocoder = get_vocoder(model_config, device)
# Preprocess texts
if args.mode == "batch":
# Get dataset
dataset = TextDataset(args.source, preprocess_config, model_config)
batchs = DataLoader(
dataset,
batch_size=8,
collate_fn=dataset.collate_fn,
)
if args.mode == "single":
ids = raw_texts = [args.text[:100]]
# Speaker Info
load_spker_embed = model_config["multi_speaker"] \
and preprocess_config["preprocessing"]["speaker_embedder"] != 'none'
with open(os.path.join(preprocess_config["path"]["preprocessed_path"], "speakers.json")) as f:
speaker_map = json.load(f)
speakers = np.array([speaker_map[args.speaker_id]]) if model_config["multi_speaker"] else np.array(
[0]) # single speaker is allocated 0
spker_embed = np.load(os.path.join(
preprocess_config["path"]["preprocessed_path"],
"spker_embed",
"{}-spker_embed.npy".format(args.speaker_id),
)) if load_spker_embed else None
# Emotion Info
emotions = None
if args.emotion_id is not None:
emotions = np.array([defaultdict(lambda:0)[args.emotion_id]])
emotion_dict_path = os.path.join(preprocess_config["path"]["preprocessed_path"], "emotions.json")
if os.path.isfile(emotion_dict_path):
with open(emotion_dict_path) as f:
emotions = np.array([json.load(f)[args.emotion_id]])
mels = mel_lens = None
if args.ref_audio is not None:
mels, mel_lens = get_audio(preprocess_config, args.ref_audio)
if preprocess_config["preprocessing"]["text"]["language"] == "en":
texts = np.array(
[preprocess_english(args.text, preprocess_config)])
else:
raise NotImplementedError()
text_lens = np.array([len(texts[0])])
batchs = [(ids, raw_texts, speakers, texts, text_lens, max(
text_lens), mels, mel_lens, max(mel_lens) if mels is not None else None, spker_embed, emotions)]
synthesize(device, model, args, configs, vocoder, batchs)