All Projects → instillai → Tensorflow Course

instillai / Tensorflow Course

Licence: mit
📡 Simple and ready-to-use tutorials for TensorFlow

Programming Languages

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

Projects that are alternatives of or similar to Tensorflow Course

pytorch-deepdream
PyTorch implementation of DeepDream algorithm (Mordvintsev et al.). Additionally I've included playground.py to help you better understand basic concepts behind the algo.
Stars: ✭ 293 (-98.16%)
Mutual labels:  deep-learning-tutorial
Neo
Deep learning library in python from scratch
Stars: ✭ 36 (-99.77%)
Mutual labels:  deep-learning-tutorial
Deeplearning.ai Notes
These are my notes which I prepared during deep learning specialization taught by AI guru Andrew NG. I have used diagrams and code snippets from the code whenever needed but following The Honor Code.
Stars: ✭ 262 (-98.36%)
Mutual labels:  deep-learning-tutorial
NumpyDL
Deep Learning Library. For education. Based on pure Numpy. Support CNN, RNN, LSTM, GRU etc.
Stars: ✭ 206 (-98.71%)
Mutual labels:  deep-learning-tutorial
sklearn-audio-classification
An in-depth analysis of audio classification on the RAVDESS dataset. Feature engineering, hyperparameter optimization, model evaluation, and cross-validation with a variety of ML techniques and MLP
Stars: ✭ 31 (-99.81%)
Mutual labels:  deep-learning-tutorial
pytorch-neural-style-transfer-johnson
Reconstruction of the fast neural style transfer (Johnson et al.). Some portions of the paper have been improved by the follow-up work like the instance normalization, etc. Checkout transformer_net.py's header for details.
Stars: ✭ 85 (-99.47%)
Mutual labels:  deep-learning-tutorial
deep-blueberry
If you've always wanted to learn about deep-learning but don't know where to start, then you might have stumbled upon the right place!
Stars: ✭ 17 (-99.89%)
Mutual labels:  deep-learning-tutorial
Adaptnlp
An easy to use Natural Language Processing library and framework for predicting, training, fine-tuning, and serving up state-of-the-art NLP models.
Stars: ✭ 278 (-98.25%)
Mutual labels:  deep-learning-tutorial
nlp-notebooks
A collection of natural language processing notebooks.
Stars: ✭ 19 (-99.88%)
Mutual labels:  deep-learning-tutorial
RACLAB
No description or website provided.
Stars: ✭ 33 (-99.79%)
Mutual labels:  deep-learning-tutorial
tensorflow-tutorial
郑泽宇等《TensorFlow实战Google深度学习框架》(第二版)学习
Stars: ✭ 40 (-99.75%)
Mutual labels:  deep-learning-tutorial
deep-learning-topics
No description or website provided.
Stars: ✭ 12 (-99.92%)
Mutual labels:  deep-learning-tutorial
Personalised-aesthetic-assessment-using-residual-adapters
Jupyter notebooks used as supporting material for an msc thesis about personalised aesthetic assessment using residual adapters.
Stars: ✭ 19 (-99.88%)
Mutual labels:  deep-learning-tutorial
deep-learning-tutorial-with-chainer
Deep learning tutorial with Chainer
Stars: ✭ 25 (-99.84%)
Mutual labels:  deep-learning-tutorial
Dlpython course
Примеры для курса "Программирование глубоких нейронных сетей на Python"
Stars: ✭ 266 (-98.33%)
Mutual labels:  deep-learning-tutorial
Tensorflow-ML
Different machine learning algorithms implementation in Tensorflow
Stars: ✭ 26 (-99.84%)
Mutual labels:  deep-learning-tutorial
nettutorial
Deep learning tutorial
Stars: ✭ 27 (-99.83%)
Mutual labels:  deep-learning-tutorial
Machine Learning Curriculum
Complete path for a beginner to become a Machine Learning Scientist!
Stars: ✭ 279 (-98.25%)
Mutual labels:  deep-learning-tutorial
Pytorch Gans
My implementation of various GAN (generative adversarial networks) architectures like vanilla GAN (Goodfellow et al.), cGAN (Mirza et al.), DCGAN (Radford et al.), etc.
Stars: ✭ 271 (-98.3%)
Mutual labels:  deep-learning-tutorial
cresset
Template repository to build PyTorch projects from source on any version of PyTorch/CUDA/cuDNN.
Stars: ✭ 573 (-96.4%)
Mutual labels:  deep-learning-tutorial

TensorFlow Course

https://travis-ci.org/instillai/TensorFlow-Course.svg?branch=master https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat https://img.shields.io/twitter/follow/machinemindset.svg?label=Follow&style=social

This repository aims to provide simple and ready-to-use tutorials for TensorFlow. Each tutorial includes source code and most of them are associated with a documentation.

Sponsorship

To support maintaining and upgrading this project, please kindly consider Sponsoring the project developer.

Any level of support is a great contribution here ❤️

Status: This project has been updated to **TensorFlow 2.3*.*

Table of Contents

