All Projects → thibo73800 → Tensorflow2.0 Examples

thibo73800 / Tensorflow2.0 Examples

Jupyter notebooks to help you started with tensorflow 2.0

Projects that are alternatives of or similar to Tensorflow2.0 Examples

Effective python notebook
Stars: ✭ 251 (-0.79%)
Mutual labels:  jupyter-notebook
Shared
Shared Blogs and Notebooks
Stars: ✭ 252 (-0.4%)
Mutual labels:  jupyter-notebook
Machine Learning Nd
Udacity's Machine Learning Nanodegree project files and notes.
Stars: ✭ 252 (-0.4%)
Mutual labels:  jupyter-notebook
Nbdev
Create delightful python projects using Jupyter Notebooks
Stars: ✭ 3,061 (+1109.88%)
Mutual labels:  jupyter-notebook
Tutorials
Stars: ✭ 252 (-0.4%)
Mutual labels:  jupyter-notebook
Machine Learning Online 2018
ML Online Course Repository. Course videos on online.codingblocks.com
Stars: ✭ 252 (-0.4%)
Mutual labels:  jupyter-notebook
Pytorch Exercise
Practical Exercise Codes for PyTorch
Stars: ✭ 250 (-1.19%)
Mutual labels:  jupyter-notebook
Fmix
Official implementation of 'FMix: Enhancing Mixed Sample Data Augmentation'
Stars: ✭ 252 (-0.4%)
Mutual labels:  jupyter-notebook
Genomic Ulmfit
ULMFiT for Genomic Sequence Data
Stars: ✭ 250 (-1.19%)
Mutual labels:  jupyter-notebook
Densereg
Code repository for DenseReg.
Stars: ✭ 252 (-0.4%)
Mutual labels:  jupyter-notebook
Whirlwindtourofpython
The Jupyter Notebooks behind my OReilly report, "A Whirlwind Tour of Python"
Stars: ✭ 3,002 (+1086.56%)
Mutual labels:  jupyter-notebook
Modern practical nlp
This course covers how you can use NLP to do stuff.
Stars: ✭ 252 (-0.4%)
Mutual labels:  jupyter-notebook
Selene
a framework for training sequence-level deep learning networks
Stars: ✭ 252 (-0.4%)
Mutual labels:  jupyter-notebook
Deep Learning Book
Repository for "Introduction to Artificial Neural Networks and Deep Learning: A Practical Guide with Applications in Python"
Stars: ✭ 2,705 (+969.17%)
Mutual labels:  jupyter-notebook
Toonify
Stars: ✭ 253 (+0%)
Mutual labels:  jupyter-notebook
Ai Projects
Artificial Intelligence projects, documentation and code.
Stars: ✭ 250 (-1.19%)
Mutual labels:  jupyter-notebook
Coastsat
Global shoreline mapping tool from satellite imagery
Stars: ✭ 252 (-0.4%)
Mutual labels:  jupyter-notebook
Pythontutorial
From Microsoft's FREE Edx course
Stars: ✭ 253 (+0%)
Mutual labels:  jupyter-notebook
Ml Foundations
Machine Learning Foundations: Algebra, Calculus, Statistics & Computer Science
Stars: ✭ 249 (-1.58%)
Mutual labels:  jupyter-notebook
Eeap Examples
Code for Document Similarity on Reuters dataset using Encode, Embed, Attend, Predict recipe
Stars: ✭ 252 (-0.4%)
Mutual labels:  jupyter-notebook

Tensorflow2.0 - Examples

Jupyter notebooks to help you started with tensorflow 2.0. The repository includes notebooks to start with simple NN, understand autograph, learn how to train models, CNN to analyze images with tf.data and RNN to generate text!

$> pip install tensorflow

To get started

  1. If your are new into Tensorflow2.0 or you love to use some old fashion Tensorflow then you might want to start with this notebook: Introduction - Simple Neural Network.ipynb With tensorflow2.0 it is higly recommend to use the tf.keras module if possible. This notebook will give you a first example with the Fashion MNIST Dataset.

  2. Now that you are familar with tf.keras you can check the difference between eager mode and grah mode in this notebook: Graph Mode vs Eager Mode.ipynb.

  3. Training a model has never been so easy. Let's check how you can do it with this notebook: Train a model.ipynb

  4. Learn how to use the Subclassing API to built your model: Subclassing API

  5. Learn how to create a custom Layer with low level operations: Create your own layer

Projects examples

  1. Learn how to create a CNN model to analayse the QuickDraw dataset. You will use autograph, the model subclassing API and tf.data: Quick Draw CNN.ipynb

  2. Learn how to generate text with an RNN. You will use a simple custom keras layer and autograph: RNN - Text Generator.ipynb

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