Agusbs98 commited on
Commit
e468ceb
1 Parent(s): 58a2738

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -13,7 +13,7 @@ with gr.Blocks() as interface:
13
  frec = gr.inputs.Number(label= "Frecuencia (Hz)",default=500)
14
  file = gr.inputs.File(label="Selecciona un archivo.")
15
  button = gr.Button(value='Analizar')
16
- out = gr.DataFrame(label="Diagnostico automático.",type="pandas",headers = ['Red','Predicción'])
17
  img = gr.outputs.Image(label="Imagen",type='filepath')
18
  button.click(fn=procesar_archivo,inputs=[format,number,unit,frec,file] ,outputs=[out,img])
19
 
 
13
  frec = gr.inputs.Number(label= "Frecuencia (Hz)",default=500)
14
  file = gr.inputs.File(label="Selecciona un archivo.")
15
  button = gr.Button(value='Analizar')
16
+ out = gr.DataFrame(label="Diagnostico automático.",type="pandas",headers = ['Red','Posibles predicciones'],value=[['Antonior92','1aAVb, RBBB, LBBB, SB, AF, ST'],['CPSC-2018','Normal, AF, IAVB, LBBB, RBBB, PAC, PVC, STD, STE'],['Chapman', 'AFIB, GSVT, SB, SR']])
17
  img = gr.outputs.Image(label="Imagen",type='filepath')
18
  button.click(fn=procesar_archivo,inputs=[format,number,unit,frec,file] ,outputs=[out,img])
19