All Projects → dragen1860 → Tensorflow 2.x Tutorials

dragen1860 / Tensorflow 2.x Tutorials

TensorFlow 2.x version's Tutorials and Examples, including CNN, RNN, GAN, Auto-Encoders, FasterRCNN, GPT, BERT examples, etc. TF 2.0版入门实例代码,实战教程。

Programming Languages

Jupyter Notebook
11667 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Tensorflow 2.x Tutorials

Machine Learning
머신러닝 입문자 혹은 스터디를 준비하시는 분들에게 도움이 되고자 만든 repository입니다. (This repository is intented for helping whom are interested in machine learning study)
Stars: ✭ 705 (-88.42%)
Mutual labels:  jupyter-notebook, tensorflow-tutorials, tensorflow-examples
Tensorflow Brasil
Códigos e materiais sobre TensorFlow em Português
Stars: ✭ 74 (-98.78%)
Mutual labels:  jupyter-notebook, tensorflow-tutorials, tensorflow-examples
Docs
TensorFlow documentation
Stars: ✭ 4,999 (-17.89%)
Mutual labels:  jupyter-notebook, tensorflow-tutorials, tensorflow-examples
Yolov3 Tf2
YoloV3 Implemented in Tensorflow 2.0
Stars: ✭ 2,327 (-61.78%)
Mutual labels:  jupyter-notebook, tensorflow-tutorials, tensorflow-examples
Tensorflow Dataset Tutorial
Notebook for my medium article about how to use Dataset API in TensorFlow
Stars: ✭ 158 (-97.4%)
Mutual labels:  artificial-intelligence, jupyter-notebook, tensorflow-tutorials
Tf tutorial plus
Tutorials for TensorFlow APIs the official documentation doesn't cover
Stars: ✭ 293 (-95.19%)
Mutual labels:  jupyter-notebook, tensorflow-tutorials, tensorflow-examples
Daily Deeplearning
🔥机器学习/深度学习/Python/算法面试/自然语言处理教程/剑指offer/machine learning/deeplearning/Python/Algorithm interview/NLP Tutorial
Stars: ✭ 381 (-93.74%)
Mutual labels:  jupyter-notebook, tensorflow-tutorials, tensorflow-examples
Letslearnai.github.io
Lets Learn AI
Stars: ✭ 33 (-99.46%)
Mutual labels:  artificial-intelligence, tensorflow-tutorials, tensorflow-examples
Mit Deep Learning
Tutorials, assignments, and competitions for MIT Deep Learning related courses.
Stars: ✭ 8,912 (+46.39%)
Mutual labels:  artificial-intelligence, jupyter-notebook, tensorflow-tutorials
Deeppicar
Deep Learning Autonomous Car based on Raspberry Pi, SunFounder PiCar-V Kit, TensorFlow, and Google's EdgeTPU Co-Processor
Stars: ✭ 242 (-96.02%)
Mutual labels:  artificial-intelligence, jupyter-notebook, tensorflow-tutorials
Tensorflow chessbot
Predict chessboard FEN layouts from images using TensorFlow
Stars: ✭ 362 (-94.05%)
Mutual labels:  jupyter-notebook, tensorflow-tutorials, tensorflow-examples
Tensorflow learning notes
tensorflow学习笔记,来源于电子书:《Tensorflow实战Google深度学习框架》
Stars: ✭ 403 (-93.38%)
Mutual labels:  jupyter-notebook, tensorflow-tutorials
Practical Deep Learning Book
Official code repo for the O'Reilly Book - Practical Deep Learning for Cloud, Mobile & Edge
Stars: ✭ 441 (-92.76%)
Mutual labels:  artificial-intelligence, jupyter-notebook
Pba
Efficient Learning of Augmentation Policy Schedules
Stars: ✭ 461 (-92.43%)
Mutual labels:  artificial-intelligence, jupyter-notebook
Introtodeeplearning
Lab Materials for MIT 6.S191: Introduction to Deep Learning
Stars: ✭ 4,955 (-18.61%)
Mutual labels:  jupyter-notebook, tensorflow-tutorials
Generative Adversarial Networks
Introduction to generative adversarial networks, with code to accompany the O'Reilly tutorial on GANs
Stars: ✭ 505 (-91.7%)
Mutual labels:  jupyter-notebook, tensorflow-tutorials
Nlp Notebooks
A collection of notebooks for Natural Language Processing from NLP Town
Stars: ✭ 513 (-91.57%)
Mutual labels:  artificial-intelligence, jupyter-notebook
Data Science
Collection of useful data science topics along with code and articles
Stars: ✭ 315 (-94.83%)
Mutual labels:  artificial-intelligence, jupyter-notebook
Docproduct
Medical Q&A with Deep Language Models
Stars: ✭ 495 (-91.87%)
Mutual labels:  artificial-intelligence, jupyter-notebook
Examples
TensorFlow examples
Stars: ✭ 5,663 (-6.98%)
Mutual labels:  jupyter-notebook, tensorflow-examples

TensorFlow 2.0 Tutorials

Our repo. is the Winner of #PoweredByTF 2.0 Challenge!.

Timeline:

Installation

make sure you are using python 3.x.

  • CPU install
pip install tensorflow -U
  • GPU install

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

pip install tensorflow-gpu  -U

Test installation:

In [2]: import tensorflow  as tf

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

配套TF2视频教程

TensorFlow 2.0的视频教程链接:深度学习与TensorFlow 2实战

Acknowledgement

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

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
  • GPT
  • BERT
  • GCN

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!

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