All Projects → toelt-llc → TensorFlow20-Notes

toelt-llc / TensorFlow20-Notes

Licence: MIT license
TensorFlow 2.0 Various notes and tutorials

Programming Languages

Jupyter Notebook
11667 projects

Projects that are alternatives of or similar to TensorFlow20-Notes

Androidtensorflowmachinelearningexample
Android TensorFlow MachineLearning Example (Building TensorFlow for Android)
Stars: ✭ 1,369 (+9678.57%)
Mutual labels:  tensorflow-tutorials, deeplearning, tensorflow-examples
Awesome-Tensorflow2
基于Tensorflow2开发的优秀扩展包及项目
Stars: ✭ 45 (+221.43%)
Mutual labels:  tutorials, tensorflow-examples
Ml Classifier Ui
A UI tool for quickly training image classifiers in the browser
Stars: ✭ 224 (+1500%)
Mutual labels:  tensorflow-tutorials, tensorflow-examples
Awesome Carla
👉 CARLA resources such as tutorial, blog, code and etc https://github.com/carla-simulator/carla
Stars: ✭ 246 (+1657.14%)
Mutual labels:  tutorials, deeplearning
Yolov3 Tf2
YoloV3 Implemented in Tensorflow 2.0
Stars: ✭ 2,327 (+16521.43%)
Mutual labels:  tensorflow-tutorials, tensorflow-examples
Cs224d
Code for Stanford CS224D: deep learning for natural language understanding
Stars: ✭ 222 (+1485.71%)
Mutual labels:  tensorflow-tutorials, tensorflow-examples
Machine learning lectures
Collection of lectures and lab lectures on machine learning and deep learning. Lab practices in Python and TensorFlow.
Stars: ✭ 118 (+742.86%)
Mutual labels:  tutorials, tensorflow-tutorials
Ml Classifier
A tool for quickly training image classifiers in the browser
Stars: ✭ 97 (+592.86%)
Mutual labels:  tensorflow-tutorials, tensorflow-examples
tf-examples
TensorFlow examples
Stars: ✭ 23 (+64.29%)
Mutual labels:  tensorflow-tutorials, tensorflow-examples
tensorflow-fifo-queue-example
Example on how to use a Tensorflow Queue to feed data to your models.
Stars: ✭ 39 (+178.57%)
Mutual labels:  tensorflow-tutorials, tensorflow-examples
TF2-GAN
🐳 GAN implemented as Tensorflow 2.X
Stars: ✭ 61 (+335.71%)
Mutual labels:  tensorflow-tutorials, tensorflow-examples
Tensorflow In Practice Code
源码实现:《TensorFlow实战》黄文坚,唐源 著
Stars: ✭ 176 (+1157.14%)
Mutual labels:  tensorflow-tutorials, tensorflow-examples
Chatgirl
ChatGirl is an AI ChatBot based on TensorFlow Seq2Seq Model. ChatGirl 一个基于 TensorFlow Seq2Seq 模型的聊天机器人。(包含预处理过的 twitter 英文数据集,训练,运行,工具代码,来波 Star 。)QQ群:167122861
Stars: ✭ 105 (+650%)
Mutual labels:  tensorflow-tutorials, tensorflow-examples
Nakedtensor
Bare bone examples of machine learning in TensorFlow
Stars: ✭ 2,443 (+17350%)
Mutual labels:  tensorflow-tutorials, tensorflow-examples
content-moderation-image-api
An NSFW Image Classification REST API for effortless Content Moderation built with Node.js, Tensorflow, and Parse Server
Stars: ✭ 50 (+257.14%)
Mutual labels:  tensorflow-tutorials, tensorflow-examples
Fish detection
Fish detection using Open Images Dataset and Tensorflow Object Detection
Stars: ✭ 67 (+378.57%)
Mutual labels:  tutorials, tensorflow-tutorials
Mit Deep Learning
Tutorials, assignments, and competitions for MIT Deep Learning related courses.
Stars: ✭ 8,912 (+63557.14%)
Mutual labels:  tensorflow-tutorials, deeplearning
Free Tensorflow
Tensorflow 免费中文视频教程,开源代码,免费书籍.
Stars: ✭ 83 (+492.86%)
Mutual labels:  tensorflow-tutorials, tensorflow-examples
deep-learning-in-s4tf
Get started with Swift for TensorFlow by examples
Stars: ✭ 31 (+121.43%)
Mutual labels:  tensorflow-tutorials, tensorflow-examples
generative-art
🌈🎨 Generative Art is the idea realized as genetic code of artificial events, as construction of dynamic complex systems able to generate endless variations. This is also a nuxt-module (@luxdamore/nuxt-canvas-sketch) - [three.js, tensorflow.js and gsap are not included].
Stars: ✭ 41 (+192.86%)
Mutual labels:  tensorflow-tutorials, tensorflow-examples

Notes on TensorFlow 2.0

license MIT

In case you want to contact me, drop me an email at [email protected]

This repository contains Various notes and tutorials on TensorFlow 2.0 that I am working on. All examples are Jupyter notebooks, since in this way is easier to explain concepts and add examples.

How to work with the notebooks

All the notebooks that you can find in this repository can be run (and have been tested) on Google Colab. Especially since I select the 2.X TensorFlow version with the magic command %tensorflow_version 2.x that is only available in Google Colab. If you open in Github the notebooks (in case Github render the notebook properly... Sometime Github have problems doing that, but that is not related to the notebooks. Is a known Github problem) you will find a button at the top "open in Google Colab". Just click it and the notebook will open in Google Colab. In case Github does not render it properly, simply copy the URL of the notebook and open it in Goolge Colab (to know how check this link https://colab.research.google.com/github/googlecolab/colabtools/blob/master/notebooks/colab-github-demo.ipynb).

How to work with TensorFlow 2.0

The easiest way to work with TF2.0 is to use Google Colab. In this way you don't have to install anything. To learn is a great environment.

You can find more information here: https://github.com/michelucci/TF20-Notes/blob/master/TF_2_0_notes_choosing_the_TF_version.ipynb

but basically in Google Colab you have a magic command that allows you to select the latest 1.x or 2.x versions of TensorFlow. Simply use the following code

%tensorflow_version 2.x 
import tensorflow as tf
print(tf.__version__)

At the moment I am writing the rc0 TensorFlow version is out. So I get this output

TensorFlow 2.x selected.
2.0.0-rc0

How should I study TF 2.0?

In case you are wondering what is the best strategy to study TensorFlow 2.0 I have a file that will give you some tips on how to approach the subject. TensorFlow 2.0 is not easy and require some know-how and effort. Don't give up too early.

Check my suggestions here

https://github.com/michelucci/TensorFlow20-Notes/blob/master/howto_study_TF20.md

Some references

In the file

https://github.com/michelucci/TensorFlow20-Notes/blob/master/REFERENCES.md

you can find some suggestions for good books.

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