Skip to content

Latest commit

 

History

History
40 lines (23 loc) · 1.28 KB

README.md

File metadata and controls

40 lines (23 loc) · 1.28 KB

Sports-images-Classification-

Classify different sports images to know the sport using Transfer Learning

the dataset can be found at: https://drive.google.com/file/d/1s07aL-7nvhO8ESJy_uTCZJMF5lw5LAGK/view

  • General Techniques Used

    1. Different optimizers such as (Adam, SGD)
    2. Early stopping (avoid overfitting)
    3. L2 regularization (reduce overfitting)
    4. BatchNormalization (do normalization between layers, helps to speed training )
    5. Dropout (to reduce overfitting by randomly turning off part of the network and letting the rest of the network train)
    6. Bottleneck (to reduce the number of parameters between layers) Data Augmentation (ImageDataGenerator)
  • Methodology

    For models such as mobile net v2, vgg19 and inception models, We build their architectures from scratch and then load their weights whether from tensor hub or GitHub. To feed them to the models then make them unchangeable weights for training for our new data.

with using Mobile Net v2 model:

image

and VGG19 Model:

image