Submitted by Constant-Cranberry29 t3_ywu5zb in deeplearning
Lexa_21 t1_iwlyig7 wrote
You can try to transform your negative values into the [0, 0.5] interval and your positive values into the [0.5, 1] interval.
Lexa_21 t1_iwlyy3b wrote
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