Datasets:

Modalities:
Image
Languages:
English
Size:
< 1K
ArXiv:
Libraries:
Datasets
License:
boardd commited on
Commit
956db7e
·
verified ·
1 Parent(s): 0699a11

update instructions for uncompressed data

Browse files
Files changed (1) hide show
  1. README.md +5 -5
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.tar.gz.part-001`, `filename.tar.gz.part-002`, etc., with your actual file names.
111
 
112
  ```bash
113
- cat filename.tar.gz.part-* > filename.tar.gz
114
  ```
115
 
116
  **Example:**
117
 
118
  ```bash
119
- cat DexWild_Data.tar.gz.part-* > DexWild_Data.tar.gz
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.gz
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 -xzvf DexWild_Data.tar.gz
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