danaleee commited on
Commit
b30c649
Β·
verified Β·
1 Parent(s): 79c24d9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +33 -41
README.md CHANGED
@@ -1,7 +1,13 @@
 
 
 
 
 
 
 
1
  # StreamGaze Dataset
2
 
3
- **StreamGaze** is a comprehensive egocentric vision benchmark for evaluating multimodal large language models on temporal gaze-based question answering tasks across past, present, and future contexts.
4
-
5
 
6
  ## πŸ“ Dataset Structure
7
 
@@ -68,27 +74,7 @@ tar -xzf videos_holoassist_original.tar.gz -C videos/holoassist/original/
68
  tar -xzf videos_holoassist_viz.tar.gz -C videos/holoassist/viz/
69
  ```
70
 
71
- ### Load with Python
72
-
73
- ```python
74
- from datasets import load_dataset
75
- import json
76
- import pandas as pd
77
-
78
- # Load dataset
79
- dataset = load_dataset("danaleee/streamgaze_private")
80
-
81
- # Load metadata
82
- egtea_meta = pd.read_csv("metadata/egtea.csv")
83
- egoexo_meta = pd.read_csv("metadata/egoexolearn.csv")
84
- holoassist_meta = pd.read_csv("metadata/holoassist.csv")
85
-
86
- # Load QA data
87
- with open("qa/present_object_identification_easy.json") as f:
88
- qa_data = json.load(f)
89
- ```
90
-
91
- ## πŸ”‘ Metadata Fields
92
 
93
  Each metadata CSV contains:
94
  - `video_source`: Video identifier
@@ -99,36 +85,42 @@ Each metadata CSV contains:
99
  - `other_objects_in_cropped_area`: Objects within FOV
100
  - `other_objects_outside_fov`: Objects outside FOV
101
  - `scene_caption`: Scene description
102
- - `action_caption`: Action description (EgoExoLearn only)
103
 
104
  ## πŸ“ QA Format
105
 
106
  Each QA JSON file contains:
107
  ```json
108
- {
109
- "qa_pairs": [
110
- {
111
- "video_id": "OP01-R01-PastaSalad",
112
- "fixation_id": 5,
113
- "question": "What object is the camera wearer looking at?",
114
- "choices": ["fork", "plate", "pasta", "bowl"],
115
- "answer": "pasta",
116
- "task_type": "present_object_identification_easy"
117
- }
118
- ]
119
- }
 
 
 
 
 
120
  ```
121
 
122
  ## πŸ“„ License
123
 
124
- This dataset is for research purposes only. Please cite our paper if you use this dataset.
 
 
125
 
126
  ## πŸ”— Links
127
 
128
- - **GitHub**: [https://github.com/daeunlee_adobe/StreamGaze](https://github.com/daeunlee_adobe/StreamGaze)
129
- - **Paper**: [Coming soon]
130
 
131
  ## πŸ“§ Contact
132
 
133
- For questions or issues, please contact: daeunlee@adobe.com
134
-
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - question-answering
5
+ language:
6
+ - en
7
+ ---
8
  # StreamGaze Dataset
9
 
10
+ **StreamGaze** is a comprehensive streaming video benchmark for evaluating MLLMs on gaze-based QA tasks across past, present, and future contexts.
 
11
 
12
  ## πŸ“ Dataset Structure
13
 
 
74
  tar -xzf videos_holoassist_viz.tar.gz -C videos/holoassist/viz/
75
  ```
76
 
77
+ ## πŸ”‘ Metadata Format
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
 
79
  Each metadata CSV contains:
80
  - `video_source`: Video identifier
 
85
  - `other_objects_in_cropped_area`: Objects within FOV
86
  - `other_objects_outside_fov`: Objects outside FOV
87
  - `scene_caption`: Scene description
88
+ - `action_caption`: Action description
89
 
90
  ## πŸ“ QA Format
91
 
92
  Each QA JSON file contains:
93
  ```json
94
+ {
95
+ "response_time": "[00:08 - 09:19]",
96
+ "questions": [
97
+ {
98
+ "question": "Among {milk, spoon, pan, phone}, which did the user never gaze at?",
99
+ "time_stamp": "03:14",
100
+ "answer": "A",
101
+ "options": [
102
+ "A. milk",
103
+ "B. spoon",
104
+ "C. pan",
105
+ "D. phone"
106
+ ],
107
+ }
108
+ ],
109
+ "video_path": "OP01-R03-BaconAndEggs.mp4"
110
+ }
111
  ```
112
 
113
  ## πŸ“„ License
114
 
115
+ This dataset is released under the **Creative Commons Attribution 4.0 International (CC BY 4.0)** license.
116
+
117
+ See https://creativecommons.org/licenses/by/4.0/
118
 
119
  ## πŸ”— Links
120
 
121
+ - **Evaluation code**: [https://github.com/daeunni/StreamGaze](https://github.com/daeunni/StreamGaze)
122
+ - **Project page**: [https://streamgaze.github.io/](https://streamgaze.github.io/)
123
 
124
  ## πŸ“§ Contact
125
 
126
+ For questions or issues, please contact: daeun@cs.unc.edu