Uses of Interface
org.tensorflow.ndarray.index.Index
Packages that use Index
Package
Description
-
Uses of Index in org.tensorflow.ndarray
Methods in org.tensorflow.ndarray with parameters of type IndexModifier and TypeMethodDescriptionCreates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors. -
Uses of Index in org.tensorflow.ndarray.impl.dense
Methods in org.tensorflow.ndarray.impl.dense with parameters of type Index -
Uses of Index in org.tensorflow.ndarray.impl.dimension
Methods in org.tensorflow.ndarray.impl.dimension with parameters of type Index -
Uses of Index in org.tensorflow.ndarray.impl.sparse
Methods in org.tensorflow.ndarray.impl.sparse with parameters of type IndexModifier and TypeMethodDescriptionCreates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors.Creates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors.Creates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors.Creates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors.Creates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors.Creates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors.Creates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors.Creates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors. -
Uses of Index in org.tensorflow.ndarray.impl.sparse.slice
Methods in org.tensorflow.ndarray.impl.sparse.slice with parameters of type IndexModifier and TypeMethodDescriptionCreates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors. -
Uses of Index in org.tensorflow.ndarray.index
Methods in org.tensorflow.ndarray.index that return IndexModifier and TypeMethodDescriptionstatic IndexIndices.all()An index that returns all elements of a dimension in the original order.static IndexIndices.at(long coord) A coordinate that selects a specific element on a given dimension.static IndexIndices.at(long coord, boolean keepDim) A coordinate that selects a specific element on a given dimension.static IndexA coordinate that selects a specific element on a given dimension.static IndexA coordinate that selects a specific element on a given dimension.static IndexIndices.ellipsis()An index that expands to fill all available source dimensions.static IndexIndices.even()An index that returns only elements found at an even position in the original dimension.static IndexIndices.flip()An index that returns only elements on a given dimension between two coordinates.static IndexIndices.hyperslab(long start, long stride, long count, long block) An index that returns elements according to an hyperslab defined bystart,stride,count,block.static IndexIndices.newAxis()An index that inserts a new dimension of size 1 into the resulting array.static IndexIndices.odd()An index that returns only elements found at an odd position in the original dimension.static IndexIndices.range(long start, long end) An index that returns only elements on a given dimension between two coordinates.static IndexIndices.seq(long... coords) An index that returns only specific elements on a given dimension.static IndexAn index that returns only specific elements on a given dimension.static IndexIndices.slice(long start, long end) An index that returns elements betweenstartandend.static IndexIndices.slice(long start, long end, long stride) An index that returns everystride-th element betweenstartandend.static IndexAn index that returns elements betweenstartandend.static IndexAn index that returns everystride-th element betweenstartandend.static IndexIndices.sliceFrom(long start) An index that returns only elements on a given dimension starting at a specific coordinate.static IndexIndices.sliceFrom(long start, long stride) An index that returns only elements on a given dimension starting at a specific coordinate, using the given stride.static IndexIndices.sliceTo(long end) An index that returns only elements on a given dimension up to a specific coordinate.static IndexIndices.sliceTo(long end, long stride) An index that returns only elements on a given dimension up to a specific coordinate, using the given stride.static IndexIndices.step(long stride) An index that skips a fixed amount of coordinates between each values returned.