dayannex commited on
Commit
73dfd2e
·
1 Parent(s): a1c378a

update app

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -326,7 +326,7 @@ def get_model():
326
  def procesar(texto,archivo):
327
  if len(texto)>0:
328
  model.identificacion_idioma(texto)
329
- return model.predict(),gr.Dataframe()
330
  else:
331
  df=pd.read_csv(archivo.name,delimiter=",")
332
  print(archivo.name)
@@ -341,10 +341,10 @@ def procesar(texto,archivo):
341
 
342
 
343
  print(df_new)
344
- return "",df_new
345
 
346
- demo = gr.Interface(fn=procesar,inputs=["text",gr.File()] , outputs=["text",gr.Dataframe(interactive=True)])
347
- # outputs=gr.Dataframe(headers=['title', 'author', 'text']), allow_flagging='never').launch()
348
  demo.launch(share=True)
349
 
350
  #plotting_df=gr.Dataframe(value=df2,headers="class","type","group","ε54Cr","ε50Ti","ε94Mo"],
 
326
  def procesar(texto,archivo):
327
  if len(texto)>0:
328
  model.identificacion_idioma(texto)
329
+ return model.predict(),gr.Dataframe(),gr.File()
330
  else:
331
  df=pd.read_csv(archivo.name,delimiter=",")
332
  print(archivo.name)
 
341
 
342
 
343
  print(df_new)
344
+ return "",df_new,df_new.to_csv('out.csv', sep='\t')
345
 
346
+ demo = gr.Interface(fn=procesar,inputs=["text",gr.File()] , outputs=["text",gr.Dataframe(interactive=False),gr.File()])
347
+ #
348
  demo.launch(share=True)
349
 
350
  #plotting_df=gr.Dataframe(value=df2,headers="class","type","group","ε54Cr","ε50Ti","ε94Mo"],