I read in an image file and convert it into an INDArray
INDArray image = loader.asMatrix(file, false);
DataNormalization scalar = new ImagePreProcessingScaler(0, 1);
scalar.transform(image);
After transform the INDArray looks like this
Is there a way for me to convert the values from 4 decimal places to 8 decimal places ??