All Projects → romeokienzler → Tensorflow

romeokienzler / Tensorflow

Licence: other
Project containig related material for my TensorFlow articles

Programming Languages

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

Projects that are alternatives of or similar to Tensorflow

Cl Jupyter
An enhanced interactive Shell for Common Lisp (based on the Jupyter protocol)
Stars: ✭ 191 (-91.94%)
Mutual labels:  jupyter-notebook
Py R Fcn Multigpu
Code for training py-faster-rcnn and py-R-FCN on multiple GPUs in caffe
Stars: ✭ 192 (-91.9%)
Mutual labels:  jupyter-notebook
Spell Checker
A seq2seq model that can correct spelling mistakes.
Stars: ✭ 193 (-91.86%)
Mutual labels:  jupyter-notebook
Simpleselfattention
A simpler version of the self-attention layer from SAGAN, and some image classification results.
Stars: ✭ 192 (-91.9%)
Mutual labels:  jupyter-notebook
Research2vec
Representing research papers as vectors / latent representations.
Stars: ✭ 192 (-91.9%)
Mutual labels:  jupyter-notebook
Crawler Analysis
爬虫+数据分析实战项目
Stars: ✭ 193 (-91.86%)
Mutual labels:  jupyter-notebook
Vanillacnn
Implementation of the Vanilla CNN described in the paper: Yue Wu and Tal Hassner, "Facial Landmark Detection with Tweaked Convolutional Neural Networks", arXiv preprint arXiv:1511.04031, 12 Nov. 2015. See project page for more information about this project. http://www.openu.ac.il/home/hassner/projects/tcnn_landmarks/ Written by Ishay Tubi : ishay2b [at] gmail [dot] com https://www.l
Stars: ✭ 191 (-91.94%)
Mutual labels:  jupyter-notebook
Scribe
Realistic Handwriting with Tensorflow
Stars: ✭ 193 (-91.86%)
Mutual labels:  jupyter-notebook
Hashnet
Code release for "HashNet: Deep Learning to Hash by Continuation" (ICCV 2017)
Stars: ✭ 192 (-91.9%)
Mutual labels:  jupyter-notebook
Deep learning tutorial
[ko] 패스트캠퍼스 강의 자료
Stars: ✭ 193 (-91.86%)
Mutual labels:  jupyter-notebook
Ml Tutorial
Introduction to ML packages for the 6.86x course
Stars: ✭ 189 (-92.03%)
Mutual labels:  jupyter-notebook
Deep Learning Random Explore
Stars: ✭ 192 (-91.9%)
Mutual labels:  jupyter-notebook
Learned Correspondence Release
Code release for "learning to find good correspondences" CVPR 2018
Stars: ✭ 192 (-91.9%)
Mutual labels:  jupyter-notebook
Trajectron Plus Plus
Code accompanying the ECCV 2020 paper "Trajectron++: Dynamically-Feasible Trajectory Forecasting With Heterogeneous Data" by Tim Salzmann*, Boris Ivanovic*, Punarjay Chakravarty, and Marco Pavone (* denotes equal contribution).
Stars: ✭ 191 (-91.94%)
Mutual labels:  jupyter-notebook
Nn compression
Stars: ✭ 193 (-91.86%)
Mutual labels:  jupyter-notebook
Activitynet 2016 Cvprw
Tools to participate in the ActivityNet Challenge 2016 (NIPSW 2016)
Stars: ✭ 191 (-91.94%)
Mutual labels:  jupyter-notebook
Ibmquantumchallenge2020
Quantum Challenge problem sets
Stars: ✭ 193 (-91.86%)
Mutual labels:  jupyter-notebook
Sigopt Examples
Optimization Examples with SigOpt
Stars: ✭ 193 (-91.86%)
Mutual labels:  jupyter-notebook
One Hundred Layers Tiramisu
Keras Implementation of The One Hundred Layers Tiramisu: Fully Convolutional DenseNets for Semantic Segmentation by (Simon Jégou, Michal Drozdzal, David Vazquez, Adriana Romero, Yoshua Bengio)
Stars: ✭ 193 (-91.86%)
Mutual labels:  jupyter-notebook
Extendedtinyfaces
Detecting and counting small objects - Analysis, review and application to counting
Stars: ✭ 193 (-91.86%)
Mutual labels:  jupyter-notebook

What's new in TensorFlow 2.x

The following are all the changes coming in TensorFlow 2.x. Let's have a closer look at them:

  • Eager Execution / tf.function
  • Integration of the Keras API
  • Facilitated distributed training
  • TF Data
  • TF SavedModel
  • TensorFlow Hub
  • TensorFlow Serving
  • TensorFlow Lite
  • TensorFlow.js
  • Tidying up the API
  • The conversion tool
  • Alternative variable scoping

Eager Execution

Lack of eager execution was one of the main complaints against TensorFlow. We all can relate. Having to execute the whole graph and then trying to debug based on the errors was very tedious. Especially, since values of intermediate results haven't been accessible without printing them out by mixing in debug statements into the production code.

With TensorFlow 2.0, eager execution is activated by default and the very cool thing is that the code nearly doesn't change. Under the hood, you are just working with so-called "EagerTensors" instead of "Tensors" but since they share the same interface, the difference is barely noticeable. Even in execution speed, the difference is hard to see.

This means, from now on, TensorFlow code can be used and debugged as ordinary python code (using numpy for example). This is one aspect of making TensorFlow more pythonic.

Below there are two tasks. I highly recommend doing them because while watching me coding and coding yourself you'll definitely internalize the material.

Tasks

  1. Watch me coding

  2. Code yourself

Integration of the Keras API

Actually, Keras is one of the greatest APIs on the planet for DeepLearning. Now Keras has been eaten up by TensorFlow. A bit sad, but in reality it doesn't make any difference since nearly everyone used Keras on top of TensorFlow anyway. So let's consider Keras to be part of TensorFlow (or TensorFlow to be part of Keras). The cool thing is, that you now can use the straightforward, and easy to use Keras API and still can claim to be a TensorFlow developer. Yeah, Google made Keras the official high level API of TensorFlow.

So you might think, so what? Just some imports change. But this is only one part of the story. Yes, the imports changed, and as you can see later in the example, you can basically leave your existing Keras code intact most of the times and just change the import and you are done.

But in addition, Keras now can make use of built-in TensorFlow functionality which wasn't possible before. For example, you can take your 1:1 Keras code and TensorFlow will scale it to a large GPU or TPU cluster. We'll have a look at this in the next chapter.

For now, just follow along the video and code exercise below to get an idea how things work:

Tasks

  1. Watch me coding

  2. Code yourself

If you want to learn more, please have a look at our book

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