Update split restore instructions
Browse files
README.md
CHANGED
|
@@ -21,13 +21,22 @@ and post-shuffle order SHA-256
|
|
| 21 |
|
| 22 |
## Restore
|
| 23 |
|
| 24 |
-
|
|
|
|
|
|
|
| 25 |
|
| 26 |
```bash
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
for archive in /path/to/download/*.tar; do
|
| 28 |
tar -xf "$archive"
|
| 29 |
done
|
| 30 |
-
sha256sum -c MANIFEST.sha256
|
| 31 |
```
|
| 32 |
|
| 33 |
Extraction reconstructs the expected `ckpts/` and `data/` paths. In particular, the LLaVA-Hound media archive materializes the legacy paths required by the original S1 annotation under `data/media/llava_hound/frames/`.
|
|
|
|
| 21 |
|
| 22 |
## Restore
|
| 23 |
|
| 24 |
+
All payload archives are independently extractable except
|
| 25 |
+
`s1_spar_234k_media_03.tar`, which is transported as four byte-exact parts to
|
| 26 |
+
avoid a large-file metadata timeout. Reassemble and verify it first:
|
| 27 |
|
| 28 |
```bash
|
| 29 |
+
cat s1_spar_234k_media_03.tar.part{00..03} > s1_spar_234k_media_03.tar
|
| 30 |
+
sha256sum -c s1_spar_234k_media_03.original.sha256
|
| 31 |
+
```
|
| 32 |
+
|
| 33 |
+
Then, from the intended project root:
|
| 34 |
+
|
| 35 |
+
```bash
|
| 36 |
+
sha256sum -c MANIFEST.sha256
|
| 37 |
for archive in /path/to/download/*.tar; do
|
| 38 |
tar -xf "$archive"
|
| 39 |
done
|
|
|
|
| 40 |
```
|
| 41 |
|
| 42 |
Extraction reconstructs the expected `ckpts/` and `data/` paths. In particular, the LLaVA-Hound media archive materializes the legacy paths required by the original S1 annotation under `data/media/llava_hound/frames/`.
|