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

Method _variance

tensorflow/python/ops/distributions/uniform.py:204–205  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

202 return (self.low + self.high) / 2.
203
204 def _variance(self):
205 return math_ops.square(self.range()) / 12.
206
207 def _stddev(self):
208 return self.range() / math.sqrt(12.)

Callers

nothing calls this directly

Calls 2

rangeMethod · 0.95
squareMethod · 0.45

Tested by

no test coverage detected