Need to compare each value inside a numpy array and return 1 to the largest value and 0 to the others. I am having problem with different numbers of [].
Input Example:
[[[0.6673975 0.33333233]]
.
.
.
[[0.33260247 0.6673975]]]
Expected Output:
[[[1 0]]
.
.
.
[[0 1]]]
Max over axis:
If, as suggested by Joe in the comments, you're looking for a maximum along an axis, then, for axis
axis
,or, a bit faster,
Should cover the n-dimensional case.
Ex:
Max over full array:
On the off-chance you're trying to identify elements equal to the maximum over the whole array,
should give what you're looking for.