深度学习课程笔记

Posted by muwuW on November 29, 2021

专业术语

ReLU: Rectified Linearar Unite (线性整流函数)

类似前面平坦的直线,后面有斜率的直线

变量m

指代amount of labeled data

神经网络和机器学习间的区别

image-20211129134736680

在更多数据集上能发挥出更好的作用。

变量n

输入特征向量x的维度

image-20211129171720489

image-20211129171849118

sigmoid

image-20211129173332720

image-20211129173409775

loss function

image-20211129182807752

The loss function computes the error for a single training example; the cost function is the average of the loss functions of the entire training set.

正向传播与反向传播

image-20211201111504229

正向传播就是按照规则依次往后计算,反向传播往前计算导数(计算出目标结果相对于输入参数的导数[偏导])