I just learned Python, I want to ask something..
For example, I have
import numpy as np
a = np.array([[11, 12, 13],
[14, 16, 13],
[17, 15, 11],
[12, 14, 15]])
I want to find the label of that array
so .. in the first row the max value is 13, then the label result = 3
in the second row the max value is 16, then the label result = 2
desired results is like this
[3 2 1 3] or [[3]
[2]
[1]
[3]]