TuanScientist commited on
Commit
156e2ab
·
verified ·
1 Parent(s): 3cc1d02

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -88,7 +88,7 @@ inputs = [
88
  ]
89
 
90
  outputs = [
91
- gr.Textbox(label="Predicted House Square Footage"),
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="House Square Predictor",
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