Improve model card for LeVo: High-Quality Song Generation with `text-to-audio` pipeline tag and detailed usage

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +400 -3
README.md CHANGED
@@ -1,3 +1,400 @@
1
- ---
2
- license: unknown
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: unknown
3
+ pipeline_tag: text-to-audio
4
+ ---
5
+
6
+ # LeVo: High-Quality Song Generation with Multi-Preference Alignment
7
+
8
+ <p align="center"><img src="https://github.com/tencent-ailab/songgeneration/raw/main/img/logo.jpg" width="40%"></p>
9
+
10
+ [\ud83d\udcda Paper](https://huggingface.co/papers/2506.07520) - [\ud83c\udfe0 Project Page](https://levo-demo.github.io) - [\ud83d\udcbb Code](https://github.com/tencent-ailab/songgeneration) - [\ud83d\udd25 Demo](https://huggingface.co/spaces/waytan22/SongGeneration-LeVo)
11
+
12
+ This repository is the official repository for β€œLeVo: High-Quality Song Generation with Multi-Preference Alignment” (NeurIPS 2025). In this repository, we provide the SongGeneration model, inference scripts, pretrained checkpoints, and some music generation tools.
13
+
14
+ ## Abstract
15
+ Recent advances in large language models (LLMs) and audio language models have significantly improved music generation, particularly in lyrics-to-song generation. However, existing approaches still struggle with the complex composition of songs and the scarcity of high-quality data, leading to limitations in audio quality, musicality, instruction following, and vocal-instrument harmony. To address these challenges, we introduce LeVo, a language model based framework consisting of LeLM and Music Codec. LeLM is capable of parallel modeling of two types of tokens: mixed tokens, which represent the combined audio of vocals and accompaniment to achieve better vocal-instrument harmony, and dual-track tokens, which separately encode vocals and accompaniment for high-quality song generation. It employs two decoder-only transformers and a modular extension training strategy to prevent interference between different token types. To further enhance musicality and instruction following ability, we introduce a multi-preference alignment method based on Direct Preference Optimization (DPO). This method handles diverse human preferences through a semi-automatic data construction process and post-training. Experimental results demonstrate that LeVo significantly outperforms existing open-source methods in both objective and subjective metrics, while performing competitively with industry systems. Ablation studies further justify the effectiveness of our designs. Audio examples and source code are available at this https URL and this https URL .
16
+
17
+ ## Overview
18
+
19
+ We develop the SongGeneration model. It is an LM-based framework consisting of **LeLM** and a **music codec**. LeLM is capable of parallelly modeling two types of tokens: mixed tokens, which represent the combined audio of vocals and accompaniment to achieve vocal-instrument harmony, and dual-track tokens, which separately encode vocals and accompaniment for high-quality song generation. The music codec reconstructs the dual-track tokens into highfidelity music audio. SongGeneration significantly improves over the open-source music generation models and performs competitively with current state-of-the-art industry systems. For more details, please refer to our [paper](https://huggingface.co/papers/2506.07520).
20
+
21
+ <img src="https://github.com/tencent-ailab/songgeneration/raw/main/img/over.jpg" alt="SongGeneration Overview" style="zoom:100%;" />
22
+
23
+ ## Installation
24
+
25
+ ### Start from scratch
26
+
27
+ You can install the necessary dependencies using the `requirements.txt` file with Python>=3.8.12 and CUDA>=11.8:
28
+
29
+ ```bash
30
+ pip install -r requirements.txt
31
+ pip install -r requirements_nodeps.txt --no-deps
32
+ ```
33
+
34
+ **(Optional)** Then install flash attention from git. For example, if you're using Python 3.10 and CUDA 12.0
35
+
36
+ ```bash
37
+ pip install https://github.com/Dao-AILab/flash-attention/releases/download/v2.7.4.post1/flash_attn-2.7.4.post1+cu12torch2.6cxx11abiFALSE-cp310-cp310-linux_x86_64.whl
38
+ ```
39
+
40
+ ### Start with docker
41
+
42
+ ```bash
43
+ docker pull juhayna/song-generation-levo:hf0613
44
+ docker run -it --gpus all --network=host juhayna/song-generation-levo:hf0613 /bin/bash
45
+ ```
46
+
47
+ ### Other deploy examples
48
+
49
+ - Windows platform with ComfyUI: https://github.com/smthemex/ComfyUI_SongGeneration
50
+ - Windows installer: http://bilibili.com/video/BV1ATK8zQE8L/?vd_source=22cfc54298226c4161b1aff457d17585
51
+ - Quick start with ComfyUI on CNB: https://cnb.cool/tencent/tencent-ailab/examples/SongGeneration-comfyui
52
+
53
+ ## Usage (Inference)
54
+
55
+ To ensure the model runs correctly, **please download all the required folders** from the original source at [Hugging Face collection](https://huggingface.co/collections/lglg666/levo-68d0c3031c370cbfadade126).
56
+
57
+ - Download `ckpt` and `third_party` folder from [Hugging Face](https://huggingface.co/lglg666/SongGeneration-Runtime/tree/main) or [Hugging Face](https://huggingface.co/tencent/SongGeneration/tree/main), and move them into the **root directory** of the project. You can also download models using hugging face-cli.
58
+
59
+ ```bash
60
+ huggingface-cli download lglg666/SongGeneration-Runtime --local-dir ./runtime
61
+ mv runtime/ckpt ckpt
62
+ mv runtime/third_party third_party
63
+ ```
64
+
65
+ - Download the specific model checkpoint and save it to your specified checkpoint directory: `ckpt_path` (We provide multiple versions of model checkpoints. Please select the most suitable version based on your needs and download the corresponding file. Also, ensure the folder name matches the model version name.) You can also download models using hugging face-cli.
66
+
67
+ ```bash
68
+ # download SongGeneration-base
69
+ huggingface-cli download lglg666/SongGeneration-base --local-dir ./songgeneration_base
70
+ # download SongGeneration-base-new
71
+ huggingface-cli download lglg666/SongGeneration-base-new --local-dir ./songgeneration_base_new
72
+ # download SongGeneration-base-full
73
+ huggingface-cli download lglg666/SongGeneration-base-full --local-dir ./songgeneration_base_full
74
+ # download SongGeneration-large
75
+ huggingface-cli download lglg666/SongGeneration-large --local-dir ./songgeneration_large
76
+ ```
77
+
78
+ Once everything is set up, you can run the inference script using the following command:
79
+
80
+ ```bash
81
+ sh generate.sh ckpt_path lyrics.jsonl output_path
82
+ ```
83
+
84
+ - You may provides sample inputs in JSON Lines (`.jsonl`) format. Each line represents an individual song generation request. The model expects each input to contain the following fields:
85
+
86
+ - `idx`: A unique identifier for the output song. It will be used as the name of the generated audio file.
87
+ - `gt_lyric`:The lyrics to be used in generation. It must follow the format of `[Structure] Text`, where `Structure` defines the musical section (e.g., `[Verse]`, `[Chorus]`). See Input Guide.
88
+ - `descriptions` : (Optional) You may customize the text prompt to guide the model’s generation. This can include attributes like gender, timbre, genre, emotion, instrument, and BPM. See Input Guide.
89
+ - `prompt_audio_path`: (Optional) Path to a 10-second reference audio file. If provided, the model will generate a new song in a similar style to the given reference.
90
+
91
+ - `auto_prompt_audio_type`: (Optional) Used only if `prompt_audio_path` is not provided. This allows the model to automatically select a reference audio from a predefined library based on a given style. Supported values include:
92
+ - `'Pop'`, `'R&B'`, `'Dance'`, `'Jazz'`, `'Folk'`, `'Rock'`,`'Chinese Style'`, `'Chinese Tradition'`, `'Metal'`, `'Reggae'`, `'Chinese Opera'`, `'Auto'`.
93
+ - **Note:** If certain optional fields are not required, they can be omitted.
94
+
95
+ - Outputs of the loader `output_path`:
96
+
97
+ - `audio`: generated audio files
98
+ - `jsonl`: output jsonls
99
+
100
+ - An example command may look like:
101
+
102
+ ```bash
103
+ sh generate.sh songgeneration_base sample/lyrics.jsonl sample/output
104
+ ```
105
+
106
+ If you encounter **out-of-memory (OOM**) issues, you can manually enable low-memory inference mode using the `--low_mem` flag. For example:
107
+
108
+ ```bash
109
+ sh generate.sh ckpt_path lyrics.jsonl output_path --low_mem
110
+ ```
111
+
112
+ If your GPU device does **not support Flash Attention** or your environment does **not have Flash Attention installed**, you can disable it by adding the `--not_use_flash_attn` flag. For example:
113
+
114
+ ```bash
115
+ sh generate.sh ckpt_path lyrics.jsonl output_path --not_use_flash_attn
116
+ ```
117
+
118
+ By default, the model generates **songs with both vocals and accompaniment**. If you want to generate **pure music**, **pure vocals**, or **separated vocal and accompaniment tracks**, please use the following flags:
119
+
120
+ - `--bgm`  Generate **pure music**
121
+ - `--vocal` Generate **vocal-only (a cappella)**
122
+ - `--separate` Generate **separated vocal and accompaniment tracks**
123
+
124
+ For example:
125
+
126
+ ```bash
127
+ sh generate.sh ckpt_path lyrics.jsonl output_path --separate
128
+ ```
129
+
130
+ ## Input Guide
131
+
132
+ An example input file can be found in `sample/lyrics.jsonl`
133
+
134
+ ### 🎡 Lyrics Input Format
135
+
136
+ The `gt_lyric` field defines the lyrics and structure of the song. It consists of multiple musical section, each starting with a structure label. The model uses these labels to guide the musical and lyrical progression of the generated song.
137
+
138
+ #### πŸ“Œ Structure Labels
139
+
140
+ - The following segments **should not** contain lyrics (they are purely instrumental):
141
+
142
+ - `[intro-short]`, `[intro-medium]`, `[inst-short]`, `[inst-medium]`, `[outro-short]`, `[outro-medium]`
143
+
144
+ > - `short` indicates a segment of approximately 0–10 seconds
145
+ > - `medium` indicates a segment of approximately 10–20 seconds
146
+ > - We find that [inst] label is less stable, so we recommend that you do not use it.
147
+
148
+ - The following segments **require lyrics**:
149
+
150
+ - `[verse]`, `[chorus]`, `[bridge]`
151
+
152
+ #### 🧾 Lyrics Formatting Rules
153
+
154
+ - Each section is **separated by ` ; `**
155
+
156
+ - Within lyrical segments (`[verse]`, `[chorus]`, `[bridge]`), lyrics must be written in complete sentences and separated by a period (`.`)
157
+
158
+ - A complete lyric string may look like:
159
+
160
+ ```
161
+ [intro-short] ; [verse] These faded memories of us. I can't erase the tears you cried before. Unchained this heart to find its way. My peace won't beg you to stay ; [bridge] If ever your truth still remains. Turn around and see. Life rearranged its games. All these lessons in mistakes. Even years may never erase ; [inst-short] ; [chorus] Like a fool begs for supper. I find myself waiting for her. Only to find the broken pieces of my heart. That was needed for my soul to love again ; [outro-short]
162
+ ```
163
+
164
+ - More examples can be found in `sample/test_en_input.jsonl` and `sample/test_zh_input.jsonl`.
165
+
166
+ ### πŸ“ Description Input Format
167
+
168
+ The `descriptions` field allows you to control various musical attributes of the generated song. It can describe up to six musical dimensions: **Gender** (e.g., male, female), **Timbre** (e.g., dark, bright, soft), **Genre** (e.g., pop, jazz, rock), **Emotion** (e.g., sad, energetic, romantic), **Instrument** (e.g., piano, drums, guitar), **BPM** (e.g., the bpm is 120).
169
+
170
+ - All six dimensions are optional β€” you can specify any subset of them.
171
+
172
+ - The order of dimensions is flexible.
173
+
174
+ - Use **commas (`,`)** to separate different attributes.
175
+
176
+ - Although the model supports open vocabulary, we recommend using predefined tags for more stable and reliable performance. A list of commonly supported tags for each dimension is available in the `sample/description/` folder.
177
+
178
+ - Here are a few valid `descriptions` inputs:
179
+
180
+ ```
181
+ - female, dark, pop, sad, piano and drums.
182
+ - male, piano, jazz.
183
+ - male, dark, the bpm is 110.
184
+ ```
185
+
186
+ ### 🎧Prompt Audio Usage Notes
187
+
188
+ - The input audio file can be longer than 10 seconds, but only the first 10 seconds will be used.
189
+ - For best musicality and structure, it is recommended to use the chorus section of a song as the prompt audio.
190
+ - You can use this field to influence genre, instrumentation, rhythm, and voice
191
+
192
+ #### ⚠️ Important Considerations
193
+
194
+ - **Avoid providing both `prompt_audio_path` and `descriptions` at the same time.**
195
+ If both are present, and they convey conflicting information, the model may struggle to follow instructions accurately, resulting in degraded generation quality.
196
+ - If `prompt_audio_path` is not provided, you can instead use `auto_prompt_audio_type` for automatic reference selection.
197
+
198
+ ## Gradio UI
199
+
200
+ You can start up the UI with the following command:
201
+
202
+ ```bash
203
+ sh tools/gradio/run.sh ckpt_path
204
+ ```
205
+
206
+ ## Evaluation Performance
207
+
208
+ ### Chinese
209
+
210
+ <table>
211
+ <tr>
212
+ <th rowspan="2">Model</th>
213
+ <th rowspan="2">Open-Source</th>
214
+ <th rowspan="2">PER↓</th>
215
+ <th colspan="4" style="text-align:center;">Audiobox Aesthetics ↑</th>
216
+ <th colspan="5" style="text-align:center;">SongEval ↑</th>
217
+ </tr>
218
+ <tr>
219
+ <th>CE</th><th>CU</th><th>PC</th><th>PQ</th>
220
+ <th>COH</th><th>MUS</th><th>MEM</th><th>CLA</th><th>NAT</th>
221
+ </tr>
222
+ <tr>
223
+ <td>Suno</td>
224
+ <td>❌</td>
225
+ <td>21.6%</td>
226
+ <td>7.65</td><td>7.86</td><td>5.94</td><td>8.35</td>
227
+ <td><b>4.41</b></td><td><b>4.34</b></td><td><b>4.44</b></td><td><b>4.38</b></td><td><b>4.26</b></td>
228
+ </tr>
229
+ <tr>
230
+ <td>Mureka</td>
231
+ <td>❌</td>
232
+ <td>7.2%</td>
233
+ <td>7.71</td><td>7.83</td><td><b>6.39</b></td><td><b>8.44</b></td>
234
+ <td>4.01</td><td>3.85</td><td>3.73</td><td>3.87</td><td>3.75</td>
235
+ </tr>
236
+ <tr>
237
+ <td>Haimian</td>
238
+ <td>❌</td>
239
+ <td>11.8%</td>
240
+ <td>7.56</td><td>7.85</td><td>5.89</td><td>8.27</td>
241
+ <td>3.69</td><td>3.43</td><td>3.51</td><td>3.52</td><td>3.34</td>
242
+ </tr>
243
+ <tr>
244
+ <td>ACE-Step</td>
245
+ <td>βœ…</td>
246
+ <td>37.1%</td>
247
+ <td>7.37</td><td>7.52</td><td><b>6.26</b></td><td>7.85</td>
248
+ <td>3.68</td><td>3.45</td><td>3.54</td><td>3.48</td><td>3.38</td>
249
+ </tr>
250
+ <tr>
251
+ <td>Diffrhythm-v1,2</td>
252
+ <td>βœ…</td>
253
+ <td>8.78%</td>
254
+ <td>6.91</td><td>7.45</td><td>5.45</td><td>7.99</td>
255
+ <td>2.93</td><td>2.60</td><td>2.70</td><td>2.71</td><td>2.60</td>
256
+ </tr>
257
+ <tr>
258
+ <td>YUE</td>
259
+ <td>βœ…</td>
260
+ <td>14.9%</td>
261
+ <td>7.29</td><td>7.53</td><td>6.19</td><td>7.96</td>
262
+ <td>3.68</td><td>3.43</td><td>3.49</td><td>3.49</td><td>3.42</td>
263
+ </tr>
264
+ <tr>
265
+ <td>SongGeneration-base</td>
266
+ <td>βœ…</td>
267
+ <td>7.2%</td>
268
+ <td>7.78</td><td>7.90</td><td>6.03</td><td>8.42</td>
269
+ <td>3.96</td><td>3.80</td><td>3.85</td><td>3.74</td><td>3.71</td>
270
+ </tr>
271
+ <tr>
272
+ <td>SongGeneration-base-new</td>
273
+ <td>βœ…</td>
274
+ <td><b>5.7%</b></td>
275
+ <td><b>7.82</b></td><td><b>7.94</b></td><td>6.07</td><td>8.43</td>
276
+ <td>4.07</td><td>3.92</td><td>3.98</td><td>3.93</td><td>3.86</td>
277
+ </tr>
278
+ <tr>
279
+ <td>SongGeneration-base-full</td>
280
+ <td>βœ…</td>
281
+ <td>8.4%</td>
282
+ <td><b>7.81</b></td><td><b>7.94</b></td><td>6.07</td><td>8.41</td>
283
+ <td>4.02</td><td>3.88</td><td>3.94</td><td>3.87</td><td>3.80</td>
284
+ </tr>
285
+ <tr>
286
+ <td>SongGeneration-large</td>
287
+ <td>βœ…</td>
288
+ <td><b>5.1%</b></td>
289
+ <td><b>7.82</b></td><td><b>7.95</b></td><td>6.09</td><td><b>8.46</b></td>
290
+ <td><b>4.08</b></td><td><b>3.94</b></td><td><b>4.00</b></td><td><b>3.94</b></td><td><b>3.87</b></td>
291
+ </tr>
292
+ </table>
293
+
294
+ ### English
295
+
296
+ <table>
297
+ <tr>
298
+ <th rowspan="2">Model</th>
299
+ <th rowspan="2">Open-Source</th>
300
+ <th rowspan="2">PER↓</th>
301
+ <th colspan="4" style="text-align:center;">Audiobox Aesthetics ↑</th>
302
+ <th colspan="5" style="text-align:center;">SongEval ↑</th>
303
+ </tr>
304
+ <tr>
305
+ <th>CE</th><th>CU</th><th>PC</th><th>PQ</th>
306
+ <th>COH</th><th>MUS</th><th>MEM</th><th>CLA</th><th>NAT</th>
307
+ </tr>
308
+ <tr>
309
+ <td>Suno</td>
310
+ <td>❌</td>
311
+ <td>15.6%</td>
312
+ <td>7.64</td><td>7.85</td><td>5.84</td><td>8.19</td>
313
+ <td><b>4.49</b></td><td><b>4.35</b></td><td><b>4.47</b></td><td><b>4.35</b></td><td><b>4.23</b></td>
314
+ </tr>
315
+ <tr>
316
+ <td>Mureka</td>
317
+ <td>❌</td>
318
+ <td><b>12.6%</b></td>
319
+ <td>7.71</td><td>7.93</td><td><b>6.46</b></td><td>8.39</td>
320
+ <td>4.06</td><td>3.88</td><td>3.90</td><td>3.90</td><td>3.73</td>
321
+ </tr>
322
+ <tr>
323
+ <td>Haimian</td>
324
+ <td>❌</td>
325
+ <td>26.6%</td>
326
+ <td><b>7.85</b></td><td><b>8.01</b></td><td>5.28</td><td><b>8.44</b></td>
327
+ <td>3.83</td><td>3.68</td><td>3.71</td><td>3.61</td><td>3.45</td>
328
+ </tr>
329
+ <tr>
330
+ <td>ACE-Step</td>
331
+ <td>βœ…</td>
332
+ <td>32.1%</td>
333
+ <td>7.19</td><td>7.37</td><td>6.16</td><td>7.57</td>
334
+ <td>3.59</td><td>3.34</td><td>3.43</td><td>3.36</td><td>3.27</td>
335
+ </tr>
336
+ <tr>
337
+ <td>Diffrhythm-v1.2</td>
338
+ <td>βœ…</td>
339
+ <td>17.8%</td>
340
+ <td>7.02</td><td>7.58</td><td>5.96</td><td>7.81</td>
341
+ <td>3.51</td><td>3.12</td><td>3.32</td><td>3.21</td><td>3.08</td>
342
+ </tr>
343
+ <tr>
344
+ <td>YUE</td>
345
+ <td>βœ…</td>
346
+ <td>27.3%</td>
347
+ <td>7.04</td><td>7.22</td><td>5.89</td><td>7.67</td>
348
+ <td>3.58</td><td>3.24</td><td>3.42</td><td>3.37</td><td>3.30</td>
349
+ </tr>
350
+ <tr>
351
+ <td>SongGeneration-base</td>
352
+ <td>βœ…</td>
353
+ <td>-</td>
354
+ <td>-</td><td>-</td><td>-</td><td>-</td>
355
+ <td>-</td><td>-</td><td>-</td><td>-</td><td>-</td>
356
+ </tr>
357
+ <tr>
358
+ <td>SongGeneration-base-new</td>
359
+ <td>βœ…</td>
360
+ <td>16.2%</td>
361
+ <td><b>7.78</b></td><td>7.97</td><td>6.03</td><td>8.37</td>
362
+ <td>4.05</td><td>3.90</td><td>3.99</td><td>3.91</td><td>3.79</td>
363
+ </tr>
364
+ <tr>
365
+ <td>SongGeneration-base-full</td>
366
+ <td>βœ…</td>
367
+ <td>20.1%</td>
368
+ <td>7.76</td><td>7.98</td><td>5.96</td><td>8.39</td>
369
+ <td>4.02</td><td>3.87</td><td>3.97</td><td>3.86</td><td>3.74</td>
370
+ </tr>
371
+ <tr>
372
+ <td>SongGeneration-large</td>
373
+ <td>βœ…</td>
374
+ <td><b>14.9%</b></td>
375
+ <td><b>7.85</b></td><td><b>8.05</b></td><td><b>6.17</b></td><td><b>8.46</b></td>
376
+ <td><b>4.08</b></td><td><b>3.94</b></td><td><b>4.03</b></td><td><b>3.93</b></td><td><b>3.82</b></td>
377
+ </tr>
378
+ </table>
379
+
380
+ ### Notes
381
+
382
+ 1. The evaluation results of SongGeneration are based on **200 generated songs**, including **100 using descriptions** and **100 using `auto_prompt_audio_type=Auto`**. We also provide **40 English** and **40 Chinese** example inputs in
383
+ `sample/test_en_input.jsonl` and `sample/test_zh_input.jsonl` for reference.
384
+ 2. Since the model attempts to clone the timbre and musical style of the given prompt audio, the choice of prompt audio can significantly affect generation performance, and may lead to fluctuations in the evaluation metrics.
385
+ 3. The format of the input lyrics has a strong impact on generation quality. If the output quality appears suboptimal, please check whether your lyrics format is correct. You can find more examples of properly formatted inputs in `sample/test_en_input.jsonl` and `sample/test_zh_input.jsonl`.
386
+
387
+ ## Citation
388
+
389
+ ```bibtex
390
+ @article{lei2025levo,
391
+ title={LeVo: High-Quality Song Generation with Multi-Preference Alignment},
392
+ author={Lei, Shun and Xu, Yaoxun and Lin, Zhiwei and Zhang, Huaicheng and Tan, Wei and Chen, Hangting and Yu, Jianwei and Zhang, Yixuan and Yang, Chenyu and Zhu, Haina and Wang, Shuai and Wu, Zhiyong and Yu, Dong},
393
+ journal={arXiv preprint arXiv:2506.07520},
394
+ year={2025}
395
+ }
396
+ ```
397
+
398
+ ## License
399
+
400
+ The code and weights in this repository is released in the [LICENSE](https://github.com/tencent-ailab/songgeneration/blob/main/LICENSE) file.