dragen1860 / Deep-Learning-with-TensorFlow-book

深度学习入门开源书,基于TensorFlow 2.0案例实战。Open source Deep Learning book, based on TensorFlow 2.0 framework.
http://www.ai101edu.com
13.21k stars 4.08k forks source link

15.3章中标准化逆过程中的参数如何确定 #178

Open huohuo-19 opened 4 years ago

huohuo-19 commented 4 years ago

这里的mean和std根据真实的数据计算获得,比如ImageNet

img_mean = tf.constant([0.485, 0.456, 0.406]) img_std = tf.constant([0.229, 0.224, 0.225])

这里面的常数是如何确定的呢,与数据库中的图片数据相关吗?