1.5 KiB
1.5 KiB
TF Learn Examples
Learn is a high-level API for TensorFlow that allows you to create, train, and use deep learning models easily. See the Quickstart tutorial for an introduction to the API.
To run most of these examples, you need to install the scikit learn
library (sudo pip install sklearn
).
Some examples use the pandas
library for data processing (sudo pip install pandas
).
Basics
- Deep Neural Network Regression with Boston Data
- Deep Neural Network Classification with Iris Data
- Building a Custom Model
- Building a Model Using Different GPU Configurations
Techniques
- Improving Performance Using Early Stopping with Iris Data
- Using skflow with Pipeline
- Deep Neural Network with Customized Decay Function