Removing random_state in generator affects prediction score
ayhyap opened this issue · 1 comments
ayhyap commented
While trying to stop the generator from shuffling test set images, I found that replacing
df = self.dataset_df.sample(frac=1., random_state=self.random_state)
with
df = self.dataset_df
in AugmentedImageSequence.prepare_dataset() changes the performance.
That does not seem normal.