Preprocessing of the data #45
-
I am wondering do people see an increase in performance changing how preprocessing of the data is done? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
We do recommend to divide by the mean because standardizing will lead to having negative values which does not make much sense for media units. If your media distribution within each channel is a bit odd you can always try using the Anyhow the specific operation or scaler you use should not affect performance much, or at least not of the sampling time (if anything it could slightly help on the media optimization side but I dont expect this to be a bottleneck by any means). |
Beta Was this translation helpful? Give feedback.
We do recommend to divide by the mean because standardizing will lead to having negative values which does not make much sense for media units.
If your media distribution within each channel is a bit odd you can always try using the
median
.Anyhow the specific operation or scaler you use should not affect performance much, or at least not of the sampling time (if anything it could slightly help on the media optimization side but I dont expect this to be a bottleneck by any means).