I have a following structure:
predictions, truth
1,1
1,0
1,1
1,2
1,0
... 16 times
0,0
0,0
0,1
0,0
... 16 times
.
.
.
I need to compute this formula for each 16 times and then do the median between all of them:
the formula is: equal_values/16, where equal_values are the values of the...