LIDC data crops download no longer public
SteffenCzolbe opened this issue · 1 comments
SteffenCzolbe commented
Hello,
the download link for the cropped LIDC data is no longer publically available. It instead leads to a SSO application for google employees.
From the Readme file:
The LIDC data can be downloaded as pngs, cropped to size 180 x 180 from Google Cloud Storage, see here: data link.
Is this intentional? Where can we find the preprocessed data?
FelixBey commented
I've found that you can download train, val and test data for the Hierarchical Probabilistic U-Net using (replace train with 'val' or 'test' for respective data set, Code is for Colab):
!gsutil cp gs://hpunet-data/lidc_crops/train.tar.gz /tmp/
!tar xvfz /tmp/train.tar.gz -C 'YOUR_TARGET_DIRECTORY'
I think it should be the same data as used for the Probabilistic U-Net.
Hope that helps!