File size: 3,308 Bytes
80efd43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
---
language:
- en
license: apache-2.0
tags:
- tabular-regression
- house-prices
- regression
- real-estate
- scikit-learn
- tensorflow
pipeline_tag: tabular-regression
metrics:
- rmse
- mae
- r2
---

# House Price Prediction Model

## Model Summary

A regression model that predicts residential house prices based on structured tabular features such as square footage, location, number of rooms, and other property attributes. Built as part of a broader machine learning portfolio exploring supervised learning across regression tasks.

---

## Model Details

- **Developed by:** Chandrasekar Adhithya Pasumarthi ([@Adhithpasu](https://github.com/Adhithpasu))
- **Affiliation:** Frisco ISD, TX | AI Club Leader | Class of 2027
- **Model type:** Regression (Neural Network / Gradient Boosting β€” update as applicable)
- **Framework:** TensorFlow / Keras *(or scikit-learn β€” update as applicable)*
- **License:** Apache 2.0

---

## Intended Uses

**Direct use:**
- Predicting house sale prices from structured property data
- Exploring feature importance in real estate pricing
- Educational demonstrations of regression pipelines and feature engineering

**Out-of-scope use:**
- Production real estate valuation without domain expert review
- Generalization to housing markets with significantly different distributions than training data

---

## Training Data

Trained on a structured housing dataset containing features such as:
- Square footage (total, above ground, basement)
- Number of bedrooms and bathrooms
- Neighborhood / location
- Year built and year remodeled
- Garage, pool, and lot features

*(Update with your specific dataset β€” e.g., Kaggle's Ames Housing Dataset)*

---

## Evaluation

| Metric | Value |
|--------|-------|
| RMSE   | TBD   |
| MAE    | TBD   |
| RΒ²     | TBD   |

*(Fill in with your actual test set results)*

---

## How to Use

```python
import tensorflow as tf
import numpy as np

# Load model
model = tf.keras.models.load_model("house_price_model")

# Example input β€” replace with your actual feature vector
# [sq_ft, bedrooms, bathrooms, year_built, lot_size, ...]
sample_input = np.array([[1800, 3, 2, 2005, 8500]])

# Predict
predicted_price = model.predict(sample_input)
print(f"Predicted house price: ${predicted_price[0][0]:,.2f}")
```

---

## Model Architecture

```
Input (tabular features)
β†’ Dense(256, relu) β†’ BatchNormalization β†’ Dropout(0.3)
β†’ Dense(128, relu) β†’ BatchNormalization β†’ Dropout(0.2)
β†’ Dense(64, relu)
β†’ Dense(1, linear)  ← regression output
```

*(Update to match your actual architecture)*

---

## Limitations & Bias

- Performance is tied to the geographic and temporal distribution of training data β€” may not generalize to all housing markets
- Does not account for macroeconomic factors (interest rates, market trends) that heavily influence real prices
- Outliers (luxury properties, distressed sales) may be predicted with lower accuracy

---

## Citation

```bibtex
@misc{pasumarthi2026houseprices,
  author    = {Chandrasekar Adhithya Pasumarthi},
  title     = {House Price Prediction Model},
  year      = {2026},
  publisher = {Hugging Face},
  url       = {https://huggingface.co/Chandrasekar123/PredictingHousePrices}
}
```

---

## Contact

- GitHub: [@Adhithpasu](https://github.com/Adhithpasu)