Uses of Interface
org.tensorflow.ndarray.BooleanNdArray
-
Packages that use BooleanNdArray Package Description org.tensorflow.ndarray org.tensorflow.ndarray.impl.dense org.tensorflow.ndarray.impl.sparse org.tensorflow.ndarray.impl.sparse.slice -
-
Uses of BooleanNdArray in org.tensorflow.ndarray
Methods in org.tensorflow.ndarray that return BooleanNdArray Modifier and Type Method Description BooleanNdArrayBooleanNdArray. copyTo(NdArray<Boolean> dst)BooleanNdArrayBooleanNdArray. 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.BooleanNdArrayBooleanNdArray. read(BooleanDataBuffer dst)BooleanNdArrayBooleanNdArray. read(DataBuffer<Boolean> dst)static BooleanNdArrayNdArrays. scalarOf(boolean value)Creates boolean scalar (rank 0) initialized with the given value.BooleanNdArrayBooleanNdArray. set(NdArray<Boolean> src, long... coordinates)BooleanNdArrayBooleanNdArray. setBoolean(boolean value, long... coordinates)Assigns the boolean value of the scalar found at the given coordinates.default BooleanNdArrayBooleanNdArray. setObject(Boolean value, long... coordinates)BooleanNdArrayBooleanNdArray. slice(Index... indices)static 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.BooleanNdArrayBooleanNdArray. write(BooleanDataBuffer src)BooleanNdArrayBooleanNdArray. write(DataBuffer<Boolean> src)Methods in org.tensorflow.ndarray that return types with arguments of type BooleanNdArray Modifier and Type Method Description NdArraySequence<BooleanNdArray>BooleanNdArray. elements(int dimensionIdx)NdArraySequence<BooleanNdArray>BooleanNdArray. scalars()Methods in org.tensorflow.ndarray with parameters of type BooleanNdArray Modifier and Type Method Description static 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 BooleanNdArray Modifier and Type Class Description classBooleanDenseNdArrayMethods in org.tensorflow.ndarray.impl.dense that return BooleanNdArray Modifier and Type Method Description BooleanNdArrayBooleanDenseNdArray. copyTo(NdArray<Boolean> dst)static BooleanNdArrayBooleanDenseNdArray. create(BooleanDataBuffer buffer, Shape shape)BooleanNdArrayBooleanDenseNdArray. read(BooleanDataBuffer dst)BooleanNdArrayBooleanDenseNdArray. setBoolean(boolean value, long... indices)BooleanNdArrayBooleanDenseNdArray. write(BooleanDataBuffer src) -
Uses of BooleanNdArray in org.tensorflow.ndarray.impl.sparse
Classes in org.tensorflow.ndarray.impl.sparse that implement BooleanNdArray Modifier and Type Class Description classBooleanSparseNdArraysparse array for the boolean data typeMethods in org.tensorflow.ndarray.impl.sparse that return BooleanNdArray Modifier and Type Method Description BooleanNdArrayBooleanSparseNdArray. copyTo(NdArray<Boolean> dst)Copy the content of this array to the destination array.BooleanNdArrayBooleanSparseNdArray. createDefaultArray()Creates the NdArray with the default value as a scalarBooleanNdArrayBooleanSparseNdArray. createValues(Shape shape)Creates a BooleanNdArray of the specified shapeBooleanNdArrayBooleanSparseNdArray. fromDense(BooleanNdArray src)Populates this sparse array from a dense arrayBooleanNdArrayBooleanSparseNdArray. get(long... coordinates)Returns the N-dimensional element of this array at the given coordinates.BooleanNdArrayBooleanSparseNdArray. read(BooleanDataBuffer dst)BooleanNdArrayBooleanSparseNdArray. read(DataBuffer<Boolean> dst)Read the content of this N-dimensional array into the destination buffer.BooleanNdArrayBooleanSparseNdArray. set(NdArray<Boolean> src, long... coordinates)Assigns the value of the N-dimensional element found at the given coordinates.BooleanNdArrayBooleanSparseNdArray. setBoolean(boolean value, long... coordinates)Assigns the boolean value of the scalar found at the given coordinates.BooleanNdArrayBooleanSparseNdArray. setObject(Boolean value, long... coordinates)Assigns the value of the scalar found at the given coordinates.BooleanNdArrayBooleanSparseNdArray. slice(long position, DimensionalSpace sliceDimensions)BooleanNdArrayBooleanSparseNdArray. slice(Index... indices)Creates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors.BooleanNdArrayBooleanSparseNdArray. toDense()Converts the sparse array to a dense arrayBooleanNdArrayBooleanSparseNdArray. write(BooleanDataBuffer src)BooleanNdArrayBooleanSparseNdArray. write(DataBuffer<Boolean> src)Write the content of this N-dimensional array from the source buffer.Methods in org.tensorflow.ndarray.impl.sparse with parameters of type BooleanNdArray Modifier and Type Method Description static 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 BooleanSparseNdArrayBooleanNdArrayBooleanSparseNdArray. fromDense(BooleanNdArray src)Populates this sparse array from a dense arrayConstructors in org.tensorflow.ndarray.impl.sparse with parameters of type BooleanNdArray Constructor Description BooleanSparseNdArray(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 BooleanNdArray Modifier and Type Class Description classBooleanSparseSliceMethods in org.tensorflow.ndarray.impl.sparse.slice that return BooleanNdArray Modifier and Type Method Description BooleanNdArrayBooleanSparseSlice. copyTo(NdArray<Boolean> dst)BooleanNdArrayBooleanSparseSlice. createDefaultArray()BooleanNdArrayBooleanSparseSlice. get(long... coordinates)BooleanNdArrayBooleanSparseSlice. read(BooleanDataBuffer dst)BooleanNdArrayBooleanSparseSlice. read(DataBuffer<Boolean> dst)Read the content of this N-dimensional array into the destination buffer.BooleanNdArrayBooleanSparseSlice. set(NdArray<Boolean> src, long... coordinates)BooleanNdArrayBooleanSparseSlice. setBoolean(boolean value, long... coordinates)BooleanNdArrayBooleanSparseSlice. setObject(Boolean value, long... coordinates)BooleanNdArrayBooleanSparseSlice. slice(long position, DimensionalSpace sliceDimensions)BooleanNdArrayBooleanSparseSlice. slice(Index... indices)BooleanNdArrayBooleanSparseSlice. toDense()Converts the sparse window to a dense NdArrayBooleanNdArrayBooleanSparseSlice. write(BooleanDataBuffer src)BooleanNdArrayBooleanSparseSlice. write(DataBuffer<Boolean> src)Constructor parameters in org.tensorflow.ndarray.impl.sparse.slice with type arguments of type BooleanNdArray Constructor Description BooleanSparseSlice(AbstractSparseNdArray<Boolean,BooleanNdArray> source, long sourcePosition, DimensionalSpace dimensions)Creates a BooleanSparseSlice
-