Skip to content
Snippets Groups Projects
Select Git revision
  • e3bb706b282ac2c210c58dcde6f3576c33d2b6da
  • master default protected
2 results

deep-learning-examples

  • Clone with SSH
  • Clone with HTTPS
  • Name Last commit Last update
    01-Basic
    02-Intermediate
    03-Advanced
    README.md

    Deep Learning Examples

    This is a repository of some examples in Deep Learning implemented in PyTorch/TensorFlow.

    Contact info: yuxuan.chen@fu-berlin.de

    Table of Content

    1. Basic

    1.1 Image Classification with Logistic Regression

    Logistic regression on a subset of MNIST dataset containing 20000 samples. Implemented in:

    1.2 Image Classification with Neural Network

    A simple neural network of one hidden layer on the same dataset. Implemented in:

    1.3 Image Classification with CNN

    CNN of 2 convolutional layers on the same dataset. Implemented in:

    2. Intermediate

    2.1 Sequence Classification with RNN

    Use RNN and its variations to classify DNA sequences. Implemented in:

    2.2 VAE

    We use VAE and CVAE of 2-dim latent space to generate pictures learnt from 20000-sized MNIST dataset. Implemented in:

    2.3 GAN

    We use vanilla GAN of 32-dim latent space to generate from 60000-sized MNIST dataset. Implemented in:

    3. Advanced

    Dependencies

    • Python 3.5+
    • PyTorch 1.5.0
    • TensorFlow 2.2.0