kartoun commited on
Commit
18b79c3
·
verified ·
1 Parent(s): 370587b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +43 -52
README.md CHANGED
@@ -38,8 +38,6 @@ A reproducible, decision-theoretic benchmark where each episode logs (i) calibra
38
 
39
  ## Files in this dataset
40
 
41
- This repository contains the following primary artifacts:
42
-
43
  - **`mixed_initiative_traces.csv`**
44
  Main tabular dataset. Each row corresponds to one mixed-initiative decision episode.
45
 
@@ -64,18 +62,18 @@ This dataset enables benchmarking of decision policies, calibrated uncertainty m
64
 
65
  ## Concept-to-data mapping (Figures 1–7)
66
 
67
- The original CHI’99 paper presents UI sketches and analytic models. This dataset provides data-driven analogs:
68
 
69
  - **Fig 1 — Manual invocation**
70
- Manual inspection and explicit invocation signals
71
  (`manual_hover_inspect`, `manual_click_invoke`)
72
 
73
  - **Fig 2 — Explicit social agent**
74
- Dialog confirmation and refinement flow
75
  (`dialog_confirmed`, `refine_after_accept`)
76
 
77
  - **Fig 3 — Automated scoping**
78
- Scoped actions selected under uncertainty
79
  (`agent_action = scope`)
80
 
81
  - **Fig 4 — Action vs no-action threshold**
@@ -85,10 +83,11 @@ The original CHI’99 paper presents UI sketches and analytic models. This datas
85
  Threshold changes under attention and urgency
86
 
87
  - **Fig 6 — Dialog as a second option**
88
- Three-way EU comparison (no_action / dialog / action)
89
 
90
  - **Fig 7 — Dwell time vs message length**
91
- Sigmoid attention model linking `message_length_bytes` and `dwell_time_sec`
 
92
 
93
  ---
94
 
@@ -96,36 +95,21 @@ The original CHI’99 paper presents UI sketches and analytic models. This datas
96
 
97
  Each episode is generated as follows:
98
 
99
- 1. **Latent evidence calibrated posterior**
100
- Sample `evidence_score`, compute `p_true`, and sample `true_goal`.
101
-
102
- 2. **Reported belief**
103
- Compute `p_model` via logit-space distortion of `p_true`.
104
-
105
- 3. **Context and attention**
106
- Sample urgency and compute readiness from dwell-time dynamics.
107
-
108
- 4. **Decision policy**
109
- Select modality and action by maximizing expected utility and compute analytic thresholds.
110
-
111
- 5. **Outcome realization**
112
- Sample user response and log realized utility.
113
 
114
  ---
115
 
116
  ## Recommended tasks
117
 
118
- 1. **Calibration and uncertainty learning**
119
- Predict `true_goal` and evaluate against `p_true` and `p_model`.
120
-
121
- 2. **Policy learning / imitation learning**
122
- Predict `agent_action` given context and compare to baseline policies.
123
-
124
- 3. **Counterfactual decision analysis**
125
- Re-evaluate decisions using stored utilities and thresholds.
126
-
127
- 4. **Interpretability benchmarks**
128
- Explain decisions using analytic thresholds and EU curves.
129
 
130
  ---
131
 
@@ -136,17 +120,17 @@ Each row represents a **single mixed-initiative decision episode**.
136
  ### Identity
137
 
138
  - **`episode_id`**
139
- Unique episode identifier.
140
 
141
  - **`user_id`**
142
- Synthetic user identifier for repeated-interaction simulation.
143
 
144
  ---
145
 
146
  ### Ground truth and uncertainty
147
 
148
  - **`true_goal`** *(binary)*
149
- Whether the suggested action was truly appropriate.
150
 
151
  - **`p_true`** *(float, 0–1)*
152
  Calibrated posterior probability of correctness.
@@ -162,13 +146,13 @@ Each row represents a **single mixed-initiative decision episode**.
162
  ### Attention and readiness
163
 
164
  - **`message_length_bytes`** *(int)*
165
- Size of candidate interruption message.
166
 
