Statistics with Tensor Flow
Overview
Tensor Flow can be used to calculate various
statistical moments
and other basic stats.
Statistics
Mean
tf.mean(w)
Try it!
Variance
tf.moments(tensor).variance;
Try it!
Standard Deviation
tf.moments(tensor).variance.sqrt();
Try it!