ntam0001 commited on
Commit
210f9e3
·
verified ·
1 Parent(s): bab29c4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -35,8 +35,12 @@ inputs = [
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()
 
35
 
36
  outputs = gr.Textbox(label="Predicted Price (Lakh)")
37
 
38
+ # Add the link under the output prediction
39
+ link = gr.Markdown("For more details, visit [Github](https://github.com/94etienne/AI_PROJECTS_RESEARCH/blob/main/1_banglore_home_price.rar)")
40
+
41
+
42
  # Footer content
43
  footer = "Etienne NTAMBARA @AI_Engineer"
44
 
45
  # Launch the interface
46
+ gr.Interface(fn=predict_price, inputs=inputs, outputs= outputs=[outputs, link], title="Real Estate Price Prediction", article=footer).launch()