├── .gitignore ├── ReadMe.md ├── data ├── cat.jpg ├── dog.jpg └── synset_words.txt ├── doc └── develop.md ├── face_detection └── .gitignore ├── misc ├── group_convolution │ └── ReadMe.md ├── lstm │ ├── ReadMe.md │ ├── conv_lstm_experiment_multistep_pytorch.py │ ├── conv_lstm_experiment_onestep_pytorch.py │ ├── dcagan_lstm_experiment_onestep_pytorch.py │ ├── fc_lstm_experiment_multistep_pytorch.py │ ├── fc_lstm_experiment_onestep_pytorch.py │ ├── loss_smooth.py │ ├── lstm_pytorch.py │ ├── res_conv_lstm_experiment_multistep_pytorch.py │ └── res_conv_lstm_experiment_onestep_pytorch.py └── receptive_field │ ├── ReadMe.md │ └── receptive_field_pytorch.py ├── object_classification ├── alexnet │ └── ReadMe.md ├── densenet │ └── ReadMe.md ├── inception │ └── ReadMe.md ├── mobilenet │ └── ReadMe.md ├── network_in_network │ ├── ReadMe.md │ └── nin_caffe.py ├── resnet │ ├── ReadMe.md │ └── resnet.ipynb ├── resnext │ └── ReadMe.md ├── shufflenet │ └── ReadMe.md ├── squeezenet │ └── ReadMe.md ├── vgg │ └── ReadMe.md ├── xception │ └── ReadMe.md └── zfnet │ └── ReadMe.md └── object_detection ├── .gitignore └── rfcn └── ReadMe.md /.gitignore: -------------------------------------------------------------------------------- 1 | ppt/ 2 | -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/DeepNetModel/HEAD/ReadMe.md -------------------------------------------------------------------------------- /data/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/DeepNetModel/HEAD/data/cat.jpg -------------------------------------------------------------------------------- /data/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/DeepNetModel/HEAD/data/dog.jpg -------------------------------------------------------------------------------- /data/synset_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/DeepNetModel/HEAD/data/synset_words.txt -------------------------------------------------------------------------------- /doc/develop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/DeepNetModel/HEAD/doc/develop.md -------------------------------------------------------------------------------- /face_detection/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/group_convolution/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/DeepNetModel/HEAD/misc/group_convolution/ReadMe.md -------------------------------------------------------------------------------- /misc/lstm/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/DeepNetModel/HEAD/misc/lstm/ReadMe.md -------------------------------------------------------------------------------- /misc/lstm/conv_lstm_experiment_multistep_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/DeepNetModel/HEAD/misc/lstm/conv_lstm_experiment_multistep_pytorch.py -------------------------------------------------------------------------------- /misc/lstm/conv_lstm_experiment_onestep_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/DeepNetModel/HEAD/misc/lstm/conv_lstm_experiment_onestep_pytorch.py -------------------------------------------------------------------------------- /misc/lstm/dcagan_lstm_experiment_onestep_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/DeepNetModel/HEAD/misc/lstm/dcagan_lstm_experiment_onestep_pytorch.py -------------------------------------------------------------------------------- /misc/lstm/fc_lstm_experiment_multistep_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/DeepNetModel/HEAD/misc/lstm/fc_lstm_experiment_multistep_pytorch.py -------------------------------------------------------------------------------- /misc/lstm/fc_lstm_experiment_onestep_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/DeepNetModel/HEAD/misc/lstm/fc_lstm_experiment_onestep_pytorch.py -------------------------------------------------------------------------------- /misc/lstm/loss_smooth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/DeepNetModel/HEAD/misc/lstm/loss_smooth.py -------------------------------------------------------------------------------- /misc/lstm/lstm_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/DeepNetModel/HEAD/misc/lstm/lstm_pytorch.py -------------------------------------------------------------------------------- /misc/lstm/res_conv_lstm_experiment_multistep_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/DeepNetModel/HEAD/misc/lstm/res_conv_lstm_experiment_multistep_pytorch.py -------------------------------------------------------------------------------- /misc/lstm/res_conv_lstm_experiment_onestep_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/DeepNetModel/HEAD/misc/lstm/res_conv_lstm_experiment_onestep_pytorch.py -------------------------------------------------------------------------------- /misc/receptive_field/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/DeepNetModel/HEAD/misc/receptive_field/ReadMe.md -------------------------------------------------------------------------------- /misc/receptive_field/receptive_field_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/DeepNetModel/HEAD/misc/receptive_field/receptive_field_pytorch.py -------------------------------------------------------------------------------- /object_classification/alexnet/ReadMe.md: -------------------------------------------------------------------------------- 1 | # AlexNet 2 | 3 | --- 4 | ## 参考资料 -------------------------------------------------------------------------------- /object_classification/densenet/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/DeepNetModel/HEAD/object_classification/densenet/ReadMe.md -------------------------------------------------------------------------------- /object_classification/inception/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/DeepNetModel/HEAD/object_classification/inception/ReadMe.md -------------------------------------------------------------------------------- /object_classification/mobilenet/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/DeepNetModel/HEAD/object_classification/mobilenet/ReadMe.md -------------------------------------------------------------------------------- /object_classification/network_in_network/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/DeepNetModel/HEAD/object_classification/network_in_network/ReadMe.md -------------------------------------------------------------------------------- /object_classification/network_in_network/nin_caffe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/DeepNetModel/HEAD/object_classification/network_in_network/nin_caffe.py -------------------------------------------------------------------------------- /object_classification/resnet/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/DeepNetModel/HEAD/object_classification/resnet/ReadMe.md -------------------------------------------------------------------------------- /object_classification/resnet/resnet.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/DeepNetModel/HEAD/object_classification/resnet/resnet.ipynb -------------------------------------------------------------------------------- /object_classification/resnext/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/DeepNetModel/HEAD/object_classification/resnext/ReadMe.md -------------------------------------------------------------------------------- /object_classification/shufflenet/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/DeepNetModel/HEAD/object_classification/shufflenet/ReadMe.md -------------------------------------------------------------------------------- /object_classification/squeezenet/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/DeepNetModel/HEAD/object_classification/squeezenet/ReadMe.md -------------------------------------------------------------------------------- /object_classification/vgg/ReadMe.md: -------------------------------------------------------------------------------- 1 | # VGG 2 | 3 | --- 4 | ## 参考资料 -------------------------------------------------------------------------------- /object_classification/xception/ReadMe.md: -------------------------------------------------------------------------------- 1 | # Xception -------------------------------------------------------------------------------- /object_classification/zfnet/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/DeepNetModel/HEAD/object_classification/zfnet/ReadMe.md -------------------------------------------------------------------------------- /object_detection/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /object_detection/rfcn/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanfuchen/DeepNetModel/HEAD/object_detection/rfcn/ReadMe.md --------------------------------------------------------------------------------