admin commited on
Commit
44e2590
·
1 Parent(s): e71064e
Files changed (1) hide show
  1. app.py +24 -13
app.py CHANGED
@@ -156,11 +156,6 @@ def save_template(label: str, pitch_std: str, mode: str, tempo: int, octave: int
156
 
157
  if __name__ == "__main__":
158
  with gr.Blocks() as demo:
159
- if EN_US:
160
- gr.Markdown(
161
- "## The current CPU-based version on HuggingFace has slow inference, you can access the GPU-based mirror on [ModelScope](https://www.modelscope.cn/studios/monetjoe/EMelodyGen)"
162
- )
163
-
164
  with gr.Row():
165
  with gr.Column():
166
  with gr.Accordion(label=_L("Additional info & option"), open=False):
@@ -173,15 +168,31 @@ if __name__ == "__main__":
173
  gr.Markdown(
174
  f"## {_L('Cite')}"
175
  + """
 
 
 
 
 
 
 
 
 
 
 
 
 
176
  ```bibtex
177
- @misc{zhou2025emelodygenemotionconditionedmelodygeneration,
178
- title = {EMelodyGen: Emotion-Conditioned Melody Generation in ABC Notation with the Musical Feature Template},
179
- author = {Monan Zhou and Xiaobing Li and Feng Yu and Wei Li},
180
- year = {2025},
181
- eprint = {2309.13259},
182
- archiveprefix = {arXiv},
183
- primaryclass = {cs.IR},
184
- url = {https://arxiv.org/abs/2309.13259}
 
 
 
185
  }
186
  ```"""
187
  )
 
156
 
157
  if __name__ == "__main__":
158
  with gr.Blocks() as demo:
 
 
 
 
 
159
  with gr.Row():
160
  with gr.Column():
161
  with gr.Accordion(label=_L("Additional info & option"), open=False):
 
168
  gr.Markdown(
169
  f"## {_L('Cite')}"
170
  + """
171
+ ### AIART
172
+ ```bibtex
173
+ @inproceedings{11152266,
174
+ author = {Zhou, Monan and Li, Xiaobing and Yu, Feng and Li, Wei},
175
+ booktitle = {2025 IEEE International Conference on Multimedia and Expo Workshops (ICMEW)},
176
+ title = {EMelodyGen: Emotion-Conditioned Melody Generation in ABC Notation with the Musical Feature Template},
177
+ year = {2025},
178
+ pages = {1-6},
179
+ keywords = {Correlation;Codes;Conferences;Confusion matrices;Music;Psychology;Data augmentation;Complexity theory;Reliability;Melody generation;controllable music generation;ABC notation;emotional condition},
180
+ doi = {10.1109/ICMEW68306.2025.11152266}
181
+ }
182
+
183
+ ### TAI
184
  ```bibtex
185
+ @article{zhou_li_yu_li_2025,
186
+ title = {EMelodyGen: Emotion-Conditioned Melody Generation in ABC Notation with Musical Feature Templates},
187
+ volume = {1},
188
+ issn = {2982-3439},
189
+ doi = {10.53941/tai.2025.100013},
190
+ number = {1},
191
+ journal = {Transactions on Artificial Intelligence},
192
+ publisher = {Scilight Press},
193
+ author = {Zhou, Monan and Li, Xiaobing and Yu, Feng and Li, Wei},
194
+ year = {2025},
195
+ pages = {199–211}
196
  }
197
  ```"""
198
  )