Chris Oswald
commited on
Commit
·
de0408c
1
Parent(s):
5044990
debugging
Browse files
SPIDER.py
CHANGED
|
@@ -364,8 +364,7 @@ class SPIDER(datasets.GeneratorBasedBuilder):
|
|
| 364 |
print(f'# of validation images: {len(validate_image_files)}')
|
| 365 |
print(f'# of testing images: {len(test_image_files)}')
|
| 366 |
|
| 367 |
-
print(
|
| 368 |
-
print(sorted(train_image_files))
|
| 369 |
|
| 370 |
# Import patient/scanner data and radiological gradings data
|
| 371 |
overview_data = import_csv_data(paths_dict['overview'])
|
|
|
|
| 364 |
print(f'# of validation images: {len(validate_image_files)}')
|
| 365 |
print(f'# of testing images: {len(test_image_files)}')
|
| 366 |
|
| 367 |
+
print([x for x in image_files if x not in train_image_files + validate_image_files + test_image_files])
|
|
|
|
| 368 |
|
| 369 |
# Import patient/scanner data and radiological gradings data
|
| 370 |
overview_data = import_csv_data(paths_dict['overview'])
|