Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Used Car Price Prediction #653

Closed
abhisheks008 opened this issue Jun 12, 2024 · 8 comments · Fixed by #717
Closed

Used Car Price Prediction #653

abhisheks008 opened this issue Jun 12, 2024 · 8 comments · Fixed by #717
Assignees
Labels
Advanced Points 40 - SSOC 2024 Assigned 💻 Issue has been assigned to a contributor SSOC

Comments

@abhisheks008
Copy link
Owner

ML-Crate Repository (Proposing new issue)

🔴 Project Title : Used Car Price Prediction
🔴 Aim : The aim is to predict the used car price using machine learning methods.
🔴 Dataset : https://www.kaggle.com/datasets/zeeshanlatif/used-car-price-prediction-dataset
🔴 Approach : Try to use 3-4 algorithms to implement the models and compare all the algorithms to find out the best fitted algorithm for the model by checking the accuracy scores. Also do not forget to do a exploratory data analysis before creating any model.


📍 Follow the Guidelines to Contribute in the Project :

  • You need to create a separate folder named as the Project Title.
  • Inside that folder, there will be four main components.
    • Images - To store the required images.
    • Dataset - To store the dataset or, information/source about the dataset.
    • Model - To store the machine learning model you've created using the dataset.
    • requirements.txt - This file will contain the required packages/libraries to run the project in other machines.
  • Inside the Model folder, the README.md file must be filled up properly, with proper visualizations and conclusions.

🔴🟡 Points to Note :

  • The issues will be assigned on a first come first serve basis, 1 Issue == 1 PR.
  • "Issue Title" and "PR Title should be the same. Include issue number along with it.
  • Follow Contributing Guidelines & Code of Conduct before start Contributing.

To be Mentioned while taking the issue :

  • Full name :
  • GitHub Profile Link :
  • Participant ID (If not, then put NA) :
  • Approach for this Project :
  • What is your participant role? (Mention the Open Source Program name. Eg. HRSoC, GSSoC, GSOC etc.)

Happy Contributing 🚀

All the best. Enjoy your open source journey ahead. 😎

@abhisheks008 abhisheks008 added Up-for-Grabs ✋ Issues are open to the contributors to be assigned VSoC’24 Vinyasa Summer of Code (VSOC) labels Jun 12, 2024
Copy link

Thank you for creating this issue! We'll look into it as soon as possible. Your contributions are highly appreciated! 😊

@Mayureshd-18
Copy link

Full name :Mayuresh Dharwadkar
GitHub Profile Link :https://github.com/Mayureshd-18
Participant ID (If not, then put NA) :NA
Approach for this Project : EDA then model selection and finally the implementation
What is your participant role? (Mention the Open Source Program name. Eg. HRSoC, GSSoC, GSOC etc.)SSOC

@abhisheks008 Pls assign this issue to me.

Regards

@milanprajapati571
Copy link

Full name: Milan Prajapati

GitHub Profile Link: GitHub_Profile

Participant ID (If not, then put NA): NA

Approach for this Project:

  1. Data Loading - loading the dataset from the provided kaggle link.
  2. Exploratory Data Analysis - EDA involves understanding the dataset through statistical summaries and visualizations to gain insights and identify patterns, correlations, and potential issues.
  3. Data Processing - This includes handling missing values, encoding categorical variables, feature scaling, and splitting the dataset into training and testing sets.
  4. Model Training and Evaluation - We'll train multiple machine learning models and compare their performance. The models we can consider include:
    Linear Regression
    Decision Tree Regressor
    Random Forest Regressor
    Gradient Boosting Regressor
  5. Model Comparision - Evaluate the models using metrics such as Mean Absolute Error (MAE), Mean Squared Error (MSE), and R-squared (R²) to determine the best model.
  6. Conclusion and Documentation - Summing up the project by adding the documentation.

What is your participant role? : VSoC

Sir, can You Please assign this project to me...?