167
  - **`dwell_time_sec`** *(float)*
168
  Simulated dwell time before interruption.
169
 
170
  - **`time_since_focus_sec`** *(float)*
171
- Time since last user engagement.
172
 
173
  - **`not_ready_score`** *(float, 0–1)*
174
  Aggregate interruption cost estimate.
@@ -178,17 +162,17 @@ Each row represents a **single mixed-initiative decision episode**.
178
  ### Context
179
 
180
  - **`urgency_0_1`** *(float, 0–1)*
181
- Urgency level affecting inaction cost.
182
 
183
  ---
184
 
185
  ### Mixed-initiative decision
186
 
187
  - **`lookout_modality`** *(categorical)*
188
- `manual_invocation`, `explicit_agent`, or `auto_scoping`.
189
 
190
  - **`agent_action`** *(categorical)*
191
- `no_action`, `action`, `dialog`, or `scope`.
192
 
193
  ---
194
 
@@ -205,10 +189,10 @@ Each row represents a **single mixed-initiative decision episode**.
205
  ### Dialog and refinement
206
 
207
  - **`dialog_confirmed`** *(binary)*
208
- Dialog acceptance indicator.
209
 
210
  - **`refine_after_accept`** *(binary)*
211
- Post-acceptance refinement request.
212
 
213
  ---
214
 
@@ -218,27 +202,34 @@ Each row represents a **single mixed-initiative decision episode**.
218
  `accept`, `reject`, or `ignore`.
219
 
220
  - **`realized_utility`** *(float)*
221
- Utility actually realized.
222
 
223
  - **`u_baseline_no_action`** *(float)*
224
- Utility under no-action baseline.
225
 
226
  ---
227
 
228
  ### Expected utilities
229
 
230
- - **`eu_no_action`**
231
- - **`eu_action`**
232
- - **`eu_dialog`**
233
- - **`eu_scope`**
 
 
 
 
 
 
234
 
235
- All values represent expected utility under the model.
 
236
 
237
  ---
238
 
239
  ### Analytic decision thresholds
240
 
241
- Minimum belief probability where one action dominates another:
242
 
243
  - **`p_star_noaction_action`**
244
  - **`p_star_noaction_dialog`**
@@ -253,7 +244,7 @@ All thresholds are analytic and derived directly from the utility model.
253
 
254
  ## Quality report
255
 
256
- The file `mixed_initiative_traces.quality_report.txt` documents calibration, sensitivity, and policy comparisons.
257
 
258
  ---
259
 
 
38
 
39
  ## Files in this dataset
40
 
 
 
41
  - **`mixed_initiative_traces.csv`**
42
  Main tabular dataset. Each row corresponds to one mixed-initiative decision episode.
43
 
 
62
 
63
  ## Concept-to-data mapping (Figures 1–7)
64
 
65
+ This dataset provides data-driven analogs to the CHI’99 LookOut concepts:
66
 
67
  - **Fig 1 — Manual invocation**
68
+ Manual inspection and explicit invocation
69
  (`manual_hover_inspect`, `manual_click_invoke`)
70
 
71
  - **Fig 2 — Explicit social agent**
72
+ Dialog confirmation and refinement
73
  (`dialog_confirmed`, `refine_after_accept`)
74
 
75
  - **Fig 3 — Automated scoping**
76
+ Risk-reducing partial actions
77
  (`agent_action = scope`)
78
 
79
  - **Fig 4 — Action vs no-action threshold**
 
83
  Threshold changes under attention and urgency
84
 
85
  - **Fig 6 — Dialog as a second option**
86
+ Three-way expected utility comparison
87
 
88
  - **Fig 7 — Dwell time vs message length**
89
+ Sigmoid attention model
90
+ (`message_length_bytes`, `dwell_time_sec`)
91
 
92
  ---
93
 
 
95
 
96
  Each episode is generated as follows:
97
 
98
+ 1. Sample latent evidence and compute calibrated posterior `p_true`
99
+ 2. Apply belief distortion to obtain `p_model`
100
+ 3. Sample urgency and compute attention/readiness
101
+ 4. Compute expected utilities and analytic thresholds
102
+ 5. Select action via expected-utility maximization
103
+ 6. Sample user response and realized utility
 
 
 
 
 
 
 
 
104
 
