├── README.md ├── caffe ├── README.md ├── resnet_caffe_gen.py └── resnet_cifar10_solver.prototxt └── mxnet ├── README.md ├── resnet_cifar10_main.py ├── resnet_cifar10_net.py ├── resnet_cifar10_train.py ├── resnet_ilsvrc12_main.py ├── resnet_ilsvrc12_net.py ├── run_cifar10.sh └── run_ilsvrc12.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao-j/resnet/HEAD/README.md -------------------------------------------------------------------------------- /caffe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao-j/resnet/HEAD/caffe/README.md -------------------------------------------------------------------------------- /caffe/resnet_caffe_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao-j/resnet/HEAD/caffe/resnet_caffe_gen.py -------------------------------------------------------------------------------- /caffe/resnet_cifar10_solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao-j/resnet/HEAD/caffe/resnet_cifar10_solver.prototxt -------------------------------------------------------------------------------- /mxnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao-j/resnet/HEAD/mxnet/README.md -------------------------------------------------------------------------------- /mxnet/resnet_cifar10_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao-j/resnet/HEAD/mxnet/resnet_cifar10_main.py -------------------------------------------------------------------------------- /mxnet/resnet_cifar10_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao-j/resnet/HEAD/mxnet/resnet_cifar10_net.py -------------------------------------------------------------------------------- /mxnet/resnet_cifar10_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao-j/resnet/HEAD/mxnet/resnet_cifar10_train.py -------------------------------------------------------------------------------- /mxnet/resnet_ilsvrc12_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao-j/resnet/HEAD/mxnet/resnet_ilsvrc12_main.py -------------------------------------------------------------------------------- /mxnet/resnet_ilsvrc12_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao-j/resnet/HEAD/mxnet/resnet_ilsvrc12_net.py -------------------------------------------------------------------------------- /mxnet/run_cifar10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao-j/resnet/HEAD/mxnet/run_cifar10.sh -------------------------------------------------------------------------------- /mxnet/run_ilsvrc12.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tao-j/resnet/HEAD/mxnet/run_ilsvrc12.sh --------------------------------------------------------------------------------