Image Classification with TensorFlow
GitHub: https://github.com/Rubo12345/Image-classification-with-TensorFlow
GitHub: https://github.com/Rubo12345/Image-classification-with-TensorFlow
Task: Built a neural network model to solve a basic image classification problem, on MNIST dataset.
Dataset: MNIST Dataset
Architecture: Custom
Implementation Steps:
Import Packages (numpy, tensorflow, matplotlib)
Load Data (load the data and split the data into train and test)
One Hot Encoding (labels)
Data Reshaping
Data Normalization (Mean and Standard Deviation)
Creating a model (structure, layers)
Compiling the model (optimizer, loss, metrics)
Model fitting
Evaluating the model (loss , accuracy)
Predictions
Plotting (Matplotlib)
Details: Loss - Categorical Crossentropy, Optimizer - SGD
Results: Accuracy 97%
GitHub Code: https://github.com/Rubo12345/Image-classification-with-TensorFlow