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

Method Average

tensorflow/core/lib/histogram/histogram.cc:159–162  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

157}
158
159double Histogram::Average() const {
160 if (num_ == 0.0) return 0;
161 return sum_ / num_;
162}
163
164double Histogram::StandardDeviation() const {
165 if (num_ == 0.0) return 0;

Callers 2

TESTFunction · 0.45

Calls

no outgoing calls

Tested by 2

TESTFunction · 0.36