Template Credit: Adapted from a template made available by Dr. Jason Brownlee of Machine Learning Mastery.
SUMMARY: The project aims to construct a predictive model using various machine learning algorithms and document the end-to-end steps using a template. The Kaggle Tabular Playground 2022 August dataset is a binary-class modeling situation where we attempt to predict one of two possible outcomes.
INTRODUCTION: Kaggle wants to provide an approachable environment for relatively new people in their data science journey. Since January 2021, they have hosted playground-style competitions on Kaggle with fun but less complex, tabular datasets. This data represents the results of an extensive product testing study. For each product code, the research team provided several product attributes and several measurement values for each product, representing various lab testing methods.
Each product is used in a simulated real-world environment experiment and absorbs a certain amount of fluid to see whether it fails. The project task is to use the data to predict individual product failures of new codes with their lab test results.
ANALYSIS: After 100 trials, the best AutoKeras model processed the training dataset with a ROC_AUC score of 0.4824. When we processed the test dataset with the final model, the model achieved a ROC_AUC score of 0.5573.
CONCLUSION: In this iteration, AutoKeras appeared to be a suitable algorithm for modeling this dataset.
Dataset Used: Kaggle Tabular Playground 2022 August
Dataset ML Model: Binary classification with numerical features
Dataset Reference: https://www.kaggle.com/competitions/tabular-playground-series-aug-2022
One source of potential performance benchmarks: https://www.kaggle.com/competitions/tabular-playground-series-aug-2022/leaderboard
The HTML formatted report can be found here on GitHub.