美文网首页
Tensorflow给tensor增加高斯白噪声

Tensorflow给tensor增加高斯白噪声

作者: LoveSkye | 来源:发表于2019-10-12 15:29 被阅读0次
    
    def gaussian_noise(input,std):
    
        noise= tf.random_normal(shape=tf.shape(input),mean=0.0,stddev=std,dtype=tf.float32)
    
        return input + noise
    
    

    相关文章

      网友评论

          本文标题:Tensorflow给tensor增加高斯白噪声

          本文链接:https://www.haomeiwen.com/subject/dcwqmctx.html