An open API service indexing awesome lists of open source software.

https://github.com/nurulashraf/ann-house-price-prediction

Predicting house prices with a simple neural network using TensorFlow/Keras. Synthetic data based on size, bedrooms, and location is used to train the model.
https://github.com/nurulashraf/ann-house-price-prediction

data-science house-price-prediction keras machine-learning neural-network regression synthetic-data tensorflow

Last synced: about 2 months ago
JSON representation

Predicting house prices with a simple neural network using TensorFlow/Keras. Synthetic data based on size, bedrooms, and location is used to train the model.

Awesome Lists containing this project

README

          

# Predicting House Prices using Artificial Neural Network (ANN)

A straightforward project that trains an Artificial Neural Network (ANN) to predict house prices using a clean dataset and Python-based tools.

---

## Project Structure

- `notebooks/` – Jupyter Notebooks for data analysis, model training and evaluation
- `requirements.txt` – Python libraries needed to run the project
- `LICENSE` – MIT Licence for this project
- `README.md` – this file with overview and instructions

---

## Tools & Libraries

- Python 3.x
- `numpy` – numerical operations
- `pandas` – data manipulation
- `scikit-learn` – splitting data, preprocessing, evaluation metrics
- `tensorflow` / `keras` – building and training the ANN
- `matplotlib` or `seaborn` – visualisations of data and model performance

---

## How to Use

1. **Clone the repository**
```bash
git clone https://github.com/nurulashraf/ann-house-price-prediction.git
cd ann-house-price-prediction
```

2. **Install dependencies**

```bash
pip install -r requirements.txt
```

3. **Open the notebook**

```bash
jupyter notebook ann_house_price_prediction.ipynb
```

---

## License

This project is licensed under the MIT License. Feel free to fork, modify, or use it freely. See the [LICENSE](LICENSE) file for full terms.