update git download instruction
Browse files
README.md
CHANGED
@@ -46,6 +46,7 @@ We use `data.tar.zst` as an example here.
|
|
46 |
|
47 |
#### by directly download
|
48 |
|
|
|
49 |
![](direct_download_data.png)
|
50 |
|
51 |
#### by git
|
@@ -60,6 +61,15 @@ git clone https://huggingface.co/datasets/mango-ttic/data
|
|
60 |
# git clone https://hf-mirror.com/datasets/mango-ttic/data
|
61 |
```
|
62 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
### 2. decompress
|
64 |
|
65 |
Because some json files are huge, we use tar.zst to package the data efficiently.
|
|
|
46 |
|
47 |
#### by directly download
|
48 |
|
49 |
+
You can selectively download certain variation of your choice.
|
50 |
![](direct_download_data.png)
|
51 |
|
52 |
#### by git
|
|
|
61 |
# git clone https://hf-mirror.com/datasets/mango-ttic/data
|
62 |
```
|
63 |
|
64 |
+
If you want to clone without large files - just their pointers
|
65 |
+
|
66 |
+
```bash
|
67 |
+
GIT_LFS_SKIP_SMUDGE=1 git clone https://huggingface.co/datasets/mango-ttic/data
|
68 |
+
|
69 |
+
# or, use hf-mirror if your connection to huggingface.co is slow
|
70 |
+
# GIT_LFS_SKIP_SMUDGE=1 git clone https://hf-mirror.com/datasets/mango-ttic/data
|
71 |
+
```
|
72 |
+
|
73 |
### 2. decompress
|
74 |
|
75 |
Because some json files are huge, we use tar.zst to package the data efficiently.
|