ntam0001 commited on
Commit
8f71a16
1 Parent(s): 52bf674

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -35,5 +35,8 @@ inputs = [
35
 
36
  outputs = gr.Textbox(label="Predicted Price (Lakh)")
37
 
 
 
 
38
  # Launch the interface
39
- gr.Interface(fn=predict_price, inputs=inputs, outputs=outputs, title="Real Estate Price Prediction").launch()
 
35
 
36
  outputs = gr.Textbox(label="Predicted Price (Lakh)")
37
 
38
+ # Footer content
39
+ footer = "Etienne NTAMBARA @AI_Engineer"
40
+
41
  # Launch the interface
42
+ gr.Interface(fn=predict_price, inputs=inputs, outputs=outputs, title="Real Estate Price Prediction", article=footer).launch()