Views
No views yet
| Metric | Value |
|---|---|
| RMSE | TBD |
| MAE | TBD |
| R² | TBD |
1import tensorflow as tf
2import numpy as np
3
4# Load model
5model = tf.keras.models.load_model("house_price_model")
6
7# Example input — replace with your actual feature vector
8# [sq_ft, bedrooms, bathrooms, year_built, lot_size, ...]
9sample_input = np.array([[1800, 3, 2, 2005, 8500]])
10
11# Predict
12predicted_price = model.predict(sample_input)
13print(f"Predicted house price: ${predicted_price[0][0]:,.2f}")Input (tabular features)
→ Dense(256, relu) → BatchNormalization → Dropout(0.3)
→ Dense(128, relu) → BatchNormalization → Dropout(0.2)
→ Dense(64, relu)
→ Dense(1, linear) ← regression output1@misc{pasumarthi2026houseprices,
2 author = {Chandrasekar Adhithya Pasumarthi},
3 title = {House Price Prediction Model},
4 year = {2026},
5 publisher = {Hugging Face},
6 url = {https://huggingface.co/Chandrasekar123/PredictingHousePrices}
7}