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 Ops |
---|