davidkariuki commited on
Commit
af02b07
1 Parent(s): 33588ad

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -1
README.md CHANGED
@@ -35,5 +35,23 @@ To use the model to predict house rents, run the predict.py script. You will be
35
 
36
  To run the script: python test.py
37
 
38
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
 
 
35
 
36
  To run the script: python test.py
37
 
38
+ The model you'll be interacting with is a machine-learning model specifically designed to predict house rent prices based on various property features.
39
+ It's been trained on a dataset of housing information and uses what it learned to make predictions for new, unseen houses.
40
+ Rent: The existing rent of the house.
41
+ Property Type: The type of property, such as apartment, house, etc.
42
+ Area: The area where the house is located.
43
+ Suburb: The suburb within the area where the house is located.
44
+ Bedrooms: The number of bedrooms in the house.
45
+ Bathrooms: The number of bathrooms in the house.
46
+ Garages: The number of garages the house has.
47
+ nGparking: The number of non-garage parking spaces the house has.
48
+ Floor Size: The size of the house in square feet or meters.
49
+ Pool: Whether the house has a pool (1 if yes, 0 if no).
50
+ Garden: Whether the house has a garden (1 if yes, 0 if no).
51
+ Study: Whether the house has a study or office room (1 if yes, 0 if no).
52
+ Pets: Whether pets are allowed in the house (1 if yes, 0 if no).
53
+ Furnished: Whether the house is furnished (1 if yes, 0 if no).
54
+ Fibre: Whether the house has fibre internet connection (1 if yes, 0 if no).
55
+ Based on the information you provide for a house, the model will give an estimate of what it thinks the house's rent would be.
56
+ Please note that while the model tries its best to make accurate predictions, there is error in its estimates.
57