mrolando commited on
Commit
6cee433
1 Parent(s): f651720

fixed space

Browse files
Files changed (1) hide show
  1. app.py +10 -8
app.py CHANGED
@@ -46,7 +46,9 @@ def translate_text(text):
46
  return result[0]['translation_text']
47
 
48
 
49
- def generate_sound(text,steps,audio_length,negative_prompt):
 
 
50
  print(text)
51
  text = translate_text(text)
52
  negative_prompt = translate_text(negative_prompt)
@@ -82,18 +84,18 @@ with gr.Blocks(title="Uso de AI para la generación de sonidos a partir de texto
82
  with gr.Row():
83
  with gr.Accordion("Opciones avanzadas", open=False): #Let's hide the advanced options!
84
  negative_prompt = gr.Textbox(label="Texto negativo para la generación", info='Al ingresar texto en este campo el modelo intentará alejarse lo mas posible del mismo, este puede ser "baja calidad"')
85
- with gr.Row():
86
- with gr.Column():
87
- audio_len = gr.Slider(label="Duración del sonido", minimum=1, maximum=30, value=5, step = 1,
88
- info="Cuánto mayor sonido, mayor será el tiempo de procesamiento.")
89
- steps = gr.Slider(label="Paos de Inferencia", minimum=1, maximum=100, value=15,step =1 ,
90
- info="Al aumentar los pasos de inferencia se puede acercar más a la descripción del texto pero con un mayor tiempo de procesamiento.")
91
  with gr.Row():
92
  examples = gr.Examples(inputs=[prompt,negative_prompt],examples=[["Un martillo golpeando madera","low quality"]])
93
 
94
  with gr.Column():
95
  output = gr.Audio(label="Resultado") #Move the output up too
96
 
97
- btn.click(fn=generate_sound, inputs=[prompt,steps,audio_len,negative_prompt], outputs=[output]) #steps,guidance,width,height]
98
 
99
  demo.launch()
 
46
  return result[0]['translation_text']
47
 
48
 
49
+ def generate_sound(text,negative_prompt):
50
+ steps = 17
51
+ audio_length=5
52
  print(text)
53
  text = translate_text(text)
54
  negative_prompt = translate_text(negative_prompt)
 
84
  with gr.Row():
85
  with gr.Accordion("Opciones avanzadas", open=False): #Let's hide the advanced options!
86
  negative_prompt = gr.Textbox(label="Texto negativo para la generación", info='Al ingresar texto en este campo el modelo intentará alejarse lo mas posible del mismo, este puede ser "baja calidad"')
87
+ # with gr.Row():
88
+ # with gr.Column():
89
+ # audio_len = gr.Slider(label="Duración del sonido", minimum=1, maximum=30, value=5, step = 1,
90
+ # info="Cuánto mayor sonido, mayor será el tiempo de procesamiento.")
91
+ # steps = gr.Slider(label="Paos de Inferencia", minimum=1, maximum=100, value=15,step =1 ,
92
+ # info="Al aumentar los pasos de inferencia se puede acercar más a la descripción del texto pero con un mayor tiempo de procesamiento.")
93
  with gr.Row():
94
  examples = gr.Examples(inputs=[prompt,negative_prompt],examples=[["Un martillo golpeando madera","low quality"]])
95
 
96
  with gr.Column():
97
  output = gr.Audio(label="Resultado") #Move the output up too
98
 
99
+ btn.click(fn=generate_sound, inputs=[prompt,negative_prompt], outputs=[output]) #steps,guidance,width,height]
100
 
101
  demo.launch()