--- license: afl-3.0 tags: - medical size_categories: - 100M For a standalone knee dataset download, use `git lfs`() to download from the `huggingface` datasets(): ```bash # Make sure you have git-lfs installed (https://git-lfs.com) git lfs install git clone -j8 git@hf.co:datasets/AVS-Net/knee_fast_mri ``` ## Known Issues and Resolutions - 1. Network Connection Issue For enhanced network connection quality, it is recommended to employ the `ssh` protocol instead of `https`. ```bash # Rather than utilizing `https://huggingface.co/datasets/AVS-Net/knee_fast_mri` # Clone the repository using `git@hf.co:datasets/AVS-Net/knee_fast_mri` # As an example: git clone -j8 git@hf.co:datasets/AVS-Net/knee_fast_mri ``` - 2. Interruptions During Download Certain error messages may appear during the download process due to interruptions. These errors can include: ``` error: ... : cannot add to the index - missing --add option? batch response: Post ... : read: connection reset by peer error: failed to fetch some objects from 'https://hf.co/datasets/AVS-Net/knee_fast_mri.git/info/lfs' ``` Following the instructions below allows for the handling of these interruptions. ```bash # Navigate (`cd`) to the directory containing the `lfs` folder # Intead of using `git pull`, # Use `git lfs pull` to resume the download progress for `lfs` projects git lfs pull ``` Please note that this process will resume the download from where it was interrupted, thereby ensuring the integrity of your downloaded data.