Uses of Interface
org.tensorflow.ndarray.FloatNdArray
-
Packages that use FloatNdArray Package Description org.tensorflow.ndarray org.tensorflow.ndarray.impl.dense org.tensorflow.ndarray.impl.sparse org.tensorflow.ndarray.impl.sparse.slice -
-
Uses of FloatNdArray in org.tensorflow.ndarray
Methods in org.tensorflow.ndarray that return FloatNdArray Modifier and Type Method Description FloatNdArrayFloatNdArray. copyTo(NdArray<Float> dst)FloatNdArrayFloatNdArray. get(long... coordinates)static FloatNdArrayStdArrays. ndCopyOf(float[] array)Copy an array of floats in a newFloatNdArraystatic FloatNdArrayStdArrays. ndCopyOf(float[][] array)Copy a 2-dimensional array of floats in a newFloatNdArraystatic FloatNdArrayStdArrays. ndCopyOf(float[][][] array)Copy a 3-dimensional array of floats in a newFloatNdArraystatic FloatNdArrayStdArrays. ndCopyOf(float[][][][] array)Copy a 4-dimensional array of floats in a newFloatNdArraystatic FloatNdArrayStdArrays. ndCopyOf(float[][][][][] array)Copy a 5-dimensional array of floats in a newFloatNdArraystatic FloatNdArrayStdArrays. ndCopyOf(float[][][][][][] array)Copy a 6-dimensional array of floats in a newFloatNdArraystatic FloatNdArrayNdArrays. ofFloats(Shape shape)Creates an N-dimensional array of floats of the given shape.FloatNdArrayFloatNdArray. read(DataBuffer<Float> dst)FloatNdArrayFloatNdArray. read(FloatDataBuffer dst)static FloatNdArrayNdArrays. scalarOf(float value)Creates float scalar (rank 0) initialized with the given value.FloatNdArrayFloatNdArray. set(NdArray<Float> src, long... coordinates)FloatNdArrayFloatNdArray. setFloat(float value, long... coordinates)Assigns the float value of the scalar found at the given coordinates.default FloatNdArrayFloatNdArray. setObject(Float value, long... coordinates)FloatNdArrayFloatNdArray. slice(Index... coordinates)static FloatNdArrayNdArrays. vectorOf(float... values)Creates a float vector (rank 1) initialized with the given values.static FloatNdArrayNdArrays. wrap(Shape shape, FloatDataBuffer buffer)Wraps a buffer in a float N-dimensional array of a given shape.FloatNdArrayFloatNdArray. write(DataBuffer<Float> src)FloatNdArrayFloatNdArray. write(FloatDataBuffer src)Methods in org.tensorflow.ndarray that return types with arguments of type FloatNdArray Modifier and Type Method Description NdArraySequence<FloatNdArray>FloatNdArray. elements(int dimensionIdx)NdArraySequence<FloatNdArray>FloatNdArray. scalars()Methods in org.tensorflow.ndarray with parameters of type FloatNdArray Modifier and Type Method Description static float[]StdArrays. array1dCopyOf(FloatNdArray ndArray)Copy aFloatNdArrayin a new 1-dimension standard array of floatsstatic float[][]StdArrays. array2dCopyOf(FloatNdArray ndArray)Copy aFloatNdArrayin a new 2-dimension standard array of floatsstatic float[][][]StdArrays. array3dCopyOf(FloatNdArray ndArray)Copy aFloatNdArrayin a new 3-dimension standard array of floatsstatic float[][][][]StdArrays. array4dCopyOf(FloatNdArray ndArray)Copy aFloatNdArrayin a new 4-dimension standard array of floatsstatic float[][][][][]StdArrays. array5dCopyOf(FloatNdArray ndArray)Copy aFloatNdArrayin a new 5-dimension standard array of floatsstatic float[][][][][][]StdArrays. array6dCopyOf(FloatNdArray ndArray)Copy aFloatNdArrayin a new 6-dimension standard array of floatsstatic voidStdArrays. copyFrom(FloatNdArray src, float[] dst)Copy aNdArrayto an array of floatsstatic voidStdArrays. copyFrom(FloatNdArray src, float[][] dst)Copy aNdArrayto a 2-dimensional array of floatsstatic voidStdArrays. copyFrom(FloatNdArray src, float[][][] dst)Copy aNdArrayto a 3-dimensional array of floatsstatic voidStdArrays. copyFrom(FloatNdArray src, float[][][][] dst)Copy aNdArrayto a 4-dimensional array of floatsstatic voidStdArrays. copyFrom(FloatNdArray src, float[][][][][] dst)Copy aNdArrayto a 5-dimensional array of floatsstatic voidStdArrays. copyFrom(FloatNdArray src, float[][][][][][] dst)Copy aNdArrayto a 6-dimensional array of floatsstatic voidStdArrays. copyTo(float[][][][][][] src, FloatNdArray dst)Copy a 6-dimensional array of floats into thedstNdArraystatic voidStdArrays. copyTo(float[][][][][] src, FloatNdArray dst)Copy a 5-dimensional array of floats into thedstNdArraystatic voidStdArrays. copyTo(float[][][][] src, FloatNdArray dst)Copy a 4-dimensional array of floats into thedstNdArraystatic voidStdArrays. copyTo(float[][][] src, FloatNdArray dst)Copy a 3-dimensional array of floats into thedstNdArraystatic voidStdArrays. copyTo(float[][] src, FloatNdArray dst)Copy a 2-dimensional array of floats into thedstNdArraystatic voidStdArrays. copyTo(float[] src, FloatNdArray dst)Copy an array of floats into thedstNdArraystatic FloatSparseNdArrayNdArrays. sparseOf(LongNdArray indices, FloatNdArray values, float defaultValue, Shape shape)Creates a Sparse array of float valuesstatic FloatSparseNdArrayNdArrays. sparseOf(LongNdArray indices, FloatNdArray values, Shape shape)Creates a Sparse array of float values with a default value of zero -
Uses of FloatNdArray in org.tensorflow.ndarray.impl.dense
Classes in org.tensorflow.ndarray.impl.dense that implement FloatNdArray Modifier and Type Class Description classFloatDenseNdArrayMethods in org.tensorflow.ndarray.impl.dense that return FloatNdArray Modifier and Type Method Description FloatNdArrayFloatDenseNdArray. copyTo(NdArray<Float> dst)static FloatNdArrayFloatDenseNdArray. create(FloatDataBuffer buffer, Shape shape)FloatNdArrayFloatDenseNdArray. read(FloatDataBuffer dst)FloatNdArrayFloatDenseNdArray. setFloat(float value, long... indices)FloatNdArrayFloatDenseNdArray. write(FloatDataBuffer src) -
Uses of FloatNdArray in org.tensorflow.ndarray.impl.sparse
Classes in org.tensorflow.ndarray.impl.sparse that implement FloatNdArray Modifier and Type Class Description classFloatSparseNdArraysparse array for the float data typeMethods in org.tensorflow.ndarray.impl.sparse that return FloatNdArray Modifier and Type Method Description FloatNdArrayFloatSparseNdArray. copyTo(NdArray<Float> dst)Copy the content of this array to the destination array.FloatNdArrayFloatSparseNdArray. createDefaultArray()Creates the NdArray with the default value as a scalarFloatNdArrayFloatSparseNdArray. createValues(Shape shape)Creates a FloatNdArray of the specified shapeFloatNdArrayFloatSparseNdArray. fromDense(FloatNdArray src)Populates this sparse array from a dense arrayFloatNdArrayFloatSparseNdArray. get(long... coordinates)Returns the N-dimensional element of this array at the given coordinates.FloatNdArrayFloatSparseNdArray. read(DataBuffer<Float> dst)Read the content of this N-dimensional array into the destination buffer.FloatNdArrayFloatSparseNdArray. read(FloatDataBuffer dst)FloatNdArrayFloatSparseNdArray. set(NdArray<Float> src, long... coordinates)Assigns the value of the N-dimensional element found at the given coordinates.FloatNdArrayFloatSparseNdArray. setFloat(float value, long... coordinates)Assigns the float value of the scalar found at the given coordinates.FloatNdArrayFloatSparseNdArray. setObject(Float value, long... coordinates)Assigns the value of the scalar found at the given coordinates.FloatNdArrayFloatSparseNdArray. slice(long position, DimensionalSpace sliceDimensions)FloatNdArrayFloatSparseNdArray. slice(Index... indices)Creates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors.FloatNdArrayFloatSparseNdArray. toDense()Converts the sparse array to a dense arrayFloatNdArrayFloatSparseNdArray. write(DataBuffer<Float> src)Write the content of this N-dimensional array from the source buffer.FloatNdArrayFloatSparseNdArray. write(FloatDataBuffer src)Methods in org.tensorflow.ndarray.impl.sparse with parameters of type FloatNdArray Modifier and Type Method Description static FloatSparseNdArrayFloatSparseNdArray. create(FloatNdArray src)Creates a new FloatSparseNdArray from a FloatNdArraystatic FloatSparseNdArrayFloatSparseNdArray. create(FloatNdArray src, float defaultValue)Creates a new FloatSparseNdArray from a FloatNdArraystatic FloatSparseNdArrayFloatSparseNdArray. create(LongNdArray indices, FloatNdArray values, float defaultValue, DimensionalSpace dimensions)Creates a new FloatSparseNdArraystatic FloatSparseNdArrayFloatSparseNdArray. create(LongNdArray indices, FloatNdArray values, DimensionalSpace dimensions)Creates a new FloatSparseNdArrayFloatNdArrayFloatSparseNdArray. fromDense(FloatNdArray src)Populates this sparse array from a dense arrayConstructors in org.tensorflow.ndarray.impl.sparse with parameters of type FloatNdArray Constructor Description FloatSparseNdArray(LongNdArray indices, FloatNdArray values, float defaultValue, DimensionalSpace dimensions)Creates a FloatSparseNdArray -
Uses of FloatNdArray in org.tensorflow.ndarray.impl.sparse.slice
Classes in org.tensorflow.ndarray.impl.sparse.slice that implement FloatNdArray Modifier and Type Class Description classFloatSparseSliceMethods in org.tensorflow.ndarray.impl.sparse.slice that return FloatNdArray Modifier and Type Method Description FloatNdArrayFloatSparseSlice. copyTo(NdArray<Float> dst)FloatNdArrayFloatSparseSlice. createDefaultArray()FloatNdArrayFloatSparseSlice. get(long... coordinates)FloatNdArrayFloatSparseSlice. read(DataBuffer<Float> dst)Read the content of this N-dimensional array into the destination buffer.FloatNdArrayFloatSparseSlice. read(FloatDataBuffer dst)FloatNdArrayFloatSparseSlice. set(NdArray<Float> src, long... coordinates)FloatNdArrayFloatSparseSlice. setFloat(float value, long... coordinates)FloatNdArrayFloatSparseSlice. setObject(Float value, long... coordinates)FloatNdArrayFloatSparseSlice. slice(long position, DimensionalSpace sliceDimensions)FloatNdArrayFloatSparseSlice. slice(Index... indices)FloatNdArrayFloatSparseSlice. toDense()Converts the sparse window to a dense NdArrayFloatNdArrayFloatSparseSlice. write(DataBuffer<Float> src)FloatNdArrayFloatSparseSlice. write(FloatDataBuffer src)Constructor parameters in org.tensorflow.ndarray.impl.sparse.slice with type arguments of type FloatNdArray Constructor Description FloatSparseSlice(AbstractSparseNdArray<Float,FloatNdArray> source, long sourcePosition, DimensionalSpace dimensions)Creates a FloatSparseSlice
-