All Projects → yusugomori → Deeplearning Tf2

yusugomori / Deeplearning Tf2

Deep learning model zoo with TensorFlow 2.X (& Keras)

Programming Languages

python
139335 projects - #7 most used programming language

Deep Learning with TensorFlow 2.X

Implementations of neural network models with tf (>=2.0)

See also implementations with PyTorch 1.0 here.

Requirements

  • TensorFlow >= 2.0
$ pip install tensorflow

Models

  • Logistic Regression
  • MLP
  • LeNet
  • ResNet (ResNet34, ResNet50)
  • DenseNet (DenseNet121)
  • Encoder-Decoder (LSTM)
  • EncoderDecoder (Attention)
  • Transformer
  • Deep Q-Network
  • Variational Autoencoder
  • Generative Adversarial Network
models/
├── densenet121_cifar10_beginner.py
├── dqn_cartpole.py
├── encoder_decoder_attention.py
├── encoder_decoder_lstm.py
├── gan_fashion_mnist.py
├── lenet_mnist.py
├── lenet_mnist_beginner.py
├── logistic_regression_mnist.py
├── logistic_regression_mnist_beginner.py
├── mlp_mnist.py
├── mlp_mnist_beginner.py
├── resnet34_fashion_mnist.py
├── resnet34_fashion_mnist_beginner.py
├── resnet50_fashion_mnist.py
├── resnet50_fashion_mnist_beginner.py
├── transformer.py
├── vae_fashion_mnist.py
│
└── layers/
    ├── Attention.py
    ├── DotProductAttention.py
    ├── LayerNormalization.py
    ├── MultiHeadAttention.py
    ├── PositionalEncoding.py
    └── ScaledDotProductAttention.py

*_beginner.py is the file using only Keras.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].