🚗 This project predicts the price of a used car based on features like:
- Company
- Year
- Kilometers Driven
- Fuel Type
📊 It uses Linear Regression for prediction and Streamlit for the frontend, where users can input car details and see the predicted price.
app.py→ Frontend built with Streamlitprice_predictor.py→ Model training and evaluationcar_prices.csv→ Dataset usedrequirements.txt→ All libraries needed
- Data preprocessing with pandas
- Label encoding categorical values
- Linear Regression using scikit-learn
- Building an interactive UI using Streamlit
- Install requirements
pip install -r requirements.txt