Pravincoder
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -34,20 +34,19 @@ demo = gr.Interface(
|
|
34 |
gr.Slider(minimum=350, maximum=3000, randomize=True, step = 1,label="Living Area ***(Sq.mtr)***"),
|
35 |
gr.Slider(minimum=1, maximum=4, randomize=True,step = 1, label="Number of Bedrooms"),
|
36 |
gr.Slider(minimum=1, maximum=3, randomize=True,step = 1, label="Number of Bathrooms"),
|
37 |
-
gr.Slider(minimum=1,maximum=3,randomize=True,step=
|
38 |
],
|
39 |
"number",
|
40 |
examples=[
|
41 |
-
[1000,
|
42 |
[2000,1200,2,3,1],
|
43 |
[4000,1900,2,3,2],
|
44 |
[28000,3000,5,3,3],
|
45 |
],
|
46 |
title="Indian House Price Prediction Model",
|
47 |
description="""
|
48 |
-
|
49 |
-
|
50 |
***Overview:***
|
|
|
51 |
This model predicts house prices in India using Linear Regression. Trained on key features like lot area, living area, bedrooms, bathrooms, and floors, it estimates house prices based on historical data.
|
52 |
|
53 |
***🚀Features:***
|
@@ -58,19 +57,19 @@ This model predicts house prices in India using Linear Regression. Trained on ke
|
|
58 |
- Floors
|
59 |
|
60 |
***⚒How it works:***
|
|
|
61 |
Linear Regression analyzes the relationship between input features and house prices, establishing a linear equation for predictions.
|
62 |
|
63 |
***📝Usage:***
|
|
|
64 |
1. Input specific values for lot area, living area, bedrooms, bathrooms, and floors.
|
65 |
2. Get an estimated house price based on the learned linear relationship.
|
66 |
|
67 |
-
***📳Application:***
|
68 |
-
Useful for individuals in the Indian real estate market to gauge approximate house prices. Ideal for property buyers, sellers, and real estate professionals for informed decision-making.
|
69 |
-
|
70 |
***📊Disclaimer:***
|
|
|
71 |
This model provides estimations. Actual house prices may vary due to unconsidered factors. Consult real estate experts for precise valuations.
|
72 |
|
73 |
-
***🤗
|
74 |
- Mean Absolute Error (MAE): 0.11
|
75 |
- The Output of the Model depends on the DataSet
|
76 |
- For demo and learning purposes only.
|
|
|
34 |
gr.Slider(minimum=350, maximum=3000, randomize=True, step = 1,label="Living Area ***(Sq.mtr)***"),
|
35 |
gr.Slider(minimum=1, maximum=4, randomize=True,step = 1, label="Number of Bedrooms"),
|
36 |
gr.Slider(minimum=1, maximum=3, randomize=True,step = 1, label="Number of Bathrooms"),
|
37 |
+
gr.Slider(minimum=1,maximum=3,randomize=True,step=1,label="Number of stories/Floors")
|
38 |
],
|
39 |
"number",
|
40 |
examples=[
|
41 |
+
[1000, 400, 1, 1, 1],
|
42 |
[2000,1200,2,3,1],
|
43 |
[4000,1900,2,3,2],
|
44 |
[28000,3000,5,3,3],
|
45 |
],
|
46 |
title="Indian House Price Prediction Model",
|
47 |
description="""
|
|
|
|
|
48 |
***Overview:***
|
49 |
+
|
50 |
This model predicts house prices in India using Linear Regression. Trained on key features like lot area, living area, bedrooms, bathrooms, and floors, it estimates house prices based on historical data.
|
51 |
|
52 |
***🚀Features:***
|
|
|
57 |
- Floors
|
58 |
|
59 |
***⚒How it works:***
|
60 |
+
|
61 |
Linear Regression analyzes the relationship between input features and house prices, establishing a linear equation for predictions.
|
62 |
|
63 |
***📝Usage:***
|
64 |
+
|
65 |
1. Input specific values for lot area, living area, bedrooms, bathrooms, and floors.
|
66 |
2. Get an estimated house price based on the learned linear relationship.
|
67 |
|
|
|
|
|
|
|
68 |
***📊Disclaimer:***
|
69 |
+
|
70 |
This model provides estimations. Actual house prices may vary due to unconsidered factors. Consult real estate experts for precise valuations.
|
71 |
|
72 |
+
***🤗Model Info:***
|
73 |
- Mean Absolute Error (MAE): 0.11
|
74 |
- The Output of the Model depends on the DataSet
|
75 |
- For demo and learning purposes only.
|