Giter Club home page Giter Club logo

deep-learning-nanodegree-udacity's Introduction

Deep Learning Nanodegree Udacity

This is the repository for my implementations on mayor projects of the Deep Learning Nanodegree from Udacity.

Syllabus

Neural Networks.

  • Mathematical demonstrations:

  • Weight Initilization review:

    • Implemented using TensorFlow.
    • Implication of different initializations over Cost function and Gradient descent.
    • Reviewed:
      • Ones initializatialization.
      • Uniform distribution, saled uniform.
      • Normal distribution, truncated distribution.
      • Comparison to Xavier initialization.
  • Batch Normalization:

    • Implemented on TensorFlow.
    • Used in fully connected and convolutional layers.
    • Two levels of implementation:
      • Higher level of abstraction, tf.layers.batch_normalization: TensorFlow takes care of the normalization for training and inference, control dependencies through tf.control_dependencies() and tf.GraphKeys.UPDATE_OPS.
      • Lower level, tf.nn.batch_normalization: Explicit implementation instanciating gamma, beta, and calculating the batch/population mean, variance. Control training and inference through tf.cond().
  • Sentiment Analysis using MLPs:

    • Implemented on Numpy/Python.
    • Predict Positive/Negative sentiment over movie reviews.
    • Preprocess data:
      • Create vocabulary, word frequency.
      • Analyze word-freq/sentiment review ratio.
      • Bit encoding per word.
    • Built the neural network.
    • Reviewed limitations with word freq instead of word-sentiment relationship. 10% Validation accuracy improvement.
  • Bike Sharing Project:

    • Implemented on Numpy/Python.
    • Load & prepare the data:
      • Normalize features.
      • Created training, validation and test data.
    • Implement forward and backward propagation.
    • Trained and tested accuracy.

Convolutional Neural Networks.

  • CNN Autoencoder:

    • Implemented using Keras.
    • Usage of CNNs for encoding-decoding.
    • Denoising images.
  • Data Augmentation & Transfer Learning:

    • Implemented using Keras.
    • Explored data augmentation of CIFAR-10 with ImageDataGenerator from Keras, and impact of it over training.
    • Reviewed transfer learning on VGG-16, bottleneck feature extraccion and new FC layers over them.
  • Dog Breed Prediction Project:

    • Implemented using Keras.
    • Created CNN model from scratch and achieved at least 5% test accuracy in the first 5 epochs using data augmentation.
    • Used transfer learning of Xception model, and data augmentation to achieve 83% test accuracy.
    • Xception paper: Xception: Deep Learning with Depthwise Separable Convolutions

Recurrent Neural Networks.

Generative Adversarial Neural Networks.

Deep Reinforcement Learning.

deep-learning-nanodegree-udacity's People

Contributors

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