Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -172,24 +172,44 @@ with gr.Blocks() as demo:
|
|
| 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 |
-
|
| 177 |
-
|
| 178 |
-
|
| 179 |
-
|
| 180 |
-
|
| 181 |
-
|
| 182 |
-
|
| 183 |
-
|
| 184 |
-
|
| 185 |
-
|
| 186 |
-
|
| 187 |
-
|
| 188 |
-
""")
|
|
|
|
|
|
|
|
|
|
| 189 |
with gr.Row():
|
| 190 |
-
gr.
|
| 191 |
-
|
| 192 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 193 |
gr.Markdown("## Step 1: Mastering Style Transfer")
|
| 194 |
|
| 195 |
with gr.Tab("Upload Audio"):
|
|
|
|
| 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 |
+
gr.Markdown("# ITO-Master: Inference Time Optimization for Audio Effects Modeling of Music Mastering Processors (ISMIR 2025)")
|
| 192 |
with gr.Row():
|
| 193 |
+
with gr.Column(scale=2):
|
| 194 |
+
gr.HTML("""
|
| 195 |
+
<!-- Load MathJax -->
|
| 196 |
+
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
|
| 197 |
+
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
|
| 198 |
+
|
| 199 |
+
<p>
|
| 200 |
+
Interactive demo of Inference Time Optimization (ITO) for Music Mastering Style Transfer.
|
| 201 |
+
The mastering style transfer is performed by a differentiable audio processing model, and the predicted parameters are shown as the output.
|
| 202 |
+
Perform mastering style transfer with an input source audio and a reference mastering style audio.
|
| 203 |
+
On top of this result, you can perform ITO to optimize the reference embedding \\( z_{\\text{ref}} \\) to further gain control over the output mastering style.
|
| 204 |
+
</p>
|
| 205 |
+
<p>
|
| 206 |
+
<strong>π GitHub Source Code:</strong>
|
| 207 |
+
<a href="https://github.com/SonyResearch/ITO-Master" target="_blank">SonyResearch/ITO-Master</a>
|
| 208 |
+
</p>
|
| 209 |
+
""")
|
| 210 |
+
with gr.Column(scale=1):
|
| 211 |
+
gr.Image("ito_new.png", width=500, height=300, label="ITO pipeline")
|
| 212 |
+
|
| 213 |
gr.Markdown("## Step 1: Mastering Style Transfer")
|
| 214 |
|
| 215 |
with gr.Tab("Upload Audio"):
|