custom activation function is not working in tensorflow

前端 未结 0 1198
一生所求
一生所求 2021-01-29 10:28
def my_better_softplus(z):
    return tf.where(z > 30., z, tf.math.log(tf.exp(z) + 1.))
    #return tf.where(z > 15, z, tf.math.log(z))
    
x = tf.Variable([89.])         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题