Skip to content

Commit

Permalink
Update Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
karllessard committed Jun 9, 2020
1 parent 31c4d7f commit 87d4607
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public interface NdArraySequence<T extends NdArray<?>> extends Iterable<T> {
*
* <p>Unlike conventional Java collections, elements of a {@code NdArraySequence} are transient, i.e. new {@code NdArray}
* instances are allocated for each iteration. To improve performance, the same instance can be recycled to view
* all elements of this sequence, using a {@link org.tensorflow.tools.buffer.DataBufferWindow}.
* all elements of this sequence, using a {@link DataBufferWindow}.
*
* <p>In some cases though, it might be preferable to disable such optimizations to ensure that each element returned is a
* new slice of the original array. For example, if one or more elements visited must live beyond the scope of the sequence
Expand Down
2 changes: 1 addition & 1 deletion ndarray/src/main/java/org/tensorflow/ndarray/Shape.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import java.util.Arrays;

/**
* The shape of a Tensor or {@link org.tensorflow.tools.ndarray.NdArray}.
* The shape of a Tensor or {@link NdArray}.
*
* <p>A {@code Shape} defines sizes along its axes. It may contain an unknown size for one of the
* axes or may be totally unknown, in which case not even the number of axes is known. If the size
Expand Down

0 comments on commit 87d4607

Please sign in to comment.