Uses of Interface
org.tensorflow.ndarray.ByteNdArray
-
Packages that use ByteNdArray Package Description org.tensorflow.ndarray org.tensorflow.ndarray.impl.dense org.tensorflow.ndarray.impl.sparse org.tensorflow.ndarray.impl.sparse.slice -
-
Uses of ByteNdArray in org.tensorflow.ndarray
Methods in org.tensorflow.ndarray that return ByteNdArray Modifier and Type Method Description ByteNdArrayByteNdArray. copyTo(NdArray<Byte> dst)ByteNdArrayByteNdArray. get(long... coordinates)static ByteNdArrayStdArrays. ndCopyOf(byte[] array)Copy an array of bytes in a newByteNdArraystatic ByteNdArrayStdArrays. ndCopyOf(byte[][] array)Copy a 2-dimensional array of bytes in a newByteNdArraystatic ByteNdArrayStdArrays. ndCopyOf(byte[][][] array)Copy a 3-dimensional array of bytes in a newByteNdArraystatic ByteNdArrayStdArrays. ndCopyOf(byte[][][][] array)Copy a 4-dimensional array of bytes in a newByteNdArraystatic ByteNdArrayStdArrays. ndCopyOf(byte[][][][][] array)Copy a 5-dimensional array of bytes in a newByteNdArraystatic ByteNdArrayStdArrays. ndCopyOf(byte[][][][][][] array)Copy a 6-dimensional array of bytes in a newByteNdArraystatic ByteNdArrayNdArrays. ofBytes(Shape shape)Creates an N-dimensional array of bytes of the given shape.ByteNdArrayByteNdArray. read(ByteDataBuffer dst)ByteNdArrayByteNdArray. read(DataBuffer<Byte> dst)static ByteNdArrayNdArrays. scalarOf(byte value)Creates byte scalar (rank 0) initialized with the given value.ByteNdArrayByteNdArray. set(NdArray<Byte> src, long... coordinates)ByteNdArrayByteNdArray. setByte(byte value, long... coordinates)Assigns the byte value of the scalar found at the given coordinates.default ByteNdArrayByteNdArray. setObject(Byte value, long... coordinates)ByteNdArrayByteNdArray. slice(Index... indices)static ByteNdArrayNdArrays. vectorOf(byte... values)Creates a byte vector (rank 1) initialized with the given values.static ByteNdArrayNdArrays. wrap(Shape shape, ByteDataBuffer buffer)Wraps a buffer in a byte N-dimensional array of a given shape.ByteNdArrayByteNdArray. write(ByteDataBuffer src)ByteNdArrayByteNdArray. write(DataBuffer<Byte> src)Methods in org.tensorflow.ndarray that return types with arguments of type ByteNdArray Modifier and Type Method Description NdArraySequence<ByteNdArray>ByteNdArray. elements(int dimensionIdx)NdArraySequence<ByteNdArray>ByteNdArray. scalars()Methods in org.tensorflow.ndarray with parameters of type ByteNdArray Modifier and Type Method Description static byte[]StdArrays. array1dCopyOf(ByteNdArray ndArray)Copy aByteNdArrayin a new 1-dimension standard array of bytesstatic byte[][]StdArrays. array2dCopyOf(ByteNdArray ndArray)Copy aByteNdArrayin a new 2-dimension standard array of bytesstatic byte[][][]StdArrays. array3dCopyOf(ByteNdArray ndArray)Copy aByteNdArrayin a new 3-dimension standard array of bytesstatic byte[][][][]StdArrays. array4dCopyOf(ByteNdArray ndArray)Copy aByteNdArrayin a new 4-dimension standard array of bytesstatic byte[][][][][]StdArrays. array5dCopyOf(ByteNdArray ndArray)Copy aByteNdArrayin a new 5-dimension standard array of bytesstatic byte[][][][][][]StdArrays. array6dCopyOf(ByteNdArray ndArray)Copy aByteNdArrayin a new 6-dimension standard array of bytesstatic voidStdArrays. copyFrom(ByteNdArray src, byte[] dst)Copy aNdArrayto an array of bytesstatic voidStdArrays. copyFrom(ByteNdArray src, byte[][] dst)Copy aNdArrayto a 2-dimensional array of bytesstatic voidStdArrays. copyFrom(ByteNdArray src, byte[][][] dst)Copy aNdArrayto a 3-dimensional array of bytesstatic voidStdArrays. copyFrom(ByteNdArray src, byte[][][][] dst)Copy aNdArrayto a 4-dimensional array of bytesstatic voidStdArrays. copyFrom(ByteNdArray src, byte[][][][][] dst)Copy aNdArrayto a 5-dimensional array of bytesstatic voidStdArrays. copyFrom(ByteNdArray src, byte[][][][][][] dst)Copy aNdArrayto a 6-dimensional array of bytesstatic voidStdArrays. copyTo(byte[][][][][][] src, ByteNdArray dst)Copy a 6-dimensional array of bytes into thedstNdArraystatic voidStdArrays. copyTo(byte[][][][][] src, ByteNdArray dst)Copy a 5-dimensional array of bytes into thedstNdArraystatic voidStdArrays. copyTo(byte[][][][] src, ByteNdArray dst)Copy a 4-dimensional array of bytes into thedstNdArraystatic voidStdArrays. copyTo(byte[][][] src, ByteNdArray dst)Copy a 3-dimensional array of bytes into thedstNdArraystatic voidStdArrays. copyTo(byte[][] src, ByteNdArray dst)Copy a 2-dimensional array of bytes into thedstNdArraystatic voidStdArrays. copyTo(byte[] src, ByteNdArray dst)Copy an array of bytes into thedstNdArraystatic ByteSparseNdArrayNdArrays. sparseOf(LongNdArray indices, ByteNdArray values, byte defaultValue, Shape shape)Creates a Sparse array of byte valuesstatic ByteSparseNdArrayNdArrays. sparseOf(LongNdArray indices, ByteNdArray values, Shape shape)Creates a Sparse array of byte values with a default value of zero -
Uses of ByteNdArray in org.tensorflow.ndarray.impl.dense
Classes in org.tensorflow.ndarray.impl.dense that implement ByteNdArray Modifier and Type Class Description classByteDenseNdArrayMethods in org.tensorflow.ndarray.impl.dense that return ByteNdArray Modifier and Type Method Description ByteNdArrayByteDenseNdArray. copyTo(NdArray<Byte> dst)static ByteNdArrayByteDenseNdArray. create(ByteDataBuffer buffer, Shape shape)ByteNdArrayByteDenseNdArray. read(ByteDataBuffer dst)ByteNdArrayByteDenseNdArray. setByte(byte value, long... indices)ByteNdArrayByteDenseNdArray. write(ByteDataBuffer src) -
Uses of ByteNdArray in org.tensorflow.ndarray.impl.sparse
Classes in org.tensorflow.ndarray.impl.sparse that implement ByteNdArray Modifier and Type Class Description classByteSparseNdArraysparse array for the byte data typeMethods in org.tensorflow.ndarray.impl.sparse that return ByteNdArray Modifier and Type Method Description ByteNdArrayByteSparseNdArray. copyTo(NdArray<Byte> dst)Copy the content of this array to the destination array.ByteNdArrayByteSparseNdArray. createDefaultArray()Creates the NdArray with the default value as a scalarByteNdArrayByteSparseNdArray. createValues(Shape shape)Creates a ByteNdArray of the specified shapeByteNdArrayByteSparseNdArray. fromDense(ByteNdArray src)Populates this sparse array from a dense arrayByteNdArrayByteSparseNdArray. get(long... coordinates)Returns the N-dimensional element of this array at the given coordinates.ByteNdArrayByteSparseNdArray. read(ByteDataBuffer dst)ByteNdArrayByteSparseNdArray. read(DataBuffer<Byte> dst)Read the content of this N-dimensional array into the destination buffer.ByteNdArrayByteSparseNdArray. set(NdArray<Byte> src, long... coordinates)Assigns the value of the N-dimensional element found at the given coordinates.ByteNdArrayByteSparseNdArray. setByte(byte value, long... coordinates)Assigns the byte value of the scalar found at the given coordinates.ByteNdArrayByteSparseNdArray. setObject(Byte value, long... coordinates)Assigns the value of the scalar found at the given coordinates.ByteNdArrayByteSparseNdArray. slice(long position, DimensionalSpace sliceDimensions)ByteNdArrayByteSparseNdArray. slice(Index... indices)Creates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors.ByteNdArrayByteSparseNdArray. toDense()Converts the sparse array to a dense arrayByteNdArrayByteSparseNdArray. write(ByteDataBuffer src)ByteNdArrayByteSparseNdArray. write(DataBuffer<Byte> src)Write the content of this N-dimensional array from the source buffer.Methods in org.tensorflow.ndarray.impl.sparse with parameters of type ByteNdArray Modifier and Type Method Description static ByteSparseNdArrayByteSparseNdArray. create(ByteNdArray src)Creates a new ByteSparseNdArray from a ByteNdArraystatic ByteSparseNdArrayByteSparseNdArray. create(ByteNdArray src, byte defaultValue)Creates a new ByteSparseNdArray from a ByteNdArraystatic ByteSparseNdArrayByteSparseNdArray. create(LongNdArray indices, ByteNdArray values, byte defaultValue, DimensionalSpace dimensions)Creates a new ByteSparseNdArraystatic ByteSparseNdArrayByteSparseNdArray. create(LongNdArray indices, ByteNdArray values, DimensionalSpace dimensions)Creates a new ByteSparseNdArrayByteNdArrayByteSparseNdArray. fromDense(ByteNdArray src)Populates this sparse array from a dense arrayConstructors in org.tensorflow.ndarray.impl.sparse with parameters of type ByteNdArray Constructor Description ByteSparseNdArray(LongNdArray indices, ByteNdArray values, byte defaultValue, DimensionalSpace dimensions)Creates a ByteSparseNdArray with a default value of zero. -
Uses of ByteNdArray in org.tensorflow.ndarray.impl.sparse.slice
Classes in org.tensorflow.ndarray.impl.sparse.slice that implement ByteNdArray Modifier and Type Class Description classByteSparseSliceMethods in org.tensorflow.ndarray.impl.sparse.slice that return ByteNdArray Modifier and Type Method Description ByteNdArrayByteSparseSlice. copyTo(NdArray<Byte> dst)ByteNdArrayByteSparseSlice. createDefaultArray()ByteNdArrayByteSparseSlice. get(long... coordinates)ByteNdArrayByteSparseSlice. read(ByteDataBuffer dst)ByteNdArrayByteSparseSlice. read(DataBuffer<Byte> dst)Read the content of this N-dimensional array into the destination buffer.ByteNdArrayByteSparseSlice. set(NdArray<Byte> src, long... coordinates)ByteNdArrayByteSparseSlice. setByte(byte value, long... coordinates)ByteNdArrayByteSparseSlice. setObject(Byte value, long... coordinates)ByteNdArrayByteSparseSlice. slice(long position, DimensionalSpace sliceDimensions)ByteNdArrayByteSparseSlice. slice(Index... indices)ByteNdArrayByteSparseSlice. toDense()Converts the sparse window to a dense NdArrayByteNdArrayByteSparseSlice. write(ByteDataBuffer src)ByteNdArrayByteSparseSlice. write(DataBuffer<Byte> src)Constructor parameters in org.tensorflow.ndarray.impl.sparse.slice with type arguments of type ByteNdArray Constructor Description ByteSparseSlice(AbstractSparseNdArray<Byte,ByteNdArray> source, long sourcePosition, DimensionalSpace dimensions)Creates a ByteSparseSlice
-