You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You might want to experiment with color jitter in the evaluation phase.
But it will make the evaluation non-determinant.
My motivation to not use ColorJitter during evaluation was the following:
ColorJitter is used during training to prevent the model from over fitting. We want that the model is working on an input space as big as possible.
In the evaluation phase, we calculate the representations we fit the Gaussian mixture model on. We want that the good data lies close together and far away from the defect data points. ColorJitter might cause the good data to be more scattered and therefore decrease the performance on the benchmark.
Let me know if you did some experiments with and without ColorJitter and if my explanation helped you.
According to my current experimental results, using ColorJitter in the test stage will lead to the decline of AUC, which may be caused by the reasons you explained.
Hi, I'm tring to evaluate model by eval.py and confusing why the test_tranform missing 'ColorJitter' step?
In training phase:
The text was updated successfully, but these errors were encountered: