2019-05-27 07:19:25 +08:00
2019-05-05 20:25:32 -05:00
2019-04-27 20:26:09 -05:00
2019-04-24 00:54:16 -05:00
2019-04-29 16:47:32 -05:00
2019-04-30 09:32:28 -05:00
2019-04-29 17:09:23 -05:00
2019-04-29 17:09:23 -05:00
2019-05-04 21:33:06 -05:00
2019-05-04 21:40:28 -05:00
2019-05-04 21:42:48 -05:00
2019-05-05 15:04:37 -05:00
2019-05-05 20:25:21 -05:00
2019-03-11 17:20:51 +11:00
2019-04-14 00:23:51 -05:00
2019-04-21 11:01:26 -05:00
2019-05-01 23:22:37 +10:00
2019-05-27 07:19:25 +08:00
2019-04-30 18:36:34 +10:00

TensorFlow 2.0 Tutorials

Timeline:

996.icu

Installation

make sure you are using python 3.x.

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

Install CUDA 10.0(or after) and cudnn by yourself. and set LD_LIBRARY_PATH up.

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

Feel free to submit a PR request to make this repo. more complete!

Refered Repos.

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

人工智能学习交流

请加QQ群295208768

二维码:

TensorFlow 2.0的视频教程推荐:深度学习与TensorFlow实战

Acknowledgement

  • 爱可可-爱生活 友情推荐
Languages
Jupyter Notebook 93.3%
Python 6.7%