Sajjad-Hossain-Talukder / Sustainable-Apparel-Classification

Develop an AI solution using the Fashion MNIST dataset with a focus on identifying and classifying sustainable apparel products in alignment with the company's vision and the provided job description.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Sustainable-Apparel-Classification

Problem Statement

Develop an AI solution using the Fashion MNIST dataset with a focus on identifying and classifying sustainable apparel products in alignment with the company's vision and the provided job description.

Dataset Description

Dataset Link: Fashion MNIST

Description: Fashion-MNIST is a dataset comprising 70,000 grayscale images of clothing articles, divided into a training set of 60,000 examples and a test set of 10,000 examples. It features 10 distinct classes and is designed as a direct replacement for the original MNIST dataset, maintaining the same image size and training/testing data division, making it a valuable benchmark for machine learning algorithms.

Each image in Fashion-MNIST is 28x28 pixels, totaling 784 pixels. Each pixel holds a single value representing its lightness or darkness, with a range of 0 to 255. Both training and test data sets consist of 785 columns. The first column contains class labels, identifying the clothing item, while the remaining columns store pixel values associated with the image. To locate a specific pixel in the image, it can be expressed as 'x = i * 28 + j,' with 'i' and 'j' as integers from 0 to 27, referring to the pixel's position in a 28x28 matrix

Training Set Distribution:

Class Label Class Name Number of Samples Distribution
0 T-shirt/top 6000 10%
1 Trouser 6000 10%
2 Pullover 6000 10%
3 Dress 6000 10%
4 Coat 6000 10%
5 Sandal 6000 10%
6 Shirt 6000 10%
7 Sneaker 6000 10%
8 Bag 6000 10%
9 Ankle boot 6000 10%

Summary:

  • Training set Dimension : 60000x785 , Testing Set Dimension : 10000x785
  • Each row is a separate image
  • Column 1 is the class label.
  • Remaining columns are pixel numbers (784 total).
  • Each value is the darkness of the pixel (1 to 255)

Solution Approach

Approach: In the pursuit of identifying and classifying sustainable apparel products, the chosen primary approach is the Convolutional Neural Network (CNN).

Why CNN?

A Convolutional Neural Network (CNN) is a superior choice for identifying sustainable apparel products compared to traditional Machine Learning (ML) and Artificial Intelligence (AI) approaches because it can automatically learn and generalize from large-scale image data, adapt to diverse visual conditions, and handle intricate patterns and complexities without the need for manual feature engineering.

How CNN works?

A step-by-step explanation of how a Convolutional Neural Network (CNN) works:

  • Input Layer: The process begins with the input layer, which receives the raw image data.
  • Convolution (Conv) Layer: The Convolution layer applies a set of learnable filters (kernels) to the input image. Each filter scans the image using a small window and performs element-wise multiplication and summation. The result is a feature map that highlights specific patterns or features in the image.
  • Activation (ReLU) Layer: After each convolution operation, a Rectified Linear Unit (ReLU) layer is applied element-wise to introduce non-linearity. ReLU helps CNNs learn complex relationships within the data.
  • Pooling (Subsampling) Layer: The pooling layer reduces the spatial dimensions of the feature map, which helps manage computational complexity. Common pooling methods include Max-Pooling, which retains the maximum value in a local region, or Average-Pooling, which calculates the average.

    Steps 2 to 4 can be repeated with additional convolutional layers to extract increasingly complex features.

  • Flatten Layer: The flattened layer reshapes the output from the convolutional layers into a 1D vector, preparing it for the fully connected layers.
  • Fully Connected (Dense) Layer: The fully connected layers process the flattened vector, applying weights and biases to learn high-level patterns and make predictions. Common activation functions in these layers include ReLU or Softmax for classification tasks.
  • Output Layer: The output layer produces the final predictions. It might involve a single neuron for binary classification or multiple neurons for multi-class classification.
  • Loss Function: The loss function measures the difference between the predicted values and the actual labels. Common loss functions include Mean Squared Error (MSE) for regression and Cross-Entropy for classification.
  • Backpropagation and Optimization: The CNN uses backpropagation to update the model's parameters (weights and biases) based on the loss. Optimization algorithms like Stochastic Gradient Descent (SGD) adjust these parameters to minimize the loss.

    Repeat Training: Steps 2 to 10 are repeated multiple times during training, adjusting the network's parameters to improve its accuracy.

  • Evaluation: The trained CNN is evaluated on a separate test dataset to measure its performance and generalization.
  • Prediction: Once trained, the CNN can make predictions on new, unseen data, which is especially valuable for image classification tasks.

