https://github.com/machinelearningzuu/tf2-gradienttape-examples
This Repository Contains examples for Tensorflow 2.x Eager execution (Gradient Tape) techniques and examples contain ANN, CNN, RNN models with entire Tensorflow ETL pipeline
https://github.com/machinelearningzuu/tf2-gradienttape-examples
Last synced: about 1 year ago
JSON representation
This Repository Contains examples for Tensorflow 2.x Eager execution (Gradient Tape) techniques and examples contain ANN, CNN, RNN models with entire Tensorflow ETL pipeline
- Host: GitHub
- URL: https://github.com/machinelearningzuu/tf2-gradienttape-examples
- Owner: machinelearningzuu
- Created: 2020-11-22T12:00:46.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-12-21T18:04:48.000Z (over 5 years ago)
- Last Synced: 2025-02-04T17:17:26.045Z (over 1 year ago)
- Language: Python
- Size: 141 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tensorflow 2 GradientTape Examples
This Repository Contains examples for Tensorflow 2.x Eager execution (GradientTape) techniques and examples contain ANN, CNN, RNN models with entire Tensorflow ETL pipeline. Using Eager Executions it will be able to generate dynamic graphs instead of static graphs like in tensorflow older versions
In tensorflow older version first you need to create the entire static graph and then execute under defined session using placeholders.
# Techniques
- Supervised Deep Learning, Unsupervised Deep Learning
- Natural language processing
- Computer vision
# Tools
* TensorFlow - Deep Learning Model
* pandas - Data Extraction and Preprocessing
* numpy - numerical computations
* scikit learn - Advanced preprocessing
### Installation
Install the dependencies and conda environment
```sh
$ conda create -n envname python=python_version
$ activate envname
$ conda install -c anaconda tensorflow-gpu
$ conda install -c anaconda pandas
$ conda install -c anaconda matplotlib
$ conda install -c anaconda scikit-learn
```