MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / normal_cdf

Function normal_cdf

tensorflow/python/kernel_tests/random/util.py:87–89  ·  view source on GitHub ↗

Cumulative distribution function for a standard normal distribution.

(x)

Source from the content-addressed store, hash-verified

85
86
87def normal_cdf(x):
88 """Cumulative distribution function for a standard normal distribution."""
89 return 0.5 + 0.5 * np.vectorize(math.erf)(x / math.sqrt(2))
90
91
92def anderson_darling(x):

Callers 3

anderson_darlingFunction · 0.85

Calls

no outgoing calls

Tested by 1