TuanScientist commited on
Commit
c3bcdbf
·
1 Parent(s): 7f70947

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -87,14 +87,14 @@ inputs = [
87
 
88
  outputs = [
89
  gr.outputs.Textbox(label="Predicted House Square Footage"),
90
- gr.outputs.File(label="Excel Result"),
91
  ]
92
 
93
  interface = gr.Interface(
94
  fn=predict_house_area,
95
  inputs=inputs,
96
  outputs=outputs,
97
- title="House Predictor",
98
  allow_flagging="never" # Disable flag button
99
  )
100
 
 
87
 
88
  outputs = [
89
  gr.outputs.Textbox(label="Predicted House Square Footage"),
90
+ gr.outputs.File(label="Excel Printed Result"),
91
  ]
92
 
93
  interface = gr.Interface(
94
  fn=predict_house_area,
95
  inputs=inputs,
96
  outputs=outputs,
97
+ title="House Square Predictor",
98
  allow_flagging="never" # Disable flag button
99
  )
100