-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathVoice.cpp
377 lines (222 loc) · 8.64 KB
/
Voice.cpp
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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
#include "Voice.h"
#include "ext/ZCharScanner.h"
std::vector<int32_t> Voice::CharsToID(const std::string & RawInTxt)
{
std::cout << "CharsToID: " << RawInTxt << "\n";
std::vector<int32_t> VecPhones;
std::u32string InTxt = VoxUtil::StrToU32(RawInTxt);
for (const auto& Char : InTxt)
{
size_t ArrID = 0;
std::u32string CharAs;
CharAs += Char;
if (VoxUtil::FindInVec<std::u32string>(CharAs, Phonemes, ArrID))
VecPhones.push_back(PhonemeIDs[ArrID]);
else
std::cout << "Voice::PhonemesToID() WARNING: Unknown phoneme " << Char << std::endl;
}
return VecPhones;
}
std::vector<int32_t> Voice::PhonemesToID(const std::string & RawInTxt)
{
std::cout << "PhonemesToID: " << RawInTxt << "\n";
ZStringDelimiter Delim(RawInTxt);
Delim.AddDelimiter(" ");
std::u32string InTxt = VoxUtil::StrToU32(RawInTxt);
std::vector<int32_t> VecPhones;
VecPhones.reserve(Delim.szTokens());
for (const auto& Pho : Delim.GetTokens())
{
size_t ArrID = 0;
std::u32string PhnU = VoxUtil::StrToU32(Pho);
if (VoxUtil::FindInVec<std::u32string>(PhnU, Phonemes, ArrID))
VecPhones.push_back(PhonemeIDs[ArrID]);
else
std::cout << "Voice::PhonemesToID() WARNING: Unknown phoneme " << Pho << std::endl;
}
return VecPhones;
}
void Voice::ReadPhonemes(const std::string &PhonemePath)
{
std::ifstream Phone(PhonemePath);
std::string Line;
while (std::getline(Phone, Line))
{
if (Line.find("\t") == std::string::npos)
continue;
ZStringDelimiter Deline(Line);
Deline.AddDelimiter("\t");
Phonemes.push_back(VoxUtil::StrToU32(Deline[0]));
PhonemeIDs.push_back(stoi(Deline[1]));
}
}
void Voice::ReadSpeakers(const std::string &SpeakerPath)
{
Speakers = VoxUtil::GetLinedFile(SpeakerPath);
}
void Voice::ReadEmotions(const std::string &EmotionPath)
{
Emotions = VoxUtil::GetLinedFile(EmotionPath);
}
void Voice::ReadModelInfo(const std::string &ModelInfoPath)
{
ModelInfo = "";
std::vector<std::string> MiLines = VoxUtil::GetLinedFile(ModelInfoPath);
for (const std::string& ss : MiLines)
ModelInfo += ss + "\n";
}
Voice::Voice(const std::string & VoxPath, const std::string &inName, Phonemizer *InPhn)
{
ReadModelInfo(VoxPath + "/info.txt");
VoxInfo = VoxUtil::ReadModelJSON(VoxPath + "/info.json");
const int32_t Tex2MelArch = VoxInfo.Architecture.Text2Mel;
const bool IsVITS = Tex2MelArch == EText2MelModel::VITS || Tex2MelArch == EText2MelModel::VITSTM;
if (Tex2MelArch == EText2MelModel::Tacotron2)
MelPredictor = std::make_unique<Tacotron2>();
else if (Tex2MelArch == EText2MelModel::FastSpeech2)
MelPredictor = std::make_unique<FastSpeech2>();
else if (Tex2MelArch == EText2MelModel::VITS || Tex2MelArch == EText2MelModel::VITSTM)
MelPredictor = std::make_unique<VITS>();
else
MelPredictor = std::make_unique<Tacotron2Torch>();
std::string MelPredInit = VoxPath + "/melgen";
if (IsVITS)
MelPredInit = VoxPath + "/vits.pt";
if (Tex2MelArch == EText2MelModel::Tacotron2Torch)
MelPredInit = VoxPath + "/tacotron2.pt";
MelPredictor->Initialize(MelPredInit,(ETTSRepo::Enum)VoxInfo.Architecture.Repo);
if (Tex2MelArch == EText2MelModel::VITSTM)
Moji.Initialize(VoxPath + "/moji.pt", VoxPath + "/tm_dict.txt");
const int32_t VocoderArch = VoxInfo.Architecture.Vocoder;
if (VocoderArch == EVocoderModel::iSTFTNet)
Vocoder = std::make_unique<iSTFTNetTorch>();
else if (VocoderArch == EVocoderModel::NullVocoder)
Vocoder = nullptr;
else
Vocoder = std::make_unique<MultiBandMelGAN>();
if (Vocoder.get())
{
Vocoder.get()->Initialize(VoxPath + "/vocoder");
}
if (InPhn)
Processor.Initialize(InPhn);
Name = inName;
ReadPhonemes(VoxPath + "/phonemes.txt");
ReadSpeakers(VoxPath + "/speakers.txt");
ReadEmotions(VoxPath + "/emotions.txt");
}
void Voice::AddPhonemizer(Phonemizer *InPhn,ESpeakPhonemizer* InENGPhn)
{
Processor.Initialize(InPhn,InENGPhn);
Processor.GetTokenizer().SetNumberText(NumTxt,VoxCommon::CommonLangConst);
}
void Voice::LoadNumberText(const std::string &NumTxtPath)
{
NumTxt.load(VoxCommon::CommonLangConst,NumTxtPath);
}
std::string Voice::PhonemizeStr(const std::string &Prompt)
{
return Processor.ProcessTextPhonetic(Prompt,Phonemes,CurrentDict,
(ETTSLanguageType::Enum)VoxInfo.LangType,
true); // default voxistac to true to preserve punctuation.
}
VoxResults Voice::Vocalize(const std::string & Prompt, float Speed, int32_t SpeakerID, float Energy, float F0, int32_t EmotionID,const std::string& EmotionOvr)
{
const int32_t Text2MelN = VoxInfo.Architecture.Text2Mel;
bool VoxIsTac = Text2MelN != EText2MelModel::FastSpeech2;
std::string PromptToFeed = Prompt;
if (VoxInfo.LangType != ETTSLanguageType::Char && Text2MelN != EText2MelModel::Tacotron2Torch)
PromptToFeed += VoxInfo.EndPadding;
std::string PhoneticTxt = Processor.ProcessTextPhonetic(PromptToFeed,Phonemes,CurrentDict,
(ETTSLanguageType::Enum)VoxInfo.LangType,
VoxIsTac);
TFTensor<float> Mel;
TFTensor<float> Attention;
std::vector<int32_t> InputIDs;
if (Text2MelN == EText2MelModel::Tacotron2Torch)
PhoneticTxt += VoxInfo.EndPadding;
if (VoxInfo.LangType == ETTSLanguageType::Char){
InputIDs = CharsToID(PhoneticTxt);
InputIDs.push_back(std::stoi(VoxInfo.EndPadding));
}
else
{
if (VoxInfo.LangType == ETTSLanguageType::IPA)
InputIDs = CharsToID(PhoneticTxt);
else
InputIDs = PhonemesToID(PhoneticTxt);
}
std::vector<float> FloatArgs;
std::vector<int32_t> IntArgs;
if (Text2MelN == EText2MelModel::Tacotron2)
{
Mel = ((Tacotron2*)MelPredictor.get())->DoInference(InputIDs,FloatArgs,IntArgs,SpeakerID, EmotionID);
Attention = ((Tacotron2*)MelPredictor.get())->Attention;
}
else if (Text2MelN == EText2MelModel::Tacotron2Torch)
{
Mel = MelPredictor.get()->DoInference(InputIDs,FloatArgs,IntArgs,SpeakerID, EmotionID);
Attention = ((Tacotron2Torch*)MelPredictor.get())->Attention;
}
else if (Text2MelN == EText2MelModel::FastSpeech2)
{
FloatArgs = {Speed,Energy,F0};
Mel = ((FastSpeech2*)MelPredictor.get())->DoInference(InputIDs,FloatArgs,IntArgs,SpeakerID, EmotionID);
}else
{
FloatArgs = {Speed};
if (EmotionOvr.size()){
std::vector<std::string> MojiInput = Processor.GetTokenizer().Tokenize(EmotionOvr,true,true);
std::vector<float> MojiStates = Moji.Infer(MojiInput);
FloatArgs.insert(FloatArgs.end(),MojiStates.begin(),MojiStates.end());
}
TFTensor<float> Audio = MelPredictor.get()->DoInference(InputIDs,FloatArgs,IntArgs,SpeakerID,EmotionID);
Attention = ((VITS*)MelPredictor.get())->Attention;
std::vector<float> AudioData = Audio.Data;
Mel.Shape.push_back(-1); // Tell the plotter that we have no mel to plot
// As VITS is fully E2E, we return here
return {AudioData,Attention,Mel};
}
// Vocoder inference
TFTensor<float> AuData = Vocoder.get()->DoInference(Mel);
std::vector<float> AudioData;
if (AuData.Shape.size() > 1)
{
int64_t Width = AuData.Shape[0];
int64_t Height = AuData.Shape[1];
int64_t Depth = AuData.Shape[2];
//int z = 0;
AudioData.resize(Height);
// Code to access 1D array as if it were 3D
for (int64_t x = 0; x < Width;x++)
{
for (int64_t z = 0;z < Depth;z++)
{
for (int64_t y = 0; y < Height;y++) {
int64_t Index = x * Height * Depth + y * Depth + z;
AudioData[(size_t)y] = AuData.Data[(size_t)Index];
}
}
}
}
else
{
// Pre-flattened vocoder output
AudioData = AuData.Data;
}
if (!AudioData.size())
QMessageBox::critical(nullptr,"f","ss");
return {AudioData,Attention,Mel};
}
void Voice::SetDictEntries(const std::vector<DictEntry> &InEntries)
{
for (const DictEntry& Entr : InEntries)
{
if (Entr.Language != VoxInfo.s_Language_Fullname)
continue;
CurrentDict.push_back(Entr);
}
}
Voice::~Voice()
{
}