어떻게 tf.layers.dense 에서 leaky 를 사용 합 니까?relu

1432 단어 tensorflow 학습
  • leaky 때문에relu 는 문자 형식 을 지원 하지 않 습 니 다.즉
  • # this is wrong
    tf.layers.Dense(units,activation='leaky_relu')
    
  • 정확 한 표기 법
  • # right operation
    import tensorflow as tf
    from functools import partial
    
    output = tf.layers.dense(input, n_units, activation=partial(tf.nn.leaky_relu, alpha=0.01))
    

    좋은 웹페이지 즐겨찾기