Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/OpenBitSys/BitDistiller
/ sample_stddev
Function
sample_stddev
test/general/lm_eval/metrics.py:19–21 ·
view source on GitHub ↗
(arr)
Source
from the content-addressed store, hash-verified
17
18
19
def
sample_stddev(arr):
20
mu = mean(arr)
21
return
math.sqrt(sum([(x - mu) ** 2
for
x in arr]) / (len(arr) - 1))
22
23
24
def
mean_stderr(arr):
Callers
2
mean_stderr
Function · 0.85
bootstrap_stderr
Function · 0.85
Calls
2
mean
Function · 0.85
sum
Function · 0.85
Tested by
no test coverage detected