When testing the tutorials in Colab, I noticed that some notebooks rely on local Google Drive paths, for example:
dir_path = '/content/drive/MyDrive/02740_data/003-basic-operations/'
os.chdir(dir_path)
In basic_operations.ipynb
And Error examples:
FileNotFoundError: No such file or directory: '/content/drive/MyDrive/02740_data/003-basic-operations/'
FileNotFoundError: No such file: '/content/edu/body-003.dcm'
It may be better to make these data dependencies explicit and reproducible, e.g. by adding a data download/setup cell, including small demo files in the repo, or documenting where users should get the required files.
When testing the tutorials in Colab, I noticed that some notebooks rely on local Google Drive paths, for example:
dir_path = '/content/drive/MyDrive/02740_data/003-basic-operations/'
os.chdir(dir_path)
In basic_operations.ipynb
And Error examples:
FileNotFoundError: No such file or directory: '/content/drive/MyDrive/02740_data/003-basic-operations/'
FileNotFoundError: No such file: '/content/edu/body-003.dcm'
It may be better to make these data dependencies explicit and reproducible, e.g. by adding a data download/setup cell, including small demo files in the repo, or documenting where users should get the required files.