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
Hi, I'm trying to make some tests using the lidc_exp experiement and I want to iterate over my training data only once per epoch. The actual configuration is iteration throughout a fix number of batches and each batches are picked randomly in the training dataset batch_ixs = np.random.choice(len(class_targets_list), self.batch_size). Which means that some samples can be seen multiple times and others might not be seen at all.
Is there a way to change this in order to go through the training set samples only once per epochs ?
The text was updated successfully, but these errors were encountered:
This could be implemented but is contour to the concept of augmentation. Random samples are pulled and randomly augmented a fixed total number of times in each epoch.
Hi, I'm trying to make some tests using the
lidc_exp
experiement and I want to iterate over my training data only once per epoch. The actual configuration is iteration throughout a fix number of batches and each batches are picked randomly in the training datasetbatch_ixs = np.random.choice(len(class_targets_list), self.batch_size)
. Which means that some samples can be seen multiple times and others might not be seen at all.Is there a way to change this in order to go through the training set samples only once per epochs ?
The text was updated successfully, but these errors were encountered: