机器学习常用数学公式
Posted somTian
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了机器学习常用数学公式相关的知识,希望对你有一定的参考价值。
常用函数
softmax
softmax(x)i=exi∑jexj
sigmoid
σ(x)=11+e−x
gradient of sigmoid
σ'(x)=σ(x)(1−σ(x))
tanh
tanh(x)=1−e−2x1+e−2x
ReLU
ReLU(x)=max(0,x)
cross-entropy cost
CE(y,y^)=−∑iyilog(y^i)
评测指标
准确率
Precision(%)=Truepositive(Truepositive+Falsepositive)×100%
召回率
Recall(%)=Truepositive(Truenegative+Falsenegative)×100%
F1-score
F1−Score=21p+1r
或者
F1−Score=2×P×RP+R=2×TP样本总数+TP−TN
MSE: Mean Squared Error
MSE=1m∑i=1m(y^(i)−y(i))2
RMSE
RMSE=1在CSDN编辑器(Markdown编辑器)中应用LaTex公式
在CSDN编辑器(Markdown编辑器)中应用LaTex公式