美文网首页
【ML】Neural network functions

【ML】Neural network functions

作者: 盐果儿 | 来源:发表于2022-03-14 23:45 被阅读0次

Activation function

1. What is an activation function?

The activation function of a node defines the output of that node given an input or set of inputs.

2. Why do we need an activation function?

It introduces the non-linearities in order to detect non-linear features in the data.

3. Common activation functions

Sigmoid function/curve = logistic function/curve

Loss function

1. What is a loss function?

Measuring the error between the target values t and the output values o: loss(t, o)

2. What is the goal of a loss function?

Find the weights w that minimizes the loss over the training examples

3. Common loss/error function

squared error
log-loss cross-entropy

相关文章

网友评论

      本文标题:【ML】Neural network functions

      本文链接:https://www.haomeiwen.com/subject/nmasdrtx.html