There was an error while loading. Please reload this page.
1 parent e425f7a commit e02f8baCopy full SHA for e02f8ba
README.md
@@ -46,7 +46,7 @@ from load_LIDC_data import LIDC_IDRI
46
dataset = LIDC_IDRI(dataset_location = 'insert_path_here')
47
dataset_size = len(dataset)
48
indices = list(range(dataset_size))
49
-split = int(np.floor(test_split * dataset_size))
+split = int(np.floor(0.1 * dataset_size))
50
np.random.shuffle(indices)
51
train_indices, test_indices = indices[split:], indices[:split]
52
train_sampler = SubsetRandomSampler(train_indices)
0 commit comments