Submitted by Constant-Cranberry29 t3_ywu5zb in deeplearning
Lexa_21 t1_iwlyy3b wrote
Reply to comment by Lexa_21 in How to normalize data which contain positive and negative numbers into 0 and 1 by Constant-Cranberry29
In pseudo code: if (x<0) { x = 1/2 * x/minValue } else { x = 1/2 * x/maxValue + 0.5 }
Constant-Cranberry29 OP t1_iwo71pb wrote
it doesn't work
Viewing a single comment thread. View all comments