Uses of Interface
org.tensorflow.ndarray.DoubleNdArray
-
Packages that use DoubleNdArray Package Description org.tensorflow.ndarray org.tensorflow.ndarray.impl.dense org.tensorflow.ndarray.impl.sparse org.tensorflow.ndarray.impl.sparse.slice -
-
Uses of DoubleNdArray in org.tensorflow.ndarray
Methods in org.tensorflow.ndarray that return DoubleNdArray Modifier and Type Method Description DoubleNdArrayDoubleNdArray. copyTo(NdArray<Double> dst)DoubleNdArrayDoubleNdArray. get(long... coordinates)static DoubleNdArrayStdArrays. ndCopyOf(double[] array)Copy an array of doubles in a newDoubleNdArraystatic DoubleNdArrayStdArrays. ndCopyOf(double[][] array)Copy a 2-dimensional array of doubles in a newDoubleNdArraystatic DoubleNdArrayStdArrays. ndCopyOf(double[][][] array)Copy a 3-dimensional array of doubles in a newDoubleNdArraystatic DoubleNdArrayStdArrays. ndCopyOf(double[][][][] array)Copy a 4-dimensional array of doubles in a newDoubleNdArraystatic DoubleNdArrayStdArrays. ndCopyOf(double[][][][][] array)Copy a 5-dimensional array of doubles in a newDoubleNdArraystatic DoubleNdArrayStdArrays. ndCopyOf(double[][][][][][] array)Copy a 6-dimensional array of doubles in a newDoubleNdArraystatic DoubleNdArrayNdArrays. ofDoubles(Shape shape)Creates an N-dimensional array of doubles of the given shape.DoubleNdArrayDoubleNdArray. read(DataBuffer<Double> dst)DoubleNdArrayDoubleNdArray. read(DoubleDataBuffer dst)static DoubleNdArrayNdArrays. scalarOf(double value)Creates double scalar (rank 0) initialized with the given value.DoubleNdArrayDoubleNdArray. set(NdArray<Double> src, long... coordinates)DoubleNdArrayDoubleNdArray. setDouble(double value, long... coordinates)Assigns the double value of the scalar found at the given coordinates.default DoubleNdArrayDoubleNdArray. setObject(Double value, long... coordinates)DoubleNdArrayDoubleNdArray. slice(Index... indices)static DoubleNdArrayNdArrays. vectorOf(double... values)Creates a double vector (rank 1) initialized with the given values.static DoubleNdArrayNdArrays. wrap(Shape shape, DoubleDataBuffer buffer)Wraps a buffer in a double N-dimensional array of a given shape.DoubleNdArrayDoubleNdArray. write(DataBuffer<Double> src)DoubleNdArrayDoubleNdArray. write(DoubleDataBuffer src)Methods in org.tensorflow.ndarray that return types with arguments of type DoubleNdArray Modifier and Type Method Description NdArraySequence<DoubleNdArray>DoubleNdArray. elements(int dimensionIdx)NdArraySequence<DoubleNdArray>DoubleNdArray. scalars()Methods in org.tensorflow.ndarray with parameters of type DoubleNdArray Modifier and Type Method Description static double[]StdArrays. array1dCopyOf(DoubleNdArray ndArray)Copy aDoubleNdArrayin a new 1-dimension standard array of doublesstatic double[][]StdArrays. array2dCopyOf(DoubleNdArray ndArray)Copy aDoubleNdArrayin a new 2-dimension standard array of doublesstatic double[][][]StdArrays. array3dCopyOf(DoubleNdArray ndArray)Copy aDoubleNdArrayin a new 3-dimension standard array of doublesstatic double[][][][]StdArrays. array4dCopyOf(DoubleNdArray ndArray)Copy aDoubleNdArrayin a new 4-dimension standard array of doublesstatic double[][][][][]StdArrays. array5dCopyOf(DoubleNdArray ndArray)Copy aDoubleNdArrayin a new 5-dimension standard array of doublesstatic double[][][][][][]StdArrays. array6dCopyOf(DoubleNdArray ndArray)Copy aDoubleNdArrayin a new 6-dimension standard array of doublesstatic voidStdArrays. copyFrom(DoubleNdArray src, double[] dst)Copy aNdArrayto an array of doublesstatic voidStdArrays. copyFrom(DoubleNdArray src, double[][] dst)Copy aNdArrayto a 2-dimensional array of doublesstatic voidStdArrays. copyFrom(DoubleNdArray src, double[][][] dst)Copy aNdArrayto a 3-dimensional array of doublesstatic voidStdArrays. copyFrom(DoubleNdArray src, double[][][][] dst)Copy aNdArrayto a 4-dimensional array of doublesstatic voidStdArrays. copyFrom(DoubleNdArray src, double[][][][][] dst)Copy aNdArrayto a 5-dimensional array of doublesstatic voidStdArrays. copyFrom(DoubleNdArray src, double[][][][][][] dst)Copy aNdArrayto a 6-dimensional array of doublesstatic voidStdArrays. copyTo(double[][][][][][] src, DoubleNdArray dst)Copy a 6-dimensional array of doubles into thedstNdArraystatic voidStdArrays. copyTo(double[][][][][] src, DoubleNdArray dst)Copy a 5-dimensional array of doubles into thedstNdArraystatic voidStdArrays. copyTo(double[][][][] src, DoubleNdArray dst)Copy a 4-dimensional array of doubles into thedstNdArraystatic voidStdArrays. copyTo(double[][][] src, DoubleNdArray dst)Copy a 3-dimensional array of doubles into thedstNdArraystatic voidStdArrays. copyTo(double[][] src, DoubleNdArray dst)Copy a 2-dimensional array of doubles into thedstNdArraystatic voidStdArrays. copyTo(double[] src, DoubleNdArray dst)Copy an array of doubles into thedstNdArraystatic DoubleSparseNdArrayNdArrays. sparseOf(LongNdArray indices, DoubleNdArray values, double defaultValue, Shape shape)Creates a Sparse array of double valuesstatic DoubleSparseNdArrayNdArrays. sparseOf(LongNdArray indices, DoubleNdArray values, Shape shape)Creates a Sparse array of double values with a default value of zero -
Uses of DoubleNdArray in org.tensorflow.ndarray.impl.dense
Classes in org.tensorflow.ndarray.impl.dense that implement DoubleNdArray Modifier and Type Class Description classDoubleDenseNdArrayMethods in org.tensorflow.ndarray.impl.dense that return DoubleNdArray Modifier and Type Method Description DoubleNdArrayDoubleDenseNdArray. copyTo(NdArray<Double> dst)static DoubleNdArrayDoubleDenseNdArray. create(DoubleDataBuffer buffer, Shape shape)DoubleNdArrayDoubleDenseNdArray. read(DoubleDataBuffer dst)DoubleNdArrayDoubleDenseNdArray. setDouble(double value, long... indices)DoubleNdArrayDoubleDenseNdArray. write(DoubleDataBuffer src) -
Uses of DoubleNdArray in org.tensorflow.ndarray.impl.sparse
Classes in org.tensorflow.ndarray.impl.sparse that implement DoubleNdArray Modifier and Type Class Description classDoubleSparseNdArrayA sparse array for the double data typeMethods in org.tensorflow.ndarray.impl.sparse that return DoubleNdArray Modifier and Type Method Description DoubleNdArrayDoubleSparseNdArray. copyTo(NdArray<Double> dst)Copy the content of this array to the destination array.DoubleNdArrayDoubleSparseNdArray. createDefaultArray()Creates the NdArray with the default value as a scalarDoubleNdArrayDoubleSparseNdArray. createValues(Shape shape)Creates a DoubleNdArray of the specified shapeDoubleNdArrayDoubleSparseNdArray. fromDense(DoubleNdArray src)Populates this sparse array from a dense arrayDoubleNdArrayDoubleSparseNdArray. get(long... coordinates)Returns the N-dimensional element of this array at the given coordinates.DoubleNdArrayDoubleSparseNdArray. read(DataBuffer<Double> dst)Read the content of this N-dimensional array into the destination buffer.DoubleNdArrayDoubleSparseNdArray. read(DoubleDataBuffer dst)DoubleNdArrayDoubleSparseNdArray. set(NdArray<Double> src, long... coordinates)Assigns the value of the N-dimensional element found at the given coordinates.DoubleNdArrayDoubleSparseNdArray. setDouble(double value, long... coordinates)Assigns the double value of the scalar found at the given coordinates.DoubleNdArrayDoubleSparseNdArray. setObject(Double value, long... coordinates)Assigns the value of the scalar found at the given coordinates.DoubleNdArrayDoubleSparseNdArray. slice(long position, DimensionalSpace sliceDimensions)DoubleNdArrayDoubleSparseNdArray. slice(Index... indices)Creates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors.DoubleNdArrayDoubleSparseNdArray. toDense()Converts the sparse array to a dense arrayDoubleNdArrayDoubleSparseNdArray. write(DataBuffer<Double> src)Write the content of this N-dimensional array from the source buffer.DoubleNdArrayDoubleSparseNdArray. write(DoubleDataBuffer src)Methods in org.tensorflow.ndarray.impl.sparse with parameters of type DoubleNdArray Modifier and Type Method Description static DoubleSparseNdArrayDoubleSparseNdArray. create(DoubleNdArray src)Creates a new DoubleSparseNdArray from a DoubleNdArraystatic DoubleSparseNdArrayDoubleSparseNdArray. create(DoubleNdArray src, double defaultValue)Creates a new DoubleSparseNdArray from a DoubleNdArraystatic DoubleSparseNdArrayDoubleSparseNdArray. create(LongNdArray indices, DoubleNdArray values, double defaultValue, DimensionalSpace dimensions)Creates a new DoubleSparseNdArraystatic DoubleSparseNdArrayDoubleSparseNdArray. create(LongNdArray indices, DoubleNdArray values, DimensionalSpace dimensions)Creates a new DoubleSparseNdArrayDoubleNdArrayDoubleSparseNdArray. fromDense(DoubleNdArray src)Populates this sparse array from a dense arrayConstructors in org.tensorflow.ndarray.impl.sparse with parameters of type DoubleNdArray Constructor Description DoubleSparseNdArray(LongNdArray indices, DoubleNdArray values, double defaultValue, DimensionalSpace dimensions)Creates a DoubleSparseNdArray -
Uses of DoubleNdArray in org.tensorflow.ndarray.impl.sparse.slice
Classes in org.tensorflow.ndarray.impl.sparse.slice that implement DoubleNdArray Modifier and Type Class Description classDoubleSparseSliceMethods in org.tensorflow.ndarray.impl.sparse.slice that return DoubleNdArray Modifier and Type Method Description DoubleNdArrayDoubleSparseSlice. copyTo(NdArray<Double> dst)DoubleNdArrayDoubleSparseSlice. createDefaultArray()DoubleNdArrayDoubleSparseSlice. get(long... coordinates)DoubleNdArrayDoubleSparseSlice. read(DataBuffer<Double> dst)Read the content of this N-dimensional array into the destination buffer.DoubleNdArrayDoubleSparseSlice. read(DoubleDataBuffer dst)DoubleNdArrayDoubleSparseSlice. set(NdArray<Double> src, long... coordinates)DoubleNdArrayDoubleSparseSlice. setDouble(double value, long... coordinates)DoubleNdArrayDoubleSparseSlice. setObject(Double value, long... coordinates)DoubleNdArrayDoubleSparseSlice. slice(long position, DimensionalSpace sliceDimensions)DoubleNdArrayDoubleSparseSlice. slice(Index... indices)DoubleNdArrayDoubleSparseSlice. toDense()Converts the sparse window to a dense NdArrayDoubleNdArrayDoubleSparseSlice. write(DataBuffer<Double> src)DoubleNdArrayDoubleSparseSlice. write(DoubleDataBuffer src)Constructor parameters in org.tensorflow.ndarray.impl.sparse.slice with type arguments of type DoubleNdArray Constructor Description DoubleSparseSlice(AbstractSparseNdArray<Double,DoubleNdArray> source, long sourcePosition, DimensionalSpace dimensions)Creates a DoubleSparseSlice
-