This project is a machine learning application aimed at predicting the median house prices in California based on various features such as the number of rooms, geographical location, and others. The application uses a trained machine learning model to provide accurate predictions.
├── app.py
├── california_housing_model.pkl
└── templates
└── home.html
app.py: The main application file that runs the web server and handles user requests.
california_housing_model.pkl: The pre-trained machine learning model used for predicting house prices.
templates/home.html: The HTML template for the home page of the application.
- Clone the repository:
bash
git clone <repository-url>
cd <repository-name>
- Install the required packages:
bash
pip install -r requirements.txt
- Usage
Run the application:
bash
python app.py
Open your web browser and navigate to http://localhost:5000 to access the application.
Features