woollard commited on
Commit
6545e54
·
verified ·
1 Parent(s): 30a1a25

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +71 -22
README.md CHANGED
@@ -28,19 +28,25 @@ size_categories:
28
 
29
  # EvenFlow Benchmark Dataset
30
 
31
- EvenFlow is a shared-space navigation evaluation suite built from real-world human trajectory data.
32
 
33
  Most benchmarks evaluate whether an agent can navigate *around* people.
34
- EvenFlow evaluates whether an agent can navigate *with* them.
35
 
36
- This repository contains the benchmark data used to construct executable navigation tasks:
37
- - layouts
38
- - scenes
39
- - tasks
40
- - human trajectory tracks
41
 
42
- Code and evaluation tools are available at:
43
- https://github.com/standard-ai/evenflow-benchmark
 
 
 
 
 
 
 
 
 
 
44
 
45
  ---
46
 
@@ -48,41 +54,84 @@ https://github.com/standard-ai/evenflow-benchmark
48
 
49
  ```
50
  benchmark/
51
- layouts/
52
  aligned_flow/
 
 
 
53
  cross_flow/
 
 
 
54
  interaction_constrained/
 
 
 
55
  ```
56
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
57
  ---
58
 
59
  ## Responsible AI Considerations
60
 
61
  ### Data Collection
 
62
  Data was collected in real-world environments using overhead camera systems.
63
- Only anonymized trajectory data is released.
64
 
65
  ### Privacy
66
- No raw video, biometric identifiers, or personally identifiable information are included.
 
 
 
 
 
67
 
68
  ### Intended Use
69
- This dataset is intended for research on:
70
- - navigation in human environments
71
- - multi-agent coordination
72
- - trajectory-based evaluation
 
 
 
73
 
74
  ### Limitations
75
- - Single-site data collection
76
- - No demographic attributes
77
- - Offline evaluation setting
 
 
 
78
 
79
  ---
80
 
81
  ## License
82
 
83
- This dataset is released under a custom license.
84
 
85
- - Free for research and non-commercial use
86
  - Commercial use requires a separate agreement
87
 
88
- See LICENSE for details.
 
28
 
29
  # EvenFlow Benchmark Dataset
30
 
31
+ EvenFlow is an evaluation suite for shared-space navigation, built from real-world human trajectory data.
32
 
33
  Most benchmarks evaluate whether an agent can navigate *around* people.
34
+ **EvenFlow evaluates whether an agent can navigate *with* them.**
35
 
36
+ It converts real-world human trajectories into executable navigation tasks, enabling evaluation of **coordination, timing, and interaction—not just collision avoidance**.
 
 
 
 
37
 
38
+ ---
39
+
40
+ ## What This Dataset Provides
41
+
42
+ The dataset consists of:
43
+
44
+ - **Layouts**: static environment geometry
45
+ - **Scenes**: human trajectory data over time
46
+ - **Tasks**: executable navigation problems derived from real behavior
47
+ - **Tracks**: time-indexed human trajectories
48
+
49
+ These components are structured to support **trajectory-level evaluation of navigation planners**.
50
 
51
  ---
52
 
 
54
 
55
  ```
56
  benchmark/
 
57
  aligned_flow/
58
+ tasks/
59
+ scenes/
60
+ layouts/
61
  cross_flow/
62
+ tasks/
63
+ scenes/
64
+ layouts/
65
  interaction_constrained/
66
+ tasks/
67
+ scenes/
68
+ layouts/
69
  ```
70
 
71
+ Each scenario family captures a different navigation regime:
72
+
73
+ - **Aligned Flow**: motion aligned with surrounding traffic
74
+ - **Cross Flow**: traversal across moving streams
75
+ - **Interaction-Constrained**: navigation shaped by local human interactions
76
+
77
+ ---
78
+
79
+ ## How to Use This Dataset
80
+
81
+ EvenFlow is designed for **executable evaluation**, not just analysis.
82
+
83
+ Typical workflow:
84
+
85
+ 1. Load a task (`task.json`)
86
+ 2. Resolve its scene and associated human trajectories
87
+ 3. Run a planner to generate a **time-parameterized trajectory**
88
+ 4. Evaluate the result using EvenFlow metrics
89
+
90
+ Code and evaluation tools:
91
+
92
+ 👉 https://github.com/standard-ai/evenflow-benchmark
93
+
94
  ---
95
 
96
  ## Responsible AI Considerations
97
 
98
  ### Data Collection
99
+
100
  Data was collected in real-world environments using overhead camera systems.
101
+ The dataset reflects naturally occurring human behavior in shared spaces.
102
 
103
  ### Privacy
104
+
105
+ - No raw video is released
106
+ - No biometric identifiers are included
107
+ - No personally identifiable information (PII) is present
108
+
109
+ All released data consists of anonymized trajectory representations.
110
 
111
  ### Intended Use
112
+
113
+ This dataset is intended for research in:
114
+
115
+ - robot navigation in human environments
116
+ - multi-agent coordination
117
+ - trajectory-based evaluation
118
+ - human-aware motion planning
119
 
120
  ### Limitations
121
+
122
+ - Data is collected from a **single physical environment (v1 release)**
123
+ - No demographic or identity-related attributes are included
124
+ - Evaluation is performed **offline (no closed-loop interaction)**
125
+
126
+ We view this dataset as a foundation for broader multi-environment and interactive benchmarks.
127
 
128
  ---
129
 
130
  ## License
131
 
132
+ This dataset is released under a custom research license.
133
 
134
+ - Free for research and academic use
135
  - Commercial use requires a separate agreement
136
 
137
+ See the LICENSE file for full terms.