This project demonstrates a regression analysis to predict the quality of red wine. Here 'quality' is the Output column. It utilizes Decision Tree Regression and Adaptive Boosting Regression techniques, implements K-Fold Cross Validation for robust evaluation, and showcases various performance metrics.
- Predicts red wine quality using Decision Tree Regression and Adaptive Boosting Regression.
- Utilizes K-Fold Cross Validation with 10 splits for comprehensive model evaluation.
- Evaluates models using key performance metrics, including MAE, R2, Explained Variance, and Max Error.
- Compares model performance using visual plots.
- Download the 'RedWineQuality.csv' dataset.
- Open the project in a Jupyter Notebook or Google Colab environment.
- Python3
- Scikit-Learn
- Matplotlib
- Pandas
- NumPy
- Key metrics such as MAE, R2, Explained Variance, and Max Error are used to evaluate and compare between Decision Tree Regression and Adaptive Boosting Regression.
- Adaptive Boosting Regression is the more accurate model.