The ResNet config for cifar10 in image_classification/resnet.py is not right.
Created by: qingqing01
It should be as follows, remove the input channel number. Since the layer_warp
interface has changed.
res1 = layer_warp(basicblock, conv1, 16, n, 1)
res2 = layer_warp(basicblock, res1, 32, n, 2)
res3 = layer_warp(basicblock, res2, 64, n, 2)