Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -88,7 +88,7 @@ inputs = [
|
|
| 88 |
]
|
| 89 |
|
| 90 |
outputs = [
|
| 91 |
-
gr.Textbox(label="Predicted
|
| 92 |
gr.File(label="Excel Printed Result"),
|
| 93 |
]
|
| 94 |
|
|
@@ -96,7 +96,7 @@ interface = gr.Interface(
|
|
| 96 |
fn=predict_house_area,
|
| 97 |
inputs=inputs,
|
| 98 |
outputs=outputs,
|
| 99 |
-
title="
|
| 100 |
allow_flagging="never" # Disable flag button
|
| 101 |
)
|
| 102 |
|
|
|
|
| 88 |
]
|
| 89 |
|
| 90 |
outputs = [
|
| 91 |
+
gr.Textbox(label="Predicted Room Square"),
|
| 92 |
gr.File(label="Excel Printed Result"),
|
| 93 |
]
|
| 94 |
|
|
|
|
| 96 |
fn=predict_house_area,
|
| 97 |
inputs=inputs,
|
| 98 |
outputs=outputs,
|
| 99 |
+
title="Room Square Predictor",
|
| 100 |
allow_flagging="never" # Disable flag button
|
| 101 |
)
|
| 102 |
|