Uses of Interface
org.tensorflow.ndarray.IntNdArray
-
Packages that use IntNdArray Package Description org.tensorflow.ndarray org.tensorflow.ndarray.impl.dense org.tensorflow.ndarray.impl.sparse org.tensorflow.ndarray.impl.sparse.slice -
-
Uses of IntNdArray in org.tensorflow.ndarray
Methods in org.tensorflow.ndarray that return IntNdArray Modifier and Type Method Description IntNdArrayIntNdArray. copyTo(NdArray<Integer> dst)IntNdArrayIntNdArray. 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 IntNdArrayNdArrays. ofInts(Shape shape)Creates an N-dimensional array of ints of the given shape.IntNdArrayIntNdArray. read(DataBuffer<Integer> dst)IntNdArrayIntNdArray. read(IntDataBuffer dst)static IntNdArrayNdArrays. scalarOf(int value)Creates long scalar (rank 0) initialized with the given value.IntNdArrayIntNdArray. set(NdArray<Integer> src, long... coordinates)IntNdArrayIntNdArray. setInt(int value, long... coordinates)Assigns the integer value of the scalar found at the given coordinates.default IntNdArrayIntNdArray. setObject(Integer value, long... coordinates)IntNdArrayIntNdArray. slice(Index... indices)static 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.IntNdArrayIntNdArray. write(DataBuffer<Integer> src)IntNdArrayIntNdArray. write(IntDataBuffer src)Methods in org.tensorflow.ndarray that return types with arguments of type IntNdArray Modifier and Type Method Description NdArraySequence<IntNdArray>IntNdArray. elements(int dimensionIdx)NdArraySequence<IntNdArray>IntNdArray. scalars()Methods in org.tensorflow.ndarray with parameters of type IntNdArray Modifier and Type Method Description static 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 IntNdArray Modifier and Type Class Description classIntDenseNdArrayMethods in org.tensorflow.ndarray.impl.dense that return IntNdArray Modifier and Type Method Description IntNdArrayIntDenseNdArray. copyTo(NdArray<Integer> dst)static IntNdArrayIntDenseNdArray. create(IntDataBuffer buffer, Shape shape)IntNdArrayIntDenseNdArray. read(IntDataBuffer dst)IntNdArrayIntDenseNdArray. setInt(int value, long... indices)IntNdArrayIntDenseNdArray. write(IntDataBuffer src) -
Uses of IntNdArray in org.tensorflow.ndarray.impl.sparse
Classes in org.tensorflow.ndarray.impl.sparse that implement IntNdArray Modifier and Type Class Description classIntSparseNdArraysparse array for the int data typeMethods in org.tensorflow.ndarray.impl.sparse that return IntNdArray Modifier and Type Method Description IntNdArrayIntSparseNdArray. copyTo(NdArray<Integer> dst)Copy the content of this array to the destination array.IntNdArrayIntSparseNdArray. createDefaultArray()Creates the NdArray with the default value as a scalarIntNdArrayIntSparseNdArray. createValues(Shape shape)Creates a IntNdArray of the specified shapeIntNdArrayIntSparseNdArray. fromDense(IntNdArray src)Populates this sparse array from a dense arrayIntNdArrayIntSparseNdArray. get(long... coordinates)Returns the N-dimensional element of this array at the given coordinates.IntNdArrayIntSparseNdArray. read(DataBuffer<Integer> dst)Read the content of this N-dimensional array into the destination buffer.IntNdArrayIntSparseNdArray. read(IntDataBuffer dst)IntNdArrayIntSparseNdArray. set(NdArray<Integer> src, long... coordinates)Assigns the value of the N-dimensional element found at the given coordinates.IntNdArrayIntSparseNdArray. setInt(int value, long... coordinates)Assigns the integer value of the scalar found at the given coordinates.IntNdArrayIntSparseNdArray. setObject(Integer value, long... coordinates)Assigns the value of the scalar found at the given coordinates.IntNdArrayIntSparseNdArray. slice(long position, DimensionalSpace sliceDimensions)IntNdArrayIntSparseNdArray. slice(Index... indices)Creates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors.IntNdArrayIntSparseNdArray. toDense()Converts the sparse array to a dense arrayIntNdArrayIntSparseNdArray. write(DataBuffer<Integer> src)Write the content of this N-dimensional array from the source buffer.IntNdArrayIntSparseNdArray. write(IntDataBuffer src)Methods in org.tensorflow.ndarray.impl.sparse with parameters of type IntNdArray Modifier and Type Method Description static 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 IntSparseNdArrayIntNdArrayIntSparseNdArray. fromDense(IntNdArray src)Populates this sparse array from a dense arrayConstructors in org.tensorflow.ndarray.impl.sparse with parameters of type IntNdArray Constructor Description IntSparseNdArray(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 IntNdArray Modifier and Type Class Description classIntSparseSliceMethods in org.tensorflow.ndarray.impl.sparse.slice that return IntNdArray Modifier and Type Method Description IntNdArrayIntSparseSlice. copyTo(NdArray<Integer> dst)IntNdArrayIntSparseSlice. createDefaultArray()IntNdArrayIntSparseSlice. get(long... coordinates)IntNdArrayIntSparseSlice. read(DataBuffer<Integer> dst)Read the content of this N-dimensional array into the destination buffer.IntNdArrayIntSparseSlice. read(IntDataBuffer dst)IntNdArrayIntSparseSlice. set(NdArray<Integer> src, long... coordinates)IntNdArrayIntSparseSlice. setInt(int value, long... coordinates)IntNdArrayIntSparseSlice. setObject(Integer value, long... coordinates)IntNdArrayIntSparseSlice. slice(long position, DimensionalSpace sliceDimensions)IntNdArrayIntSparseSlice. slice(Index... indices)IntNdArrayIntSparseSlice. toDense()Converts the sparse window to a dense NdArrayIntNdArrayIntSparseSlice. write(DataBuffer<Integer> src)IntNdArrayIntSparseSlice. write(IntDataBuffer src)Constructor parameters in org.tensorflow.ndarray.impl.sparse.slice with type arguments of type IntNdArray Constructor Description IntSparseSlice(AbstractSparseNdArray<Integer,IntNdArray> source, long sourcePosition, DimensionalSpace dimensions)Creates a IntSparseSlice
-