공개 수업 Softsign
Softsign 활성화 함수, softsign(x) = x / (abs(x) + 1)
.
사용 예:
Operand<TFloat32> input = tf.constant( new float[] {-1.0f, 0.0f, 1.0f}); Softsign<TFloat32> softsign = new Softsign<>(tf); Operand<TFloat32> result = softsign.call(input); // result is [-0.5f, 0.f, 0.5f]
공공 생성자
공개 Softsign (Ops tf)
Softsign 활성화를 생성합니다.
매개변수
tf | TensorFlow 작업 |
---|