Uses of Interface
org.tensorflow.ndarray.ByteNdArray
Packages that use ByteNdArray
Package
Description
-
Uses of ByteNdArray in org.tensorflow.ndarray
Methods in org.tensorflow.ndarray that return ByteNdArrayModifier and TypeMethodDescriptionByteNdArray.copyFrom(ByteDataBuffer src) ByteNdArray.copyFrom(DataBuffer<Byte> src) ByteNdArray.copyTo(ByteDataBuffer dst) ByteNdArray.copyTo(DataBuffer<Byte> dst) ByteNdArray.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 ByteNdArrayCreates an N-dimensional array of bytes of the given shape.static ByteNdArrayNdArrays.scalarOf(byte value) Creates byte scalar (rank 0) initialized with the given value.ByteNdArray.setByte(byte value, long... coordinates) Assigns the byte value of the scalar found at the given coordinates.default ByteNdArraystatic 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.Methods in org.tensorflow.ndarray that return types with arguments of type ByteNdArrayMethods in org.tensorflow.ndarray with parameters of type ByteNdArrayModifier and TypeMethodDescriptionstatic 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 ByteNdArraySubclasses with type arguments of type ByteNdArray in org.tensorflow.ndarray.impl.denseMethods in org.tensorflow.ndarray.impl.dense that return ByteNdArrayModifier and TypeMethodDescriptionByteDenseNdArray.copyFrom(ByteDataBuffer src) ByteDenseNdArray.copyTo(ByteDataBuffer dst) static ByteNdArrayByteDenseNdArray.create(ByteDataBuffer buffer, Shape shape) ByteDenseNdArray.setByte(byte value, long... indices) -
Uses of ByteNdArray in org.tensorflow.ndarray.impl.sparse
Classes in org.tensorflow.ndarray.impl.sparse that implement ByteNdArraySubclasses with type arguments of type ByteNdArray in org.tensorflow.ndarray.impl.sparseMethods in org.tensorflow.ndarray.impl.sparse that return ByteNdArrayModifier and TypeMethodDescriptionByteSparseNdArray.copyFrom(ByteDataBuffer src) ByteSparseNdArray.copyFrom(DataBuffer<Byte> src) Copy the content of the source buffer into this N-dimensional array.ByteSparseNdArray.copyTo(ByteDataBuffer dst) ByteSparseNdArray.copyTo(DataBuffer<Byte> dst) Copy the content of this N-dimensional array into the destination buffer.Copy the content of this array to the destination array.ByteSparseNdArray.createDefaultArray()Creates the NdArray with the default value as a scalarByteSparseNdArray.createValues(Shape shape) Creates a ByteNdArray of the specified shapeByteSparseNdArray.fromDense(ByteNdArray src) Populates this sparse array from a dense arrayByteSparseNdArray.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.ByteSparseNdArray.setByte(byte value, long... coordinates) Assigns the byte value of the scalar found at the given coordinates.Assigns the value of the scalar found at the given coordinates.ByteSparseNdArray.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.ByteSparseNdArray.toDense()Converts the sparse array to a dense arrayMethods in org.tensorflow.ndarray.impl.sparse with parameters of type ByteNdArrayModifier and TypeMethodDescriptionstatic 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 ByteSparseNdArrayByteSparseNdArray.fromDense(ByteNdArray src) Populates this sparse array from a dense arrayConstructors in org.tensorflow.ndarray.impl.sparse with parameters of type ByteNdArrayModifierConstructorDescriptionprotectedByteSparseNdArray(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 ByteNdArraySubclasses with type arguments of type ByteNdArray in org.tensorflow.ndarray.impl.sparse.sliceMethods in org.tensorflow.ndarray.impl.sparse.slice that return ByteNdArrayModifier and TypeMethodDescriptionByteSparseSlice.copyFrom(ByteDataBuffer src) ByteSparseSlice.copyFrom(DataBuffer<Byte> src) ByteSparseSlice.copyTo(ByteDataBuffer dst) ByteSparseSlice.copyTo(DataBuffer<Byte> dst) Copy the content of this N-dimensional array into the destination buffer.ByteSparseSlice.createDefaultArray()ByteSparseSlice.get(long... coordinates) ByteSparseSlice.setByte(byte value, long... coordinates) ByteSparseSlice.slice(long position, DimensionalSpace sliceDimensions) ByteSparseSlice.toDense()Converts the sparse window to a dense NdArrayConstructor parameters in org.tensorflow.ndarray.impl.sparse.slice with type arguments of type ByteNdArrayModifierConstructorDescriptionByteSparseSlice(AbstractSparseNdArray<Byte, ByteNdArray> source, long sourcePosition, DimensionalSpace dimensions) Creates a ByteSparseSlice