DuarteMRAlves commited on
Commit
9a7d25e
·
verified ·
1 Parent(s): 21c27ed

Upload folder using huggingface_hub

Browse files
ASSEMBLE_AND_EXTRACT.sh ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ # Reassemble .tar.gz stream from parts, verify checksums, then extract.
4
+ # Usage: ./ASSEMBLE_AND_EXTRACT.sh [DEST_DIR]
5
+ DEST="${1:-./extracted}"
6
+ mkdir -p "$DEST"
7
+
8
+ if [[ -f PARTS.SHA256SUMS ]]; then
9
+ echo "Verifying part checksums..."
10
+ sha256sum -c PARTS.SHA256SUMS
11
+ fi
12
+
13
+ if [[ -f TAR.SHA256 ]]; then
14
+ echo "Verifying full tar.gz stream checksum..."
15
+ expected="$(cut -d' ' -f1 TAR.SHA256)"
16
+ actual="$(cat model.tar.gz.part.* | sha256sum | awk '{print $1}')"
17
+ if [[ "$actual" != "$expected" ]]; then
18
+ echo "ERROR: TAR stream checksum mismatch!"
19
+ echo " expected: $expected"
20
+ echo " actual: $actual"
21
+ exit 1
22
+ fi
23
+ fi
24
+
25
+ echo "Checksum OK. Extracting..."
26
+ cat model.tar.gz.part.* | tar -xzf - -C "$DEST"
27
+ echo "✅ Done. Extracted to: $DEST"
PARTS.SHA256SUMS ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 59dab13ed0437a406a344a612b8d93cbd87bd7571216299c39ff9217ae6061a9 /mnt/scratch-artemis/duarte/eurollm-mcore-ckpts/eurollm-9b-mcore-phase2-parts/model.tar.gz.part.000
2
+ e801635e67fddf9501bdeb53e6aeb7bf411b6fb16ae9790eb3d9e6c2be623e57 /mnt/scratch-artemis/duarte/eurollm-mcore-ckpts/eurollm-9b-mcore-phase2-parts/model.tar.gz.part.001
3
+ 1c18b124eed50bf54341593abda0db5776dc88da652341bbef336ca9c469ec6a /mnt/scratch-artemis/duarte/eurollm-mcore-ckpts/eurollm-9b-mcore-phase2-parts/model.tar.gz.part.002
4
+ f459419816d5538b5fcfa88f0a76d3461c065d8372037151ed025f9cc9392a3c /mnt/scratch-artemis/duarte/eurollm-mcore-ckpts/eurollm-9b-mcore-phase2-parts/model.tar.gz.part.003
5
+ 5837f9c78657627ac0e47a5173fa38ce949ce709a236a9678aba285853f1fddc /mnt/scratch-artemis/duarte/eurollm-mcore-ckpts/eurollm-9b-mcore-phase2-parts/model.tar.gz.part.004
6
+ 2ed6b30fd52d8fdbde3bdadf9926ab1cce8ae07284ec8a3deda35c4c40e94609 /mnt/scratch-artemis/duarte/eurollm-mcore-ckpts/eurollm-9b-mcore-phase2-parts/model.tar.gz.part.005
7
+ 24ad7505fa0b294ac45015ceaeca2cb3339fe446587421959d6bd890ee83946d /mnt/scratch-artemis/duarte/eurollm-mcore-ckpts/eurollm-9b-mcore-phase2-parts/model.tar.gz.part.006
8
+ 9a5c860dbd1c509aedbe4135b785fe1d84af5570f1a767510f4bb1e426d9737e /mnt/scratch-artemis/duarte/eurollm-mcore-ckpts/eurollm-9b-mcore-phase2-parts/model.tar.gz.part.007
9
+ 6c6172582df7f966ec8ff147a661e1d1dfe1b3ca7f31ddd4f20a321911e7198f /mnt/scratch-artemis/duarte/eurollm-mcore-ckpts/eurollm-9b-mcore-phase2-parts/model.tar.gz.part.008
10
+ c6defb69874dabed05e1524bd8a3071248477fb3e9ceb2da36d0da2266be037a /mnt/scratch-artemis/duarte/eurollm-mcore-ckpts/eurollm-9b-mcore-phase2-parts/model.tar.gz.part.009
11
+ d443e79041a47a2b37f41c39a28941087321ac7c1216941886e67d14cec39c96 /mnt/scratch-artemis/duarte/eurollm-mcore-ckpts/eurollm-9b-mcore-phase2-parts/model.tar.gz.part.010
README.txt ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Sharded Model Archive
2
+
3
+ This directory contains a sharded gzip-compressed tar archive of your model weights.
4
+
5
+ ## Contents
6
+ - model.tar.gz.part.000, 001, ... — Shards (≤ 10G each)
7
+ - TAR.SHA256 — SHA256 checksum of the full tar stream
8
+ - PARTS.SHA256SUMS — SHA256 checksums of individual parts
9
+ - ASSEMBLE_AND_EXTRACT.sh — Helper to verify, reassemble, and extract
10
+
11
+ ## How to extract
12
+ ```bash
13
+ cd eurollm-9b-mcore-phase2-parts
14
+ ./ASSEMBLE_AND_EXTRACT.sh /path/to/destination
15
+ ```
16
+
17
+ This verifies all parts and the full stream before extraction.
TAR.SHA256 ADDED
@@ -0,0 +1 @@
 
 
1
+ 2561dd5d84f24fb5157c5b332f86e497e731b5b54221ff27b913ec29e23fb125 -
model.tar.gz.part.000 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:59dab13ed0437a406a344a612b8d93cbd87bd7571216299c39ff9217ae6061a9
3
+ size 10737418240
model.tar.gz.part.001 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e801635e67fddf9501bdeb53e6aeb7bf411b6fb16ae9790eb3d9e6c2be623e57
3
+ size 10737418240
model.tar.gz.part.002 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c18b124eed50bf54341593abda0db5776dc88da652341bbef336ca9c469ec6a
3
+ size 10737418240
model.tar.gz.part.003 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f459419816d5538b5fcfa88f0a76d3461c065d8372037151ed025f9cc9392a3c
3
+ size 10737418240
model.tar.gz.part.004 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5837f9c78657627ac0e47a5173fa38ce949ce709a236a9678aba285853f1fddc
3
+ size 10737418240
model.tar.gz.part.005 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2ed6b30fd52d8fdbde3bdadf9926ab1cce8ae07284ec8a3deda35c4c40e94609
3
+ size 10737418240
model.tar.gz.part.006 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:24ad7505fa0b294ac45015ceaeca2cb3339fe446587421959d6bd890ee83946d
3
+ size 10737418240
model.tar.gz.part.007 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a5c860dbd1c509aedbe4135b785fe1d84af5570f1a767510f4bb1e426d9737e
3
+ size 10737418240
model.tar.gz.part.008 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c6172582df7f966ec8ff147a661e1d1dfe1b3ca7f31ddd4f20a321911e7198f
3
+ size 10737418240
model.tar.gz.part.009 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c6defb69874dabed05e1524bd8a3071248477fb3e9ceb2da36d0da2266be037a
3
+ size 10737418240
model.tar.gz.part.010 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d443e79041a47a2b37f41c39a28941087321ac7c1216941886e67d14cec39c96
3
+ size 6998219330