The dataset used on this classification model is the result of a chemical analysis of wines grown in the same region in Italy but derived from three different cultivars. The analysis determined the quantities of 13 constituents found in each of the three types of wines. This dataset was taken from the following website: Wine recognition data
- Alcohol
- Malic acid
- Ash
- Alcalinity of ash
- Magnesium
- Total phenols
- Flavanoids
- Nonflavanoid phenols
- Proanthocyanins
- Color intensity
- Hue
- OD280/OD315 of diluted wines
- Proline
- class 1 : 59
- class 2 : 71
- class 3 : 48
You can use pip
or conda
to install the dependencies:
- tensorflow
- matplotlib
- jupyter
- pandas
- seaborn
- scikit-learn
If you want to try this program, download this repo and launch jupyter to run it on your machine.
-
ENVIRONMENT PREPARATION
Install library dependencies- Document installation and usage
-
DATA EXPLORATION
- Add dataset description
Preview the structure of the datasetAdd data visualizations
-
DATA PREPROCESSING
Apply standarization to feature dataApply one-hot encoding to categorical dataSplit data into training and testing sets- Output preprocessed data for faster preloading
-
DATA ANALYSIS
Define network parametersDefine network structureAdd different network configurationsDefine learning rate with different decaying methodsSet up cost, optimizer, and accuracy function with different configurations
Define model executionVisualize evolution of MSE on training and testing datasets through epoch iterationVisualize evolution of loss functionVisualize evolution of learning rate- Add log and summary writer
- Add Tensorboard visualization
- Add checkpoints for model restoration
-
MODEL DEPLOYMENT
- Load a pretrained model
- Test it with new data
-
OTHERS
- Update README files
- Update all nbviewer links
- Add Tensorflow 1.x, Tensorflow 2.x, keras, tf.keras, and scikit-learn data analysis notebooks