Giter Site home page Giter Site logo

era_v1_session11_pankaja's Introduction

Purpose: Use Residual block and create a CNN model for training on CiFAR 10 dataset.

Based on CiFAR 10 dataset

Basic structure for the model:-

  • convolution layer - 1
  • Layer1 -
    X = Conv 3x3 (s1, p1) >> MaxPool2D >> BN >> RELU
    R1 = ResBlock( (Conv-BN-ReLU-Conv-BN-ReLU))(X)
  • Add(X, R1)
  • Layer 2 - Conv 3x3
    MaxPooling2D
    BN
    ReLU
  • Layer 3 - X = Conv 3x3 (s1, p1) >> MaxPool2D >> BN >> RELU
    R2 = ResBlock( (Conv-BN-ReLU-Conv-BN-ReLU))(X)
    Add(X, R2)
    MaxPooling with Kernel Size 4
  • Layer 4 - X = Conv 3x3 (s1, p1) >> MaxPool2D >> BN >> RELU
    R2 = ResBlock( (Conv-BN-ReLU-Conv-BN-ReLU))(X)
    Add(X, R2)
    MaxPooling with Kernel Size 4
  • FC Layer
  • SoftMax Uses One Cycle Policy such that:

Uses this transform -RandomCrop 32, 32 (after padding of 4) >> FlipLR >> Followed by CutOut(16, 16)
Batch size = 512
Use SGD, and CrossEntropyLoss

Project Setup:

Clone the project as shown below:-

$ git clone [email protected]:pankaja0285/era_v1_session11_pankaja.git
$ cd era_v1_session11_pankaja

About the file structure
|__config __config.yaml
|__data |__data_analysis |__data_loader __load_data.py
__albumentation.py
|__models __resnet.py
|__utils
__engine.py
__gradcam_viz.py
__helper.py
__plot_metrics.py
__test.py
__train.py
|__CiFAR_S10.ipynb
|__README.md

NOTE: List of libraries required: torch and torchsummary, tqdm for progress bar, which are installed using requirements.txt

One of 2 ways to run any of the notebooks, for instance Submission_CiFAR_S11_GradCam.ipynb notebook:

  1. Using Anaconda prompt - Run as an administrator start jupyter notebook from the folder era_v1_session11_pankaja and run it off of your localhost
    NOTE: Without Admin privileges, the installs will not be correct and further import libraries will fail.
jupyter notebook
  1. Upload the notebook folder era_v1_session11_pankaja to google colab at colab.google.com and run it on colab

In Submission_CiFAR_S11_GradCam.ipynb - Use case With RandomCrop ONLY:

File used: models/resnet.py **

Target: - Resnet18 model with grad-CAM applied and with RandomCrop

Results:

  • Total parameters: 11,173,962
  • Train accuracy of 91.05 and test accuracy of 89.17

Analysis:

  • To see how the grad-cam - heat map of the presence of the object

In Submission_CiFAR_S11_GradCam.ipynb - With Cutout applied via Albumentations:

File used: models/resnet.py **

Target: - Resnet18 model with grad-CAM applied and with RandomCrop and cutout applied via Albumentations

Results:

  • Total parameters: 11,173,962
  • Train accuracy of 84.52 and test accuracy of 88.66

Analysis:

  • To see how the grad-cam visualizes in the 4th layer - basically a heat map for the presence of the object

GradCam Image

Contributing:

For any questions, bug(even typos) and/or features requests do not hesitate to contact me or open an issue!

era_v1_session11_pankaja's People

Contributors

pankaja0285 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.