-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #797 from Varunshiyam/Fixes-#796
Fixes #796 Avocado Price Prediction with Machine Learning Models
- Loading branch information
Showing
2 changed files
with
522 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Avocado Price Prediction with Machine Learning Models | ||
|
||
This project predicts the average price of avocados across different regions in the United States using various machine learning models, including a Keras-based Artificial Neural Network (ANN). Data preprocessing and exploratory data analysis (EDA) are employed to uncover trends and improve model performance. | ||
|
||
## Project Structure | ||
|
||
- **Data Preprocessing**: Data loading, cleaning, and encoding of categorical variables. | ||
- **Exploratory Data Analysis (EDA)**: Visualization of trends and outliers using seaborn and matplotlib. | ||
- **Model Training**: Implementation of multiple models (KNN, SVC, Decision Tree, ANN). | ||
- **Evaluation**: Comparing model performance and tuning hyperparameters for optimal results. | ||
|
||
## Models Used | ||
|
||
1. **K-Nearest Neighbors (KNN)** | ||
2. **Support Vector Classifier (SVC)** | ||
3. **Decision Tree Classifier** | ||
4. **Artificial Neural Network (ANN)** - Developed using Keras for deep learning. | ||
|
||
## Dependencies | ||
|
||
- Python 3.x | ||
- Pandas | ||
- Numpy | ||
- Matplotlib | ||
- Seaborn | ||
- Scikit-learn | ||
- Keras (TensorFlow backend) |
Oops, something went wrong.