Datasets:
update instructions for uncompressed data
Browse files
README.md
CHANGED
|
@@ -107,16 +107,16 @@ After downloading the split files, follow this guide.
|
|
| 107 |
|
| 108 |
2. **Merge Files Using `cat`:**
|
| 109 |
|
| 110 |
-
Use the `cat` command to concatenate the split parts. Replace `filename.
|
| 111 |
|
| 112 |
```bash
|
| 113 |
-
cat filename.
|
| 114 |
```
|
| 115 |
|
| 116 |
**Example:**
|
| 117 |
|
| 118 |
```bash
|
| 119 |
-
cat DexWild_Data.
|
| 120 |
```
|
| 121 |
|
| 122 |
3. **Verify the Merged File:**
|
|
@@ -124,7 +124,7 @@ After downloading the split files, follow this guide.
|
|
| 124 |
Ensure that the merged file size matches the original file size before splitting. You can use the `ls -lh` command to check file sizes.
|
| 125 |
|
| 126 |
```bash
|
| 127 |
-
ls -lh DexWild_Data.tar
|
| 128 |
```
|
| 129 |
|
| 130 |
4. **Extract the Dataset:**
|
|
@@ -132,7 +132,7 @@ After downloading the split files, follow this guide.
|
|
| 132 |
Once merged, extract the dataset using the `tar` command:
|
| 133 |
|
| 134 |
```bash
|
| 135 |
-
tar -
|
| 136 |
```
|
| 137 |
|
| 138 |
|
|
|
|
| 107 |
|
| 108 |
2. **Merge Files Using `cat`:**
|
| 109 |
|
| 110 |
+
Use the `cat` command to concatenate the split parts. Replace `filename.part_*` with your actual file name.
|
| 111 |
|
| 112 |
```bash
|
| 113 |
+
cat filename.part_* > filename.tar
|
| 114 |
```
|
| 115 |
|
| 116 |
**Example:**
|
| 117 |
|
| 118 |
```bash
|
| 119 |
+
cat DexWild_Data.part_* > DexWild_Data.tar
|
| 120 |
```
|
| 121 |
|
| 122 |
3. **Verify the Merged File:**
|
|
|
|
| 124 |
Ensure that the merged file size matches the original file size before splitting. You can use the `ls -lh` command to check file sizes.
|
| 125 |
|
| 126 |
```bash
|
| 127 |
+
ls -lh DexWild_Data.tar
|
| 128 |
```
|
| 129 |
|
| 130 |
4. **Extract the Dataset:**
|
|
|
|
| 132 |
Once merged, extract the dataset using the `tar` command:
|
| 133 |
|
| 134 |
```bash
|
| 135 |
+
tar -xvf human_pour_data.tar
|
| 136 |
```
|
| 137 |
|
| 138 |
|