Giter Site home page Giter Site logo

lenet-keras's Introduction

This repo is implemented in Tensorflow

CNN Architecture

Architecture Framework Link
LeNet-5 keras(using tensorflow) HERE
AlexNet Tensorflow -
GoogLeNet - -
ResNet - -

LeNet-5 with keras

LeNet-5 Architecture is perhaps the most widely known CNN architecture. This architecture was made by Yann LeCun. This architecture consist of the following layers.

LeNet-5 with keras

LeNet-5 Architecture is perhaps the most widely known CNN architecture. This architecture was made by Yann LeCun. This architecture consist of the following layers.

Layer Feature Map Size Kernel Size Stride Activation
FC - 10 - - softmax
FC - 84 - - tanh
Conv2d 120 1x1 5x5 1 tanh
Average Pooling 16 5x5 2x2 2 tanh
Conv2d 16 10x10 5x5 1 tanh
Average Pooling 6 14x14 2x2 2 tanh
Conv2d 6 28x28 5x5 1 tanh
Input 1 32x32 - - -
  • MNIST Image is 28x28 pixel, but it was 32x32 pixel because of applied zero padding.

code

data.py is class for MNIST Data preprocessing
lenet.py is LeNet model implemented with keras
plot.py is function for loss visualization
If you want to test, run main.py

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.