#deep-learning
Read more stories on Hashnode
Articles with this tag
Paper Reading 来自 jameslei.com YOLO实时物体检测方法 Redmon, Joseph, et al. "You only look once: Unified, real-time object detection." Proceedings of the IEEE...
神经网络的常用激活函数 Sigmoid函数 解决二分类问题。 $$ f(z) = \frac{1}{1+\exp(-z)} $$ 其对应的导函数为 $$ f'(z) = f(z)(1-f(z)) $$ Tanh函数 $$ f(z) = tanh(z) =...