All Projects → madalinabuzau → Tensorflow Eager Tutorials

madalinabuzau / Tensorflow Eager Tutorials

Simple tutorials for building neural networks with TensorFlow Eager mode.

Projects that are alternatives of or similar to Tensorflow Eager Tutorials

2018 19 Classes
https://cc-mnnit.github.io/2018-19-Classes/ - 🎒 💻 Material for Computer Club Classes
Stars: ✭ 119 (-76.62%)
Mutual labels:  jupyter-notebook, tutorials
100 Days Of Ml Code
A day to day plan for this challenge. Covers both theoritical and practical aspects
Stars: ✭ 172 (-66.21%)
Mutual labels:  jupyter-notebook, tutorials
Imageprocessing
MicaSense RedEdge and Altum image processing tutorials
Stars: ✭ 139 (-72.69%)
Mutual labels:  jupyter-notebook, tutorials
Firstcoursenetworkscience
Tutorials, datasets, and other material associated with textbook "A First Course in Network Science" by Menczer, Fortunato & Davis
Stars: ✭ 111 (-78.19%)
Mutual labels:  jupyter-notebook, tutorials
Dive Into Dl Tensorflow2.0
本项目将《动手学深度学习》(Dive into Deep Learning)原书中的MXNet实现改为TensorFlow 2.0实现,项目已得到李沐老师的认可
Stars: ✭ 3,380 (+564.05%)
Mutual labels:  jupyter-notebook, tutorials
Lab Workshops
Materials for workshops on text mining, machine learning, and data visualization
Stars: ✭ 112 (-78%)
Mutual labels:  jupyter-notebook, tutorials
Colab
Continual Learning tutorials and demo running on Google Colaboratory.
Stars: ✭ 168 (-66.99%)
Mutual labels:  jupyter-notebook, tutorials
Lis Ynp
🔮 Life is short, you need PyTorch.
Stars: ✭ 92 (-81.93%)
Mutual labels:  jupyter-notebook, tutorials
Spacy Notebooks
💫 Jupyter notebooks for spaCy examples and tutorials
Stars: ✭ 255 (-49.9%)
Mutual labels:  jupyter-notebook, tutorials
Understanding tensorflow nn
🔮Getting started with TensorFlow: Classifying Text with Neural Networks
Stars: ✭ 215 (-57.76%)
Mutual labels:  jupyter-notebook, tutorials
Awesome Pytorch List Cnversion
Awesome-pytorch-list 翻译工作进行中......
Stars: ✭ 1,361 (+167.39%)
Mutual labels:  jupyter-notebook, tutorials
The Elements Of Statistical Learning Python Notebooks
A series of Python Jupyter notebooks that help you better understand "The Elements of Statistical Learning" book
Stars: ✭ 405 (-20.43%)
Mutual labels:  jupyter-notebook, tutorials
Pytorch Pos Tagging
A tutorial on how to implement models for part-of-speech tagging using PyTorch and TorchText.
Stars: ✭ 96 (-81.14%)
Mutual labels:  jupyter-notebook, tutorials
Quantum Algorithms Tutorials
Tutorials for Quantum Algorithms with Qiskit implementations.
Stars: ✭ 115 (-77.41%)
Mutual labels:  jupyter-notebook, tutorials
Tutorials
All of the code for my Medium articles
Stars: ✭ 92 (-81.93%)
Mutual labels:  jupyter-notebook, tutorials
Rethinking Tensorflow Probability
Statistical Rethinking (2nd Ed) with Tensorflow Probability
Stars: ✭ 152 (-70.14%)
Mutual labels:  jupyter-notebook, tutorials
Deeplearning Nlp Models
A small, interpretable codebase containing the re-implementation of a few "deep" NLP models in PyTorch. Colab notebooks to run with GPUs. Models: word2vec, CNNs, transformer, gpt.
Stars: ✭ 64 (-87.43%)
Mutual labels:  jupyter-notebook, tutorials
Fish detection
Fish detection using Open Images Dataset and Tensorflow Object Detection
Stars: ✭ 67 (-86.84%)
Mutual labels:  jupyter-notebook, tutorials
Ml Lessons
Intro to deep learning for medical imaging lesson, by MD.ai
Stars: ✭ 199 (-60.9%)
Mutual labels:  jupyter-notebook, tutorials
Supervisely Tutorials
🌈 Tutorials for Supervise.ly
Stars: ✭ 385 (-24.36%)
Mutual labels:  jupyter-notebook, tutorials

Simple tutorials on deep learning using TensorFlow Eager

This repo aims to help people who would like to start getting hands-on experience with deep learning using the TensorFlow Eager mode. TensorFlow Eager mode lets you build neural networks as easy as you would do with Numpy, with the huge advantage that it provides automatic differentiation (no more handwritten backprop. YAAAY!). It can ran also on GPUs making the neural networks training significantly faster.

I will try to make the tutorials accessible for everyone, thus I will try to work on problems that do not require a GPU to work on.

TensorFlow Version used in the tutorials - 1.7

List of tutorials available:

Getting started


  • 01. Build a simple neural network - This tutorial shows you how to build and train a one-hidden layer neural network using the Eager mode of TensorFlow, on a synthetically generated dataset.
  • 02. Using metrics in Eager mode - This tutorial shows you how to use metrics that are compatible with Eager mode, for three types of machine learning problems (multi-classification, imbalanced dataset and regression).

Simple but useful stuff


  • 03. Save and restore a trained model - Simple tutorial on how you can save a trained model and restore it at a later time to make predictions on new data.
  • 04. Transfer text data to TFRecords - This tutorial shows you how to store text data of variable sequence length to TFRecords. The data can be easily padded on the fly, within a batch, when reading the dataset with an iterator.
  • 05. Transfer image data to TFRecords - Easy and simple tutorial on how to transfew image data and its metadata (e.g. target) to TFRecords.
  • 06. How to read TFRecords data in batches - This tutorial shows you how to read either variable length sequence data or image data, in batches, from TFRecords.

Convolutional neural networks


  • 07. Build a CNN for emotion recognition - This tutorial shows you how to build a CNN from scratch using the TensorFlow Eager API and the FER2013 dataset. At the end of the tutorial you will be able to test the network on yourself using a webcam. Very fun exercise!

Recurrent neural networks


  • 08. Build a dynamic RNN for sequence classification - Learn how to work with variable sequence input data. This tutorial shows you how to build a dynamic RNN using the TensorFlow Eager API and the Stanford Large Movie Review Dataset.
  • 09. Build a RNN for time series regression - Learn how to build a RNN for timeseries forecasting.

Requests for tutorials:

  • If you have any requests for a specific tutorial please let me know.

Improvement advice:

  • Please let me know if you have any suggestions to improve these tutorials. The aim is to help you getting a good grasp of this framework but I am also looking to improve my programming skills so any feedback will be really appreciated :)!
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].