105
  ---
106
 
107
  ## Recommended tasks
108
 
109
+ 1. **Calibration and uncertainty learning**
110
+ 2. **Policy learning / imitation learning**
111
+ 3. **Counterfactual decision analysis**
112
+ 4. **Interpretability and explanation benchmarking**
 
 
 
 
 
 
 
113
 
114
  ---
115
 
 
120
  ### Identity
121
 
122
  - **`episode_id`**
123
+ Unique identifier for the episode.
124
 
125
  - **`user_id`**
126
+ Synthetic user identifier used to simulate repeated interactions.
127
 
128
  ---
129
 
130
  ### Ground truth and uncertainty
131
 
132
  - **`true_goal`** *(binary)*
133
+ Whether the suggested action was actually appropriate.
134
 
135
  - **`p_true`** *(float, 0–1)*
136
  Calibrated posterior probability of correctness.
 
146
  ### Attention and readiness
147
 
148
  - **`message_length_bytes`** *(int)*
149
+ Size of the candidate interruption message.
150
 
151
  - **`dwell_time_sec`** *(float)*
152
  Simulated dwell time before interruption.
153
 
154
  - **`time_since_focus_sec`** *(float)*
155
+ Time elapsed since last user engagement.
156
 
157
  - **`not_ready_score`** *(float, 0–1)*
158
  Aggregate interruption cost estimate.
 
162
  ### Context
163
 
164
  - **`urgency_0_1`** *(float, 0–1)*
165
+ Task urgency affecting the cost of inaction.
166
 
167
  ---
168
 
169
  ### Mixed-initiative decision
170
 
171
  - **`lookout_modality`** *(categorical)*
172
+ Interaction mode: `manual_invocation`, `explicit_agent`, or `auto_scoping`.
173
 
174
  - **`agent_action`** *(categorical)*
175
+ Chosen action: `no_action`, `action`, `dialog`, or `scope`.
176
 
177
  ---
178
 
 
189
  ### Dialog and refinement
190
 
191
  - **`dialog_confirmed`** *(binary)*
192
+ User accepted dialog suggestion.
193
 
194
  - **`refine_after_accept`** *(binary)*
195
+ User requested refinement after acceptance.
196
 
197
  ---
198
 
 
202
  `accept`, `reject`, or `ignore`.
203
 
204
  - **`realized_utility`** *(float)*
205
+ Utility actually realized after outcome sampling.
206
 
207
  - **`u_baseline_no_action`** *(float)*
208
+ Utility that would have occurred under no action.
209
 
210
  ---
211
 
212
  ### Expected utilities
213
 
214
+ These fields store the **expected utility values computed at decision time**, before sampling the user response. They are the quantities used by the policy to choose an action.
215
+
216
+ - **`eu_no_action`** *(float)*
217
+ Expected utility of taking **no action**, balancing avoided interruption cost against delay or missed-opportunity cost.
218
+
219
+ - **`eu_action`** *(float)*
220
+ Expected utility of taking the **primary action immediately**, combining benefit, error penalty, and interruption cost.
221
+
222
+ - **`eu_dialog`** *(float)*
223
+ Expected utility of initiating **dialog or clarification**, trading lower risk for a chance to improve correctness.
224
 
225
+ - **`eu_scope`** *(float)*
226
+ Expected utility of taking a **scoped or partial action**, providing reduced risk with partial benefit.
227
 
228
  ---
229
 
230
  ### Analytic decision thresholds
231
 
232
+ Each threshold represents the **minimum belief probability** at which one action dominates another in expected utility.
233
 
234
  - **`p_star_noaction_action`**
235
  - **`p_star_noaction_dialog`**
 
244
 
245
  ## Quality report
246
 
247
+ The file `mixed_initiative_traces.quality_report.txt` documents calibration results, sensitivity checks, and policy comparisons.
248
 
249
  ---
250