viewer: add configs YAML + metadata.jsonl for 2dbbox & dense_captioning
#21
by arihantj - opened
- CHANGELOG.md +8 -9
- README.md +18 -2
- data/2dbbox/metadata.jsonl +0 -0
- data/dense_captioning/metadata.jsonl +104 -0
CHANGELOG.md
CHANGED
|
@@ -2,14 +2,15 @@
|
|
| 2 |
|
| 3 |
All notable changes to **`nvidia/PhysicalAI-VANTAGE-Bench`** on Hugging Face.
|
| 4 |
|
| 5 |
-
## 2026-05-
|
| 6 |
|
| 7 |
-
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
|
|
|
| 13 |
|
| 14 |
## 2026-05-15
|
| 15 |
|
|
@@ -27,13 +28,11 @@ All notable changes to **`nvidia/PhysicalAI-VANTAGE-Bench`** on Hugging Face.
|
|
| 27 |
per-task prompts.
|
| 28 |
|
| 29 |
## 2026-05-09
|
| 30 |
-
|
| 31 |
- **`data/` restructured.** Top-level task directories renamed:
|
| 32 |
`dense_captioning/`, `event_verification/`, `pointing/`,
|
| 33 |
`referring/`, `temporal_localization/`, `vqa/`. The legacy
|
| 34 |
`Spatial/` directory was dropped.
|
| 35 |
|
| 36 |
## 2026-05-04
|
| 37 |
-
|
| 38 |
- **Initial release**: full release uploaded to
|
| 39 |
`nvidia/PhysicalAI-VANTAGE-Bench` under `data/` (PR #2).
|
|
|
|
| 2 |
|
| 3 |
All notable changes to **`nvidia/PhysicalAI-VANTAGE-Bench`** on Hugging Face.
|
| 4 |
|
| 5 |
+
## 2026-05-19
|
| 6 |
|
| 7 |
+
- README YAML updated with a `configs:` block so the HF dataset viewer
|
| 8 |
+
exposes one tab per task (`vqa`, `temporal_localization`,
|
| 9 |
+
`event_verification`, `referring`, `pointing`, `tracking`, `2dbbox`,
|
| 10 |
+
`dense_captioning`).
|
| 11 |
+
- Added `data/2dbbox/metadata.jsonl` and
|
| 12 |
+
`data/dense_captioning/metadata.jsonl` so the image / video tasks are
|
| 13 |
+
browsable in the viewer.
|
| 14 |
|
| 15 |
## 2026-05-15
|
| 16 |
|
|
|
|
| 28 |
per-task prompts.
|
| 29 |
|
| 30 |
## 2026-05-09
|
|
|
|
| 31 |
- **`data/` restructured.** Top-level task directories renamed:
|
| 32 |
`dense_captioning/`, `event_verification/`, `pointing/`,
|
| 33 |
`referring/`, `temporal_localization/`, `vqa/`. The legacy
|
| 34 |
`Spatial/` directory was dropped.
|
| 35 |
|
| 36 |
## 2026-05-04
|
|
|
|
| 37 |
- **Initial release**: full release uploaded to
|
| 38 |
`nvidia/PhysicalAI-VANTAGE-Bench` under `data/` (PR #2).
|
README.md
CHANGED
|
@@ -7,18 +7,34 @@ configs:
|
|
| 7 |
data_files:
|
| 8 |
- split: test
|
| 9 |
path: data/vqa/data_jsons/annotations/*.json
|
| 10 |
-
- config_name:
|
| 11 |
data_files:
|
| 12 |
- split: test
|
| 13 |
path: data/temporal_localization/data_jsons/annotations/*.json
|
| 14 |
- config_name: event_verification
|
| 15 |
data_files:
|
| 16 |
- split: test
|
| 17 |
-
path: data/event_verification/**/
|
| 18 |
- config_name: referring
|
| 19 |
data_files:
|
| 20 |
- split: test
|
| 21 |
path: data/referring/refdrone_test_llava.json
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
---
|
| 23 |
|
| 24 |
# VANTAGE-BENCH
|
|
|
|
| 7 |
data_files:
|
| 8 |
- split: test
|
| 9 |
path: data/vqa/data_jsons/annotations/*.json
|
| 10 |
+
- config_name: temporal_localization
|
| 11 |
data_files:
|
| 12 |
- split: test
|
| 13 |
path: data/temporal_localization/data_jsons/annotations/*.json
|
| 14 |
- config_name: event_verification
|
| 15 |
data_files:
|
| 16 |
- split: test
|
| 17 |
+
path: data/event_verification/filtered/**/*.json
|
| 18 |
- config_name: referring
|
| 19 |
data_files:
|
| 20 |
- split: test
|
| 21 |
path: data/referring/refdrone_test_llava.json
|
| 22 |
+
- config_name: pointing
|
| 23 |
+
data_files:
|
| 24 |
+
- split: test
|
| 25 |
+
path: data/pointing/Vantage2DPointing.tsv
|
| 26 |
+
- config_name: tracking
|
| 27 |
+
data_files:
|
| 28 |
+
- split: test
|
| 29 |
+
path: data/tracking/sot_benchmark.jsonl
|
| 30 |
+
- config_name: 2dbbox
|
| 31 |
+
data_files:
|
| 32 |
+
- split: test
|
| 33 |
+
path: data/2dbbox/metadata.jsonl
|
| 34 |
+
- config_name: dense_captioning
|
| 35 |
+
data_files:
|
| 36 |
+
- split: test
|
| 37 |
+
path: data/dense_captioning/metadata.jsonl
|
| 38 |
---
|
| 39 |
|
| 40 |
# VANTAGE-BENCH
|
data/2dbbox/metadata.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/dense_captioning/metadata.jsonl
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"file_name": "videos/9_29_2021_Action_Recognition_GH010032_compressed.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 2 |
+
{"file_name": "videos/GX010011_Clip_1.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 3 |
+
{"file_name": "videos/GX010011_Clip_10.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 4 |
+
{"file_name": "videos/GX010011_Clip_11.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 5 |
+
{"file_name": "videos/GX010011_Clip_2.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 6 |
+
{"file_name": "videos/GX010011_Clip_3.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 7 |
+
{"file_name": "videos/GX010011_Clip_4.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 8 |
+
{"file_name": "videos/GX010011_Clip_5.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 9 |
+
{"file_name": "videos/GX010011_Clip_6.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 10 |
+
{"file_name": "videos/GX010011_Clip_7.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 11 |
+
{"file_name": "videos/GX010011_Clip_8.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 12 |
+
{"file_name": "videos/GX010011_Clip_9.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 13 |
+
{"file_name": "videos/GX010012_Clip_1.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 14 |
+
{"file_name": "videos/GX010012_Clip_2.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 15 |
+
{"file_name": "videos/GX010012_Clip_3.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 16 |
+
{"file_name": "videos/GX010012_Clip_4.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 17 |
+
{"file_name": "videos/GX010012_Clip_5.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 18 |
+
{"file_name": "videos/GX010013_Clip_1.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 19 |
+
{"file_name": "videos/GX010013_Clip_2.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 20 |
+
{"file_name": "videos/GX010013_Clip_3.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 21 |
+
{"file_name": "videos/GX010013_Clip_4.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 22 |
+
{"file_name": "videos/GX010013_Clip_5.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 23 |
+
{"file_name": "videos/GX010013_Clip_6.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 24 |
+
{"file_name": "videos/GX010013_Clip_7.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 25 |
+
{"file_name": "videos/GX010014_Clip_1.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 26 |
+
{"file_name": "videos/GX010014_Clip_2.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 27 |
+
{"file_name": "videos/GX010029_Clip_1.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 28 |
+
{"file_name": "videos/GX010029_Clip_10.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 29 |
+
{"file_name": "videos/GX010029_Clip_11.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 30 |
+
{"file_name": "videos/GX010029_Clip_2.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 31 |
+
{"file_name": "videos/GX010029_Clip_3.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 32 |
+
{"file_name": "videos/GX010029_Clip_4.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 33 |
+
{"file_name": "videos/GX010029_Clip_5.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 34 |
+
{"file_name": "videos/GX010029_Clip_6.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 35 |
+
{"file_name": "videos/GX010029_Clip_7.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 36 |
+
{"file_name": "videos/GX010029_Clip_8.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 37 |
+
{"file_name": "videos/GX010029_Clip_9.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 38 |
+
{"file_name": "videos/GX010030_Clip_1.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 39 |
+
{"file_name": "videos/GX010030_Clip_2.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 40 |
+
{"file_name": "videos/GX010030_Clip_3.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 41 |
+
{"file_name": "videos/GX010030_Clip_4.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 42 |
+
{"file_name": "videos/GX010030_Clip_5.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 43 |
+
{"file_name": "videos/GX010031_Clip_1.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 44 |
+
{"file_name": "videos/GX010031_Clip_2.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 45 |
+
{"file_name": "videos/GX010031_Clip_3.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 46 |
+
{"file_name": "videos/GX010031_Clip_4.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 47 |
+
{"file_name": "videos/GX010031_Clip_5.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 48 |
+
{"file_name": "videos/GX010031_Clip_6.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 49 |
+
{"file_name": "videos/GX010031_Clip_7.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 50 |
+
{"file_name": "videos/GX010032_Clip_1.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 51 |
+
{"file_name": "videos/GX010032_Clip_2.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 52 |
+
{"file_name": "videos/GX010069_Clip_1.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 53 |
+
{"file_name": "videos/GX010069_Clip_10.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 54 |
+
{"file_name": "videos/GX010069_Clip_11.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 55 |
+
{"file_name": "videos/GX010069_Clip_2.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 56 |
+
{"file_name": "videos/GX010069_Clip_3.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 57 |
+
{"file_name": "videos/GX010069_Clip_4.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 58 |
+
{"file_name": "videos/GX010069_Clip_5.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 59 |
+
{"file_name": "videos/GX010069_Clip_6.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 60 |
+
{"file_name": "videos/GX010069_Clip_7.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 61 |
+
{"file_name": "videos/GX010069_Clip_8.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 62 |
+
{"file_name": "videos/GX010069_Clip_9.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 63 |
+
{"file_name": "videos/GX010070.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 64 |
+
{"file_name": "videos/GX010070_Clip_1.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 65 |
+
{"file_name": "videos/GX010070_Clip_2.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 66 |
+
{"file_name": "videos/GX010070_Clip_3.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 67 |
+
{"file_name": "videos/GX010070_Clip_4.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 68 |
+
{"file_name": "videos/GX010071_Clip_1.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 69 |
+
{"file_name": "videos/GX010071_Clip_2.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 70 |
+
{"file_name": "videos/GX010071_Clip_3.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 71 |
+
{"file_name": "videos/GX010071_Clip_4.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 72 |
+
{"file_name": "videos/GX010071_Clip_5.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 73 |
+
{"file_name": "videos/GX010071_Clip_6.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 74 |
+
{"file_name": "videos/GX010071_Clip_7.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 75 |
+
{"file_name": "videos/GX010072_Clip_1.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 76 |
+
{"file_name": "videos/GX010072_Clip_2.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 77 |
+
{"file_name": "videos/Security_3.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 78 |
+
{"file_name": "videos/Warehouse_240219_GoPro_1_GH013938_245.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 79 |
+
{"file_name": "videos/Warehouse_240219_GoPro_1_GH063938_200.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 80 |
+
{"file_name": "videos/Warehouse_240219_GoPro_2_GH033938_1638.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 81 |
+
{"file_name": "videos/Warehouse_240219_GoPro_6_GX050061_40.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 82 |
+
{"file_name": "videos/Warehouse_240219_GoPro_7_GX010600_400.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 83 |
+
{"file_name": "videos/Warehouse_240219_GoPro_7_GX010600_500.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 84 |
+
{"file_name": "videos/Warehouse_240219_GoPro_7_GX070600_100.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 85 |
+
{"file_name": "videos/concat_wh_52_0.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 86 |
+
{"file_name": "videos/concat_wh_52_1890.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 87 |
+
{"file_name": "videos/concat_wh_52_2925.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 88 |
+
{"file_name": "videos/concat_wh_52_300.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 89 |
+
{"file_name": "videos/concat_wh_52_910.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 90 |
+
{"file_name": "videos/dvc_0383006b63.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 91 |
+
{"file_name": "videos/dvc_2b3893388b.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 92 |
+
{"file_name": "videos/dvc_2eed6384fc.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 93 |
+
{"file_name": "videos/dvc_59424d8dae.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 94 |
+
{"file_name": "videos/dvc_5f4e867b9b.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 95 |
+
{"file_name": "videos/dvc_65330a81b9.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 96 |
+
{"file_name": "videos/dvc_8bed02a17f.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 97 |
+
{"file_name": "videos/dvc_9dcc5e669d.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 98 |
+
{"file_name": "videos/dvc_a4cb0143ed.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 99 |
+
{"file_name": "videos/dvc_ba4c2a2205.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 100 |
+
{"file_name": "videos/dvc_ca293a20ea.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 101 |
+
{"file_name": "videos/dvc_cf629976e9.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 102 |
+
{"file_name": "videos/output_003.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 103 |
+
{"file_name": "videos/vqa_172a5f65d7.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|
| 104 |
+
{"file_name": "videos/vqa_f57655b7fe.mp4", "prompt": "Describe the notable events in the provided video. Provide the result in json format with 'mm:ss.ff' format for time depiction for each event. Use keywords 'start', 'end' and 'caption' in the json output."}
|