Pravincoder commited on
Commit
845e256
β€’
1 Parent(s): 78c9995

Descritpion bug fix

Browse files

Fixed some Description error's

Files changed (1) hide show
  1. app.py +11 -11
app.py CHANGED
@@ -43,40 +43,40 @@ demo = gr.Interface(
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:*
54
  - Lot Area
55
  - Living Area
56
  - Bedrooms
57
  - Bathrooms
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
- πŸ€—*Demo Info:*
74
  - Mean Absolute Error (MAE): 0.11
75
  - The Output of the Model depends on the DataSet
76
  - For demo and learning purposes only.
77
 
78
- β™₯Feel free to explore and understand how key features influence house prices in India.β™₯
79
- """'''
80
  )
81
 
82
  if __name__ == "__main__":
 
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:***
54
  - Lot Area
55
  - Living Area
56
  - Bedrooms
57
  - Bathrooms
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
+ ***πŸ€—Demo Info:***
74
  - Mean Absolute Error (MAE): 0.11
75
  - The Output of the Model depends on the DataSet
76
  - For demo and learning purposes only.
77
 
78
+ ***β™₯Feel free to explore and understand how key features influence house prices in India.β™₯***
79
+ """
80
  )
81
 
82
  if __name__ == "__main__":