Tensorflow-in-Action icon indicating copy to clipboard operation
Tensorflow-in-Action copied to clipboard

:cyclone: 《TensorFlow实战》 黄文坚 | 唐源 - 源代码详解

Results 1 Tensorflow-in-Action issues
Sort by recently updated
recently updated
newest added

self.cost = 0.5 * tf.reduce_mean(tf.pow(tf.subtract(self.reconstruction, self.x), 2.0)) 应该改为 self.cost = 0.5 * tf.reduce_sum(tf.pow(tf.subtract(self.reconstruction, self.x), 2.0))