lapchann commited on
Commit
e565a33
·
1 Parent(s): b39c1fa

fix dataset viewer

Browse files
CHANGELOG.md CHANGED
@@ -3,6 +3,31 @@
3
  All notable changes to **`nvidia/PhysicalAI-VANTAGE-Bench`** on Hugging Face.
4
 
5
  ## 2026-05-27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  - **`data/pointing/VANTAGE_2DPointing.tsv` updated.** MCQ option
7
  coordinates (columns `A`–`D`) are now expressed in the normalized
8
  `0–1000` coordinate system (each cell is an `x,y` pair, with both
 
3
  All notable changes to **`nvidia/PhysicalAI-VANTAGE-Bench`** on Hugging Face.
4
 
5
  ## 2026-05-27
6
+ - **`data/pointing/` migrated to JSONL as the canonical annotation
7
+ format.** `data/pointing/VANTAGE_2DPointing.jsonl` (1,005 lines, one
8
+ sample object per line, 8 fields: `index, question_id, image_path,
9
+ question, A, B, C, D`) replaces `VANTAGE_2DPointing.tsv`, which has
10
+ been removed. The JSONL is a lossless conversion of the prior TSV —
11
+ same 1,005 samples, same field values, same row order, with `index`
12
+ widened from string to integer. No sample content changed and no
13
+ ground-truth fields (`answer`, `target_point`) were introduced. The
14
+ Hugging Face Dataset Viewer `pointing` config now resolves cleanly
15
+ alongside the other JSON/JSONL configs (the mixed `.tsv`/`.jsonl`
16
+ `configs:` block was triggering HF's JSON builder on the TSV and
17
+ failing with an `ArrowInvalid: JSON parse error`).
18
+ - **`data/event_verification/data_jsons/annotations/*.json` unwrapped
19
+ to top-level lists.** Each of the four files
20
+ (`VANTAGE_EventVerification.json` — 67 entries,
21
+ `tailgating_location_a.json` — 28, `tailgating_location_b.json` — 22,
22
+ `warehouse_near_miss.json` — 46; 163 total) was rewritten from
23
+ `{"bcq": [...]}` to `[...]`, matching the
24
+ `vqa/data_jsons/annotations/` and
25
+ `temporal_localization/data_jsons/annotations/` layouts. Every sample
26
+ object (`{id, video, system_prompt, question}`) is preserved
27
+ byte-for-byte and entry order is unchanged. This lets the Hugging
28
+ Face Dataset Viewer row-expand the files to 163 (instead of
29
+ collapsing each top-level object to a single row, which produced
30
+ 4 rows in the viewer).
31
  - **`data/pointing/VANTAGE_2DPointing.tsv` updated.** MCQ option
32
  coordinates (columns `A`–`D`) are now expressed in the normalized
33
  `0–1000` coordinate system (each cell is an `x,y` pair, with both
README.md CHANGED
@@ -22,7 +22,7 @@ configs:
22
  - config_name: pointing
23
  data_files:
24
  - split: test
25
- path: data/pointing/VANTAGE_2DPointing.tsv
26
  - config_name: tracking
27
  data_files:
28
  - split: test
 
22
  - config_name: pointing
23
  data_files:
24
  - split: test
25
+ path: data/pointing/VANTAGE_2DPointing.jsonl
26
  - config_name: tracking
27
  data_files:
28
  - split: test
data/README.md CHANGED
@@ -18,7 +18,7 @@ data/
18
  │ ├── *.mp4 (under videos/)
19
  │ └── data_jsons/annotations/*.json
20
  ├── pointing/ # 2D spatial pointing
21
- │ └── VANTAGE_2DPointing.tsv
22
  ├── referring/ # 2D referring expressions
23
  │ └── refdrone_test_llava.json
24
  ├── temporal_localization/ # Temporal grounding
@@ -67,22 +67,25 @@ annotations.
67
 
68
  ### `event_verification/` — Binary Event Verification
69
  Per-entry questions in `event_verification/data_jsons/annotations/*.json`
70
- (four files: `VANTAGE_EventVerification.json`,
71
- `tailgating_location_a.json`, `tailgating_location_b.json`,
72
- `warehouse_near_miss.json`). All four share a unified schema:
73
- `{"bcq": [{id, video, system_prompt, question}, …]}` where `video` is the
74
- basename (e.g. `example.mp4`) and `id` is the stem (e.g. `example`),
75
- resolving against `event_verification/videos/`. The binary `answer` is
76
- removed.
 
 
77
 
78
  ### `pointing/` — 2D Spatial Pointing
79
- `VANTAGE_2DPointing.tsv` — tab-separated, 8 columns:
80
- `index, question_id, image_path, question, A, B, C, D`. Each row carries
81
- the question and four multiple-choice options (`A`–`D`); each option is
82
- an `x,y` pair in the **normalized `0–1000` coordinate system** (both
83
- components in `[0, 1000]` relative to the image dimensions). Ground-truth
84
- fields (`answer`, `target_point`) are held server-side and are not
85
- included in the public TSV.
 
86
 
87
  ### `referring/` — 2D Referring Expressions
88
  `refdrone_test_llava.json` — list of LLaVA conversation entries. Only the `human` turn (the question) is retained; the `gpt` turn (predicted bboxes) and GT meta fields are removed.
 
18
  │ ├── *.mp4 (under videos/)
19
  │ └── data_jsons/annotations/*.json
20
  ├── pointing/ # 2D spatial pointing
21
+ │ └── VANTAGE_2DPointing.jsonl
22
  ├── referring/ # 2D referring expressions
23
  │ └── refdrone_test_llava.json
24
  ├── temporal_localization/ # Temporal grounding
 
67
 
68
  ### `event_verification/` — Binary Event Verification
69
  Per-entry questions in `event_verification/data_jsons/annotations/*.json`
70
+ (four files: `VANTAGE_EventVerification.json` — 67 entries,
71
+ `tailgating_location_a.json` — 28, `tailgating_location_b.json` — 22,
72
+ `warehouse_near_miss.json` — 46; 163 total). Each file is a top-level
73
+ list of sample objects with schema
74
+ `[{id, video, system_prompt, question}, …]` matching the
75
+ `vqa/` and `temporal_localization/` annotation layout — where `video`
76
+ is the basename (e.g. `example.mp4`) and `id` is the stem
77
+ (e.g. `example`), resolving against `event_verification/videos/`. The
78
+ binary `answer` is removed.
79
 
80
  ### `pointing/` — 2D Spatial Pointing
81
+ `VANTAGE_2DPointing.jsonl` — one JSON object per line, 1,005 lines,
82
+ 8 fields: `index, question_id, image_path, question, A, B, C, D`. Each
83
+ line carries the question and four multiple-choice options (`A`–`D`);
84
+ each option is an `x,y` pair (string `"x,y"`) in the **normalized
85
+ `0–1000` coordinate system** (both components in `[0, 1000]` relative
86
+ to the image dimensions). `index` is an integer in `[0, 1004]`.
87
+ Ground-truth fields (`answer`, `target_point`) are held server-side and
88
+ are not included in the public JSONL.
89
 
90
  ### `referring/` — 2D Referring Expressions
91
  `refdrone_test_llava.json` — list of LLaVA conversation entries. Only the `human` turn (the question) is retained; the `gpt` turn (predicted bboxes) and GT meta fields are removed.
data/event_verification/data_jsons/annotations/VANTAGE_EventVerification.json CHANGED
The diff for this file is too large to render. See raw diff
 
data/event_verification/data_jsons/annotations/tailgating_location_a.json CHANGED
@@ -1,172 +1,170 @@
1
- {
2
- "bcq": [
3
- {
4
- "id": "10_15_2025_sp_8_35_08_sp_PM_sp__lp_UTC-07_00_rp_",
5
- "video": "10_15_2025_sp_8_35_08_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
6
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
7
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
8
- },
9
- {
10
- "id": "11_20_2025_sp_4_13_08_sp_PM_sp__lp_UTC-08_00_rp_",
11
- "video": "11_20_2025_sp_4_13_08_sp_PM_sp__lp_UTC-08_00_rp_.mp4",
12
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
13
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
14
- },
15
- {
16
- "id": "11_24_2025_sp_9_44_18_sp_AM_sp__lp_UTC-08_00_rp_",
17
- "video": "11_24_2025_sp_9_44_18_sp_AM_sp__lp_UTC-08_00_rp_.mp4",
18
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
19
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
20
- },
21
- {
22
- "id": "11_20_2025_sp_1_01_55_sp_PM_sp__lp_UTC-08_00_rp_",
23
- "video": "11_20_2025_sp_1_01_55_sp_PM_sp__lp_UTC-08_00_rp_.mp4",
24
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
25
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
26
- },
27
- {
28
- "id": "10_25_2025_sp_6_30_25_sp_PM_sp__lp_UTC-07_00_rp_",
29
- "video": "10_25_2025_sp_6_30_25_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
30
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
31
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
32
- },
33
- {
34
- "id": "10_15_2025_sp_8_38_19_sp_PM_sp__lp_UTC-07_00_rp_",
35
- "video": "10_15_2025_sp_8_38_19_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
36
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
37
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
38
- },
39
- {
40
- "id": "10_8_2025_sp_8_38_03_sp_PM_sp__lp_UTC-07_00_rp_",
41
- "video": "10_8_2025_sp_8_38_03_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
42
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
43
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
44
- },
45
- {
46
- "id": "10_25_2025_sp_6_09_05_sp_PM_sp__lp_UTC-07_00_rp_",
47
- "video": "10_25_2025_sp_6_09_05_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
48
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
49
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
50
- },
51
- {
52
- "id": "10_25_2025_sp_6_46_58_sp_PM_sp__lp_UTC-07_00_rp_",
53
- "video": "10_25_2025_sp_6_46_58_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
54
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
55
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
56
- },
57
- {
58
- "id": "11_24_2025_sp_10_23_17_sp_AM_sp__lp_UTC-08_00_rp_",
59
- "video": "11_24_2025_sp_10_23_17_sp_AM_sp__lp_UTC-08_00_rp_.mp4",
60
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
61
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
62
- },
63
- {
64
- "id": "10_9_2025_sp_8_48_30_sp_PM_sp__lp_UTC-07_00_rp_",
65
- "video": "10_9_2025_sp_8_48_30_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
66
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
67
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
68
- },
69
- {
70
- "id": "10_8_2025_sp_8_43_54_sp_PM_sp__lp_UTC-07_00_rp_",
71
- "video": "10_8_2025_sp_8_43_54_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
72
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
73
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
74
- },
75
- {
76
- "id": "11_21_2025_sp_11_56_03_sp_AM_sp__lp_UTC-08_00_rp_",
77
- "video": "11_21_2025_sp_11_56_03_sp_AM_sp__lp_UTC-08_00_rp_.mp4",
78
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
79
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
80
- },
81
- {
82
- "id": "10_16_2025_sp_9_00_13_sp_PM_sp__lp_UTC-07_00_rp_",
83
- "video": "10_16_2025_sp_9_00_13_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
84
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
85
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
86
- },
87
- {
88
- "id": "10_25_2025_sp_6_48_55_sp_PM_sp__lp_UTC-07_00_rp_",
89
- "video": "10_25_2025_sp_6_48_55_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
90
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
91
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
92
- },
93
- {
94
- "id": "10_25_2025_sp_6_12_31_sp_PM_sp__lp_UTC-07_00_rp_",
95
- "video": "10_25_2025_sp_6_12_31_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
96
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
97
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
98
- },
99
- {
100
- "id": "10_16_2025_sp_9_10_29_sp_PM_sp__lp_UTC-07_00_rp_",
101
- "video": "10_16_2025_sp_9_10_29_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
102
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
103
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
104
- },
105
- {
106
- "id": "10_15_2025_sp_8_39_16_sp_PM_sp__lp_UTC-07_00_rp_",
107
- "video": "10_15_2025_sp_8_39_16_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
108
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
109
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
110
- },
111
- {
112
- "id": "11_24_2025_sp_10_44_28_sp_AM_sp__lp_UTC-08_00_rp_",
113
- "video": "11_24_2025_sp_10_44_28_sp_AM_sp__lp_UTC-08_00_rp_.mp4",
114
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
115
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
116
- },
117
- {
118
- "id": "11_24_2025_sp_1_28_55_sp_PM_sp__lp_UTC-08_00_rp_",
119
- "video": "11_24_2025_sp_1_28_55_sp_PM_sp__lp_UTC-08_00_rp_.mp4",
120
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
121
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
122
- },
123
- {
124
- "id": "10_25_2025_sp_6_32_48_sp_PM_sp__lp_UTC-07_00_rp_",
125
- "video": "10_25_2025_sp_6_32_48_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
126
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
127
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
128
- },
129
- {
130
- "id": "11_21_2025_sp_11_40_45_sp_AM_sp__lp_UTC-08_00_rp_",
131
- "video": "11_21_2025_sp_11_40_45_sp_AM_sp__lp_UTC-08_00_rp_.mp4",
132
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
133
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
134
- },
135
- {
136
- "id": "10_25_2025_sp_6_15_08_sp_PM_sp__lp_UTC-07_00_rp_",
137
- "video": "10_25_2025_sp_6_15_08_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
138
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
139
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
140
- },
141
- {
142
- "id": "10_25_2025_sp_6_22_57_sp_PM_sp__lp_UTC-07_00_rp_",
143
- "video": "10_25_2025_sp_6_22_57_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
144
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
145
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
146
- },
147
- {
148
- "id": "11_21_2025_sp_11_55_17_sp_AM_sp__lp_UTC-08_00_rp_",
149
- "video": "11_21_2025_sp_11_55_17_sp_AM_sp__lp_UTC-08_00_rp_.mp4",
150
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
151
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
152
- },
153
- {
154
- "id": "10_9_2025_sp_8_51_57_sp_PM_sp__lp_UTC-07_00_rp_",
155
- "video": "10_9_2025_sp_8_51_57_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
156
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
157
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
158
- },
159
- {
160
- "id": "11_21_2025_sp_11_18_34_sp_AM_sp__lp_UTC-08_00_rp_",
161
- "video": "11_21_2025_sp_11_18_34_sp_AM_sp__lp_UTC-08_00_rp_.mp4",
162
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
163
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
164
- },
165
- {
166
- "id": "11_24_2025_sp_2_57_33_sp_PM_sp__lp_UTC-08_00_rp_",
167
- "video": "11_24_2025_sp_2_57_33_sp_PM_sp__lp_UTC-08_00_rp_.mp4",
168
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
169
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
170
- }
171
- ]
172
- }
 
1
+ [
2
+ {
3
+ "id": "10_15_2025_sp_8_35_08_sp_PM_sp__lp_UTC-07_00_rp_",
4
+ "video": "10_15_2025_sp_8_35_08_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
5
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
6
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
7
+ },
8
+ {
9
+ "id": "11_20_2025_sp_4_13_08_sp_PM_sp__lp_UTC-08_00_rp_",
10
+ "video": "11_20_2025_sp_4_13_08_sp_PM_sp__lp_UTC-08_00_rp_.mp4",
11
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
12
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
13
+ },
14
+ {
15
+ "id": "11_24_2025_sp_9_44_18_sp_AM_sp__lp_UTC-08_00_rp_",
16
+ "video": "11_24_2025_sp_9_44_18_sp_AM_sp__lp_UTC-08_00_rp_.mp4",
17
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
18
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
19
+ },
20
+ {
21
+ "id": "11_20_2025_sp_1_01_55_sp_PM_sp__lp_UTC-08_00_rp_",
22
+ "video": "11_20_2025_sp_1_01_55_sp_PM_sp__lp_UTC-08_00_rp_.mp4",
23
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
24
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
25
+ },
26
+ {
27
+ "id": "10_25_2025_sp_6_30_25_sp_PM_sp__lp_UTC-07_00_rp_",
28
+ "video": "10_25_2025_sp_6_30_25_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
29
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
30
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
31
+ },
32
+ {
33
+ "id": "10_15_2025_sp_8_38_19_sp_PM_sp__lp_UTC-07_00_rp_",
34
+ "video": "10_15_2025_sp_8_38_19_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
35
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
36
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
37
+ },
38
+ {
39
+ "id": "10_8_2025_sp_8_38_03_sp_PM_sp__lp_UTC-07_00_rp_",
40
+ "video": "10_8_2025_sp_8_38_03_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
41
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
42
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
43
+ },
44
+ {
45
+ "id": "10_25_2025_sp_6_09_05_sp_PM_sp__lp_UTC-07_00_rp_",
46
+ "video": "10_25_2025_sp_6_09_05_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
47
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
48
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
49
+ },
50
+ {
51
+ "id": "10_25_2025_sp_6_46_58_sp_PM_sp__lp_UTC-07_00_rp_",
52
+ "video": "10_25_2025_sp_6_46_58_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
53
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
54
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
55
+ },
56
+ {
57
+ "id": "11_24_2025_sp_10_23_17_sp_AM_sp__lp_UTC-08_00_rp_",
58
+ "video": "11_24_2025_sp_10_23_17_sp_AM_sp__lp_UTC-08_00_rp_.mp4",
59
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
60
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
61
+ },
62
+ {
63
+ "id": "10_9_2025_sp_8_48_30_sp_PM_sp__lp_UTC-07_00_rp_",
64
+ "video": "10_9_2025_sp_8_48_30_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
65
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
66
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
67
+ },
68
+ {
69
+ "id": "10_8_2025_sp_8_43_54_sp_PM_sp__lp_UTC-07_00_rp_",
70
+ "video": "10_8_2025_sp_8_43_54_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
71
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
72
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
73
+ },
74
+ {
75
+ "id": "11_21_2025_sp_11_56_03_sp_AM_sp__lp_UTC-08_00_rp_",
76
+ "video": "11_21_2025_sp_11_56_03_sp_AM_sp__lp_UTC-08_00_rp_.mp4",
77
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
78
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
79
+ },
80
+ {
81
+ "id": "10_16_2025_sp_9_00_13_sp_PM_sp__lp_UTC-07_00_rp_",
82
+ "video": "10_16_2025_sp_9_00_13_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
83
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
84
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
85
+ },
86
+ {
87
+ "id": "10_25_2025_sp_6_48_55_sp_PM_sp__lp_UTC-07_00_rp_",
88
+ "video": "10_25_2025_sp_6_48_55_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
89
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
90
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
91
+ },
92
+ {
93
+ "id": "10_25_2025_sp_6_12_31_sp_PM_sp__lp_UTC-07_00_rp_",
94
+ "video": "10_25_2025_sp_6_12_31_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
95
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
96
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
97
+ },
98
+ {
99
+ "id": "10_16_2025_sp_9_10_29_sp_PM_sp__lp_UTC-07_00_rp_",
100
+ "video": "10_16_2025_sp_9_10_29_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
101
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
102
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
103
+ },
104
+ {
105
+ "id": "10_15_2025_sp_8_39_16_sp_PM_sp__lp_UTC-07_00_rp_",
106
+ "video": "10_15_2025_sp_8_39_16_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
107
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
108
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
109
+ },
110
+ {
111
+ "id": "11_24_2025_sp_10_44_28_sp_AM_sp__lp_UTC-08_00_rp_",
112
+ "video": "11_24_2025_sp_10_44_28_sp_AM_sp__lp_UTC-08_00_rp_.mp4",
113
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
114
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
115
+ },
116
+ {
117
+ "id": "11_24_2025_sp_1_28_55_sp_PM_sp__lp_UTC-08_00_rp_",
118
+ "video": "11_24_2025_sp_1_28_55_sp_PM_sp__lp_UTC-08_00_rp_.mp4",
119
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
120
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
121
+ },
122
+ {
123
+ "id": "10_25_2025_sp_6_32_48_sp_PM_sp__lp_UTC-07_00_rp_",
124
+ "video": "10_25_2025_sp_6_32_48_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
125
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
126
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
127
+ },
128
+ {
129
+ "id": "11_21_2025_sp_11_40_45_sp_AM_sp__lp_UTC-08_00_rp_",
130
+ "video": "11_21_2025_sp_11_40_45_sp_AM_sp__lp_UTC-08_00_rp_.mp4",
131
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
132
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
133
+ },
134
+ {
135
+ "id": "10_25_2025_sp_6_15_08_sp_PM_sp__lp_UTC-07_00_rp_",
136
+ "video": "10_25_2025_sp_6_15_08_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
137
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
138
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
139
+ },
140
+ {
141
+ "id": "10_25_2025_sp_6_22_57_sp_PM_sp__lp_UTC-07_00_rp_",
142
+ "video": "10_25_2025_sp_6_22_57_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
143
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
144
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
145
+ },
146
+ {
147
+ "id": "11_21_2025_sp_11_55_17_sp_AM_sp__lp_UTC-08_00_rp_",
148
+ "video": "11_21_2025_sp_11_55_17_sp_AM_sp__lp_UTC-08_00_rp_.mp4",
149
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
150
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
151
+ },
152
+ {
153
+ "id": "10_9_2025_sp_8_51_57_sp_PM_sp__lp_UTC-07_00_rp_",
154
+ "video": "10_9_2025_sp_8_51_57_sp_PM_sp__lp_UTC-07_00_rp_.mp4",
155
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
156
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
157
+ },
158
+ {
159
+ "id": "11_21_2025_sp_11_18_34_sp_AM_sp__lp_UTC-08_00_rp_",
160
+ "video": "11_21_2025_sp_11_18_34_sp_AM_sp__lp_UTC-08_00_rp_.mp4",
161
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
162
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
163
+ },
164
+ {
165
+ "id": "11_24_2025_sp_2_57_33_sp_PM_sp__lp_UTC-08_00_rp_",
166
+ "video": "11_24_2025_sp_2_57_33_sp_PM_sp__lp_UTC-08_00_rp_.mp4",
167
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
168
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
169
+ }
170
+ ]
 
 
data/event_verification/data_jsons/annotations/tailgating_location_b.json CHANGED
@@ -1,136 +1,134 @@
1
- {
2
- "bcq": [
3
- {
4
- "id": "evs_6a52f11dad",
5
- "video": "evs_6a52f11dad.mp4",
6
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
7
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
8
- },
9
- {
10
- "id": "evs_b561420691",
11
- "video": "evs_b561420691.mp4",
12
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
13
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
14
- },
15
- {
16
- "id": "evs_907fe737cf",
17
- "video": "evs_907fe737cf.mp4",
18
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
19
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
20
- },
21
- {
22
- "id": "evs_0ea91247d8",
23
- "video": "evs_0ea91247d8.mp4",
24
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
25
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
26
- },
27
- {
28
- "id": "evs_6ad1a891ad",
29
- "video": "evs_6ad1a891ad.mp4",
30
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
31
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
32
- },
33
- {
34
- "id": "evs_d0e459f682",
35
- "video": "evs_d0e459f682.mp4",
36
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
37
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
38
- },
39
- {
40
- "id": "evs_2e30648c0a",
41
- "video": "evs_2e30648c0a.mp4",
42
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
43
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
44
- },
45
- {
46
- "id": "evs_292daa255e",
47
- "video": "evs_292daa255e.mp4",
48
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
49
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
50
- },
51
- {
52
- "id": "evs_a9e180fff3",
53
- "video": "evs_a9e180fff3.mp4",
54
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
55
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
56
- },
57
- {
58
- "id": "evs_53f64ccbe8",
59
- "video": "evs_53f64ccbe8.mp4",
60
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
61
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
62
- },
63
- {
64
- "id": "evs_b982d3f339",
65
- "video": "evs_b982d3f339.mp4",
66
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
67
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
68
- },
69
- {
70
- "id": "evs_03018e0ecf",
71
- "video": "evs_03018e0ecf.mp4",
72
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
73
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
74
- },
75
- {
76
- "id": "evs_bf746e9608",
77
- "video": "evs_bf746e9608.mp4",
78
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
79
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
80
- },
81
- {
82
- "id": "evs_6e738337bc",
83
- "video": "evs_6e738337bc.mp4",
84
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
85
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
86
- },
87
- {
88
- "id": "evs_f979eb0318",
89
- "video": "evs_f979eb0318.mp4",
90
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
91
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
92
- },
93
- {
94
- "id": "evs_024ae78480",
95
- "video": "evs_024ae78480.mp4",
96
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
97
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
98
- },
99
- {
100
- "id": "evs_fa68a5a4f8",
101
- "video": "evs_fa68a5a4f8.mp4",
102
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
103
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
104
- },
105
- {
106
- "id": "evs_eed8192951",
107
- "video": "evs_eed8192951.mp4",
108
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
109
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
110
- },
111
- {
112
- "id": "evs_32231b0bd6",
113
- "video": "evs_32231b0bd6.mp4",
114
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
115
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
116
- },
117
- {
118
- "id": "evs_a713802c9d",
119
- "video": "evs_a713802c9d.mp4",
120
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
121
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
122
- },
123
- {
124
- "id": "evs_3f674e8c19",
125
- "video": "evs_3f674e8c19.mp4",
126
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
127
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
128
- },
129
- {
130
- "id": "evs_6a4da56832",
131
- "video": "evs_6a4da56832.mp4",
132
- "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
133
- "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
134
- }
135
- ]
136
- }
 
1
+ [
2
+ {
3
+ "id": "evs_6a52f11dad",
4
+ "video": "evs_6a52f11dad.mp4",
5
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
6
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
7
+ },
8
+ {
9
+ "id": "evs_b561420691",
10
+ "video": "evs_b561420691.mp4",
11
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
12
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
13
+ },
14
+ {
15
+ "id": "evs_907fe737cf",
16
+ "video": "evs_907fe737cf.mp4",
17
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
18
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
19
+ },
20
+ {
21
+ "id": "evs_0ea91247d8",
22
+ "video": "evs_0ea91247d8.mp4",
23
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
24
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
25
+ },
26
+ {
27
+ "id": "evs_6ad1a891ad",
28
+ "video": "evs_6ad1a891ad.mp4",
29
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
30
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
31
+ },
32
+ {
33
+ "id": "evs_d0e459f682",
34
+ "video": "evs_d0e459f682.mp4",
35
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
36
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
37
+ },
38
+ {
39
+ "id": "evs_2e30648c0a",
40
+ "video": "evs_2e30648c0a.mp4",
41
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
42
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
43
+ },
44
+ {
45
+ "id": "evs_292daa255e",
46
+ "video": "evs_292daa255e.mp4",
47
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
48
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
49
+ },
50
+ {
51
+ "id": "evs_a9e180fff3",
52
+ "video": "evs_a9e180fff3.mp4",
53
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
54
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
55
+ },
56
+ {
57
+ "id": "evs_53f64ccbe8",
58
+ "video": "evs_53f64ccbe8.mp4",
59
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
60
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
61
+ },
62
+ {
63
+ "id": "evs_b982d3f339",
64
+ "video": "evs_b982d3f339.mp4",
65
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
66
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
67
+ },
68
+ {
69
+ "id": "evs_03018e0ecf",
70
+ "video": "evs_03018e0ecf.mp4",
71
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
72
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
73
+ },
74
+ {
75
+ "id": "evs_bf746e9608",
76
+ "video": "evs_bf746e9608.mp4",
77
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
78
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
79
+ },
80
+ {
81
+ "id": "evs_6e738337bc",
82
+ "video": "evs_6e738337bc.mp4",
83
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
84
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
85
+ },
86
+ {
87
+ "id": "evs_f979eb0318",
88
+ "video": "evs_f979eb0318.mp4",
89
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
90
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
91
+ },
92
+ {
93
+ "id": "evs_024ae78480",
94
+ "video": "evs_024ae78480.mp4",
95
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
96
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
97
+ },
98
+ {
99
+ "id": "evs_fa68a5a4f8",
100
+ "video": "evs_fa68a5a4f8.mp4",
101
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
102
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
103
+ },
104
+ {
105
+ "id": "evs_eed8192951",
106
+ "video": "evs_eed8192951.mp4",
107
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
108
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
109
+ },
110
+ {
111
+ "id": "evs_32231b0bd6",
112
+ "video": "evs_32231b0bd6.mp4",
113
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
114
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
115
+ },
116
+ {
117
+ "id": "evs_a713802c9d",
118
+ "video": "evs_a713802c9d.mp4",
119
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
120
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
121
+ },
122
+ {
123
+ "id": "evs_3f674e8c19",
124
+ "video": "evs_3f674e8c19.mp4",
125
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
126
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
127
+ },
128
+ {
129
+ "id": "evs_6a4da56832",
130
+ "video": "evs_6a4da56832.mp4",
131
+ "system_prompt": "You are an expert AI assistant for video analysis. Your task is to accurately classify whether a surveillance video depicts **normal access** or **tailgating** behavior, based on the strict definitions below.\n\n# Category Definitions\n\n- **Normal Access**: \nA person (or group) enters a secure area **properly authenticated** (e.g., by using a badge, keycard, or biometric system). Only those with authorization enter. There is **no evidence of security breach** or abnormal entry. \n\n- **Tailgating**: \nOne or more individuals **enter a secure area without authorization** by following closely behind an authorized person who has legitimately gained access. The unauthorized individual does not use valid credentials but takes advantage of the door being open. This includes: \n- Following immediately behind someone with a badge swipe. \n- Entering as part of a group where only the first person authenticates. \n- Entering without any visible authentication while leveraging someone else's access.",
132
+ "question": "Does the video depict tailgating behavior? Answer \"Yes\" or \"No\"."
133
+ }
134
+ ]
 
 
data/event_verification/data_jsons/annotations/warehouse_near_miss.json CHANGED
@@ -1,280 +1,278 @@
1
- {
2
- "bcq": [
3
- {
4
- "id": "scene_07_01_00-23-52_to_00-25-33_GoPro1_Fork_Lift_stopped_while_person_crossing_the_isle_08-22",
5
- "video": "scene_07_01_00-23-52_to_00-25-33_GoPro1_Fork_Lift_stopped_while_person_crossing_the_isle_08-22.mp4",
6
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
7
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
8
- },
9
- {
10
- "id": "scene_08_01_00-00-46_to_00-02-20_GoPro1_Fork_Lift_crossing_while_person_running_in_front_of_it_01-15",
11
- "video": "scene_08_01_00-00-46_to_00-02-20_GoPro1_Fork_Lift_crossing_while_person_running_in_front_of_it_01-15.mp4",
12
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
13
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
14
- },
15
- {
16
- "id": "scene_08_02_00-02-20_to_00-04-56_GoPro1_Fork_Lift_crossing_while_person_running_in_front_of_it_08-22",
17
- "video": "scene_08_02_00-02-20_to_00-04-56_GoPro1_Fork_Lift_crossing_while_person_running_in_front_of_it_08-22.mp4",
18
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
19
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
20
- },
21
- {
22
- "id": "scene_08_03_00-04-56_to_00-08-15_GoPro1_Fork_Lift_crossing_while_person_running_in_front_of_it_04-18",
23
- "video": "scene_08_03_00-04-56_to_00-08-15_GoPro1_Fork_Lift_crossing_while_person_running_in_front_of_it_04-18.mp4",
24
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
25
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
26
- },
27
- {
28
- "id": "scene_09_01_00-08-15_to_00-10-22_GoPro1_Fork_Lift_moving_while_person_on_the_phone_crossing_the_isle_06-20",
29
- "video": "scene_09_01_00-08-15_to_00-10-22_GoPro1_Fork_Lift_moving_while_person_on_the_phone_crossing_the_isle_06-20.mp4",
30
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
31
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
32
- },
33
- {
34
- "id": "scene_10_01_00-10-22_to_00-13-12_GoPro1_Fork_Lift_moving_while_person_crossing_the_isle_06-20",
35
- "video": "scene_10_01_00-10-22_to_00-13-12_GoPro1_Fork_Lift_moving_while_person_crossing_the_isle_06-20.mp4",
36
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
37
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
38
- },
39
- {
40
- "id": "scene_11_01_00-13-12_to_00-16-16_GoPro1_Fork_Lift_moving_while_multiple_people_in_the_scene_04-22",
41
- "video": "scene_11_01_00-13-12_to_00-16-16_GoPro1_Fork_Lift_moving_while_multiple_people_in_the_scene_04-22.mp4",
42
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
43
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
44
- },
45
- {
46
- "id": "scene_12_01_00-16-16_to_00-17-31_GoPro1_Fork_Lift_moving_while_person_walking_behind_the_forklift_06-20",
47
- "video": "scene_12_01_00-16-16_to_00-17-31_GoPro1_Fork_Lift_moving_while_person_walking_behind_the_forklift_06-20.mp4",
48
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
49
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
50
- },
51
- {
52
- "id": "scene_12_02_00-17-31_to_00-19-50_GoPro1_Fork_Lift_moving_while_person_walking_behind_the_forklift_02-16",
53
- "video": "scene_12_02_00-17-31_to_00-19-50_GoPro1_Fork_Lift_moving_while_person_walking_behind_the_forklift_02-16.mp4",
54
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
55
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
56
- },
57
- {
58
- "id": "scene_14_01_00-19-50_to_00-22-54_GoPro1_Fork_Lift_moving_while_person_walking_behind_the_forklift_04-18",
59
- "video": "scene_14_01_00-19-50_to_00-22-54_GoPro1_Fork_Lift_moving_while_person_walking_behind_the_forklift_04-18.mp4",
60
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
61
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
62
- },
63
- {
64
- "id": "scene_16_01_00-22-54_to_00-25-38_GoPro1_person_walking_in_front_of_fork_lift_04-48",
65
- "video": "scene_16_01_00-22-54_to_00-25-38_GoPro1_person_walking_in_front_of_fork_lift_04-48.mp4",
66
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
67
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
68
- },
69
- {
70
- "id": "scene_17_01_00-25-38_to_00-27-32_GoPro1_person_running_in_front_of_fork_lift_02-16",
71
- "video": "scene_17_01_00-25-38_to_00-27-32_GoPro1_person_running_in_front_of_fork_lift_02-16.mp4",
72
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
73
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
74
- },
75
- {
76
- "id": "scene_17_02_00-27-32_to_00-30-55_GoPro1_person_running_in_front_of_fork_lift_02-26",
77
- "video": "scene_17_02_00-27-32_to_00-30-55_GoPro1_person_running_in_front_of_fork_lift_02-26.mp4",
78
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
79
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
80
- },
81
- {
82
- "id": "scene_18_01_00-30-55_to_00-33-57_GoPro1_person_jumping_to_not_get_hit_by_the_forklift_00-20",
83
- "video": "scene_18_01_00-30-55_to_00-33-57_GoPro1_person_jumping_to_not_get_hit_by_the_forklift_00-20.mp4",
84
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
85
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
86
- },
87
- {
88
- "id": "scene_19_01_00-33-57_to_00-35-41_GoPro1_fork_lift_moving_backwards_person_cutting_in_front_of_the_fo_04-24",
89
- "video": "scene_19_01_00-33-57_to_00-35-41_GoPro1_fork_lift_moving_backwards_person_cutting_in_front_of_the_fo_04-24.mp4",
90
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
91
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
92
- },
93
- {
94
- "id": "scene_20_01_00-35-41_to_00-37-23_GoPro1_fork_lift_going_backwards_person_running_passed_04-22",
95
- "video": "scene_20_01_00-35-41_to_00-37-23_GoPro1_fork_lift_going_backwards_person_running_passed_04-22.mp4",
96
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
97
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
98
- },
99
- {
100
- "id": "scene_21_01_00-37-23_to_00-39-30_GoPro1_fork_lift_going_backwards_person_stops_06-24",
101
- "video": "scene_21_01_00-37-23_to_00-39-30_GoPro1_fork_lift_going_backwards_person_stops_06-24.mp4",
102
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
103
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
104
- },
105
- {
106
- "id": "scene_22_01_00-39-30_to_00-45-36_GoPro1_fork_lift_moving_person_hesitating_and_stepping_back_01-20",
107
- "video": "scene_22_01_00-39-30_to_00-45-36_GoPro1_fork_lift_moving_person_hesitating_and_stepping_back_01-20.mp4",
108
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
109
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
110
- },
111
- {
112
- "id": "scene_23_01_00-45-36_to_00-49-03_GoPro1_boxes_blocking_the_view_of_the_driver_and_person_crossing_06-26",
113
- "video": "scene_23_01_00-45-36_to_00-49-03_GoPro1_boxes_blocking_the_view_of_the_driver_and_person_crossing_06-26.mp4",
114
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
115
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
116
- },
117
- {
118
- "id": "scene_25_01_00-02-02_to_00-05-05_GoPro1_person_working_on_boxes_while_fork_lift_approaches_06-30",
119
- "video": "scene_25_01_00-02-02_to_00-05-05_GoPro1_person_working_on_boxes_while_fork_lift_approaches_06-30.mp4",
120
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
121
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
122
- },
123
- {
124
- "id": "scene_26_01_00-05-05_to_00-08-50_GoPro1_same_as_above_person_jumping_05-24",
125
- "video": "scene_26_01_00-05-05_to_00-08-50_GoPro1_same_as_above_person_jumping_05-24.mp4",
126
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
127
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
128
- },
129
- {
130
- "id": "scene_27_01_00-08-50_to_00-15-25_GoPro1_person_bending_down_fork_lift_moving_forward_10-30",
131
- "video": "scene_27_01_00-08-50_to_00-15-25_GoPro1_person_bending_down_fork_lift_moving_forward_10-30.mp4",
132
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
133
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
134
- },
135
- {
136
- "id": "Scene_13_S13T1_C2_CS_S13T1_1-12-11-59_chunk_5__event_005_5",
137
- "video": "Scene_13_S13T1_C2_CS_S13T1_1-12-11-59_chunk_5__event_005_5.mp4",
138
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
139
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
140
- },
141
- {
142
- "id": "Scene_13_S13T3_C5_AS_S13T3_01-18-12-10_chunk_2__event_001_1",
143
- "video": "Scene_13_S13T3_C5_AS_S13T3_01-18-12-10_chunk_2__event_001_1.mp4",
144
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
145
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
146
- },
147
- {
148
- "id": "Scene_13_S13T4_C4_AS_S13T4_1-12-12-28_chunk_5__event_008_8",
149
- "video": "Scene_13_S13T4_C4_AS_S13T4_1-12-12-28_chunk_5__event_008_8.mp4",
150
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
151
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
152
- },
153
- {
154
- "id": "Scene_13_S13T4_C4_AS_S13T4_1-12-12-28_chunk_6__event_001_1",
155
- "video": "Scene_13_S13T4_C4_AS_S13T4_1-12-12-28_chunk_6__event_001_1.mp4",
156
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
157
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
158
- },
159
- {
160
- "id": "Scene_13_S13T4_C5_AS_S13T4_00-58-12-14_chunk_5__event_004_4",
161
- "video": "Scene_13_S13T4_C5_AS_S13T4_00-58-12-14_chunk_5__event_004_4.mp4",
162
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
163
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
164
- },
165
- {
166
- "id": "Scene_13_S13T4_C6_AS_S13T4_00-43-11-59_chunk_1__event_004_4",
167
- "video": "Scene_13_S13T4_C6_AS_S13T4_00-43-11-59_chunk_1__event_004_4.mp4",
168
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
169
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
170
- },
171
- {
172
- "id": "Scene_13_S13T4_C6_AS_S13T4_00-43-11-59_chunk_5__event_004_4",
173
- "video": "Scene_13_S13T4_C6_AS_S13T4_00-43-11-59_chunk_5__event_004_4.mp4",
174
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
175
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
176
- },
177
- {
178
- "id": "Scene_13_S13T4_C6_AS_S13T4_00-43-11-59_chunk_6__event_001_1",
179
- "video": "Scene_13_S13T4_C6_AS_S13T4_00-43-11-59_chunk_6__event_001_1.mp4",
180
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
181
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
182
- },
183
- {
184
- "id": "Scene_13_S13T5_C2_AS_S13T5_0-51-11-39_chunk_5__event_004_4",
185
- "video": "Scene_13_S13T5_C2_AS_S13T5_0-51-11-39_chunk_5__event_004_4.mp4",
186
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
187
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
188
- },
189
- {
190
- "id": "Scene_13_S13T5_C3_AS_S13T5_0-53-11-38_chunk_5__event_004_4",
191
- "video": "Scene_13_S13T5_C3_AS_S13T5_0-53-11-38_chunk_5__event_004_4.mp4",
192
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
193
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
194
- },
195
- {
196
- "id": "Scene_13_S13T5_C4_AS_S13T5_0-53-11-39_chunk_5__event_004_4",
197
- "video": "Scene_13_S13T5_C4_AS_S13T5_0-53-11-39_chunk_5__event_004_4.mp4",
198
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
199
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
200
- },
201
- {
202
- "id": "Scene_13_S13T5_C6_AS_S13T5_00-29-11-15_chunk_5__event_003_3",
203
- "video": "Scene_13_S13T5_C6_AS_S13T5_00-29-11-15_chunk_5__event_003_3.mp4",
204
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
205
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
206
- },
207
- {
208
- "id": "Scene_4_S4T4_C2_CV_S4T4_00-54-10-48_chunk_5__event_001_1",
209
- "video": "Scene_4_S4T4_C2_CV_S4T4_00-54-10-48_chunk_5__event_001_1.mp4",
210
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
211
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
212
- },
213
- {
214
- "id": "Scene_4_S4T4_C4_CS_S4T4_00-54-10-48_chunk_4__event_003_3",
215
- "video": "Scene_4_S4T4_C4_CS_S4T4_00-54-10-48_chunk_4__event_003_3.mp4",
216
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
217
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
218
- },
219
- {
220
- "id": "Scene_4_S4T4_C6_CS_S4T4_00-54-10-48_chunk_1__event_004_4",
221
- "video": "Scene_4_S4T4_C6_CS_S4T4_00-54-10-48_chunk_1__event_004_4.mp4",
222
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
223
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
224
- },
225
- {
226
- "id": "Scene_4_S4T4_C6_CS_S4T4_00-54-10-48_chunk_5__event_002_2",
227
- "video": "Scene_4_S4T4_C6_CS_S4T4_00-54-10-48_chunk_5__event_002_2.mp4",
228
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
229
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
230
- },
231
- {
232
- "id": "scene_01_01_00-00-00_to_00-07-34_GoPro1_Calibration_with_people_walking_around_06-26",
233
- "video": "scene_01_01_00-00-00_to_00-07-34_GoPro1_Calibration_with_people_walking_around_06-26.mp4",
234
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
235
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
236
- },
237
- {
238
- "id": "scene_02_01_00-07-34_to_00-11-38_GoPro1_Forklifts_being_moved_out_of_the_way_06-26",
239
- "video": "scene_02_01_00-07-34_to_00-11-38_GoPro1_Forklifts_being_moved_out_of_the_way_06-26.mp4",
240
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
241
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
242
- },
243
- {
244
- "id": "scene_04_01_00-11-38_to_00-19-46_GoPro1_Forklift_entering_the_aisle_no_pedestrians_around_06-26",
245
- "video": "scene_04_01_00-11-38_to_00-19-46_GoPro1_Forklift_entering_the_aisle_no_pedestrians_around_06-26.mp4",
246
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
247
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
248
- },
249
- {
250
- "id": "scene_05_01_00-19-46_to_00-21-03_GoPro1_Fork_Lift_crossing_people_crossing_afterwards_06-26",
251
- "video": "scene_05_01_00-19-46_to_00-21-03_GoPro1_Fork_Lift_crossing_people_crossing_afterwards_06-26.mp4",
252
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
253
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
254
- },
255
- {
256
- "id": "scene_06_01_00-21-03_to_00-23-52_GoPro1_Fork_Lift_crossing_people_following_the_forklift_06-26",
257
- "video": "scene_06_01_00-21-03_to_00-23-52_GoPro1_Fork_Lift_crossing_people_following_the_forklift_06-26.mp4",
258
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
259
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
260
- },
261
- {
262
- "id": "scene_28_01_00-15-25_to_00-27-58_GoPro1_boxes_falling_04-22",
263
- "video": "scene_28_01_00-15-25_to_00-27-58_GoPro1_boxes_falling_04-22.mp4",
264
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
265
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
266
- },
267
- {
268
- "id": "scene_29_01_00-01-07_to_00-10-18_GoPro1_driver_picks_up_trash_00-50",
269
- "video": "scene_29_01_00-01-07_to_00-10-18_GoPro1_driver_picks_up_trash_00-50.mp4",
270
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
271
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
272
- },
273
- {
274
- "id": "scene_29_01_00-09-27_to_00-12-53_GoPro1_driver_picks_up_trash_00-20",
275
- "video": "scene_29_01_00-09-27_to_00-12-53_GoPro1_driver_picks_up_trash_00-20.mp4",
276
- "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
277
- "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
278
- }
279
- ]
280
- }
 
1
+ [
2
+ {
3
+ "id": "scene_07_01_00-23-52_to_00-25-33_GoPro1_Fork_Lift_stopped_while_person_crossing_the_isle_08-22",
4
+ "video": "scene_07_01_00-23-52_to_00-25-33_GoPro1_Fork_Lift_stopped_while_person_crossing_the_isle_08-22.mp4",
5
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
6
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
7
+ },
8
+ {
9
+ "id": "scene_08_01_00-00-46_to_00-02-20_GoPro1_Fork_Lift_crossing_while_person_running_in_front_of_it_01-15",
10
+ "video": "scene_08_01_00-00-46_to_00-02-20_GoPro1_Fork_Lift_crossing_while_person_running_in_front_of_it_01-15.mp4",
11
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
12
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
13
+ },
14
+ {
15
+ "id": "scene_08_02_00-02-20_to_00-04-56_GoPro1_Fork_Lift_crossing_while_person_running_in_front_of_it_08-22",
16
+ "video": "scene_08_02_00-02-20_to_00-04-56_GoPro1_Fork_Lift_crossing_while_person_running_in_front_of_it_08-22.mp4",
17
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
18
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
19
+ },
20
+ {
21
+ "id": "scene_08_03_00-04-56_to_00-08-15_GoPro1_Fork_Lift_crossing_while_person_running_in_front_of_it_04-18",
22
+ "video": "scene_08_03_00-04-56_to_00-08-15_GoPro1_Fork_Lift_crossing_while_person_running_in_front_of_it_04-18.mp4",
23
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
24
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
25
+ },
26
+ {
27
+ "id": "scene_09_01_00-08-15_to_00-10-22_GoPro1_Fork_Lift_moving_while_person_on_the_phone_crossing_the_isle_06-20",
28
+ "video": "scene_09_01_00-08-15_to_00-10-22_GoPro1_Fork_Lift_moving_while_person_on_the_phone_crossing_the_isle_06-20.mp4",
29
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
30
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
31
+ },
32
+ {
33
+ "id": "scene_10_01_00-10-22_to_00-13-12_GoPro1_Fork_Lift_moving_while_person_crossing_the_isle_06-20",
34
+ "video": "scene_10_01_00-10-22_to_00-13-12_GoPro1_Fork_Lift_moving_while_person_crossing_the_isle_06-20.mp4",
35
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
36
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
37
+ },
38
+ {
39
+ "id": "scene_11_01_00-13-12_to_00-16-16_GoPro1_Fork_Lift_moving_while_multiple_people_in_the_scene_04-22",
40
+ "video": "scene_11_01_00-13-12_to_00-16-16_GoPro1_Fork_Lift_moving_while_multiple_people_in_the_scene_04-22.mp4",
41
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
42
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
43
+ },
44
+ {
45
+ "id": "scene_12_01_00-16-16_to_00-17-31_GoPro1_Fork_Lift_moving_while_person_walking_behind_the_forklift_06-20",
46
+ "video": "scene_12_01_00-16-16_to_00-17-31_GoPro1_Fork_Lift_moving_while_person_walking_behind_the_forklift_06-20.mp4",
47
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
48
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
49
+ },
50
+ {
51
+ "id": "scene_12_02_00-17-31_to_00-19-50_GoPro1_Fork_Lift_moving_while_person_walking_behind_the_forklift_02-16",
52
+ "video": "scene_12_02_00-17-31_to_00-19-50_GoPro1_Fork_Lift_moving_while_person_walking_behind_the_forklift_02-16.mp4",
53
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
54
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
55
+ },
56
+ {
57
+ "id": "scene_14_01_00-19-50_to_00-22-54_GoPro1_Fork_Lift_moving_while_person_walking_behind_the_forklift_04-18",
58
+ "video": "scene_14_01_00-19-50_to_00-22-54_GoPro1_Fork_Lift_moving_while_person_walking_behind_the_forklift_04-18.mp4",
59
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
60
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
61
+ },
62
+ {
63
+ "id": "scene_16_01_00-22-54_to_00-25-38_GoPro1_person_walking_in_front_of_fork_lift_04-48",
64
+ "video": "scene_16_01_00-22-54_to_00-25-38_GoPro1_person_walking_in_front_of_fork_lift_04-48.mp4",
65
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
66
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
67
+ },
68
+ {
69
+ "id": "scene_17_01_00-25-38_to_00-27-32_GoPro1_person_running_in_front_of_fork_lift_02-16",
70
+ "video": "scene_17_01_00-25-38_to_00-27-32_GoPro1_person_running_in_front_of_fork_lift_02-16.mp4",
71
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
72
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
73
+ },
74
+ {
75
+ "id": "scene_17_02_00-27-32_to_00-30-55_GoPro1_person_running_in_front_of_fork_lift_02-26",
76
+ "video": "scene_17_02_00-27-32_to_00-30-55_GoPro1_person_running_in_front_of_fork_lift_02-26.mp4",
77
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
78
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
79
+ },
80
+ {
81
+ "id": "scene_18_01_00-30-55_to_00-33-57_GoPro1_person_jumping_to_not_get_hit_by_the_forklift_00-20",
82
+ "video": "scene_18_01_00-30-55_to_00-33-57_GoPro1_person_jumping_to_not_get_hit_by_the_forklift_00-20.mp4",
83
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
84
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
85
+ },
86
+ {
87
+ "id": "scene_19_01_00-33-57_to_00-35-41_GoPro1_fork_lift_moving_backwards_person_cutting_in_front_of_the_fo_04-24",
88
+ "video": "scene_19_01_00-33-57_to_00-35-41_GoPro1_fork_lift_moving_backwards_person_cutting_in_front_of_the_fo_04-24.mp4",
89
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
90
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
91
+ },
92
+ {
93
+ "id": "scene_20_01_00-35-41_to_00-37-23_GoPro1_fork_lift_going_backwards_person_running_passed_04-22",
94
+ "video": "scene_20_01_00-35-41_to_00-37-23_GoPro1_fork_lift_going_backwards_person_running_passed_04-22.mp4",
95
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
96
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
97
+ },
98
+ {
99
+ "id": "scene_21_01_00-37-23_to_00-39-30_GoPro1_fork_lift_going_backwards_person_stops_06-24",
100
+ "video": "scene_21_01_00-37-23_to_00-39-30_GoPro1_fork_lift_going_backwards_person_stops_06-24.mp4",
101
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
102
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
103
+ },
104
+ {
105
+ "id": "scene_22_01_00-39-30_to_00-45-36_GoPro1_fork_lift_moving_person_hesitating_and_stepping_back_01-20",
106
+ "video": "scene_22_01_00-39-30_to_00-45-36_GoPro1_fork_lift_moving_person_hesitating_and_stepping_back_01-20.mp4",
107
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
108
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
109
+ },
110
+ {
111
+ "id": "scene_23_01_00-45-36_to_00-49-03_GoPro1_boxes_blocking_the_view_of_the_driver_and_person_crossing_06-26",
112
+ "video": "scene_23_01_00-45-36_to_00-49-03_GoPro1_boxes_blocking_the_view_of_the_driver_and_person_crossing_06-26.mp4",
113
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
114
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
115
+ },
116
+ {
117
+ "id": "scene_25_01_00-02-02_to_00-05-05_GoPro1_person_working_on_boxes_while_fork_lift_approaches_06-30",
118
+ "video": "scene_25_01_00-02-02_to_00-05-05_GoPro1_person_working_on_boxes_while_fork_lift_approaches_06-30.mp4",
119
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
120
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
121
+ },
122
+ {
123
+ "id": "scene_26_01_00-05-05_to_00-08-50_GoPro1_same_as_above_person_jumping_05-24",
124
+ "video": "scene_26_01_00-05-05_to_00-08-50_GoPro1_same_as_above_person_jumping_05-24.mp4",
125
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
126
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
127
+ },
128
+ {
129
+ "id": "scene_27_01_00-08-50_to_00-15-25_GoPro1_person_bending_down_fork_lift_moving_forward_10-30",
130
+ "video": "scene_27_01_00-08-50_to_00-15-25_GoPro1_person_bending_down_fork_lift_moving_forward_10-30.mp4",
131
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
132
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
133
+ },
134
+ {
135
+ "id": "Scene_13_S13T1_C2_CS_S13T1_1-12-11-59_chunk_5__event_005_5",
136
+ "video": "Scene_13_S13T1_C2_CS_S13T1_1-12-11-59_chunk_5__event_005_5.mp4",
137
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
138
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
139
+ },
140
+ {
141
+ "id": "Scene_13_S13T3_C5_AS_S13T3_01-18-12-10_chunk_2__event_001_1",
142
+ "video": "Scene_13_S13T3_C5_AS_S13T3_01-18-12-10_chunk_2__event_001_1.mp4",
143
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
144
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
145
+ },
146
+ {
147
+ "id": "Scene_13_S13T4_C4_AS_S13T4_1-12-12-28_chunk_5__event_008_8",
148
+ "video": "Scene_13_S13T4_C4_AS_S13T4_1-12-12-28_chunk_5__event_008_8.mp4",
149
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
150
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
151
+ },
152
+ {
153
+ "id": "Scene_13_S13T4_C4_AS_S13T4_1-12-12-28_chunk_6__event_001_1",
154
+ "video": "Scene_13_S13T4_C4_AS_S13T4_1-12-12-28_chunk_6__event_001_1.mp4",
155
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
156
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
157
+ },
158
+ {
159
+ "id": "Scene_13_S13T4_C5_AS_S13T4_00-58-12-14_chunk_5__event_004_4",
160
+ "video": "Scene_13_S13T4_C5_AS_S13T4_00-58-12-14_chunk_5__event_004_4.mp4",
161
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
162
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
163
+ },
164
+ {
165
+ "id": "Scene_13_S13T4_C6_AS_S13T4_00-43-11-59_chunk_1__event_004_4",
166
+ "video": "Scene_13_S13T4_C6_AS_S13T4_00-43-11-59_chunk_1__event_004_4.mp4",
167
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
168
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
169
+ },
170
+ {
171
+ "id": "Scene_13_S13T4_C6_AS_S13T4_00-43-11-59_chunk_5__event_004_4",
172
+ "video": "Scene_13_S13T4_C6_AS_S13T4_00-43-11-59_chunk_5__event_004_4.mp4",
173
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
174
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
175
+ },
176
+ {
177
+ "id": "Scene_13_S13T4_C6_AS_S13T4_00-43-11-59_chunk_6__event_001_1",
178
+ "video": "Scene_13_S13T4_C6_AS_S13T4_00-43-11-59_chunk_6__event_001_1.mp4",
179
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
180
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
181
+ },
182
+ {
183
+ "id": "Scene_13_S13T5_C2_AS_S13T5_0-51-11-39_chunk_5__event_004_4",
184
+ "video": "Scene_13_S13T5_C2_AS_S13T5_0-51-11-39_chunk_5__event_004_4.mp4",
185
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
186
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
187
+ },
188
+ {
189
+ "id": "Scene_13_S13T5_C3_AS_S13T5_0-53-11-38_chunk_5__event_004_4",
190
+ "video": "Scene_13_S13T5_C3_AS_S13T5_0-53-11-38_chunk_5__event_004_4.mp4",
191
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
192
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
193
+ },
194
+ {
195
+ "id": "Scene_13_S13T5_C4_AS_S13T5_0-53-11-39_chunk_5__event_004_4",
196
+ "video": "Scene_13_S13T5_C4_AS_S13T5_0-53-11-39_chunk_5__event_004_4.mp4",
197
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
198
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
199
+ },
200
+ {
201
+ "id": "Scene_13_S13T5_C6_AS_S13T5_00-29-11-15_chunk_5__event_003_3",
202
+ "video": "Scene_13_S13T5_C6_AS_S13T5_00-29-11-15_chunk_5__event_003_3.mp4",
203
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
204
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
205
+ },
206
+ {
207
+ "id": "Scene_4_S4T4_C2_CV_S4T4_00-54-10-48_chunk_5__event_001_1",
208
+ "video": "Scene_4_S4T4_C2_CV_S4T4_00-54-10-48_chunk_5__event_001_1.mp4",
209
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
210
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
211
+ },
212
+ {
213
+ "id": "Scene_4_S4T4_C4_CS_S4T4_00-54-10-48_chunk_4__event_003_3",
214
+ "video": "Scene_4_S4T4_C4_CS_S4T4_00-54-10-48_chunk_4__event_003_3.mp4",
215
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
216
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
217
+ },
218
+ {
219
+ "id": "Scene_4_S4T4_C6_CS_S4T4_00-54-10-48_chunk_1__event_004_4",
220
+ "video": "Scene_4_S4T4_C6_CS_S4T4_00-54-10-48_chunk_1__event_004_4.mp4",
221
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
222
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
223
+ },
224
+ {
225
+ "id": "Scene_4_S4T4_C6_CS_S4T4_00-54-10-48_chunk_5__event_002_2",
226
+ "video": "Scene_4_S4T4_C6_CS_S4T4_00-54-10-48_chunk_5__event_002_2.mp4",
227
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
228
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
229
+ },
230
+ {
231
+ "id": "scene_01_01_00-00-00_to_00-07-34_GoPro1_Calibration_with_people_walking_around_06-26",
232
+ "video": "scene_01_01_00-00-00_to_00-07-34_GoPro1_Calibration_with_people_walking_around_06-26.mp4",
233
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
234
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
235
+ },
236
+ {
237
+ "id": "scene_02_01_00-07-34_to_00-11-38_GoPro1_Forklifts_being_moved_out_of_the_way_06-26",
238
+ "video": "scene_02_01_00-07-34_to_00-11-38_GoPro1_Forklifts_being_moved_out_of_the_way_06-26.mp4",
239
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
240
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
241
+ },
242
+ {
243
+ "id": "scene_04_01_00-11-38_to_00-19-46_GoPro1_Forklift_entering_the_aisle_no_pedestrians_around_06-26",
244
+ "video": "scene_04_01_00-11-38_to_00-19-46_GoPro1_Forklift_entering_the_aisle_no_pedestrians_around_06-26.mp4",
245
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
246
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
247
+ },
248
+ {
249
+ "id": "scene_05_01_00-19-46_to_00-21-03_GoPro1_Fork_Lift_crossing_people_crossing_afterwards_06-26",
250
+ "video": "scene_05_01_00-19-46_to_00-21-03_GoPro1_Fork_Lift_crossing_people_crossing_afterwards_06-26.mp4",
251
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
252
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
253
+ },
254
+ {
255
+ "id": "scene_06_01_00-21-03_to_00-23-52_GoPro1_Fork_Lift_crossing_people_following_the_forklift_06-26",
256
+ "video": "scene_06_01_00-21-03_to_00-23-52_GoPro1_Fork_Lift_crossing_people_following_the_forklift_06-26.mp4",
257
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
258
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
259
+ },
260
+ {
261
+ "id": "scene_28_01_00-15-25_to_00-27-58_GoPro1_boxes_falling_04-22",
262
+ "video": "scene_28_01_00-15-25_to_00-27-58_GoPro1_boxes_falling_04-22.mp4",
263
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
264
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
265
+ },
266
+ {
267
+ "id": "scene_29_01_00-01-07_to_00-10-18_GoPro1_driver_picks_up_trash_00-50",
268
+ "video": "scene_29_01_00-01-07_to_00-10-18_GoPro1_driver_picks_up_trash_00-50.mp4",
269
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
270
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
271
+ },
272
+ {
273
+ "id": "scene_29_01_00-09-27_to_00-12-53_GoPro1_driver_picks_up_trash_00-20",
274
+ "video": "scene_29_01_00-09-27_to_00-12-53_GoPro1_driver_picks_up_trash_00-20.mp4",
275
+ "system_prompt": "You are an industrial safety analyst reviewing warehouse video. Determine whether the clip depicts a near-miss collision between a person and a forklift (or other powered vehicle). Answer Yes or No.",
276
+ "question": "Please tell whether the video contains near-miss collision between person and forklift. Your final answer should be either Yes or No."
277
+ }
278
+ ]
 
 
data/pointing/VANTAGE_2DPointing.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/pointing/VANTAGE_2DPointing.tsv DELETED
The diff for this file is too large to render. See raw diff