Neural Network Toolbox on TensorFlow
Tutorials are not fully finished. See some examples to learn about the framework:
- DoReFa-Net: train binary / low-bitwidth CNN on ImageNet
- Train ResNet on ImageNet / Cifar10 / SVHN
- InceptionV3 on ImageNet
- Fully-convolutional Network for Holistically-Nested Edge Detection(HED)
- Spatial Transformer Networks on MNIST addition
- Visualize Saliency Maps by Guided ReLU
- Similarity Learning on MNIST
- Deep Q-Network(DQN) variants on Atari games
- Asynchronous Advantage Actor-Critic(A3C) with demos on OpenAI Gym
- Generative Adversarial Network(GAN) variants, including DCGAN, InfoGAN, Conditional GAN, WGAN, Image to Image.
The examples are not only for demonstration of the framework -- you can train them and reproduce the results in papers.
Describe your training task with three components:
-
DataFlow. process data in Python, with ease and speed.
- Allows you to process data in Python without blocking the training, by multiprocess prefetch & TF Queue prefetch.
- All data producer has a unified interface, you can compose and reuse them to perform complex preprocessing.
-
Callbacks, customizable, like
tf.train.SessionRunHook
but more than that. Includes everything you want to do apart from the training iterations, such as:- Change hyperparameters during training
- Print some tensors of interest
- Run inference on a test dataset
- Run some operations once a while
- Send loss to your phone
-
Model, or graph.
models/
has some scoped abstraction of common models, but you can just use symbolic functions in tensorflow or slim/tflearn/tensorlayer/etc.LinearWrap
andargscope
simplify large models (e.g. vgg example).
With the above components defined, tensorpack trainer runs the training iterations for you. Trainer was written with performance in mind: Even on a small CNN example, the training runs 2x faster than the equivalent Keras code.
Multi-GPU training is off-the-shelf by simply switching the trainer. You can also define your own trainer for non-standard training (e.g. GAN).
Dependencies:
- Python 2 or 3
- TensorFlow >= 1.0.0
- Python bindings for OpenCV
pip install --user -U git+https://github.com/ppwwyyxx/tensorpack.git