Update app.py
Browse files
app.py
CHANGED
@@ -66,6 +66,8 @@ def read_csv(file):
|
|
66 |
|
67 |
demo= gr.Interface(fn=read_csv,
|
68 |
inputs=[gr.components.File(label="Select a CSV file")],
|
69 |
-
outputs="dataframe"
|
|
|
|
|
70 |
if __name__ == "__main__":
|
71 |
demo.launch()
|
|
|
66 |
|
67 |
demo= gr.Interface(fn=read_csv,
|
68 |
inputs=[gr.components.File(label="Select a CSV file")],
|
69 |
+
outputs="dataframe",
|
70 |
+
title="RFM Automatizado con Inteligencia Artificial")
|
71 |
+
|
72 |
if __name__ == "__main__":
|
73 |
demo.launch()
|