Uses of Interface
org.tensorflow.ndarray.index.Index

Packages that use Index
  • Uses of Index in org.tensorflow.ndarray

    Methods in org.tensorflow.ndarray with parameters of type Index
    Modifier and Type
    Method
    Description
    BooleanNdArray.slice(Index... indices)
     
    ByteNdArray.slice(Index... indices)
     
    DoubleNdArray.slice(Index... indices)
     
    FloatNdArray.slice(Index... coordinates)
     
    IntNdArray.slice(Index... indices)
     
    LongNdArray.slice(Index... indices)
     
    NdArray.slice(Index... indices)
    Creates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors.
    ShortNdArray.slice(Index... coordinates)
     
  • Uses of Index in org.tensorflow.ndarray.impl.dense

    Methods in org.tensorflow.ndarray.impl.dense with parameters of type Index
    Modifier and Type
    Method
    Description
    AbstractDenseNdArray.slice(Index... indices)
     
  • Uses of Index in org.tensorflow.ndarray.impl.dimension

    Methods in org.tensorflow.ndarray.impl.dimension with parameters of type Index
    Modifier and Type
    Method
    Description
    DimensionalSpace.mapTo(Index[] indices)
     
    default Dimension
    Dimension.withIndex(Index index)
     
  • Uses of Index in org.tensorflow.ndarray.impl.sparse

    Methods in org.tensorflow.ndarray.impl.sparse with parameters of type Index
    Modifier and Type
    Method
    Description
    AbstractSparseNdArray.slice(Index... indices)
    Creates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors.
    BooleanSparseNdArray.slice(Index... indices)
    Creates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors.
    ByteSparseNdArray.slice(Index... indices)
    Creates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors.
    DoubleSparseNdArray.slice(Index... indices)
    Creates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors.
    FloatSparseNdArray.slice(Index... indices)
    Creates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors.
    IntSparseNdArray.slice(Index... indices)
    Creates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors.
    LongSparseNdArray.slice(Index... indices)
    Creates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors.
    ShortSparseNdArray.slice(Index... indices)
    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 Index
    Modifier and Type
    Method
    Description
    BooleanSparseSlice.slice(Index... indices)
     
    ByteSparseSlice.slice(Index... indices)
     
    DoubleSparseSlice.slice(Index... indices)
     
    FloatSparseSlice.slice(Index... indices)
     
    IntSparseSlice.slice(Index... indices)
     
    LongSparseSlice.slice(Index... indices)
     
    ObjectSparseSlice.slice(Index... indices)
     
    ShortSparseSlice.slice(Index... indices)
     
    SparseSlice.slice(Index... indices)
    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.index

    Methods in org.tensorflow.ndarray.index that return Index
    Modifier and Type
    Method
    Description
    static Index
    Indices.all()
    An index that returns all elements of a dimension in the original order.
    static Index
    Indices.at(long coord)
    A coordinate that selects a specific element on a given dimension.
    static Index
    Indices.at(long coord, boolean keepDim)
    A coordinate that selects a specific element on a given dimension.
    static Index
    Indices.at(NdArray<? extends Number> coord)
    A coordinate that selects a specific element on a given dimension.
    static Index
    Indices.at(NdArray<? extends Number> coord, boolean keepDim)
    A coordinate that selects a specific element on a given dimension.
    static Index
    Indices.ellipsis()
    An index that expands to fill all available source dimensions.
    static Index
    Indices.even()
    An index that returns only elements found at an even position in the original dimension.
    static Index
    Indices.flip()
    An index that returns only elements on a given dimension between two coordinates.
    static Index
    Indices.hyperslab(long start, long stride, long count, long block)
    An index that returns elements according to an hyperslab defined by start, stride, count, block.
    static Index
    Indices.newAxis()
    An index that inserts a new dimension of size 1 into the resulting array.
    static Index
    Indices.odd()
    An index that returns only elements found at an odd position in the original dimension.
    static Index
    Indices.range(long start, long end)
    An index that returns only elements on a given dimension between two coordinates.
    static Index
    Indices.seq(long... coords)
    An index that returns only specific elements on a given dimension.
    static Index
    Indices.seq(NdArray<? extends Number> coords)
    An index that returns only specific elements on a given dimension.
    static Index
    Indices.slice(long start, long end)
    An index that returns elements between start and end.
    static Index
    Indices.slice(long start, long end, long stride)
    An index that returns every stride-th element between start and end.
    static Index
    Indices.slice(Long start, Long end)
    An index that returns elements between start and end.
    static Index
    Indices.slice(Long start, Long end, long stride)
    An index that returns every stride-th element between start and end.
    static Index
    Indices.sliceFrom(long start)
    An index that returns only elements on a given dimension starting at a specific coordinate.
    static Index
    Indices.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 Index
    Indices.sliceTo(long end)
    An index that returns only elements on a given dimension up to a specific coordinate.
    static Index
    Indices.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 Index
    Indices.step(long stride)
    An index that skips a fixed amount of coordinates between each values returned.