Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/suvoooo/learn-tensorflow
Learning Tensorflow Step by Step:: Concepts, Examples & Applications
https://github.com/suvoooo/learn-tensorflow
deep-learning tensorflow
Last synced: 1 day ago
JSON representation
Learning Tensorflow Step by Step:: Concepts, Examples & Applications
- Host: GitHub
- URL: https://github.com/suvoooo/learn-tensorflow
- Owner: suvoooo
- Created: 2019-09-23T04:09:23.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-07-29T14:24:05.000Z (4 months ago)
- Last Synced: 2024-10-29T17:56:08.895Z (17 days ago)
- Topics: deep-learning, tensorflow
- Language: Jupyter Notebook
- Homepage:
- Size: 32.1 MB
- Stars: 56
- Watchers: 1
- Forks: 49
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tutorials for TensorFlow
* _Conv_Basic_with_TensorFlow:_ Start with building blocks of Deep Neural Networks and Slowly Build and Understand Convolutional Neural Network.
Below is an example of how Conv and Max Pool layer understand features, training images are from MNIST Fashion Data-Set.
![Convunderstadning](https://github.com/suvoooo/Learn-TensorFlow/blob/master/Conv_Basic_with_TensorFlow/Understanding_conv2.png)* _im_generator:_ Learn to Preprocess Image Using Keras, 'flow_from_directory' and augemntation on the fly.
* _Multi_Class:_ Moving from binary classification to multi-class classification.
* _Transfer_Learning:_ Using VGG16 weights to train a model. 2800 images of cats and dogs are used for training and 600 images for validation.
* _NLP_Embedding:_ Moving on from computer vision tasks, here we discuss classifying IMDB movie reviews and visualizng how embedding can help cluster words (positive & negative).
* _NLP_LSTM_Glove:_ Using pretrained Glove to classify tweets of positve sentiments from the negative one. [Dataset - 1.6M Tweets](https://www.kaggle.com/kazanova/sentiment140)* _Time_SeriesW#:_ Deal with time series data, starting from simple linear regression to RNN, LSTM, 1D Convolution were used to build deep networks. Example of predicting minimum temperature of Melbourne is shown below--
* _TFDataIntro.ipynb:_* Introducing [TF Dataset API](https://www.tensorflow.org/api_docs/python/tf/data/Dataset) and how to use them effectively to build efficient and fast data analysis pipeline. More details in [TDS](https://towardsdatascience.com/time-to-choose-tensorflow-data-over-imagedatagenerator-215e594f2435).
* _cassava-classification.ipynb:_ Cassava leaf disease classification competetion in [Kaggle](https://www.kaggle.com/c/cassava-leaf-disease-classification/overview). The notebook here is the same one used for submission in the competetion.
* _detectpneumonia...ipynb_ Pneumonia detection using TensorFlow dataset API. The dataset is available in [Kaggle](https://www.kaggle.com/paultimothymooney/chest-xray-pneumonia). Many important comcepts such as standardization of images, class imbalance, roc curve as performance metric were influenced by DeepLearning.ai [course](https://www.deeplearning.ai/program/ai-for-medicine-specialization/).
* _ViT_TensorFlow_ How to implement Vision Transformer using TensorFlow2.0 from scratch and detail understanding of how attention mechanism actually works. More details on [TDS](https://towardsdatascience.com/understand-and-implement-vision-transformer-with-tensorflow-2-0-f5435769093).
![ViT_Attention](https://github.com/suvoooo/Learn-TensorFlow/blob/master/ViT_TensorFlow/Self-Attention4.png).* _TF-Proba/Bayesian_uncertainty.ipynb_ Two types of uncertainties Aleatoric and Epistemic and how we can use Bayesian Neural Net for estimating uncertainties. Example using real weather data and TensorFlow Probability Library. More on [TDS](https://towardsdatascience.com/bayesian-deep-learning-estimating-uncertainty-9907f5208cc0).