@VanshGupta-2404
Copy link

Full name : Vansh Gupta
GitHub Profile Link : https://github.com/VanshGupta-2404
Participant ID (If not, then put NA) : NA
Approach for this Project :

To predict used car prices using machine learning methods, we will follow a structured approach that includes data acquisition, exploratory data analysis (EDA), preprocessing, model building, and evaluation. Here's a step-by-step plan:

  1. Data Acquisition
    First, we'll download the dataset from the provided Kaggle link.

  2. Exploratory Data Analysis (EDA)

  • Data Overview: Get basic information about the dataset like number of rows, columns, and data types.
  • Descriptive Statistic: Summarize the central tendency, dispersion, and shape of the dataset’s distribution.
  • Missing Values: Identify and handle missing values.
  1. Data Preprocessing

Preprocessing involves cleaning and transforming the raw data into a format suitable for modeling:

  • Handling Missing Values: Fill or drop missing values appropriately.
  • Encoding Categorical Variables: Convert categorical features into numerical values using techniques like One-Hot Encoding or Label Encoding.
  1. Model Building

We'll build multiple models and compare their performance:

  1. Linear RegressionA basic regression model.

  2. Random Forest RegressorAn ensemble method that uses multiple decision trees.

  3. Gradient Boosting Regressor: Another ensemble method that builds models sequentially.

  4. Support Vector Regressor (SVR): Uses support vector machine principles for regression tasks.

  5. Model Evaluation
    We'll evaluate the models using metrics such as Mean Absolute Error (MAE), Mean Squared Error (MSE), and R-squared. The model with the best performance metrics will be selected as the final model.

  6. Code Implementation
    Here is a Python script that outlines the entire process using popular libraries such as pandas, numpy, matplotlib, seaborn, and scikit-learn.

What is your participant role? (Mention the Open Source Program name. Eg. HRSoC, GSSoC, GSOC etc.): VSOC

@abhisheks008
Copy link
Owner Author

Implement 6-7 models for this project/problem statement.
Assigned @milanprajapati571

@abhisheks008 abhisheks008 added Assigned 💻 Issue has been assigned to a contributor MEDIUM VSOC - 10 Points and removed Up-for-Grabs ✋ Issues are open to the contributors to be assigned labels Jun 19, 2024
@abhisheks008 abhisheks008 added Up-for-Grabs ✋ Issues are open to the contributors to be assigned and removed Assigned 💻 Issue has been assigned to a contributor MEDIUM VSOC - 10 Points VSoC’24 Vinyasa Summer of Code (VSOC) labels Jul 20, 2024
@tanuj437
Copy link
Contributor

Full name : Tanuj Saxena
GitHub Profile Link : https://github.com/tanuj437
Participant ID (If not, then put NA) : NA
Approach for this Project : So Firstly handling the missing value if any, standardizing the data, understanding the distribution also, then for Model to implement in this can be Linear Regression, Neural with output layer as relu, decision tree for regression, Gradient boosting,random forest,SVR
What is your participant role? (Mention the Open Source Program name. Eg. HRSoC, GSSoC, GSOC etc.) SSOC'24

@abhisheks008
Copy link
Owner Author

Assigned @tanuj437

@abhisheks008 abhisheks008 added Assigned 💻 Issue has been assigned to a contributor Intermediate Points 30 - SSOC 2024 SSOC and removed Up-for-Grabs ✋ Issues are open to the contributors to be assigned labels Jul 20, 2024
@tanuj437 tanuj437 mentioned this issue Jul 21, 2024
12 tasks
@abhisheks008 abhisheks008 added Advanced Points 40 - SSOC 2024 and removed Intermediate Points 30 - SSOC 2024 labels Jul 21, 2024
Copy link

Hello @tanuj437! Your issue #653 has been closed. Thank you for your contribution!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Advanced Points 40 - SSOC 2024 Assigned 💻 Issue has been assigned to a contributor SSOC
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants