mean subtraction on darknet
Does it make sense to use the mean subtraction preprocessing option in blobFromImage before running a darknet DNN? I did not find any information stating that this happens at training time, so it would probably make my results worse if i run it at just inference time right?
Or is this something i should be running on my training dataset (manually) and then enable at inference time? I could not find any clear statements for this while researching online
data with zero mean is better for training
Just curious - are you talking about (mean) normalization (values between 0-1) ?
@holger normalization is a different preprocessing step. Mean Subtraction involves subtracting the mean across every individual feature in the data, and has the geometric interpretation of centering the cloud of data around the origin along every dimension. Here is a description of both
Thank you!