
DeepLearning
ai-exception
Github: https://github.com/DmrfCoder;
Gmail: xuefanggang97@gmail.com;
QQ:2296452542
展开
-
The impact of different initialization strategies on neural
This article first appeared in ai-exceptionAbstractAs we know, a well chosen initialization can speed up the convergence of gradient descent and increase the odds of gradient descent converging to a...原创 2019-01-18 23:41:26 · 293 阅读 · 0 评论 -
Regularization
This article first appeared in ai-exceptionAbstractDeep Learning models have so much flexibility and capacity that overfitting can be a serious problem, if the training dataset is not big enough. Su...原创 2019-01-18 23:35:18 · 446 阅读 · 0 评论 -
Convolutional Neural Networks:Step by Step
This article first appeared in ai-exceptionIn this article, I will implement convolutional (CONV) and pooling (POOL) layers in numpy, including both forward propagation and backward propagation.Bef...原创 2019-01-18 23:36:31 · 369 阅读 · 0 评论 -
Convolutional Neural Networks:Application
This article first appeared in ai-exceptionWelcome to Convolutional Neural Networks’s second article! In this article,I will:Implement helper functions that I will use when implementing a TensorFlo...原创 2019-01-18 23:37:35 · 410 阅读 · 0 评论 -
deeplearning 常用python工具包使用
This article first appeared in ai-exceptionmatplotlib.plotplt.scatter()功能绘制点图源码def scatter(x, y, s=None, c=None, marker=None, cmap=None, norm=None, vmin=None, vmax=None, alpha=None, ...原创 2019-01-18 23:39:09 · 612 阅读 · 0 评论 -
Optimization Methods
This article first appeared in ai-exceptionUntil now, I’ve always used Gradient Descent to update the parameters and minimize the cost. In this aricle, I will show more advanced optimization methods ...原创 2019-01-18 23:40:21 · 525 阅读 · 0 评论 -
Deep Neural Network
This article first appeared in ai-exception From Planar data classification with one hidden layer and Logistic Regression with a Neural Network mindset ,we achieved the shallow neural network, to g...原创 2019-01-18 23:42:49 · 825 阅读 · 0 评论 -
Planar data classification with one hidden layer
This article first appeared in ai-exceptionFrom Logistic Regression with a Neural Network mindset, we achieved the Neural Network which use Logistic Regression to resolve the linear classification . ...原创 2019-01-18 23:43:54 · 289 阅读 · 0 评论 -
Logistic Regression with a Neural Network mindset
This article first appeared in ai-exceptionLogistic Regression with a Neural Network mindsetGeneral Architecture of the learning algorithmIt’s time to design a simple algorithm to distinguish cat i...原创 2019-01-18 23:44:56 · 228 阅读 · 0 评论 -
Gradient Checking
This article first appeared in ai-exceptionAbstractGradient Checking is a important method to verify whether our backpropagation code is correct or not. In this article, I will introduce the theory ...原创 2019-01-18 23:33:31 · 345 阅读 · 0 评论