Spaces:
Paused
Paused
File size: 513 Bytes
96e555b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import math
def accuracy_standard_error(accuracy: float, n: int) -> float:
"""
:param accuracy: accuracy of the model
:param n: number of samples
:return: standard deviation of accuracy of the model
"""
return math.sqrt((accuracy * (1 - accuracy)) / n)
def accuracy(n_correct: int, n_total: int) -> float:
"""
:param n_correct: number of correct predictions
:param n_total: number of total predictions
:return: accuracy of the model
"""
return n_correct / n_total |