def pseudo_predict(self, predictions, targets):
""""""
random_flip = tf.random_uniform(tf.shape(predictions))
return tf.select(tf.greater(random_flip, self.global_sigmoid), predictions, targets)
#=============================================================
评论列表
文章目录