Uses of Interface
org.tensorflow.ndarray.IntNdArray
Packages that use IntNdArray
Package
Description
-
Uses of IntNdArray in org.tensorflow.ndarray
Methods in org.tensorflow.ndarray that return IntNdArrayModifier and TypeMethodDescriptionIntNdArray.copyFrom(DataBuffer<Integer> src) IntNdArray.copyFrom(IntDataBuffer src) IntNdArray.copyTo(DataBuffer<Integer> dst) IntNdArray.copyTo(IntDataBuffer dst) IntNdArray.get(long... coordinates) static IntNdArrayStdArrays.ndCopyOf(int[] array) Copy an array of ints in a newIntNdArraystatic IntNdArrayStdArrays.ndCopyOf(int[][] array) Copy a 2-dimensional array of ints in a newIntNdArraystatic IntNdArrayStdArrays.ndCopyOf(int[][][] array) Copy a 3-dimensional array of ints in a newIntNdArraystatic IntNdArrayStdArrays.ndCopyOf(int[][][][] array) Copy a 4-dimensional array of ints in a newIntNdArraystatic IntNdArrayStdArrays.ndCopyOf(int[][][][][] array) Copy a 5-dimensional array of ints in a newIntNdArraystatic IntNdArrayStdArrays.ndCopyOf(int[][][][][][] array) Copy a 6-dimensional array of ints in a newIntNdArraystatic IntNdArrayCreates an N-dimensional array of ints of the given shape.static IntNdArrayNdArrays.scalarOf(int value) Creates long scalar (rank 0) initialized with the given value.IntNdArray.setInt(int value, long... coordinates) Assigns the integer value of the scalar found at the given coordinates.default IntNdArraystatic IntNdArrayNdArrays.vectorOf(int... values) Creates a int vector (rank 1) initialized with the given values.static IntNdArrayNdArrays.wrap(Shape shape, IntDataBuffer buffer) Wraps a buffer in an int N-dimensional array of a given shape.Methods in org.tensorflow.ndarray that return types with arguments of type IntNdArrayMethods in org.tensorflow.ndarray with parameters of type IntNdArrayModifier and TypeMethodDescriptionstatic int[]StdArrays.array1dCopyOf(IntNdArray ndArray) Copy aIntNdArrayin a new 1-dimension standard array of intsstatic int[][]StdArrays.array2dCopyOf(IntNdArray ndArray) Copy aIntNdArrayin a new 2-dimension standard array of intsstatic int[][][]StdArrays.array3dCopyOf(IntNdArray ndArray) Copy aIntNdArrayin a new 3-dimension standard array of intsstatic int[][][][]StdArrays.array4dCopyOf(IntNdArray ndArray) Copy aIntNdArrayin a new 4-dimension standard array of intsstatic int[][][][][]StdArrays.array5dCopyOf(IntNdArray ndArray) Copy aIntNdArrayin a new 5-dimension standard array of intsstatic int[][][][][][]StdArrays.array6dCopyOf(IntNdArray ndArray) Copy aIntNdArrayin a new 6-dimension standard array of intsstatic voidStdArrays.copyFrom(IntNdArray src, int[] dst) Copy aNdArrayto an array of intsstatic voidStdArrays.copyFrom(IntNdArray src, int[][] dst) Copy aNdArrayto a 2-dimensional array of intsstatic voidStdArrays.copyFrom(IntNdArray src, int[][][] dst) Copy aNdArrayto a 3-dimensional array of intsstatic voidStdArrays.copyFrom(IntNdArray src, int[][][][] dst) Copy aNdArrayto a 4-dimensional array of intsstatic voidStdArrays.copyFrom(IntNdArray src, int[][][][][] dst) Copy aNdArrayto a 5-dimensional array of intsstatic voidStdArrays.copyFrom(IntNdArray src, int[][][][][][] dst) Copy aNdArrayto a 6-dimensional array of intsstatic voidStdArrays.copyTo(int[][][][][][] src, IntNdArray dst) Copy a 6-dimensional array of ints into thedstNdArraystatic voidStdArrays.copyTo(int[][][][][] src, IntNdArray dst) Copy a 5-dimensional array of ints into thedstNdArraystatic voidStdArrays.copyTo(int[][][][] src, IntNdArray dst) Copy a 4-dimensional array of ints into thedstNdArraystatic voidStdArrays.copyTo(int[][][] src, IntNdArray dst) Copy a 3-dimensional array of ints into thedstNdArraystatic voidStdArrays.copyTo(int[][] src, IntNdArray dst) Copy a 2-dimensional array of ints into thedstNdArraystatic voidStdArrays.copyTo(int[] src, IntNdArray dst) Copy an array of ints into thedstNdArraystatic IntSparseNdArrayNdArrays.sparseOf(LongNdArray indices, IntNdArray values, int defaultValue, Shape shape) Creates a Sparse array of int valuesstatic IntSparseNdArrayNdArrays.sparseOf(LongNdArray indices, IntNdArray values, Shape shape) Creates a Sparse array of int values with a default value of zero. -
Uses of IntNdArray in org.tensorflow.ndarray.impl.dense
Classes in org.tensorflow.ndarray.impl.dense that implement IntNdArraySubclasses with type arguments of type IntNdArray in org.tensorflow.ndarray.impl.denseMethods in org.tensorflow.ndarray.impl.dense that return IntNdArrayModifier and TypeMethodDescriptionIntDenseNdArray.copyFrom(IntDataBuffer src) IntDenseNdArray.copyTo(IntDataBuffer dst) static IntNdArrayIntDenseNdArray.create(IntDataBuffer buffer, Shape shape) IntDenseNdArray.setInt(int value, long... indices) -
Uses of IntNdArray in org.tensorflow.ndarray.impl.sparse
Classes in org.tensorflow.ndarray.impl.sparse that implement IntNdArraySubclasses with type arguments of type IntNdArray in org.tensorflow.ndarray.impl.sparseMethods in org.tensorflow.ndarray.impl.sparse that return IntNdArrayModifier and TypeMethodDescriptionIntSparseNdArray.copyFrom(DataBuffer<Integer> src) Copy the content of the source buffer into this N-dimensional array.IntSparseNdArray.copyFrom(IntDataBuffer src) IntSparseNdArray.copyTo(DataBuffer<Integer> dst) Copy the content of this N-dimensional array into the destination buffer.IntSparseNdArray.copyTo(IntDataBuffer dst) Copy the content of this array to the destination array.IntSparseNdArray.createDefaultArray()Creates the NdArray with the default value as a scalarIntSparseNdArray.createValues(Shape shape) Creates a IntNdArray of the specified shapeIntSparseNdArray.fromDense(IntNdArray src) Populates this sparse array from a dense arrayIntSparseNdArray.get(long... coordinates) Returns the N-dimensional element of this array at the given coordinates.Assigns the value of the N-dimensional element found at the given coordinates.IntSparseNdArray.setInt(int value, long... coordinates) Assigns the integer value of the scalar found at the given coordinates.Assigns the value of the scalar found at the given coordinates.IntSparseNdArray.slice(long position, DimensionalSpace sliceDimensions) Creates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors.IntSparseNdArray.toDense()Converts the sparse array to a dense arrayMethods in org.tensorflow.ndarray.impl.sparse with parameters of type IntNdArrayModifier and TypeMethodDescriptionstatic IntSparseNdArrayIntSparseNdArray.create(IntNdArray src) Creates a new IntSparseNdArray from a IntNdArraystatic IntSparseNdArrayIntSparseNdArray.create(IntNdArray src, int defaultValue) Creates a new IntSparseNdArray from a IntNdArraystatic IntSparseNdArrayIntSparseNdArray.create(LongNdArray indices, IntNdArray values, int defaultValue, DimensionalSpace dimensions) Creates a new IntSparseNdArraystatic IntSparseNdArrayIntSparseNdArray.create(LongNdArray indices, IntNdArray values, DimensionalSpace dimensions) Creates a new IntSparseNdArrayIntSparseNdArray.fromDense(IntNdArray src) Populates this sparse array from a dense arrayConstructors in org.tensorflow.ndarray.impl.sparse with parameters of type IntNdArrayModifierConstructorDescriptionprotectedIntSparseNdArray(LongNdArray indices, IntNdArray values, int defaultValue, DimensionalSpace dimensions) Creates a IntSparseNdArray -
Uses of IntNdArray in org.tensorflow.ndarray.impl.sparse.slice
Classes in org.tensorflow.ndarray.impl.sparse.slice that implement IntNdArraySubclasses with type arguments of type IntNdArray in org.tensorflow.ndarray.impl.sparse.sliceMethods in org.tensorflow.ndarray.impl.sparse.slice that return IntNdArrayModifier and TypeMethodDescriptionIntSparseSlice.copyFrom(DataBuffer<Integer> src) IntSparseSlice.copyFrom(IntDataBuffer src) IntSparseSlice.copyTo(DataBuffer<Integer> dst) Copy the content of this N-dimensional array into the destination buffer.IntSparseSlice.copyTo(IntDataBuffer dst) IntSparseSlice.createDefaultArray()IntSparseSlice.get(long... coordinates) IntSparseSlice.setInt(int value, long... coordinates) IntSparseSlice.slice(long position, DimensionalSpace sliceDimensions) IntSparseSlice.toDense()Converts the sparse window to a dense NdArrayConstructor parameters in org.tensorflow.ndarray.impl.sparse.slice with type arguments of type IntNdArrayModifierConstructorDescriptionIntSparseSlice(AbstractSparseNdArray<Integer, IntNdArray> source, long sourcePosition, DimensionalSpace dimensions) Creates a IntSparseSlice