check for discretization
HendrikStrobelt opened this issue · comments
false:
cs[cs >= activation_threshold_corrected] = 1
cs[cs < activation_threshold_corrected] = -1
right:
all_below = cs<activation_threshold_corrected
cs[:,:] = 1
cs[all_below] = -1