We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f561ea commit bf40139Copy full SHA for bf40139
tfjs-core/src/ops/selu.ts
@@ -27,7 +27,7 @@ import {op} from './operation';
27
/**
28
* Computes scaled exponential linear element-wise.
29
*
30
- * `x < 0 ? scale * alpha * (exp(x) - 1) : x`
+ * `x < 0 ? scale * alpha * (exp(x) - 1) : scale * x`
31
32
* ```js
33
* const x = tf.tensor1d([-1, 2, -3, 4]);
0 commit comments