Update app.py
Browse files
app.py
CHANGED
|
@@ -111,9 +111,9 @@ def predict(operation,file):
|
|
| 111 |
|
| 112 |
iface = gr.Interface(fn=predict,
|
| 113 |
|
| 114 |
-
inputs=[gr.Radio(label='Predict ahead:',choices=['Month','Week'],value='Month'),gr.File(label="
|
| 115 |
|
| 116 |
-
outputs=[gr.File(label="
|
| 117 |
|
| 118 |
debug=True)
|
| 119 |
iface.launch()
|
|
|
|
| 111 |
|
| 112 |
iface = gr.Interface(fn=predict,
|
| 113 |
|
| 114 |
+
inputs=[gr.Radio(label='Predict ahead:',choices=['Month','Week'],value='Month'),gr.File(label="Input file")],
|
| 115 |
|
| 116 |
+
outputs=[gr.File(label="Output file"),gr.Textbox(label='Log',interactive=False)],
|
| 117 |
|
| 118 |
debug=True)
|
| 119 |
iface.launch()
|