thuhoainguyen / kits23

The official repository of the 2023 Kidney Tumor Segmentation Challenge (KiTS23)
MIT License
0 stars 0 forks source link

Understanding .gitignore #2

Closed anhtuduong closed 1 month ago

anhtuduong commented 1 month ago

@thuhoainguyen The full dataset is about 52GB, which is huge. By using .gitignore we can ignore the image data (large file) and avoid pushing it to github. That's why in the .gitignore there's a line:

dataset/*/*imaging.nii.gz

So not all the files with extension nii.gz are ignored, but only the files with the suffix imaging.nii.gz are ignored.

thuhoainguyen commented 1 month ago

I see, the file imaging.nii.gz is 4.5 times larger than sum of all other files (227MB to 50MB) in each case folder.

anhtuduong commented 1 month ago

That file is the image data, and the rest are annotations.

thuhoainguyen commented 1 month ago

ok ! got it