how to select top 4 values in array([[0.00022866, 0.00027809, 0.00059429, 0.00059429, 0.00113913, 0.00121619, 0.00124172]]) code example
Example: How to select parts of a numpy array
import numpy as np
x = np.array([1,2,4,3,5,1,4,2])#create an array...
x[n]#where n is any value from the size of the array
#e.g. x[1] is 2, x[5] is 1.