Download Free TensorFlow Roadmap EBook

Slack Group

What is TensorFlow?

TensorFlow is an open-source software library for dataflow programming across a range of tasks. It is a symbolic math library, and is also used for machine learning applications such as neural networks. It is used for both research and production at Google often replacing its closed-source predecessor, DistBelief.

TensorFlow was developed by the Google Brain team for internal Google use. It was released under the Apache 2.0 open source license on November 9, 2015.

Motivation

There are different motivations for this open source project. TensorFlow (as we write this document) is one of / the best deep learning frameworks available. The question that should be asked is why has this repository been created when there are so many other tutorials about TensorFlow available on the web?

Why use TensorFlow?

Deep Learning is in very high interest these days - there's a crucial need for rapid and optimized implementations of the algorithms and architectures. TensorFlow is designed to facilitate this goal.

The strong advantage of TensorFlow is it flexibility in designing highly modular models which can also be a disadvantage for beginners since a lot of the pieces must be considered together when creating the model.

This issue has been facilitated as well by developing high-level APIs such as Keras and Slim which abstract a lot of the pieces used in designing machine learning algorithms.

The interesting thing about TensorFlow is that it can be found anywhere these days. Lots of the researchers and developers are using it and its community is growing at the speed of light! So many issues can be dealt with easily since they're usually the same issues that a lot of other people run into considering the large number of people involved in the TensorFlow community.

What's the point of this repository?

Developing open source projects for the sake of just developing something is not the reason behind this effort. Considering the large number of tutorials that are being added to this large community, this repository has been created to break the jump-in and jump-out process that usually happens to most of the open source projects, but why and how?

First of all, what's the point of putting effort into something that most of the people won't stop by and take a look? What's the point of creating something that does not help anyone in the developers and researchers community? Why spend time for something that can easily be forgotten? But how we try to do it? Even up to this very moment there are countless tutorials on TensorFlow whether on the model design or TensorFlow workflow.

Most of them are too complicated or suffer from a lack of documentation. There are only a few available tutorials which are concise and well-structured and provide enough insight for their specific implemented models.

The goal of this project is to help the community with structured tutorials and simple and optimized code implementations to provide better insight about how to use TensorFlow quick and effectively.

It is worth noting that, the main goal of this project is to provide well-documented tutorials and less-complicated code!

TensorFlow Installation and Setup the Environment

alternate text

In order to install TensorFlow please refer to the following link:

_img/mainpage/installation.gif

The virtual environment installation is recommended in order to prevent package conflict and having the capacity to customize the working environment.

TensorFlow Tutorials

The tutorials in this repository are partitioned into relevant categories.


Warm-up

alternate text

# topic Run Source Code Media
1 Start-up Welcome Notebook / Python Video Tutorial

Basics


# topic Run Source Code Media
1 Tensors Tensors Notebook / Python Video Tutorial
2 Automatic Differentiation AD Notebook / Python Video Tutorial
3 Introduction to Graphs graphs Notebook / Python Video Tutorial
4 TensorFlow Models models Notebook / Python Video Tutorial

Basic Machine Learning


# topic Run Source Code More Media
1 Linear Regression lr Notebook / Python Tutorial Video Tutorial
2 Data Augmentation da Notebook / Python Tutorial Video Tutorial

Neural Networks


# topic Run Source Code Media
1 Multi Layer Perceptron mlp Notebook / Python Video Tutorial
2 Convolutional Neural Networks cnn Notebook / Python Video Tutorial

Advanced


# topic Run Source Code Media
1 Custom Training ctraining Notebook / Python Video Tutorial
2 Dataset Generator dgenerator Notebook / Python Video Tutorial
3 Create TFRecords tfrecords Notebook / Python Video Tutorial

Some Useful Tutorials

Contributing

When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change. For typos, please do not create a pull request. Instead, declare them in issues or email the repository owner.

Please note we have a code of conduct, please follow it in all your interactions with the project.

Pull Request Process

Please consider the following criterions in order to help us in a better way:

  • The pull request is mainly expected to be a code script suggestion or improvement.
  • Please do NOT change the ipython files. Instead, change the corresponsing PYTHON files.
  • A pull request related to non-code-script sections is expected to make a significant difference in the documentation. Otherwise, it is expected to be announced in the issues section.
  • Ensure any install or build dependencies are removed before the end of the layer when doing a build and creating a pull request.
  • Add comments with details of changes to the interface, this includes new environment variables, exposed ports, useful file locations and container parameters.
  • You may merge the Pull Request in once you have the sign-off of at least one other developer, or if you do not have permission to do that, you may request the owner to merge it for you if you believe all checks are passed.

Final Note

We are looking forward to your kind feedback. Please help us to improve this open source project and make our work better. For contribution, please create a pull request and we will investigate it promptly. Once again, we appreciate your kind feedback and elaborate code inspections.

Developers

Company: Instill AI [Website]

Creator: Machine Learning Mindset [Blog, GitHub, Twitter]

Developer: Amirsina Torfi [GitHub, Personal Website, Linkedin ]

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