Ricecake123 commited on
Commit
709b697
1 Parent(s): 4e74589

model upload

Browse files
app.py ADDED
@@ -0,0 +1,297 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ cnhubert_base_path = "pretrained_models/chinese-hubert-base"
3
+ bert_path = "pretrained_models/chinese-roberta-wwm-ext-large"
4
+
5
+ import gradio as gr
6
+ from transformers import AutoModelForMaskedLM, AutoTokenizer
7
+ import sys,torch,numpy as np
8
+ from pathlib import Path
9
+ import os,pdb,utils,librosa,math,traceback,requests,argparse,torch,multiprocessing,pandas as pd,torch.multiprocessing as mp,soundfile
10
+ # torch.backends.cuda.sdp_kernel("flash")
11
+ # torch.backends.cuda.enable_flash_sdp(True)
12
+ # torch.backends.cuda.enable_mem_efficient_sdp(True) # Not avaliable if torch version is lower than 2.0
13
+ # torch.backends.cuda.enable_math_sdp(True)
14
+ from random import shuffle
15
+ from AR.utils import get_newest_ckpt
16
+ from glob import glob
17
+ from tqdm import tqdm
18
+ from feature_extractor import cnhubert
19
+ cnhubert.cnhubert_base_path=cnhubert_base_path
20
+ from io import BytesIO
21
+ from module.models import SynthesizerTrn
22
+ from AR.models.t2s_lightning_module import Text2SemanticLightningModule
23
+ from AR.utils.io import load_yaml_config
24
+ from text import cleaned_text_to_sequence
25
+ from text.cleaner import text_to_sequence, clean_text
26
+ from time import time as ttime
27
+ from module.mel_processing import spectrogram_torch
28
+ from my_utils import load_audio
29
+
30
+ import logging
31
+ logging.getLogger('httpx').setLevel(logging.WARNING)
32
+ logging.getLogger('httpcore').setLevel(logging.WARNING)
33
+ logging.getLogger('multipart').setLevel(logging.WARNING)
34
+
35
+ device = "cpu"
36
+ is_half = False
37
+
38
+ tokenizer = AutoTokenizer.from_pretrained(bert_path)
39
+ bert_model=AutoModelForMaskedLM.from_pretrained(bert_path)
40
+ if(is_half==True):bert_model=bert_model.half().to(device)
41
+ else:bert_model=bert_model.to(device)
42
+ # bert_model=bert_model.to(device)
43
+ def get_bert_feature(text, word2ph):
44
+ with torch.no_grad():
45
+ inputs = tokenizer(text, return_tensors="pt")
46
+ for i in inputs:
47
+ inputs[i] = inputs[i].to(device)#####输入是long不用管精度问题,精度随bert_model
48
+ res = bert_model(**inputs, output_hidden_states=True)
49
+ res = torch.cat(res["hidden_states"][-3:-2], -1)[0].cpu()[1:-1]
50
+ assert len(word2ph) == len(text)
51
+ phone_level_feature = []
52
+ for i in range(len(word2ph)):
53
+ repeat_feature = res[i].repeat(word2ph[i], 1)
54
+ phone_level_feature.append(repeat_feature)
55
+ phone_level_feature = torch.cat(phone_level_feature, dim=0)
56
+ # if(is_half==True):phone_level_feature=phone_level_feature.half()
57
+ return phone_level_feature.T
58
+
59
+
60
+ def load_model(sovits_path, gpt_path):
61
+ n_semantic = 1024
62
+ dict_s2 = torch.load(sovits_path, map_location="cpu")
63
+ hps = dict_s2["config"]
64
+
65
+ class DictToAttrRecursive:
66
+ def __init__(self, input_dict):
67
+ for key, value in input_dict.items():
68
+ if isinstance(value, dict):
69
+ # 如果值是字典,递归调用构造函数
70
+ setattr(self, key, DictToAttrRecursive(value))
71
+ else:
72
+ setattr(self, key, value)
73
+
74
+ hps = DictToAttrRecursive(hps)
75
+ hps.model.semantic_frame_rate = "25hz"
76
+ dict_s1 = torch.load(gpt_path, map_location="cpu")
77
+ config = dict_s1["config"]
78
+ ssl_model = cnhubert.get_model()
79
+ if (is_half == True):
80
+ ssl_model = ssl_model.half().to(device)
81
+ else:
82
+ ssl_model = ssl_model.to(device)
83
+
84
+ vq_model = SynthesizerTrn(
85
+ hps.data.filter_length // 2 + 1,
86
+ hps.train.segment_size // hps.data.hop_length,
87
+ n_speakers=hps.data.n_speakers,
88
+ **hps.model)
89
+ if (is_half == True):
90
+ vq_model = vq_model.half().to(device)
91
+ else:
92
+ vq_model = vq_model.to(device)
93
+ vq_model.eval()
94
+ vq_model.load_state_dict(dict_s2["weight"], strict=False)
95
+ hz = 50
96
+ max_sec = config['data']['max_sec']
97
+ # t2s_model = Text2SemanticLightningModule.load_from_checkpoint(checkpoint_path=gpt_path, config=config, map_location="cpu")#########todo
98
+ t2s_model = Text2SemanticLightningModule(config, "ojbk", is_train=False)
99
+ t2s_model.load_state_dict(dict_s1["weight"])
100
+ if (is_half == True): t2s_model = t2s_model.half()
101
+ t2s_model = t2s_model.to(device)
102
+ t2s_model.eval()
103
+ total = sum([param.nelement() for param in t2s_model.parameters()])
104
+ print("Number of parameter: %.2fM" % (total / 1e6))
105
+ return vq_model, ssl_model, t2s_model, hps, config, hz, max_sec
106
+
107
+
108
+ def get_spepc(hps, filename):
109
+ audio=load_audio(filename,int(hps.data.sampling_rate))
110
+ audio=torch.FloatTensor(audio)
111
+ audio_norm = audio
112
+ audio_norm = audio_norm.unsqueeze(0)
113
+ spec = spectrogram_torch(audio_norm, hps.data.filter_length,hps.data.sampling_rate, hps.data.hop_length, hps.data.win_length,center=False)
114
+ return spec
115
+
116
+
117
+ def create_tts_fn(vq_model, ssl_model, t2s_model, hps, config, hz, max_sec):
118
+ def tts_fn(ref_wav_path, prompt_text, prompt_language, text, text_language):
119
+ t0 = ttime()
120
+ prompt_text=prompt_text.strip("\n")
121
+ prompt_language,text=prompt_language,text.strip("\n")
122
+ print(text)
123
+ if len(text) > 50:
124
+ return f"Error: Text is too long, ({len(text)}>50)", None
125
+ with torch.no_grad():
126
+ wav16k, sr = librosa.load(ref_wav_path, sr=16000) # 派蒙
127
+ wav16k = torch.from_numpy(wav16k)
128
+ if(is_half==True):wav16k=wav16k.half().to(device)
129
+ else:wav16k=wav16k.to(device)
130
+ ssl_content = ssl_model.model(wav16k.unsqueeze(0))["last_hidden_state"].transpose(1, 2)#.float()
131
+ codes = vq_model.extract_latent(ssl_content)
132
+ prompt_semantic = codes[0, 0]
133
+ t1 = ttime()
134
+ phones1, word2ph1, norm_text1 = clean_text(prompt_text, prompt_language)
135
+ phones1=cleaned_text_to_sequence(phones1)
136
+ texts=text.split("\n")
137
+ audio_opt = []
138
+ zero_wav=np.zeros(int(hps.data.sampling_rate*0.3),dtype=np.float16 if is_half==True else np.float32)
139
+ for text in texts:
140
+ phones2, word2ph2, norm_text2 = clean_text(text, text_language)
141
+ phones2 = cleaned_text_to_sequence(phones2)
142
+ if(prompt_language=="zh"):bert1 = get_bert_feature(norm_text1, word2ph1).to(device)
143
+ else:bert1 = torch.zeros((1024, len(phones1)),dtype=torch.float16 if is_half==True else torch.float32).to(device)
144
+ if(text_language=="zh"):bert2 = get_bert_feature(norm_text2, word2ph2).to(device)
145
+ else:bert2 = torch.zeros((1024, len(phones2))).to(bert1)
146
+ bert = torch.cat([bert1.to(device), bert2.to(device)], 1)
147
+
148
+ all_phoneme_ids = torch.LongTensor(phones1+phones2).to(device).unsqueeze(0)
149
+ bert = bert.to(device).unsqueeze(0)
150
+ all_phoneme_len = torch.tensor([all_phoneme_ids.shape[-1]]).to(device)
151
+ prompt = prompt_semantic.unsqueeze(0).to(device)
152
+ t2 = ttime()
153
+ with torch.no_grad():
154
+ # pred_semantic = t2s_model.model.infer(
155
+ pred_semantic,idx = t2s_model.model.infer_panel(
156
+ all_phoneme_ids,
157
+ all_phoneme_len,
158
+ prompt,
159
+ bert,
160
+ # prompt_phone_len=ph_offset,
161
+ top_k=config['inference']['top_k'],
162
+ early_stop_num=hz * max_sec)
163
+ t3 = ttime()
164
+ # print(pred_semantic.shape,idx)
165
+ pred_semantic = pred_semantic[:,-idx:].unsqueeze(0) # .unsqueeze(0)#mq要多unsqueeze一次
166
+ refer = get_spepc(hps, ref_wav_path)#.to(device)
167
+ if(is_half==True):refer=refer.half().to(device)
168
+ else:refer=refer.to(device)
169
+ # audio = vq_model.decode(pred_semantic, all_phoneme_ids, refer).detach().cpu().numpy()[0, 0]
170
+ audio = vq_model.decode(pred_semantic, torch.LongTensor(phones2).to(device).unsqueeze(0), refer).detach().cpu().numpy()[0, 0]###试试重建不带上prompt部分
171
+ audio_opt.append(audio)
172
+ audio_opt.append(zero_wav)
173
+ t4 = ttime()
174
+ print("%.3f\t%.3f\t%.3f\t%.3f" % (t1 - t0, t2 - t1, t3 - t2, t4 - t3))
175
+ return "Success", (hps.data.sampling_rate,(np.concatenate(audio_opt,0)*32768).astype(np.int16))
176
+ return tts_fn
177
+
178
+
179
+ splits={",","。","?","!",",",".","?","!","~",":",":","—","…",}#不考虑省略号
180
+ def split(todo_text):
181
+ todo_text = todo_text.replace("……", "。").replace("——", ",")
182
+ if (todo_text[-1] not in splits): todo_text += "。"
183
+ i_split_head = i_split_tail = 0
184
+ len_text = len(todo_text)
185
+ todo_texts = []
186
+ while (1):
187
+ if (i_split_head >= len_text): break # 结尾一定有标点,所以直接跳出即可,最后一段在上次已加入
188
+ if (todo_text[i_split_head] in splits):
189
+ i_split_head += 1
190
+ todo_texts.append(todo_text[i_split_tail:i_split_head])
191
+ i_split_tail = i_split_head
192
+ else:
193
+ i_split_head += 1
194
+ return todo_texts
195
+
196
+
197
+ def change_reference_audio(prompt_text, transcripts):
198
+ return transcripts[prompt_text]
199
+
200
+
201
+ models = []
202
+ models_info = {
203
+ "misaki": {
204
+ "gpt_weight": "models/misaki/misaki-e22.ckpt",
205
+ "sovits_weight": "models/misaki/misaki_e20_s5800.pth",
206
+ "title": "蒼の彼方のフォーリズム-鳶沢みさき",
207
+ "cover": "./models/misaki/Aokana_misaki.png",
208
+ "example_reference": "ふむふむ。つまりあたし達は晶也好みの体にされちゃうわけだ。"
209
+ },
210
+ "mashiro": {
211
+ "gpt_weight": "models/mashiro/mashiro-e20.ckpt",
212
+ "sovits_weight": "models/mashiro/mashiro_e20_s5280.pth",
213
+ "title": "蒼の彼方のフォーリズム-有坂真白",
214
+ "cover": "./models/mashiro/Aokana_mashiro.png",
215
+ "example_reference": "献身的に介護したんですが、なんだかひとりにしてほしいと仰るので。"
216
+ }
217
+ }
218
+ for i, info in models_info.items():
219
+ title = info['title']
220
+ cover = info['cover']
221
+ gpt_weight = info['gpt_weight']
222
+ sovits_weight = info['sovits_weight']
223
+ example_reference = info['example_reference']
224
+ transcripts = {}
225
+ with open(f"models/{i}/transcript.txt", 'r', encoding='utf-8') as file:
226
+ for line in file:
227
+ line = line.strip()
228
+ wav, t = line.split("|")
229
+ transcripts[t] = os.path.join(f"model/{i}/reference_audio", wav)
230
+
231
+ vq_model, ssl_model, t2s_model, hps, config, hz, max_sec = load_model(sovits_weight, gpt_weight)
232
+
233
+
234
+ models.append(
235
+ (
236
+ i,
237
+ title,
238
+ cover,
239
+ transcripts,
240
+ example_reference,
241
+ create_tts_fn(
242
+ vq_model, ssl_model, t2s_model, hps, config, hz, max_sec
243
+ )
244
+ )
245
+ )
246
+ with gr.Blocks() as app:
247
+ gr.Markdown(
248
+ "# <center> GPT-SoVITS \n"
249
+ "## <center> https://github.com/RVC-Boss/GPT-SoVITS\n"
250
+
251
+ )
252
+ with gr.Tabs():
253
+ for (name, title, cover, transcripts, example_reference, tts_fn) in models:
254
+ with gr.TabItem(name):
255
+ with gr.Row():
256
+ gr.Markdown(
257
+ '<div align="center">'
258
+ f'<a><strong>{title}</strong></a>'
259
+ f'<img style="width:auto;height:300px;" src="{cover}">' if cover else ""
260
+ '</div>')
261
+ with gr.Row():
262
+ with gr.Column():
263
+ prompt_text = gr.Dropdown(
264
+ label="Transcript of the Reference Audio",
265
+ value=example_reference,
266
+ choices=list(transcripts.keys())
267
+ )
268
+ inp_ref_audio = gr.Audio(
269
+ label="Reference Audio",
270
+ type="filepath",
271
+ interactive=False,
272
+ value=transcripts[example_reference]
273
+ )
274
+ transcripts_state = gr.State(value=transcripts)
275
+ prompt_text.change(
276
+ fn=change_reference_audio,
277
+ inputs=[prompt_text, transcripts_state],
278
+ outputs=[inp_ref_audio]
279
+ )
280
+ prompt_language = gr.State(value="ja")
281
+ with gr.Column():
282
+ text = gr.Textbox(label="Input Text", value="はいきなり、春の嵐のように突然訪れた。")
283
+ text_language = gr.Dropdown(
284
+ label="Language",
285
+ choices=["zh", "en", "ja"],
286
+ value="ja"
287
+ )
288
+ inference_button = gr.Button("Generate", variant="primary")
289
+ om = gr.Textbox(label="Output Message")
290
+ output = gr.Audio(label="Output Audio")
291
+ inference_button.click(
292
+ fn=tts_fn,
293
+ inputs=[inp_ref_audio, prompt_text, prompt_language, text, text_language],
294
+ outputs=[om, output]
295
+ )
296
+
297
+ app.queue().launch()
models/mashiro/.ipynb_checkpoints/transcript-checkpoint.txt ADDED
File without changes
models/mashiro/Aokana_mashiro.png ADDED
models/mashiro/mashiro-e20.ckpt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:964b5bc44550b03b58d46e13bc4ecba616b6ef57266e9af2e5e16816dc30f6e5
3
+ size 155085520
models/mashiro/mashiro_e20_s5280.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb06c820fee97752074395fc78d915f88a1a0b63ac1b5077126b3e89fbba67ad
3
+ size 84931874
models/mashiro/reference_audio/MASHIRO_00020.wav ADDED
Binary file (447 kB). View file
 
models/mashiro/transcript.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ MASHIRO_00020.wav|献身的に介護したんですが、なんだかひとりにしてほしいと仰るので。
models/misaki/.ipynb_checkpoints/Aokana_misaki-checkpoint.png ADDED
models/misaki/.ipynb_checkpoints/transcript-checkpoint.txt ADDED
File without changes
models/misaki/Aokana_misaki.png ADDED
models/misaki/misaki-e22.ckpt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d35627f61074689755a64e6211d1a48321a1a70413e5fd41c7ddf32e53a39372
3
+ size 155085221
models/misaki/misaki_e20_s5800.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bf4b10b823f1b87eb66c00e4e426c3accbc063f6dee1e31674e060ba4174667f
3
+ size 84931197
models/misaki/reference_audio/MISAKI_00270.wav ADDED
Binary file (567 kB). View file
 
models/misaki/transcript.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ MISAKI_00270.wav|基本的なことだけど、背後につく相手は背中を狙う以上相手を追い抜くことはできない。