mathlf2015 / TensorFlow2.0Tutorials

TensorFlow 2.0 version's Tutorials and Examples, CNN, RNN, GAN tutorials, etc. TF 2.0版入门实例代码,实战教程。

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TensorFlow 2.0 Tutorials

Timeline:

Installation

  1. CPU install
pip install tensorflow==2.0.0-alpha0
  1. GPU install
pip install tensorflow-gpu==2.0.0-alpha0

Test installation:

In [2]: import tensorflow  as tf

In [3]: tf.__version__
Out[3]: '2.0.0-dev20190129'
In [4]: tf.test.is_gpu_available()
...
totalMemory: 3.95GiB freeMemory: 3.00GiB
...
Out[4]: True

Includes

  • TensorFlow 2.0 overview
  • TensorFlow 2.0 Basic Usage
  • Linear Regression
  • MNIST, FashionMNIST
  • CIFAR10
  • Fully Connected Layer
  • VGG16
  • Inception Network
  • ResNet18
  • Naive RNN
  • LSTM
  • ColorBot
  • Auto-Encoders
  • Variational Auto-Encoders
  • DCGAN
  • CycleGAN
  • WGAN
  • Pixel2Pixel
  • Faster RCNN
  • A2C

and more is waiting to be updated!

Refered Repos.

Our work is not built from scratch. Great appreciation to these open works!

人工智能学习交流

请加QQ群:295208768 二维码:

Acknowledgement

  • 爱可可-爱生活 友情推荐

About

TensorFlow 2.0 version's Tutorials and Examples, CNN, RNN, GAN tutorials, etc. TF 2.0版入门实例代码,实战教程。


Languages

Language:Jupyter Notebook 97.2%Language:Python 2.8%