Giter Site home page Giter Site logo

rtedwards / nn-zero-to-hero Goto Github PK

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

Notes from Nerual Networks: Zero to Hero (https://www.youtube.com/watch?v=VMj-3S1tku0&list=PLAqhIrjkxbuWI23v9cThsA9GvCAUhRvKZ)

License: MIT License

Jupyter Notebook 100.00%

nn-zero-to-hero's Introduction

nn-zero-to-hero

Notes from Nerual Networks: Zero to Hero (https://www.youtube.com/watch?v=VMj-3S1tku0&list=PLAqhIrjkxbuWI23v9cThsA9GvCAUhRvKZ)

Neural Netowrk Architecture

  • Input Layer
  • Hidden Layers
  • Output Layer (Activation Layer?)

Neural Network Types

  • Feed Forward Networks (vanilla nerual network)
  • Multi-Layer Perceptron (MLP)
  • Convolutional Neural Networks (CNN)
  • Recurrent Neural Networks (RNN)
  • Long Short-Term Memory Networks (LSTM)
  • Radial Based Networks
  • Generative Adversarial Networks (GAN)
  • Transformers

Hidden Layers

Different layer types perform different transformations on their inputs, and some layers are better suited for some tasks than others.

  • Linear Layer (Linear) - regression
  • Fully Connected Layer (Dense) - Multi Classification
  • Convolutional Layer (CNN) - typically used for image analysis tasks. In this layer, the network detects edges, textures, and patterns. The outputs from this layer are then feed into a fully-connected layer for further processing.
  • Recurrent Layer (RNN) - used for text processing with a memory function. Similar to the Convolutional layer, the output of recurrent layers are usually fed into a fully-connected layer for further processing.
  • Pooling Layer - used to reduce the size of the data input.
  • Normalization Layer - adjusts the output data from previous layers to achieve a regular distribution. This results in improved scalability and model training.
  • Deconvolution Layer
  • Activation Layer
  • Sequence Layer - A sequence input layer inputs sequence data to a neural network and applies data normalization.
  • Dropout Layer - a common regularization technique to prevent overfitting. It takes the output of the previous layer's activations and randomly sets a fraction (dropout rate) of the activations to 0, cancelling or 'dropping' them out.

Output Layers (Activation Layers)

Activation Functions

Loss Functions (Cost Functions)

  • Cross-Entropy
  • Negative Log-Likelihood

Regularizations

Pooling

Pooling layers are methods for reducing high dimensionality. Pooling layers provide an approach for downsampling feature maps by summarizing the presence of features in patches of the feature map.

  • Max Pooling
  • Average Pooling

Concepts

  • Vanishing gradients
  • Dead neurons

Debugging

  • Vanishing gradients
  • Dead neurons

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.