Spaces:
Sleeping
Sleeping
update app
Browse files
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=
|
347 |
-
#
|
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"],
|