Spaces:
Running
Running
admin
commited on
Commit
Β·
28e7060
1
Parent(s):
816d023
fix cite
Browse files
app.py
CHANGED
@@ -480,22 +480,22 @@ if __name__ == "__main__":
|
|
480 |
label="The emotion to which the current template belongs",
|
481 |
)
|
482 |
save_btn = gr.Button("Save template")
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
|
500 |
with gr.Column():
|
501 |
wav_audio = gr.Audio(label="Audio", type="filepath")
|
|
|
480 |
label="The emotion to which the current template belongs",
|
481 |
)
|
482 |
save_btn = gr.Button("Save template")
|
483 |
+
gr.Markdown(
|
484 |
+
"""
|
485 |
+
## Cite
|
486 |
+
```bibtex
|
487 |
+
@inproceedings{Zhou2025EMelodyGen,
|
488 |
+
title = {EMelodyGen: Emotion-Conditioned Melody Generation in ABC Notation with the Musical Feature Template},
|
489 |
+
author = {Monan Zhou and Xiaobing Li and Feng Yu and Wei Li},
|
490 |
+
month = {Mar},
|
491 |
+
year = {2025},
|
492 |
+
publisher = {GitHub},
|
493 |
+
version = {0.1},
|
494 |
+
url = {https://github.com/monetjoe/EMelodyGen}
|
495 |
+
}
|
496 |
+
```
|
497 |
+
"""
|
498 |
+
)
|
499 |
|
500 |
with gr.Column():
|
501 |
wav_audio = gr.Audio(label="Audio", type="filepath")
|