Takes input as List of one dimensional arrays and creates the NDArray needed for inference The array will be reshaped based on the input descriptors.
Takes input as List of one dimensional arrays and creates the NDArray needed for inference The array will be reshaped based on the input descriptors.
Indexed sequence array of outputs
Takes input as Array of one dimensional arrays and creates the NDArray needed for inference The array will be reshaped based on the input descriptors.
Takes input as Array of one dimensional arrays and creates the NDArray needed for inference The array will be reshaped based on the input descriptors. Example of calling in Java:
float tmp[][] = new float[1][224];
for (int x = 0; x < 1; x++)
for (int y = 0; y < 224; y++)
tmp[x][y] = (int)(Math.random()*10);
predictor.predict(tmp);
Indexed sequence array of outputs
Predict using NDArray as input This method is useful when the input is a batch of data Note: User is responsible for managing allocation/deallocation of input/output NDArrays.
Predict using NDArray as input This method is useful when the input is a batch of data Note: User is responsible for managing allocation/deallocation of input/output NDArrays.
List of NDArrays
Output of predictions as NDArrays
Implementation of prediction routines.