Update README.md
Browse files
README.md
CHANGED
@@ -48,4 +48,39 @@ In this structure, each protocol has approximately 40 slices, each consisting of
|
|
48 |
# Make sure you have git-lfs installed (https://git-lfs.com)
|
49 |
git lfs install
|
50 |
git clone -j8 [email protected]:datasets/AVS-Net/knee_fast_mri
|
51 |
-
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
# Make sure you have git-lfs installed (https://git-lfs.com)
|
49 |
git lfs install
|
50 |
git clone -j8 [email protected]:datasets/AVS-Net/knee_fast_mri
|
51 |
+
```
|
52 |
+
|
53 |
+
## Known Issues and Resolutions
|
54 |
+
|
55 |
+
- 1. Network Connection Issue
|
56 |
+
|
57 |
+
For enhanced network connection quality, it is recommended to employ the `ssh` protocol instead of `https`.
|
58 |
+
|
59 |
+
```bash
|
60 |
+
# Rather than utilizing `https://huggingface.co/datasets/AVS-Net/knee_fast_mri`
|
61 |
+
# Clone the repository using `[email protected]:datasets/AVS-Net/knee_fast_mri`
|
62 |
+
# As an example:
|
63 |
+
git clone -j8 [email protected]:datasets/AVS-Net/knee_fast_mri
|
64 |
+
```
|
65 |
+
|
66 |
+
- 2. Interruptions During Download
|
67 |
+
|
68 |
+
Certain error messages may appear during the download process due to interruptions. These errors can include:
|
69 |
+
|
70 |
+
```
|
71 |
+
error: ... : cannot add to the index - missing --add option?
|
72 |
+
batch response: Post ... : read: connection reset by peer
|
73 |
+
error: failed to fetch some objects from 'https://hf.co/datasets/AVS-Net/knee_fast_mri.git/info/lfs'
|
74 |
+
```
|
75 |
+
|
76 |
+
Following the instructions below allows for the handling of these interruptions.
|
77 |
+
|
78 |
+
|
79 |
+
```bash
|
80 |
+
# Navigate (`cd`) to the directory containing the `lfs` folder
|
81 |
+
# Intead of using `git pull`,
|
82 |
+
# Use `git lfs pull` to resume the download progress for `lfs` projects
|
83 |
+
|
84 |
+
git lfs pull
|
85 |
+
```
|
86 |
+
Please note that this process will resume the download from where it was interrupted, thereby ensuring the integrity of your downloaded data.
|