parvezalmuqtadir commited on
Commit
4203890
1 Parent(s): f126fc5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -8
app.py CHANGED
@@ -85,17 +85,15 @@ with gr.Blocks() as demo:
85
  "
86
  >
87
  <h1 style="font-weight: 900; margin-bottom: 7px;">
88
- Music Mixing Style Transfer
89
  </h1>
90
  </div>
91
  """
92
  )
93
  gr.Markdown(
94
  """
95
- This page is a Hugging Face interactive demo of the paper ["Music Mixing Style Transfer: A Contrastive Learning Approach to Disentangle Audio Effects"](https://huggingface.co/papers/2211.02247) (ICASSP 2023).
96
- - [project page](https://jhtonykoo.github.io/MixingStyleTransfer/)
97
- - [GitHub](https://github.com/jhtonyKoo/music_mixing_style_transfer)
98
- - [supplementary](https://pale-cicada-946.notion.site/Music-Mixing-Style-Transfer-A-Contrastive-Learning-Approach-to-Disentangle-Audio-Effects-Supplemen-e6eccd9a431a4a8fa4fdd5adb2d3f219)
99
  """
100
  )
101
  with gr.Group():
@@ -154,13 +152,13 @@ with gr.Blocks() as demo:
154
  with gr.Group():
155
  gr.HTML(
156
  """
157
- <div> <h3> <center> Mixing Style Transfer. Perform stem-wise audio-effects style conversion by first source separating the input mix. The inference computation time takes longer as the input samples' duration. so plz be patient... </h3> </div>
158
  """
159
  )
160
  with gr.Column():
161
- inference_btn = gr.Button("Run Mixing Style Transfer")
162
  with gr.Row():
163
- output_mix = gr.Audio(label="mixing style transferred music track")
164
  inference_btn.click(
165
  inference,
166
  inputs=[file_uploaded_in, file_uploaded_ref],
 
85
  "
86
  >
87
  <h1 style="font-weight: 900; margin-bottom: 7px;">
88
+ AI Music Mixing
89
  </h1>
90
  </div>
91
  """
92
  )
93
  gr.Markdown(
94
  """
95
+ This is a Web Application That can mix two songs with the help of GAN.
96
+
 
 
97
  """
98
  )
99
  with gr.Group():
 
152
  with gr.Group():
153
  gr.HTML(
154
  """
155
+ <div> <h3> <center> The inference computation time takes longer as the input samples' duration. so plz be patient... </h3> </div>
156
  """
157
  )
158
  with gr.Column():
159
+ inference_btn = gr.Button("Run Mixing")
160
  with gr.Row():
161
+ output_mix = gr.Audio(label="mixing style music track")
162
  inference_btn.click(
163
  inference,
164
  inputs=[file_uploaded_in, file_uploaded_ref],