Skip to content

Commit 56883f0

Browse files
committed
Fix Javadoc
1 parent 81e20cc commit 56883f0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tensorflow-framework/src/main/java/org/tensorflow/framework/activations/SELU.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* <p>where {@code alpha} and {@code scale} are pre-defined constants ({@code alpha=1.67326324} and
3535
* {@code scale=1.05070098}).
3636
*
37-
* <p>Basically, the SELU activation function multiplies {@code scale} (> 1) with the output of the
37+
* <p>Basically, the SELU activation function multiplies {@code scale} (&gt; 1) with the output of the
3838
* elu function to ensure a slope larger than one for positive inputs.
3939
*
4040
* <p>The values of {@code alpha} and {@code scale} are chosen so that the mean and variance of the

tensorflow-framework/src/main/java/org/tensorflow/framework/activations/Sigmoid.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
/**
2525
* Sigmoid activation. {@code sigmoid(x) = 1 / (1 + exp(-x))}.
2626
*
27-
* <p>Applies the sigmoid activation function. For small values {@code (<-5)}, {@code sigmoid}
28-
* returns a value close to zero, and for large values (>5) the result of the function gets close to
27+
* <p>Applies the sigmoid activation function. For small values (&lt;-5), {@code sigmoid}
28+
* returns a value close to zero, and for large values (&gt;5) the result of the function gets close to
2929
* 1.
3030
*
3131
* <p>Sigmoid is equivalent to a 2-element Softmax, where the second element is assumed to be zero.

0 commit comments

Comments
 (0)