Closed Sofiane23i closed 3 years ago
Hello,
In dataloader file, we can found how the script split the data into training and validation sets
# split into training and validation set: 95% - 5% splitIdx = int(0.95 * len(self.samples)) self.trainSamples = self.samples[:splitIdx] self.validationSamples = self.samples[splitIdx:]
how can i choose them from specific folders ?
not supported. you have to implement it.
done.
Hello,
In dataloader file, we can found how the script split the data into training and validation sets
how can i choose them from specific folders ?