Giter Site home page Giter Site logo

era_v1_session10_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:-

  • PrepLayer - Conv 3x3 s1, p1) >> BN >> RELU [64k]
  • Layer1 -
    X = Conv 3x3 (s1, p1) >> MaxPool2D >> BN >> RELU [128k]
    R1 = ResBlock( (Conv-BN-ReLU-Conv-BN-ReLU))(X) [128k]
  • Add(X, R1)
  • Layer 2 - Conv 3x3 [256k]
    MaxPooling2D
    BN
    ReLU
  • Layer 3 - X = Conv 3x3 (s1, p1) >> MaxPool2D >> BN >> RELU [512k]
    R2 = ResBlock( (Conv-BN-ReLU-Conv-BN-ReLU))(X) [512k]
    Add(X, R2)
    MaxPooling with Kernel Size 4
  • FC Layer
  • SoftMax Uses One Cycle Policy such that:
    Total Epochs = 24
    Max at Epoch = 5
    LRMIN = FIND
    LRMAX = FIND
    NO Annihilation
    Uses this transform -RandomCrop 32, 32 (after padding of 4) >> FlipLR >> Followed by CutOut(8, 8)
    Batch size = 512
    Use ADAM, and CrossEntropyLoss

Project Setup:

Clone the project as shown below:-

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

About the file structure
|__config __config.yaml
|__data
|__data_analysis
|__data_loader
__load_data.py
__albumentation.py
|__models
__model.py
|__utils
__dataset.py
__engine.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 CiFAR_S10.ipynb notebook:

  1. Using Anaconda prompt - Run as an administrator start jupyter notebook from the folder era_v1_session10_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_session10_pankaja to google colab at colab.google.com and run it on colab

Implementing Residual Block:

File used: models/model.py, model with Net Class and CiFAR_S10.ipynb

Target: - create a model with Residual block

Results:

  • Total parameters: 6,573,120
  • Train accuracy of 88.14 and test accuracy of 89.38

Analysis:

  • To see how the accuracy is, using residual blocks.

Contributing:

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

era_v1_session10_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.