Update app.py
Browse files
app.py
CHANGED
@@ -194,37 +194,37 @@ Singing Voice Synthesis (SVS) takes a music score as input and generates singing
|
|
194 |
Music score usually includes lyrics, as well as duration and pitch of each word in lyrics,
|
195 |
|
196 |
<h2>How to use:</h2>
|
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 |
</div>
|
229 |
|
230 |
<h2>Notice:</h2>
|
|
|
194 |
Music score usually includes lyrics, as well as duration and pitch of each word in lyrics,
|
195 |
|
196 |
<h2>How to use:</h2>
|
197 |
+
<ol>
|
198 |
+
<li><b>Choose Model-Language</b>:
|
199 |
+
<ul>
|
200 |
+
<li>"zh" indicates lyrics input in Chinese, and "jp" indicates lyrics input in Japanese.</li>
|
201 |
+
<li>For example, "Model②(Mulitlingual)-zh" means model "Model②(Multilingual)" with lyrics input in Chinese.</li>
|
202 |
+
</ul>
|
203 |
+
</li>
|
204 |
+
<li><b>[Optional] Choose Singer</b>: Choose one singer you like from the drop-down list.</li>
|
205 |
+
<li><b>Input lyrics</b>:
|
206 |
+
<ul>
|
207 |
+
<li>Lyrics use Chinese characters when the language is 'zh' and hiragana when the language is 'jp'.</li>
|
208 |
+
<li>Special characters such as 'AP' (breath), 'SP' (silence), and '-' (slur, only for Chinese lyrics) can also be used.</li>
|
209 |
+
<li>Lyrics sequence should be separated by either a space (' ') or a newline ('\\n'), without the quotation marks.</li>
|
210 |
+
</ul>
|
211 |
+
</li>
|
212 |
+
<li><b>Input durations</b>:
|
213 |
+
<ul>
|
214 |
+
<li>Durations use float number as input.</li>
|
215 |
+
<li>Length of duration sequence should <b>be same as lyric sequence</b>, with each duration corresponding to the respective lyric.</li>
|
216 |
+
<li>Durations sequence should be separated by either a space (' ') or a newline ('\\n'), without the quotation marks.</li>
|
217 |
+
</ul>
|
218 |
+
</li>
|
219 |
+
<li><b>Input pitches</b>:
|
220 |
+
<ul>
|
221 |
+
<li>Pitches use MIDI note or MIDI note number as input. Specially, "69" in MIDI note number represents "A4" in MIDI note.</li>
|
222 |
+
<li>Length of pitch sequence should <b>be same as lyric sequence</b>, with each pitch corresponding to the respective lyric.</li>
|
223 |
+
<li>Pitches sequence should be separated by either a space (' ') or a newline ('\\n'), without the quotation marks.</li>
|
224 |
+
</ul>
|
225 |
+
</li>
|
226 |
+
<li><b>Hit "Generate" and listen to the result!</b></li>
|
227 |
+
</ol>
|
228 |
</div>
|
229 |
|
230 |
<h2>Notice:</h2>
|