Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -164,15 +164,32 @@ def update_ito_output(all_results, selected_step):
|
|
| 164 |
|
| 165 |
""" APP display """
|
| 166 |
with gr.Blocks() as demo:
|
| 167 |
-
gr.Markdown("# ITO-Master: Inference Time Optimization for Mastering Style Transfer")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 168 |
with gr.Row():
|
| 169 |
-
gr.Markdown("Interactive demo of Inference Time Optimization (ITO) for Audio Effects Modeling of Music Mastering Processors. (ISMIR 2025) \
|
| 170 |
-
The mastering style transfer is performed by a differentiable audio processing model, and the predicted parameters are shown as the output. \
|
| 171 |
-
Perform mastering style transfer with an input source audio and a reference mastering style audio. On top of this result, you can perform ITO to optimize the reference embedding $z_{ref}$ to further gain control over the output mastering style.\n\n"
|
| 172 |
-
"**🔗 GitHub Source Code:** [SonyResearch/ITO-Master](https://github.com/SonyResearch/ITO-Master)"
|
| 173 |
-
)
|
| 174 |
gr.Image("ito_new.png", width=500, height=300, label="ITO pipeline")
|
| 175 |
|
|
|
|
| 176 |
gr.Markdown("## Step 1: Mastering Style Transfer")
|
| 177 |
|
| 178 |
with gr.Tab("Upload Audio"):
|
|
|
|
| 164 |
|
| 165 |
""" APP display """
|
| 166 |
with gr.Blocks() as demo:
|
| 167 |
+
# gr.Markdown("# ITO-Master: Inference Time Optimization for Mastering Style Transfer")
|
| 168 |
+
# with gr.Row():
|
| 169 |
+
# gr.Markdown("Interactive demo of **ITO-Master: Inference Time Optimization for Audio Effects Modeling of Music Mastering Processors**. (ISMIR 2025) \
|
| 170 |
+
# The mastering style transfer is performed by a differentiable audio processing model, and the predicted parameters are shown as the output. \
|
| 171 |
+
# Perform mastering style transfer with an input source audio and a reference mastering style audio. On top of this result, you can perform ITO to optimize the reference embedding $z_{ref}$ to further gain control over the output mastering style.\n\n"
|
| 172 |
+
# "**🔗 GitHub Source Code:** [SonyResearch/ITO-Master](https://github.com/SonyResearch/ITO-Master)"
|
| 173 |
+
# )
|
| 174 |
+
# gr.Image("ito_new.png", width=500, height=300, label="ITO pipeline")
|
| 175 |
+
gr.HTML("""
|
| 176 |
+
<script type="text/javascript"
|
| 177 |
+
async
|
| 178 |
+
src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js">
|
| 179 |
+
</script>
|
| 180 |
+
<h1>ITO-Master: Inference Time Optimization for Mastering Style Transfer</h1>
|
| 181 |
+
<p>
|
| 182 |
+
Interactive demo of <strong>ITO-Master: Inference Time Optimization for Audio Effects Modeling of Music Mastering Processors</strong>. (ISMIR 2025).
|
| 183 |
+
The mastering style transfer is performed by a differentiable audio processing model, and the predicted parameters are shown as the output.
|
| 184 |
+
Perform mastering style transfer with an input source audio and a reference mastering style audio.
|
| 185 |
+
On top of this result, you can perform ITO to optimize the reference embedding \( z_{ref} \) to further gain control over the output mastering style.
|
| 186 |
+
</p>
|
| 187 |
+
<p><strong>🔗 GitHub Source Code:</strong> <a href="https://github.com/SonyResearch/ITO-Master" target="_blank">SonyResearch/ITO-Master</a></p>
|
| 188 |
+
""")
|
| 189 |
with gr.Row():
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 190 |
gr.Image("ito_new.png", width=500, height=300, label="ITO pipeline")
|
| 191 |
|
| 192 |
+
|
| 193 |
gr.Markdown("## Step 1: Mastering Style Transfer")
|
| 194 |
|
| 195 |
with gr.Tab("Upload Audio"):
|