Coder Social home page Coder Social logo

cranjis-mcb / vision_architectures Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 7.57 MB

Pytorch Implementation and Performance Analysis of the Popular Vision Architectures from Scratch.

Jupyter Notebook 100.00%
cnn pytorch resnets efficientnet augmix data-augmentation

vision_architectures's Introduction

VISION_ARCHITECTURES

  1. Implementaion of the Popular Vision Architectures from Scratch.
  2. Performance Comparison with the Pytorch Standard Architectures.
  3. Implementation of the Popular Vision Data Augmentation Techniques from Scratch.

Implemented Architectures as of now

  1. ResNet (Versions - 18, 34, 50, 101, 152) ✅
  2. EfficientNet (Versions - b0-b7) ✅
  3. EfficientNet-V2 (Versions - S, M, L) ✅

You can import the mentioned CNN Architectures from this file.

How to Use?

from cnn_architectures import ResNet18, ResNet34, ResNet50, ResNet101, ResNet152
from cnn_architectures import EffNet
from cnn_architectures import EffNetV2

# Initialize the model.
resnet = ResNet18(img_channel=3, num_classes=1000) # Resnets

version = 'b0' # b0-b7
effnet = EffNet(version, num_classes=1000) # Efficient-Nets

version = 's' # s, m, l
effnetV2 = EffNetV2(version, num_classes=1000) # EfficientNet-V2

This folder consists of the Pytorch Implementation of the Popular SOTA Vision Data Augmentations techniques.

Implemented Data Augmentations as of now

  1. Cutout
  2. Mixup
  3. CutMix
  4. AugMix
  5. GridMask

vision_architectures's People

Contributors

cranjis-mcb 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.