IntDenseNdArray

public class IntDenseNdArray

Public Methods

IntNdArray
copyTo(NdArray<Integer> dst)
static IntNdArray
create(IntDataBuffer buffer, Shape shape)
int
getInt(long... indices)
Returns the integer value of the scalar found at the given coordinates.
IntNdArray
IntNdArray
setInt(int value, long... indices)
Assigns the integer value of the scalar found at the given coordinates.
IntNdArray

Inherited Methods

org.tensorflow.ndarray.impl.dense.AbstractDenseNdArray
NdArraySequence<IntNdArray>
elements(int dimensionIdx)
boolean
equals(Object obj)
IntNdArray
get(long... coords)
Integer
getObject(long... coords)
int
IntNdArray
read(DataBuffer<Integer> dst)
IntNdArray
set(NdArray<Integer> src, long... coordinates)
IntNdArray
setObject(Integer value, long... coords)
IntNdArray
slice(long position, DimensionalSpace sliceDimensions)
IntNdArray
slice(Index... indices)
IntNdArray
write(DataBuffer<Integer> src)
org.tensorflow.ndarray.impl.AbstractNdArray
DimensionalSpace
boolean
equals(Object obj)
int
NdArraySequence<IntNdArray>
scalars()
Returns a sequence of all scalars in this array.
Shape
shape()
abstract IntNdArray
slice(long position, DimensionalSpace dimensions)
boolean
equals(Object arg0)
final Class<?>
getClass()
int
hashCode()
final void
notify()
final void
notifyAll()
String
toString()
final void
wait(long arg0, int arg1)
final void
wait(long arg0)
final void
wait()
org.tensorflow.ndarray.NdArray
abstract NdArray<Integer>
copyTo(NdArray<Integer> dst)
Copy the content of this array to the destination array.
abstract NdArraySequence<? extends NdArray<T>>
elements(int dimensionIdx)
Returns a sequence of all elements at a given dimension.
abstract boolean
equals(Object obj)
Checks equality between n-dimensional arrays.
abstract NdArray<Integer>
get(long... coordinates)
Returns the N-dimensional element of this array at the given coordinates.
abstract Integer
getObject(long... coordinates)
Returns the value of the scalar found at the given coordinates.
abstract NdArray<Integer>
read(DataBuffer<Integer> dst)
Read the content of this N-dimensional array into the destination buffer.
abstract NdArraySequence<? extends NdArray<T>>
scalars()
Returns a sequence of all scalars in this array.
abstract NdArray<Integer>
set(NdArray<Integer> src, long... coordinates)
Assigns the value of the N-dimensional element found at the given coordinates.
abstract NdArray<Integer>
setObject(Integer value, long... coordinates)
Assigns the value of the scalar found at the given coordinates.
abstract NdArray<Integer>
slice(Index... indices)
Creates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors.
abstract NdArray<Integer>
write(DataBuffer<Integer> src)
Write the content of this N-dimensional array from the source buffer.
org.tensorflow.ndarray.IntNdArray
abstract IntNdArray
copyTo(NdArray<Integer> dst)
abstract NdArraySequence<IntNdArray>
elements(int dimensionIdx)
Returns a sequence of all elements at a given dimension.
abstract IntNdArray
get(long... coordinates)
Returns the N-dimensional element of this array at the given coordinates.
abstract int
getInt(long... coordinates)
Returns the integer value of the scalar found at the given coordinates.
abstract Integer
getObject(long... coordinates)
Returns the value of the scalar found at the given coordinates.
abstract IntNdArray
abstract IntNdArray
read(DataBuffer<Integer> dst)
abstract NdArraySequence<IntNdArray>
scalars()
Returns a sequence of all scalars in this array.
abstract IntNdArray
set(NdArray<Integer> src, long... coordinates)
abstract IntNdArray
setInt(int value, long... coordinates)
Assigns the integer value of the scalar found at the given coordinates.
abstract IntNdArray
setObject(Integer value, long... coordinates)
abstract IntNdArray
slice(Index... indices)
Creates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors.
abstract IntNdArray
write(DataBuffer<Integer> src)
abstract IntNdArray
org.tensorflow.ndarray.Shaped
abstract int
rank()
abstract Shape
shape()
abstract long
size()
Computes and returns the total size of this container, in number of values.
org.tensorflow.ndarray.NdArray
abstract NdArray<Integer>
copyTo(NdArray<Integer> dst)
Copy the content of this array to the destination array.
abstract NdArraySequence<? extends NdArray<T>>
elements(int dimensionIdx)
Returns a sequence of all elements at a given dimension.
abstract boolean
equals(Object obj)
Checks equality between n-dimensional arrays.
abstract NdArray<Integer>
get(long... coordinates)
Returns the N-dimensional element of this array at the given coordinates.
abstract Integer
getObject(long... coordinates)
Returns the value of the scalar found at the given coordinates.
abstract NdArray<Integer>
read(DataBuffer<Integer> dst)
Read the content of this N-dimensional array into the destination buffer.
abstract NdArraySequence<? extends NdArray<T>>
scalars()
Returns a sequence of all scalars in this array.
abstract NdArray<Integer>
set(NdArray<Integer> src, long... coordinates)
Assigns the value of the N-dimensional element found at the given coordinates.
abstract NdArray<Integer>
setObject(Integer value, long... coordinates)
Assigns the value of the scalar found at the given coordinates.
abstract NdArray<Integer>
slice(Index... indices)
Creates a multi-dimensional view (or slice) of this array by mapping one or more dimensions to the given index selectors.
abstract NdArray<Integer>
write(DataBuffer<Integer> src)
Write the content of this N-dimensional array from the source buffer.

Public Methods

public IntNdArray copyTo (NdArray<Integer> dst)

public static IntNdArray create (IntDataBuffer buffer, Shape shape)

public int getInt (long... indices)

Returns the integer value of the scalar found at the given coordinates.

To access the scalar element, the number of coordinates provided must be equal to the number of dimensions of this array (i.e. its rank). For example:

IntNdArray matrix = NdArrays.ofInts(shape(2, 2));  // matrix rank = 2
  matrix.getInt(0, 1);  // succeeds, returns 0
  matrix.getInt(0);  // throws IllegalRankException

  IntNdArray scalar = matrix.get(0, 1);  // scalar rank = 0
  scalar.getInt();  // succeeds, returns 0
 

Parameters
indices coordinates of the scalar to resolve
Returns
  • value of that scalar

public IntNdArray read (IntDataBuffer dst)

public IntNdArray setInt (int value, long... indices)

Assigns the integer value of the scalar found at the given coordinates.

To access the scalar element, the number of coordinates provided must be equal to the number of dimensions of this array (i.e. its rank). For example:

IntNdArray matrix = NdArrays.ofInts(shape(2, 2));  // matrix rank = 2
  matrix.setInt(10, 0, 1);  // succeeds
  matrix.setInt(10, 0);  // throws IllegalRankException

  IntNdArray scalar = matrix.get(0, 1);  // scalar rank = 0
  scalar.setInt(10);  // succeeds
 

Parameters
value value to assign
indices coordinates of the scalar to assign
Returns
  • this array

public IntNdArray write (IntDataBuffer src)