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).
- 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
- Improving Performance Using Early Stopping with Iris Data
- Using skflow with Pipeline
- Deep Neural Network with Customized Decay Function
- Text Classification Using Recurrent Neural Networks on Words (See also Simplified Version Using Built-in RNN Model using built-in parameters)
- Text Classification Using Convolutional Neural Networks on Words
- Text Classification Using Recurrent Neural Networks on Characters
- Text Classification Using Convolutional Neural Networks on Characters