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