@@ -5,37 +5,47 @@ Training examples with __reproducible__ and meaningful performance.
## Getting Started:
+[An illustrative mnist example with explanation of the framework](mnist-convnet.py)
+ The same mnist example using [tf-slim](mnist-tfslim.py), [Keras](mnist-keras.py), and [with weights visualizations](mnist-visualizations.py)
+ The same mnist example using [tf-slim](mnist-tfslim.py), [Keras layers](mnist-keras.py), [Higher-level Keras](mnist-keras-v2.py) and [with weights visualizations](mnist-visualizations.py)
+[A tiny SVHN ConvNet with 97.8% accuracy](svhn-digit-convnet.py)
+[A boilerplate file to start with, for your own tasks](boilerplate.py)
## Vision:
+[A tiny SVHN ConvNet with 97.8% accuracy](svhn-digit-convnet.py)
+ Train [ResNet](ResNet) and [ShuffleNet](ShuffleNet) on ImageNet
+[Train ResNet50-Faster-RCNN on COCO](FasterRCNN)
+[DoReFa-Net: training binary / low-bitwidth CNN on ImageNet](DoReFa-Net)
+[Generative Adversarial Network(GAN) variants](GAN), including DCGAN, InfoGAN, Conditional GAN, WGAN, BEGAN, DiscoGAN, Image to Image, CycleGAN
+[Inception-BN and InceptionV3](Inception)
+[Fully-convolutional Network for Holistically-Nested Edge Detection(HED)](HED)
+[Spatial Transformer Networks on MNIST addition](SpatialTransformer)
+[Visualize CNN saliency maps](Saliency)
+[Similarity learning on MNIST](SimilarityLearning)
+ Learn steering filters with [Dynamic Filter Networks](DynamicFilterNetwork)
+ Load a pre-trained [AlexNet](load-alexnet.py) or [VGG16](load-vgg16.py) model
+ Load a pre-trained [Convolutional Pose Machines](ConvolutionalPoseMachines/)
| Name | Performance |
| --- | --- |
| Train [ResNet](ResNet) and [ShuffleNet](ShuffleNet) on ImageNet | reproduce paper |
| [Train ResNet50-Faster-RCNN on COCO](FasterRCNN) | reproduce paper |
| [DoReFa-Net: training binary / low-bitwidth CNN on ImageNet](DoReFa-Net) | reproduce paper |