そのような関数があるでしょうか?
全然くわしくないですけれど、数値計算は NumPy でやるのが普通なのかな、という気がします。
numpy.std()
https://docs.scipy.org/doc/numpy-1.13.0/reference/generated/numpy.std.html
それは知ってて、NumPy を使わずに TensorFlow でやりたいんだ、ということであれば、tf.nn.moments で、平均と分散が求められるみたいです。
https://www.tensorflow.org/api_docs/python/tf/nn/moments
https://stackoverflow.com/questions/39354566/what-is-the-equivalent-of-np-std-in-tensorflow
それを tf.sqrt で標準偏差に。
https://www.tensorflow.org/api_docs/python/tf/sqrt
コメント(0件)