Some useful website:
(以下网站整理自官网)
1. Numpy and Scipy
https://docs.scipy.org/doc/numpy-1.10.1/reference/generated/
2. Implementing a Neural Network from Scratch in Python – An Introduction
http://www.wildml.com/2015/09/implementing-a-neural-network-from-scratch/
3. Demystifying Deep Convolutional Neural Networks
https://www.cs.ryerson.ca/~aharley/neural-networks/
http://cs231n.github.io/neural-networks-case-study/
4. Optimization method
(recommendation) Adam paper: https://arxiv.org/pdf/1412.6980.pdf
5. Keras documentation
https://keras.io/models/model/
6. ResNet-50
Kaiming He, Xiangyu Zhang, Shaoqing Ren, Jian Sun: https://arxiv.org/abs/1512.03385
Francois Chollet's GitHub repository: https://github.com/fchollet/deep-learning-models/blob/master/resnet50.py
7. YOLO papers
Joseph Redmon, Santosh Divvala, Ross Girshick, Ali Farhadi : https://arxiv.org/abs/1506.02640 (2015)
Joseph Redmon, Ali Farhadi : https://arxiv.org/abs/1612.08242 (2016)
Allan Zelener: https://github.com/allanzelener/YAD2K
The official YOLO website: https://pjreddie.com/darknet/yolo/