__Training__ code of three variants of ResNet on ImageNet:
__Training__ code of three variants of ResNet on ImageNet:
...
@@ -30,7 +30,7 @@ See the [tutorial](http://tensorpack.readthedocs.io/en/latest/tutorial/efficient
...
@@ -30,7 +30,7 @@ See the [tutorial](http://tensorpack.readthedocs.io/en/latest/tutorial/efficient


## load-resnet.py
## [load-resnet.py](load-resnet.py)
This script only converts and runs ImageNet-ResNet{50,101,152} Caffe models [released by MSRA](https://github.com/KaimingHe/deep-residual-networks).
This script only converts and runs ImageNet-ResNet{50,101,152} Caffe models [released by MSRA](https://github.com/KaimingHe/deep-residual-networks).
Note that the architecture is different from the `imagenet-resnet.py` script and the models are not compatible.
Note that the architecture is different from the `imagenet-resnet.py` script and the models are not compatible.
...
@@ -52,7 +52,7 @@ The per-pixel mean used here is slightly different from the original.
...
@@ -52,7 +52,7 @@ The per-pixel mean used here is slightly different from the original.
| ResNet 101 | 7.11% | 23.54% |
| ResNet 101 | 7.11% | 23.54% |
| ResNet 152 | 6.71% | 23.21% |
| ResNet 152 | 6.71% | 23.21% |
## cifar10-resnet.py
## [cifar10-resnet.py](cifar10-resnet.py)
Reproduce pre-activation ResNet on CIFAR10.
Reproduce pre-activation ResNet on CIFAR10.
...
@@ -61,12 +61,15 @@ Reproduce pre-activation ResNet on CIFAR10.
...
@@ -61,12 +61,15 @@ Reproduce pre-activation ResNet on CIFAR10.
Also see a [DenseNet implementation](https://github.com/YixuanLi/densenet-tensorflow) of the paper [Densely Connected Convolutional Networks](https://arxiv.org/abs/1608.06993).
Also see a [DenseNet implementation](https://github.com/YixuanLi/densenet-tensorflow) of the paper [Densely Connected Convolutional Networks](https://arxiv.org/abs/1608.06993).