├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── config.py ├── convert.py ├── data ├── ResNet-101-deploy.prototxt ├── ResNet-152-deploy.prototxt ├── ResNet-50-deploy.prototxt ├── ResNet_mean.binaryproto ├── cat.jpg └── tensorflow-resnet-pretrained-20160509.tar.gz.torrent ├── forward.py ├── image_processing.py ├── resnet.py ├── resnet_train.py ├── synset.py ├── train_cifar.py └── train_imagenet.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/tensorflow-resnet/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/tensorflow-resnet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/tensorflow-resnet/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | from resnet import * 2 | -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/tensorflow-resnet/HEAD/config.py -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/tensorflow-resnet/HEAD/convert.py -------------------------------------------------------------------------------- /data/ResNet-101-deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/tensorflow-resnet/HEAD/data/ResNet-101-deploy.prototxt -------------------------------------------------------------------------------- /data/ResNet-152-deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/tensorflow-resnet/HEAD/data/ResNet-152-deploy.prototxt -------------------------------------------------------------------------------- /data/ResNet-50-deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/tensorflow-resnet/HEAD/data/ResNet-50-deploy.prototxt -------------------------------------------------------------------------------- /data/ResNet_mean.binaryproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/tensorflow-resnet/HEAD/data/ResNet_mean.binaryproto -------------------------------------------------------------------------------- /data/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/tensorflow-resnet/HEAD/data/cat.jpg -------------------------------------------------------------------------------- /data/tensorflow-resnet-pretrained-20160509.tar.gz.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/tensorflow-resnet/HEAD/data/tensorflow-resnet-pretrained-20160509.tar.gz.torrent -------------------------------------------------------------------------------- /forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/tensorflow-resnet/HEAD/forward.py -------------------------------------------------------------------------------- /image_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/tensorflow-resnet/HEAD/image_processing.py -------------------------------------------------------------------------------- /resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/tensorflow-resnet/HEAD/resnet.py -------------------------------------------------------------------------------- /resnet_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/tensorflow-resnet/HEAD/resnet_train.py -------------------------------------------------------------------------------- /synset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/tensorflow-resnet/HEAD/synset.py -------------------------------------------------------------------------------- /train_cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/tensorflow-resnet/HEAD/train_cifar.py -------------------------------------------------------------------------------- /train_imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ry/tensorflow-resnet/HEAD/train_imagenet.py --------------------------------------------------------------------------------