Spaces:
Runtime error
Runtime error
m4singer
commited on
Commit
•
0777743
1
Parent(s):
8b55079
Add sharing function
Browse files
checkpoints/m4singer_diff_e2e/config.yaml
CHANGED
@@ -105,7 +105,7 @@ pitch_extractor: parselmouth
|
|
105 |
pitch_loss: l1
|
106 |
pitch_norm: log
|
107 |
pitch_type: frame
|
108 |
-
pndm_speedup:
|
109 |
pre_align_args:
|
110 |
allow_no_txt: false
|
111 |
denoise: false
|
|
|
105 |
pitch_loss: l1
|
106 |
pitch_norm: log
|
107 |
pitch_type: frame
|
108 |
+
pndm_speedup: 5
|
109 |
pre_align_args:
|
110 |
allow_no_txt: false
|
111 |
denoise: false
|
inference/m4singer/gradio/gradio_settings.yaml
CHANGED
@@ -1,13 +1,18 @@
|
|
1 |
title: 'M4Singer'
|
2 |
description: |
|
3 |
-
This page aims to display the
|
|
|
4 |
|
5 |
-
Please assign pitch and duration values to each Chinese character. The corresponding pitch and duration value of each character should be separated by a | separator. It is necessary to ensure that the note window separated by the separator is consistent with the number of Chinese characters
|
|
|
|
|
|
|
|
|
6 |
|
7 |
-
Note: This page is running on CPU, please refer to github for the local running solutions.(注意:本页面使用CPU推理,本地运行方案请参考<a href='https://github.com/M4Singer/M4Singer' style='color:blue;' target='_blank\'>Github REPO</a>。)
|
8 |
article: |
|
9 |
-
|
10 |
|
|
|
11 |
If our work is useful for your research, please consider citing:
|
12 |
```bibtex
|
13 |
@inproceedings{
|
|
|
1 |
title: 'M4Singer'
|
2 |
description: |
|
3 |
+
This page aims to display the singing voice synthesis function of M4Singer. SingerID can be switched freely to preview the timbre of each singer. Click examples below to quickly load scores and audio.
|
4 |
+
(本页面为M4Singer歌声合成功能展示。SingerID可以自由切换用以预览各歌手的音色。点击下方Examples可以快速加载乐谱和音频。)
|
5 |
|
6 |
+
Please assign pitch and duration values to each Chinese character. The corresponding pitch and duration value of each character should be separated by a | separator. It is necessary to ensure that the note window separated by the separator is consistent with the number of Chinese characters. AP (aspirate) or SP (silence) is also viewed as a Chinese character.
|
7 |
+
(请给每个汉字分配音高和时值, 每个字对应的音高和时值需要用 | 分隔符隔开。需要保证分隔符分割出来的音符窗口与汉字个数一致。换气或静音符也算一个汉字。)
|
8 |
+
|
9 |
+
The notes corresponding to AP and SP are fixed as rest. If there are multiple notes in a window (| .... |), it means that the Chinese character corresponding to the window is glissando, and each note needs to be assigned a duration.
|
10 |
+
(AP和SP对应的音符固定为rest。若一个窗口(| .... |)内有多个音符, 代表该窗口对应的汉字为滑音, 需要为每个音符都分配时长。)
|
11 |
|
|
|
12 |
article: |
|
13 |
+
Note: This page is running on CPU, please refer to <a href='https://github.com/M4Singer/M4Singer' style='color:blue;' target='_blank\'>Github REPO</a> for the local running solutions and for our dataset.
|
14 |
|
15 |
+
--------
|
16 |
If our work is useful for your research, please consider citing:
|
17 |
```bibtex
|
18 |
@inproceedings{
|
inference/m4singer/gradio/infer.py
CHANGED
@@ -3,20 +3,13 @@ import re
|
|
3 |
|
4 |
import gradio as gr
|
5 |
import yaml
|
6 |
-
from gradio.
|
7 |
|
8 |
from inference.m4singer.base_svs_infer import BaseSVSInfer
|
9 |
from utils.hparams import set_hparams
|
10 |
from utils.hparams import hparams as hp
|
11 |
import numpy as np
|
12 |
-
import
|
13 |
-
|
14 |
-
def setup_seed(seed):
|
15 |
-
torch.manual_seed(seed)
|
16 |
-
torch.cuda.manual_seed_all(seed)
|
17 |
-
np.random.seed(seed)
|
18 |
-
random.seed(seed)
|
19 |
-
torch.backends.cudnn.deterministic = True
|
20 |
|
21 |
class GradioInfer:
|
22 |
def __init__(self, exp_name, inference_cls, title, description, article, example_inputs):
|
@@ -61,11 +54,10 @@ class GradioInfer:
|
|
61 |
s = ""
|
62 |
n = ""
|
63 |
audio_outs = np.concatenate(audio_outs)
|
64 |
-
return hp['audio_sample_rate'], audio_outs
|
65 |
|
66 |
def run(self):
|
67 |
set_hparams(config=f'checkpoints/{self.exp_name}/config.yaml', exp_name=self.exp_name, print_hparams=False)
|
68 |
-
#setup_seed(1234)
|
69 |
infer_cls = self.inference_cls
|
70 |
self.infer_ins: BaseSVSInfer = infer_cls(hp)
|
71 |
example_inputs = self.example_inputs
|
@@ -81,21 +73,68 @@ class GradioInfer:
|
|
81 |
'Bass-1', 'Bass-2', 'Bass-3',
|
82 |
]
|
83 |
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
99 |
|
100 |
if __name__ == '__main__':
|
101 |
gradio_config = yaml.safe_load(open('inference/m4singer/gradio/gradio_settings.yaml'))
|
|
|
3 |
|
4 |
import gradio as gr
|
5 |
import yaml
|
6 |
+
from gradio.components import Textbox, Dropdown
|
7 |
|
8 |
from inference.m4singer.base_svs_infer import BaseSVSInfer
|
9 |
from utils.hparams import set_hparams
|
10 |
from utils.hparams import hparams as hp
|
11 |
import numpy as np
|
12 |
+
from inference.m4singer.gradio.share_btn import community_icon_html, loading_icon_html, share_js
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
|
14 |
class GradioInfer:
|
15 |
def __init__(self, exp_name, inference_cls, title, description, article, example_inputs):
|
|
|
54 |
s = ""
|
55 |
n = ""
|
56 |
audio_outs = np.concatenate(audio_outs)
|
57 |
+
return (hp['audio_sample_rate'], audio_outs), gr.update(visible=True), gr.update(visible=True), gr.update(visible=True)
|
58 |
|
59 |
def run(self):
|
60 |
set_hparams(config=f'checkpoints/{self.exp_name}/config.yaml', exp_name=self.exp_name, print_hparams=False)
|
|
|
61 |
infer_cls = self.inference_cls
|
62 |
self.infer_ins: BaseSVSInfer = infer_cls(hp)
|
63 |
example_inputs = self.example_inputs
|
|
|
73 |
'Bass-1', 'Bass-2', 'Bass-3',
|
74 |
]
|
75 |
|
76 |
+
css = """
|
77 |
+
#share-btn-container {
|
78 |
+
display: flex; padding-left: 0.5rem !important; padding-right: 0.5rem !important; background-color: #000000; justify-content: center; align-items: center; border-radius: 9999px !important; width: 13rem;
|
79 |
+
}
|
80 |
+
#share-btn {
|
81 |
+
all: initial; color: #ffffff;font-weight: 600; cursor:pointer; font-family: 'IBM Plex Sans', sans-serif; margin-left: 0.5rem !important; padding-top: 0.25rem !important; padding-bottom: 0.25rem !important;right:0;
|
82 |
+
}
|
83 |
+
#share-btn * {
|
84 |
+
all: unset;
|
85 |
+
}
|
86 |
+
#share-btn-container div:nth-child(-n+2){
|
87 |
+
width: auto !important;
|
88 |
+
min-height: 0px !important;
|
89 |
+
}
|
90 |
+
#share-btn-container .wrap {
|
91 |
+
display: none !important;
|
92 |
+
}
|
93 |
+
"""
|
94 |
+
with gr.Blocks(css=css) as demo:
|
95 |
+
gr.HTML("""<div style="text-align: center; margin: 0 auto;">
|
96 |
+
<div
|
97 |
+
style="
|
98 |
+
display: inline-flex;
|
99 |
+
align-items: center;
|
100 |
+
gap: 0.8rem;
|
101 |
+
font-size: 1.75rem;
|
102 |
+
"
|
103 |
+
>
|
104 |
+
<h1 style="font-weight: 900; margin-bottom: 10px; margin-top: 14px;">
|
105 |
+
M4Singer
|
106 |
+
</h1>
|
107 |
+
</div>
|
108 |
+
</div>
|
109 |
+
"""
|
110 |
+
)
|
111 |
+
gr.Markdown(self.description)
|
112 |
+
with gr.Row():
|
113 |
+
with gr.Column():
|
114 |
+
singer_l = Dropdown(choices=singerList, value=example_inputs[0][0], label="SingerID", elem_id="inp_singer")
|
115 |
+
inp_text = Textbox(lines=2, placeholder=None, value=example_inputs[0][1], label="input text", elem_id="inp_text")
|
116 |
+
inp_note = Textbox(lines=2, placeholder=None, value=example_inputs[0][2], label="input note", elem_id="inp_note")
|
117 |
+
inp_duration = Textbox(lines=2, placeholder=None, value=example_inputs[0][3], label="input duration", elem_id="inp_duration")
|
118 |
+
generate = gr.Button("Generate Singing Voice from Musical Score")
|
119 |
+
with gr.Column(lem_id="col-container"):
|
120 |
+
singing_output = gr.Audio(label="Result", type="numpy", elem_id="music-output")
|
121 |
+
|
122 |
+
with gr.Group(elem_id="share-btn-container"):
|
123 |
+
community_icon = gr.HTML(community_icon_html, visible=False)
|
124 |
+
loading_icon = gr.HTML(loading_icon_html, visible=False)
|
125 |
+
share_button = gr.Button("Share to community", elem_id="share-btn", visible=False)
|
126 |
+
gr.Examples(examples=self.example_inputs,
|
127 |
+
inputs=[singer_l, inp_text, inp_note, inp_duration],
|
128 |
+
outputs=[singing_output, share_button, community_icon, loading_icon],
|
129 |
+
fn=self.greet,
|
130 |
+
cache_examples=True)
|
131 |
+
gr.Markdown(self.article)
|
132 |
+
generate.click(self.greet,
|
133 |
+
inputs=[singer_l, inp_text, inp_note, inp_duration],
|
134 |
+
outputs=[singing_output, share_button, community_icon, loading_icon],)
|
135 |
+
share_button.click(None, [], [], _js=share_js)
|
136 |
+
demo.queue(max_size=32, concurrency_count=20).launch(share=False)
|
137 |
+
|
138 |
|
139 |
if __name__ == '__main__':
|
140 |
gradio_config = yaml.safe_load(open('inference/m4singer/gradio/gradio_settings.yaml'))
|
inference/m4singer/gradio/share_btn.py
ADDED
@@ -0,0 +1,86 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
community_icon_html = """<svg id="share-btn-share-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32">
|
2 |
+
<path d="M20.6081 3C21.7684 3 22.8053 3.49196 23.5284 4.38415C23.9756 4.93678 24.4428 5.82749 24.4808 7.16133C24.9674 7.01707 25.4353 6.93643 25.8725 6.93643C26.9833 6.93643 27.9865 7.37587 28.696 8.17411C29.6075 9.19872 30.0124 10.4579 29.8361 11.7177C29.7523 12.3177 29.5581 12.8555 29.2678 13.3534C29.8798 13.8646 30.3306 14.5763 30.5485 15.4322C30.719 16.1032 30.8939 17.5006 29.9808 18.9403C30.0389 19.0342 30.0934 19.1319 30.1442 19.2318C30.6932 20.3074 30.7283 21.5229 30.2439 22.6548C29.5093 24.3704 27.6841 25.7219 24.1397 27.1727C21.9347 28.0753 19.9174 28.6523 19.8994 28.6575C16.9842 29.4379 14.3477 29.8345 12.0653 29.8345C7.87017 29.8345 4.8668 28.508 3.13831 25.8921C0.356375 21.6797 0.754104 17.8269 4.35369 14.1131C6.34591 12.058 7.67023 9.02782 7.94613 8.36275C8.50224 6.39343 9.97271 4.20438 12.4172 4.20438H12.4179C12.6236 4.20438 12.8314 4.2214 13.0364 4.25468C14.107 4.42854 15.0428 5.06476 15.7115 6.02205C16.4331 5.09583 17.134 4.359 17.7682 3.94323C18.7242 3.31737 19.6794 3 20.6081 3ZM20.6081 5.95917C20.2427 5.95917 19.7963 6.1197 19.3039 6.44225C17.7754 7.44319 14.8258 12.6772 13.7458 14.7131C13.3839 15.3952 12.7655 15.6837 12.2086 15.6837C11.1036 15.6837 10.2408 14.5497 12.1076 13.1085C14.9146 10.9402 13.9299 7.39584 12.5898 7.1776C12.5311 7.16799 12.4731 7.16355 12.4172 7.16355C11.1989 7.16355 10.6615 9.33114 10.6615 9.33114C10.6615 9.33114 9.0863 13.4148 6.38031 16.206C3.67434 18.998 3.5346 21.2388 5.50675 24.2246C6.85185 26.2606 9.42666 26.8753 12.0653 26.8753C14.8021 26.8753 17.6077 26.2139 19.1799 25.793C19.2574 25.7723 28.8193 22.984 27.6081 20.6107C27.4046 20.212 27.0693 20.0522 26.6471 20.0522C24.9416 20.0522 21.8393 22.6726 20.5057 22.6726C20.2076 22.6726 19.9976 22.5416 19.9116 22.222C19.3433 20.1173 28.552 19.2325 27.7758 16.1839C27.639 15.6445 27.2677 15.4256 26.746 15.4263C24.4923 15.4263 19.4358 19.5181 18.3759 19.5181C18.2949 19.5181 18.2368 19.4937 18.2053 19.4419C17.6743 18.557 17.9653 17.9394 21.7082 15.6009C25.4511 13.2617 28.0783 11.8545 26.5841 10.1752C26.4121 9.98141 26.1684 9.8956 25.8725 9.8956C23.6001 9.89634 18.2311 14.9403 18.2311 14.9403C18.2311 14.9403 16.7821 16.496 15.9057 16.496C15.7043 16.496 15.533 16.4139 15.4169 16.2112C14.7956 15.1296 21.1879 10.1286 21.5484 8.06535C21.7928 6.66715 21.3771 5.95917 20.6081 5.95917Z" fill="#FF9D00"></path>
|
3 |
+
<path d="M5.50686 24.2246C3.53472 21.2387 3.67446 18.9979 6.38043 16.206C9.08641 13.4147 10.6615 9.33111 10.6615 9.33111C10.6615 9.33111 11.2499 6.95933 12.59 7.17757C13.93 7.39581 14.9139 10.9401 12.1069 13.1084C9.29997 15.276 12.6659 16.7489 13.7459 14.713C14.8258 12.6772 17.7747 7.44316 19.304 6.44221C20.8326 5.44128 21.9089 6.00204 21.5484 8.06532C21.188 10.1286 14.795 15.1295 15.4171 16.2118C16.0391 17.2934 18.2312 14.9402 18.2312 14.9402C18.2312 14.9402 25.0907 8.49588 26.5842 10.1752C28.0776 11.8545 25.4512 13.2616 21.7082 15.6008C17.9646 17.9393 17.6744 18.557 18.2054 19.4418C18.7372 20.3266 26.9998 13.1351 27.7759 16.1838C28.5513 19.2324 19.3434 20.1173 19.9117 22.2219C20.48 24.3274 26.3979 18.2382 27.6082 20.6107C28.8193 22.9839 19.2574 25.7722 19.18 25.7929C16.0914 26.62 8.24723 28.3726 5.50686 24.2246Z" fill="#FFD21E"></path>
|
4 |
+
</svg>"""
|
5 |
+
|
6 |
+
loading_icon_html = """<svg id="share-btn-loading-icon" style="display:none;" class="animate-spin"
|
7 |
+
style="color: #ffffff;
|
8 |
+
"
|
9 |
+
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" fill="none" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><circle style="opacity: 0.25;" cx="12" cy="12" r="10" stroke="white" stroke-width="4"></circle><path style="opacity: 0.75;" fill="white" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path></svg>"""
|
10 |
+
|
11 |
+
share_js = """async () => {
|
12 |
+
async function uploadFile(file){
|
13 |
+
const UPLOAD_URL = 'https://huggingface.co/uploads';
|
14 |
+
const response = await fetch(UPLOAD_URL, {
|
15 |
+
method: 'POST',
|
16 |
+
headers: {
|
17 |
+
'Content-Type': file.type,
|
18 |
+
'X-Requested-With': 'XMLHttpRequest',
|
19 |
+
},
|
20 |
+
body: file, /// <- File inherits from Blob
|
21 |
+
});
|
22 |
+
const url = await response.text();
|
23 |
+
return url;
|
24 |
+
}
|
25 |
+
|
26 |
+
async function getOutputMusicFile(audioEL){
|
27 |
+
const res = await fetch(audioEL.src);
|
28 |
+
const blob = await res.blob();
|
29 |
+
const audioId = Date.now() % 200;
|
30 |
+
const fileName = `SVS-${{audioId}}.wav`;
|
31 |
+
const musicBlob = new File([blob], fileName, { type: 'audio/wav' });
|
32 |
+
return musicBlob;
|
33 |
+
}
|
34 |
+
|
35 |
+
const gradioEl = document.querySelector('body > gradio-app');
|
36 |
+
|
37 |
+
//const gradioEl = document.querySelector("gradio-app").shadowRoot;
|
38 |
+
const inputSinger = gradioEl.querySelector('#inp_singer select').value;
|
39 |
+
const inputText = gradioEl.querySelector('#inp_text textarea').value;
|
40 |
+
const inputNote = gradioEl.querySelector('#inp_note textarea').value;
|
41 |
+
const inputDuration = gradioEl.querySelector('#inp_duration textarea').value;
|
42 |
+
const outputMusic = gradioEl.querySelector('#music-output audio');
|
43 |
+
const outputMusic_src = gradioEl.querySelector('#music-output audio').src;
|
44 |
+
|
45 |
+
const outputMusic_name = outputMusic_src.split('/').pop();
|
46 |
+
let titleTxt = outputMusic_name;
|
47 |
+
//if(titleTxt.length > 100){
|
48 |
+
// titleTxt = titleTxt.slice(0, 100) + ' ...';
|
49 |
+
//}
|
50 |
+
const shareBtnEl = gradioEl.querySelector('#share-btn');
|
51 |
+
const shareIconEl = gradioEl.querySelector('#share-btn-share-icon');
|
52 |
+
const loadingIconEl = gradioEl.querySelector('#share-btn-loading-icon');
|
53 |
+
if(!outputMusic){
|
54 |
+
return;
|
55 |
+
};
|
56 |
+
shareBtnEl.style.pointerEvents = 'none';
|
57 |
+
shareIconEl.style.display = 'none';
|
58 |
+
loadingIconEl.style.removeProperty('display');
|
59 |
+
const musicFile = await getOutputMusicFile(outputMusic);
|
60 |
+
const dataOutputMusic = await uploadFile(musicFile);
|
61 |
+
const descriptionMd = `#### Input Musical Score:
|
62 |
+
${inputSinger}
|
63 |
+
|
64 |
+
${inputText}
|
65 |
+
|
66 |
+
${inputNote}
|
67 |
+
|
68 |
+
${inputDuration}
|
69 |
+
|
70 |
+
#### Singing Voice:
|
71 |
+
|
72 |
+
<audio controls>
|
73 |
+
<source src="${dataOutputMusic}" type="audio/wav">
|
74 |
+
Your browser does not support the audio element.
|
75 |
+
</audio>
|
76 |
+
`;
|
77 |
+
const params = new URLSearchParams({
|
78 |
+
title: titleTxt,
|
79 |
+
description: descriptionMd,
|
80 |
+
});
|
81 |
+
const paramsStr = params.toString();
|
82 |
+
window.open(`https://huggingface.co/spaces/zlc99/M4Singer/discussions/new?${paramsStr}`, '_blank');
|
83 |
+
shareBtnEl.style.removeProperty('pointer-events');
|
84 |
+
shareIconEl.style.removeProperty('display');
|
85 |
+
loadingIconEl.style.display = 'none';
|
86 |
+
}"""
|