OpenSound commited on
Commit
efeffee
1 Parent(s): 7b89552
Files changed (26) hide show
  1. app.py +2 -2
  2. model/__pycache__/attention.cpython-310.pyc +0 -0
  3. model/__pycache__/rotary.cpython-310.pyc +0 -0
  4. model/__pycache__/udit.cpython-310.pyc +0 -0
  5. vae_modules/__pycache__/autoencoder_wrapper.cpython-310.pyc +0 -0
  6. vae_modules/dac/__pycache__/__init__.cpython-310.pyc +0 -0
  7. vae_modules/dac/model/__pycache__/__init__.cpython-310.pyc +0 -0
  8. vae_modules/dac/model/__pycache__/base.cpython-310.pyc +0 -0
  9. vae_modules/dac/model/__pycache__/dac.cpython-310.pyc +0 -0
  10. vae_modules/dac/model/__pycache__/discriminator.cpython-310.pyc +0 -0
  11. vae_modules/dac/nn/__pycache__/__init__.cpython-310.pyc +0 -0
  12. vae_modules/dac/nn/__pycache__/layers.cpython-310.pyc +0 -0
  13. vae_modules/dac/nn/__pycache__/loss.cpython-310.pyc +0 -0
  14. vae_modules/dac/nn/__pycache__/quantize.cpython-310.pyc +0 -0
  15. vae_modules/dac/utils/__pycache__/__init__.cpython-310.pyc +0 -0
  16. vae_modules/stable_vae/__pycache__/__init__.cpython-310.pyc +0 -0
  17. vae_modules/stable_vae/models/__pycache__/autoencoders.cpython-310.pyc +0 -0
  18. vae_modules/stable_vae/models/__pycache__/blocks.cpython-310.pyc +0 -0
  19. vae_modules/stable_vae/models/__pycache__/bottleneck.cpython-310.pyc +0 -0
  20. vae_modules/stable_vae/models/__pycache__/factory.cpython-310.pyc +0 -0
  21. vae_modules/stable_vae/models/__pycache__/pretransforms.cpython-310.pyc +0 -0
  22. vae_modules/stable_vae/models/__pycache__/utils.cpython-310.pyc +0 -0
  23. vae_modules/stable_vae/models/nn/__pycache__/__init__.cpython-310.pyc +0 -0
  24. vae_modules/stable_vae/models/nn/__pycache__/layers.cpython-310.pyc +0 -0
  25. vae_modules/stable_vae/models/nn/__pycache__/loss.cpython-310.pyc +0 -0
  26. 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=4
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