Update app.py
Browse files
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()
|