ecemumutlu commited on
Commit
96e555b
·
1 Parent(s): d1b4b00

Add acc_std_err

Browse files
Files changed (1) hide show
  1. src/deepeval/utils.py +17 -0
src/deepeval/utils.py ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import math
2
+
3
+ def accuracy_standard_error(accuracy: float, n: int) -> float:
4
+ """
5
+ :param accuracy: accuracy of the model
6
+ :param n: number of samples
7
+ :return: standard deviation of accuracy of the model
8
+ """
9
+ return math.sqrt((accuracy * (1 - accuracy)) / n)
10
+
11
+ def accuracy(n_correct: int, n_total: int) -> float:
12
+ """
13
+ :param n_correct: number of correct predictions
14
+ :param n_total: number of total predictions
15
+ :return: accuracy of the model
16
+ """
17
+ return n_correct / n_total