image

CNN Model Description

Model architecture that used to train:

Layer (Type) Output Shape
Input (28, 28, 1)
Conv2D(16 filters, 3x3) (26, 26, 16)
MaxPooling2D (2x2) (13, 13, 16)
Dropout (0.5) (13, 13, 16)
Flatten 2704
Dense (128, ReLU) 128
Dropout (0.5) 128
Dense (10, Softmax) 10

Model training Parameters

  • Epochs=500
  • Batch Size=512
  • Loss Function = sparse_categorical_crossentropy
  • Optimizer= Adam
  • Metrics= Accuracy

Evaluation Steps

Here, is the step by step explanation to execute python script and evaluate trained model. Open CMD terminal and go to your desire folder using cd command.

Step 01 : Clone repository
command: git clone https://github.com/Sajjad-Hossain-Talukder/Sustainable-Apparel-Classification.git

Step 02 : Install virtualenv
command : pip install virtualenv

Step 03 : Create virtualenv
command : virtualenv venv

Step 04 : Activate virtualenv
command : venv\Scripts\activate

Step 05 : Install dependencies
command : pip install -r requirements.txt

Step 06 : Run evaluate_model.py script
command : py evaluate_model.py path_to_test_dataset
Sample : py evaluate_model.py E:\InteractiveCares\Sustainable-Apparel-Classification\TestDataSet
Note : Here, test dataset is incorporated in TestDataSet folder.

Step 07 : Check output.txt
After successful execution, it prints message on '''CMD''' of '''output.txt''' creation. Go to the directory and Open 'output.txt' for evaluation report.

Step 08 : Deactivate virtualenv
command : deactivate

Evaluation Metrics

Accuracy of testing , Confusion Matrix and Classification Report used for evaluating our trained model.

Confusion Matrix

A confusion matrix is a table that summarizes a classification model's performance by quantifying true positives, true negatives, false positives, and false negatives. It serves as the foundation for various evaluation metrics, including accuracy, precision, recall, specificity, F1-score, and AUC-ROC, allowing you to assess the model's classification performance.

classification report

The classification report is a summary of the performance of a classification model. It provides various metrics that help assess the quality of the model's predictions, especially in multiclass classification problems. The classification report typically includes the following metrics for each class:

Precision: Precision measures the accuracy of the positive predictions made by the model. It is the ratio of true positive (TP) predictions to the total positive predictions made by the model. High precision indicates a low false positive rate.

Recall (Sensitivity): Recall measures the model's ability to correctly identify positive instances. It is the ratio of true positive (TP) predictions to the total actual positive instances. High recall indicates a low false negative rate.

F1-Score: The F1-score is the harmonic mean of precision and recall. It provides a balanced measure of a model's performance. It is useful when you want to find an optimal balance between precision and recall.

Support: Support is the number of actual occurrences of each class in the dataset. It helps you understand the distribution of the classes in the dataset.

The classification report summarizes these metrics for each class and often includes the overall performance metrics for the model. The overall performance can be reported using different averaging methods:

Micro-Averaging: Calculates the metrics globally by counting the total true positives, false negatives, and false positives. It treats all instances as a single dataset.

Macro-Averaging: Calculates the metrics for each class individually and then takes the unweighted mean of the metrics across all classes. It gives equal importance to each class.

Weighted Macro-Averaging: Similar to macro-averaging but weights the mean by the number of instances in each class. It gives more importance to larger classes.

The classification report is a valuable tool for evaluating a classification model's performance, particularly in scenarios with multiple classes, as it provides a detailed breakdown of the model's behavior for each class. It helps in understanding where the model excels and where it may need improvement.

About

Develop an AI solution using the Fashion MNIST dataset with a focus on identifying and classifying sustainable apparel products in alignment with the company's vision and the provided job description.


Languages

Language:Jupyter Notebook 99.9%Language:Python 0.1%