Uses of Interface
org.tensorflow.ndarray.BooleanNdArray
Packages that use BooleanNdArray
Package
Description
-
Uses of BooleanNdArray in org.tensorflow.ndarray
Methods in org.tensorflow.ndarray that return BooleanNdArrayModifier and TypeMethodDescriptionBooleanNdArray.copyFrom(BooleanDataBuffer src) BooleanNdArray.copyFrom(DataBuffer<Boolean> src) BooleanNdArray.copyTo(BooleanDataBuffer dst) BooleanNdArray.copyTo(DataBuffer<Boolean> dst) BooleanNdArray.get(long... coordinates) static BooleanNdArrayStdArrays.ndCopyOf(boolean[] array) Copy an array of booleans in a newBooleanNdArraystatic BooleanNdArrayStdArrays.ndCopyOf(boolean[][] array) Copy a 2-dimensional array of booleans in a newBooleanNdArraystatic BooleanNdArrayStdArrays.ndCopyOf(boolean[][][] array) Copy a 3-dimensional array of booleans in a newBooleanNdArraystatic BooleanNdArrayStdArrays.ndCopyOf(boolean[][][][] array) Copy a 4-dimensional array of booleans in a newBooleanNdArraystatic BooleanNdArrayStdArrays.ndCopyOf(boolean[][][][][] array) Copy a 5-dimensional array of booleans in a newBooleanNdArraystatic BooleanNdArrayStdArrays.ndCopyOf(boolean[][][][][][] array) Copy a 6-dimensional array of booleans in a newBooleanNdArraystatic BooleanNdArrayNdArrays.ofBooleans(Shape shape) Creates an N-dimensional array of booleans of the given shape.static BooleanNdArrayNdArrays.scalarOf(boolean value) Creates boolean scalar (rank 0) initialized with the given value.BooleanNdArray.setBoolean(boolean value, long... coordinates) Assigns the boolean value of the scalar found at the given coordinates.default BooleanNdArraystatic BooleanNdArrayNdArrays.vectorOf(boolean... values) Creates a boolean vector (rank 1) initialized with the given values.static BooleanNdArrayNdArrays.wrap(Shape shape, BooleanDataBuffer buffer) Wraps a buffer in a boolean N-dimensional array of a given shape.Methods in org.tensorflow.ndarray that return types with arguments of type BooleanNdArrayModifier and TypeMethodDescriptionBooleanNdArray.elements(int dimensionIdx) BooleanNdArray.scalars()Methods in org.tensorflow.ndarray with parameters of type BooleanNdArrayModifier and TypeMethodDescriptionstatic boolean[]StdArrays.array1dCopyOf(BooleanNdArray ndArray) Copy aBooleanNdArrayin a new 1-dimension standard array of booleansstatic boolean[][]StdArrays.array2dCopyOf(BooleanNdArray ndArray) Copy aBooleanNdArrayin a new 2-dimension standard array of booleansstatic boolean[][][]StdArrays.array3dCopyOf(BooleanNdArray ndArray) Copy aBooleanNdArrayin a new 3-dimension standard array of booleansstatic boolean[][][][]StdArrays.array4dCopyOf(BooleanNdArray ndArray) Copy aBooleanNdArrayin a new 4-dimension standard array of booleansstatic boolean[][][][][]StdArrays.array5dCopyOf(BooleanNdArray ndArray) Copy aBooleanNdArrayin a new 5-dimension standard array of booleansstatic boolean[][][][][][]StdArrays.array6dCopyOf(BooleanNdArray ndArray) Copy aBooleanNdArrayin a new 6-dimension standard array of booleansstatic voidStdArrays.copyFrom(BooleanNdArray src, boolean[] dst) Copy aNdArrayto an array of booleans.static voidStdArrays.copyFrom(BooleanNdArray src, boolean[][] dst) Copy aNdArrayto a 2-dimensional array of booleansstatic voidStdArrays.copyFrom(BooleanNdArray src, boolean[][][] dst) Copy aNdArrayto a 3-dimensional array of booleansstatic voidStdArrays.copyFrom(BooleanNdArray src, boolean[][][][] dst) Copy aNdArrayto a 4-dimensional array of booleansstatic voidStdArrays.copyFrom(BooleanNdArray src, boolean[][][][][] dst) Copy aNdArrayto a 5-dimensional array of booleansstatic voidStdArrays.copyFrom(BooleanNdArray src, boolean[][][][][][] dst) Copy aNdArrayto a 6-dimensional array of booleansstatic voidStdArrays.copyTo(boolean[][][][][][] src, BooleanNdArray dst) Copy a 6-dimensional array of booleans into thedstNdArraystatic voidStdArrays.copyTo(boolean[][][][][] src, BooleanNdArray dst) Copy a 5-dimensional array of booleans into thedstNdArraystatic voidStdArrays.copyTo(boolean[][][][] src, BooleanNdArray dst) Copy a 4-dimensional array of booleans into thedstNdArraystatic voidStdArrays.copyTo(boolean[][][] src, BooleanNdArray dst) Copy a 3-dimensional array of booleans into thedstNdArraystatic voidStdArrays.copyTo(boolean[][] src, BooleanNdArray dst) Copy a 2-dimensional array of booleans into thedstNdArraystatic voidStdArrays.copyTo(boolean[] src, BooleanNdArray dst) Copy an array of booleans into thedstNdArraystatic BooleanSparseNdArrayNdArrays.sparseOf(LongNdArray indices, BooleanNdArray values, boolean defaultValue, Shape shape) Creates a Sparse array of boolean valuesstatic BooleanSparseNdArrayNdArrays.sparseOf(LongNdArray indices, BooleanNdArray values, Shape shape) Creates a Sparse array of boolean values with a default value of 'false' -
Uses of BooleanNdArray in org.tensorflow.ndarray.impl.dense
Classes in org.tensorflow.ndarray.impl.dense that implement BooleanNdArraySubclasses with type arguments of type BooleanNdArray in org.tensorflow.ndarray.impl.denseMethods in org.tensorflow.ndarray.impl.dense that return BooleanNdArrayModifier and TypeMethodDescriptionBooleanDenseNdArray.copyFrom(BooleanDataBuffer src) BooleanDenseNdArray.copyTo(BooleanDataBuffer dst) static BooleanNdArrayBooleanDenseNdArray.create(BooleanDataBuffer buffer, Shape shape) BooleanDenseNdArray.setBoolean(boolean value, long... indices) -
Uses of BooleanNdArray in org.tensorflow.ndarray.impl.sparse
Classes in org.tensorflow.ndarray.impl.sparse that implement BooleanNdArrayModifier and TypeClassDescriptionclasssparse array for the boolean data typeSubclasses with type arguments of type BooleanNdArray in org.tensorflow.ndarray.impl.sparseModifier and TypeClassDescriptionclasssparse array for the boolean data typeMethods in org.tensorflow.ndarray.impl.sparse that return BooleanNdArrayModifier and TypeMethodDescriptionBooleanSparseNdArray.copyFrom(BooleanDataBuffer src) BooleanSparseNdArray.copyFrom(DataBuffer<Boolean> src) Copy the content of the source buffer into this N-dimensional array.BooleanSparseNdArray.copyTo(BooleanDataBuffer dst) BooleanSparseNdArray.copyTo(DataBuffer<Boolean> dst) Copy the content of this N-dimensional array into the destination buffer.Copy the content of this array to the destination array.BooleanSparseNdArray.createDefaultArray()Creates the NdArray with the default value as a scalarBooleanSparseNdArray.createValues(Shape shape) Creates a BooleanNdArray of the specified shapeBooleanSparseNdArray.fromDense(BooleanNdArray src) Populates this sparse array from a dense arrayBooleanSparseNdArray.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.BooleanSparseNdArray.setBoolean(boolean value, long... coordinates) Assigns the boolean value of the scalar found at the given coordinates.Assigns the value of the scalar found at the given coordinates.BooleanSparseNdArray.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.BooleanSparseNdArray.toDense()Converts the sparse array to a dense arrayMethods in org.tensorflow.ndarray.impl.sparse with parameters of type BooleanNdArrayModifier and TypeMethodDescriptionstatic BooleanSparseNdArrayBooleanSparseNdArray.create(BooleanNdArray src) Creates a new BooleanSparseNdArray from a BooleanNdArraystatic BooleanSparseNdArrayBooleanSparseNdArray.create(BooleanNdArray src, boolean defaultValue) Creates a new BooleanSparseNdArray from a BooleanNdArraystatic BooleanSparseNdArrayBooleanSparseNdArray.create(LongNdArray indices, BooleanNdArray values, boolean defaultValue, DimensionalSpace dimensions) Creates a new BooleanSparseNdArraystatic BooleanSparseNdArrayBooleanSparseNdArray.create(LongNdArray indices, BooleanNdArray values, DimensionalSpace dimensions) Creates a new BooleanSparseNdArrayBooleanSparseNdArray.fromDense(BooleanNdArray src) Populates this sparse array from a dense arrayConstructors in org.tensorflow.ndarray.impl.sparse with parameters of type BooleanNdArrayModifierConstructorDescriptionprotectedBooleanSparseNdArray(LongNdArray indices, BooleanNdArray values, boolean defaultValue, DimensionalSpace dimensions) Creates a BooleanSparseNdArray -
Uses of BooleanNdArray in org.tensorflow.ndarray.impl.sparse.slice
Classes in org.tensorflow.ndarray.impl.sparse.slice that implement BooleanNdArraySubclasses with type arguments of type BooleanNdArray in org.tensorflow.ndarray.impl.sparse.sliceMethods in org.tensorflow.ndarray.impl.sparse.slice that return BooleanNdArrayModifier and TypeMethodDescriptionBooleanSparseSlice.copyFrom(BooleanDataBuffer src) BooleanSparseSlice.copyFrom(DataBuffer<Boolean> src) BooleanSparseSlice.copyTo(BooleanDataBuffer dst) BooleanSparseSlice.copyTo(DataBuffer<Boolean> dst) Copy the content of this N-dimensional array into the destination buffer.BooleanSparseSlice.createDefaultArray()BooleanSparseSlice.get(long... coordinates) BooleanSparseSlice.setBoolean(boolean value, long... coordinates) BooleanSparseSlice.slice(long position, DimensionalSpace sliceDimensions) BooleanSparseSlice.toDense()Converts the sparse window to a dense NdArrayConstructor parameters in org.tensorflow.ndarray.impl.sparse.slice with type arguments of type BooleanNdArrayModifierConstructorDescriptionBooleanSparseSlice(AbstractSparseNdArray<Boolean, BooleanNdArray> source, long sourcePosition, DimensionalSpace dimensions) Creates a BooleanSparseSlice