This project is part of Task 01 of the SkillCraft Technology internship program. It implements a Linear Regression model to predict house prices based on:
- Square footage (
GrLivArea) - Number of bedrooms (
BedroomAbvGr) - Number of full bathrooms (
FullBath)
- Python
- Pandas
- scikit-learn
To run this project locally, follow the steps below:
- Clone the repository:
git clone https://github.com/Agent-A345/SCT_ML_01.git
- Install Dependencies
pip install pandas sklearn
- Run the program
python task1.py
- Load the dataset (
train.csv) - Select 3 key features affecting house prices
- Train a Linear Regression model
- Evaluate model using R² and Mean Squared Error
- Take user input and predict house price
- Show similar past examples for validation
Thanks to SkillCraft Technology for the opportunity to work on this internship project.
This project is licensed under the MIT License.