111
Browse files- app.py +2 -2
- model/__pycache__/attention.cpython-310.pyc +0 -0
- model/__pycache__/rotary.cpython-310.pyc +0 -0
- model/__pycache__/udit.cpython-310.pyc +0 -0
- vae_modules/__pycache__/autoencoder_wrapper.cpython-310.pyc +0 -0
- vae_modules/dac/__pycache__/__init__.cpython-310.pyc +0 -0
- vae_modules/dac/model/__pycache__/__init__.cpython-310.pyc +0 -0
- vae_modules/dac/model/__pycache__/base.cpython-310.pyc +0 -0
- vae_modules/dac/model/__pycache__/dac.cpython-310.pyc +0 -0
- vae_modules/dac/model/__pycache__/discriminator.cpython-310.pyc +0 -0
- vae_modules/dac/nn/__pycache__/__init__.cpython-310.pyc +0 -0
- vae_modules/dac/nn/__pycache__/layers.cpython-310.pyc +0 -0
- vae_modules/dac/nn/__pycache__/loss.cpython-310.pyc +0 -0
- vae_modules/dac/nn/__pycache__/quantize.cpython-310.pyc +0 -0
- vae_modules/dac/utils/__pycache__/__init__.cpython-310.pyc +0 -0
- vae_modules/stable_vae/__pycache__/__init__.cpython-310.pyc +0 -0
- vae_modules/stable_vae/models/__pycache__/autoencoders.cpython-310.pyc +0 -0
- vae_modules/stable_vae/models/__pycache__/blocks.cpython-310.pyc +0 -0
- vae_modules/stable_vae/models/__pycache__/bottleneck.cpython-310.pyc +0 -0
- vae_modules/stable_vae/models/__pycache__/factory.cpython-310.pyc +0 -0
- vae_modules/stable_vae/models/__pycache__/pretransforms.cpython-310.pyc +0 -0
- vae_modules/stable_vae/models/__pycache__/utils.cpython-310.pyc +0 -0
- vae_modules/stable_vae/models/nn/__pycache__/__init__.cpython-310.pyc +0 -0
- vae_modules/stable_vae/models/nn/__pycache__/layers.cpython-310.pyc +0 -0
- vae_modules/stable_vae/models/nn/__pycache__/loss.cpython-310.pyc +0 -0
- vae_modules/stable_vae/models/nn/__pycache__/quantize.cpython-310.pyc +0 -0
app.py
CHANGED
@@ -154,7 +154,7 @@ with gr.Blocks(css=css, theme=gr.themes.Soft()) as demo:
|
|
154 |
with gr.Tab("Target Sound Extraction"):
|
155 |
# Basic Input: Text prompt
|
156 |
with gr.Row():
|
157 |
-
gt_file_input = gr.Audio(label="Upload Audio to Extract", type="filepath", value="demo/0_mix.wav")
|
158 |
text_input = gr.Textbox(
|
159 |
label="Text Prompt",
|
160 |
show_label=True,
|
@@ -162,7 +162,7 @@ with gr.Blocks(css=css, theme=gr.themes.Soft()) as demo:
|
|
162 |
placeholder="Enter your prompt",
|
163 |
container=True,
|
164 |
value="The sound of gunshot",
|
165 |
-
scale=
|
166 |
)
|
167 |
# Run button
|
168 |
run_button = gr.Button("Extract", scale=1)
|
|
|
154 |
with gr.Tab("Target Sound Extraction"):
|
155 |
# Basic Input: Text prompt
|
156 |
with gr.Row():
|
157 |
+
gt_file_input = gr.Audio(label="Upload Audio to Extract", type="filepath", value="demo/0_mix.wav", scale=3)
|
158 |
text_input = gr.Textbox(
|
159 |
label="Text Prompt",
|
160 |
show_label=True,
|
|
|
162 |
placeholder="Enter your prompt",
|
163 |
container=True,
|
164 |
value="The sound of gunshot",
|
165 |
+
scale=2
|
166 |
)
|
167 |
# Run button
|
168 |
run_button = gr.Button("Extract", scale=1)
|
model/__pycache__/attention.cpython-310.pyc
ADDED
Binary file (4.32 kB). View file
|
|
model/__pycache__/rotary.cpython-310.pyc
ADDED
Binary file (2.76 kB). View file
|
|
model/__pycache__/udit.cpython-310.pyc
ADDED
Binary file (16.4 kB). View file
|
|
vae_modules/__pycache__/autoencoder_wrapper.cpython-310.pyc
ADDED
Binary file (2.34 kB). View file
|
|
vae_modules/dac/__pycache__/__init__.cpython-310.pyc
ADDED
Binary file (451 Bytes). View file
|
|
vae_modules/dac/model/__pycache__/__init__.cpython-310.pyc
ADDED
Binary file (292 Bytes). View file
|
|
vae_modules/dac/model/__pycache__/base.cpython-310.pyc
ADDED
Binary file (7.19 kB). View file
|
|
vae_modules/dac/model/__pycache__/dac.cpython-310.pyc
ADDED
Binary file (10.6 kB). View file
|
|
vae_modules/dac/model/__pycache__/discriminator.cpython-310.pyc
ADDED
Binary file (7.99 kB). View file
|
|
vae_modules/dac/nn/__pycache__/__init__.cpython-310.pyc
ADDED
Binary file (227 Bytes). View file
|
|
vae_modules/dac/nn/__pycache__/layers.cpython-310.pyc
ADDED
Binary file (1.45 kB). View file
|
|
vae_modules/dac/nn/__pycache__/loss.cpython-310.pyc
ADDED
Binary file (11.6 kB). View file
|
|
vae_modules/dac/nn/__pycache__/quantize.cpython-310.pyc
ADDED
Binary file (8.66 kB). View file
|
|
vae_modules/dac/utils/__pycache__/__init__.cpython-310.pyc
ADDED
Binary file (2.84 kB). View file
|
|
vae_modules/stable_vae/__pycache__/__init__.cpython-310.pyc
ADDED
Binary file (1.2 kB). View file
|
|
vae_modules/stable_vae/models/__pycache__/autoencoders.cpython-310.pyc
ADDED
Binary file (17.9 kB). View file
|
|
vae_modules/stable_vae/models/__pycache__/blocks.cpython-310.pyc
ADDED
Binary file (11.8 kB). View file
|
|
vae_modules/stable_vae/models/__pycache__/bottleneck.cpython-310.pyc
ADDED
Binary file (10.2 kB). View file
|
|
vae_modules/stable_vae/models/__pycache__/factory.cpython-310.pyc
ADDED
Binary file (3.95 kB). View file
|
|
vae_modules/stable_vae/models/__pycache__/pretransforms.cpython-310.pyc
ADDED
Binary file (8.26 kB). View file
|
|
vae_modules/stable_vae/models/__pycache__/utils.cpython-310.pyc
ADDED
Binary file (1.65 kB). View file
|
|
vae_modules/stable_vae/models/nn/__pycache__/__init__.cpython-310.pyc
ADDED
Binary file (241 Bytes). View file
|
|
vae_modules/stable_vae/models/nn/__pycache__/layers.cpython-310.pyc
ADDED
Binary file (1.47 kB). View file
|
|
vae_modules/stable_vae/models/nn/__pycache__/loss.cpython-310.pyc
ADDED
Binary file (11.7 kB). View file
|
|
vae_modules/stable_vae/models/nn/__pycache__/quantize.cpython-310.pyc
ADDED
Binary file (8.68 kB). View file
|
|