Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- ego4d_bench/images.tar +3 -0
- ego4d_bench/images.tar.sha256 +3 -0
- ego4d_bench/long_2000.jsonl +0 -0
- ego4d_bench/short_20000.jsonl +3 -0
- ego4d_bench/summary.json +30 -0
- ego4d_bench/verify_images_tar.sh +25 -0
.gitattributes
CHANGED
|
@@ -58,3 +58,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
ego4d_bench/short_20000.jsonl filter=lfs diff=lfs merge=lfs -text
|
ego4d_bench/images.tar
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2dfb8f450541fc8a0c869a8cdcdfedb4e19ac90f76391543c2de8454ec3977c1
|
| 3 |
+
size 11042785280
|
ego4d_bench/images.tar.sha256
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f6de0b4c1746234d74d44cea9ee5dc1415a9821e0e1cb2f15ee6a61d08607f53
|
| 3 |
+
size 120
|
ego4d_bench/long_2000.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
ego4d_bench/short_20000.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a5108d0ad4c0a3c027b5812334834af9454000e7e95f3a85aea2434ee6c68e3d
|
| 3 |
+
size 16559685
|
ego4d_bench/summary.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"short": {
|
| 3 |
+
"50": 2500,
|
| 4 |
+
"60": 2500,
|
| 5 |
+
"70": 2500,
|
| 6 |
+
"80": 2500,
|
| 7 |
+
"90": 2500,
|
| 8 |
+
"100": 2500,
|
| 9 |
+
"110": 2500,
|
| 10 |
+
"ge120": 2500
|
| 11 |
+
},
|
| 12 |
+
"long": {
|
| 13 |
+
"same_subtask/forward": 334,
|
| 14 |
+
"same_subtask/inverse": 334,
|
| 15 |
+
"adjacent_subtasks/forward": 333,
|
| 16 |
+
"adjacent_subtasks/inverse": 333,
|
| 17 |
+
"multi_subtasks/forward": 333,
|
| 18 |
+
"multi_subtasks/inverse": 333
|
| 19 |
+
},
|
| 20 |
+
"short_total": 20000,
|
| 21 |
+
"long_total": 2000,
|
| 22 |
+
"parts_available": 643,
|
| 23 |
+
"steps_available": 2864,
|
| 24 |
+
"image_count": 34199,
|
| 25 |
+
"max_per_file": 0,
|
| 26 |
+
"requested_short_total": 20000,
|
| 27 |
+
"requested_long_total": 2000,
|
| 28 |
+
"merged_short_name": "short_20000.jsonl",
|
| 29 |
+
"merged_long_name": "long_2000.jsonl"
|
| 30 |
+
}
|
ego4d_bench/verify_images_tar.sh
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env bash
|
| 2 |
+
set -euo pipefail
|
| 3 |
+
|
| 4 |
+
cd "$(dirname "$0")"
|
| 5 |
+
|
| 6 |
+
archive="./images.tar"
|
| 7 |
+
checksum="./images.tar.sha256"
|
| 8 |
+
|
| 9 |
+
if [[ ! -f "$archive" ]]; then
|
| 10 |
+
echo "Missing archive: $archive" >&2
|
| 11 |
+
exit 1
|
| 12 |
+
fi
|
| 13 |
+
|
| 14 |
+
if [[ ! -f "$checksum" ]]; then
|
| 15 |
+
echo "Missing checksum file: $checksum" >&2
|
| 16 |
+
exit 1
|
| 17 |
+
fi
|
| 18 |
+
|
| 19 |
+
echo "[1/2] Checking SHA-256..."
|
| 20 |
+
sha256sum -c "$checksum"
|
| 21 |
+
|
| 22 |
+
echo "[2/2] Checking TAR structure..."
|
| 23 |
+
tar -tf "$archive" >/dev/null
|
| 24 |
+
|
| 25 |
+
echo "Verification passed: $archive"
|