Skip to content

Commit a8e7fc5

Browse files
authored
Update README.md
1 parent 55d6748 commit a8e7fc5

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

README.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,15 @@
88

99
## Standard
1010

11-
<img src="https://latex.codecogs.com/gif.latex?\mathrm{Accuracy}=\frac{\mathrm{TP}&plus;\mathrm{TN}}{\mathrm{P}&plus;\mathrm{N}}" title="\mathrm{Accuracy}=\frac{\mathrm{TP}+\mathrm{TN}}{\mathrm{P}+\mathrm{N}}" />
11+
<img src="https://latex.codecogs.com/gif.latex?\mathrm{Accuracy=\frac{TP&plus;TN}{P&plus;N}}" title="\mathrm{Accuracy=\frac{TP+TN}{P+N}}" />
1212

13-
<img src="https://latex.codecogs.com/png.latex?Accuracy=\frac{TP&plus;TN}{P&plus;N}" title="Accuracy=\frac{TP+TN}{P+N}" />
13+
<img src="https://latex.codecogs.com/gif.latex?\mathrm{ErrorRate=1-Accuracy}" title="\mathrm{ErrorRate=1-Accuracy}" />
1414

15-
<img src="https://latex.codecogs.com/png.latex?ErrorRate=1-Accuracy" title="ErrorRate=1-Accuracy" />
15+
<img src="https://latex.codecogs.com/gif.latex?\mathrm{Precision=\frac{TP}{TP&plus;FP}}" title="\mathrm{Precision=\frac{TP}{TP+FP}}" />
1616

17-
<img src="https://latex.codecogs.com/png.latex?Precision=\frac{TP}{TP&plus;FP}" title="Precision=\frac{TP}{TP+FP}" />
17+
<img src="https://latex.codecogs.com/gif.latex?\mathrm{Recall=\frac{TP}{TP&plus;FN}}" title="\mathrm{Recall=\frac{TP}{TP+FN}}" />
1818

19-
<img src="https://latex.codecogs.com/png.latex?Recall=\frac{TP}{TP&plus;FN}" title="Recall=\frac{TP}{TP+FN}" />
20-
21-
<img src="https://latex.codecogs.com/png.latex?F1=\frac{2×TP}{n\_samples&plus;TP-TN}" title="F1=\frac{2×TP}{n\_samples+TP-TN}" />
19+
<img src="https://latex.codecogs.com/gif.latex?\mathrm{F1=\frac{2×TP}{n\_samples&plus;TP-TN}}" title="\mathrm{F1=\frac{2×TP}{n\_samples+TP-TN}}" />
2220

2321
Confusion matrix
2422

@@ -31,13 +29,13 @@ Confusion matrix
3129

3230
The vertical axis of the ROC(Receiver Operating Characteristic) curve is TPR(True Positive Rate) and the horizontal axis is FPR(False Positive Rate).
3331

34-
<img src="https://latex.codecogs.com/png.latex?TPR=\frac{TP}{TP&plus;FN}" title="TPR=\frac{TP}{TP+FN}" />
32+
<img src="https://latex.codecogs.com/gif.latex?\mathrm{TPR=\frac{TP}{TP&plus;FN}}" title="\mathrm{TPR=\frac{TP}{TP+FN}}" />
3533

36-
<img src="https://latex.codecogs.com/png.latex?FPR=\frac{FP}{TN&plus;FP}" title="FPR=\frac{FP}{TN+FP}" />
34+
<img src="https://latex.codecogs.com/png.latex?\mathrm{FPR=\frac{FP}{TN&plus;FP}}" title="FPR=\frac{FP}{TN+FP}" />
3735

3836
AUC is the area under ROC curve.
3937

40-
<img src="https://latex.codecogs.com/png.latex?AUC=\frac{1}{2}\sum_{i=1}^{m-1}(x_{i&plus;1}-x_{i})*(y_{i}&plus;y_{i&plus;1})" title="AUC=\frac{1}{2}\sum_{i=1}^{m-1}(x_{i+1}-x_{i})*(y_{i}+y_{i+1})" />
38+
<img src="https://latex.codecogs.com/png.latex?\mathrm{AUC}=\frac{1}{2}\sum_{i=1}^{m-1}(x_{i&plus;1}-x_{i})*(y_{i}&plus;y_{i&plus;1})" title="AUC=\frac{1}{2}\sum_{i=1}^{m-1}(x_{i+1}-x_{i})*(y_{i}+y_{i+1})" />
4139

4240
![ROC](https://github.com/vba34520/Classification-Performance-Standard/blob/master/picture/ROC.png)
4341

0 commit comments

Comments
 (0)