Image-Scrapping-and-Predictions

Dataset: Imagewoof

The dataset consist of 11385 images and includes next categories:

  • black_dress: 450
  • black_pants: 871
  • black_shirt: 715
  • black_shoes: 766
  • black_shorts: 328
  • blue_dress: 502
  • blue_pants: 798
  • blue_shirt: 741
  • blue_shoes: 523
  • blue_shorts: 299
  • brown_pants: 311
  • brown_shoes: 464
  • brown_shorts: 40
  • green_pants: 227
  • green_shirt: 230
  • green_shoes: 455
  • green_shorts: 135
  • red_dress: 800
  • red_pants: 308
  • red_shoes: 610
  • white_dress: 818
  • white_pants: 274
  • white_shoes: 600
  • white_shorts: 120

Transforms Used

Resize

Resized an image to 224 * 224 pixel

Training Details

Model: ResNet 34

ResNet-34 is a convolutional neural network that is 50 layers deep. You can load a pretrained version of the network trained on more than a million images from the ImageNet database

Loss Function : FlattenedLoss of CrossEntropyLoss

Cross-entropy loss, or log loss, measures the performance of a classification model whose output is a probability value between 0 and 1.

Optimizer : ADAM

Adaptive Moment Estimation (Adam) is an optimizer that computes adaptive learning rates for each parameter. In addition to storing an exponentially decaying average of past squared gradients vt like RMSprop, Adam also keeps an exponentially decaying average of past gradients mt, similar to momentum.

Scheduler : One cycle Policy

The 1cycle policy has three steps: We progressively increase our learning rate from base_lr to lr_max and at the same time we progressively decrease our momentum from mom_max to mom_min.

We do the exact opposite: we progressively decrease our learning rate from lr_max to lr_max/div_factor and at the same time we progressively increase our momentum from mom_min to mom_max.

Image Scrapping

Chromium engine

Beautiful Soup