Some errors are given with invisible files in the tutorial e.g. .ds_store for macs. this can be filtered e.g. with paths.py: subdir_list = list((dataset_loc).iterdir()) subdir_list = [i for i in subdir_list if i != '.DS_Store']
Some errors are given with invisible files in the tutorial e.g. .ds_store for macs.
this can be filtered e.g. with paths.py:
subdir_list = list((dataset_loc).iterdir())
subdir_list = [i for i in subdir_list if i != '.DS_Store']