HazeLocus commited on
Commit
3130aee
·
verified ·
1 Parent(s): 1f95804

Release frozen ISETrace memory query corpus

Browse files
.gitattributes CHANGED
@@ -58,3 +58,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
61
+ query-authoring/isetrace-v7-raw.jsonl filter=lfs diff=lfs merge=lfs -text
LICENSE ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ISETrace Memory Query Corpus - License
2
+ ======================================
3
+
4
+ This derived memory-query corpus is released under the Creative Commons
5
+ Attribution 4.0 International License (CC BY 4.0).
6
+
7
+ You are free to:
8
+ - Share - copy and redistribute the material in any medium or format
9
+ - Adapt - remix, transform, and build upon the material for any purpose,
10
+ even commercially
11
+
12
+ Under the following terms:
13
+ - Attribution - You must give appropriate credit, provide a link to the
14
+ license, and indicate if changes were made.
15
+
16
+ Full license text: https://creativecommons.org/licenses/by/4.0/legalcode
17
+ Human-readable summary: https://creativecommons.org/licenses/by/4.0/
18
+
19
+ UPSTREAM ATTRIBUTION
20
+ --------------------
21
+
22
+ The query texts and exact-quote annotations contain derived excerpts from the
23
+ ISETrace trajectories distributed at:
24
+
25
+ https://huggingface.co/datasets/valiere/ISETrace
26
+ Revision: e40e04d41c04e4eb4bae181ebdd41b61c688081b
27
+
28
+ ISETrace is also released under CC BY 4.0. Users of this derived corpus must
29
+ retain appropriate attribution to the upstream dataset and indicate that the
30
+ memory queries and annotations are derived material.
31
+
32
+ @misc{isetrace2026,
33
+ title = {From Intent to Trajectory: Execution-Grounded Multi-Turn
34
+ Data Synthesis for OS Agents},
35
+ author = {Valiere01},
36
+ year = {2026},
37
+ howpublished = {https://github.com/Valiere01/ISE-Trace}
38
+ }
README.md ADDED
@@ -0,0 +1,141 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: ISETrace Memory Query Corpus
3
+ license: cc-by-4.0
4
+ language:
5
+ - en
6
+ size_categories:
7
+ - 1K<n<10K
8
+ task_categories:
9
+ - question-answering
10
+ tags:
11
+ - agent-memory
12
+ - information-retrieval
13
+ - tool-use
14
+ - execution-provenance
15
+ configs:
16
+ - config_name: queries
17
+ data_files:
18
+ - split: full
19
+ path: query-authoring/isetrace-v7-raw.jsonl
20
+ - config_name: metadata
21
+ data_files:
22
+ - split: full
23
+ path: query-authoring/isetrace-v7-raw.jsonl.metadata.jsonl
24
+ ---
25
+
26
+ # ISETrace Memory Query Corpus
27
+
28
+ This repository contains the frozen natural-language memory-query corpus used for exact-span retrieval experiments over [ISETrace](https://huggingface.co/datasets/valiere/ISETrace), an execution-grounded corpus of operating-system agent trajectories.
29
+
30
+ The release contains 6,597 English queries. Each query asks for information recoverable from one trajectory and identifies minimal answer-bearing quotes in stable source sections. Query records and authoring metadata are kept separate so metadata such as query type is not accidentally treated as a retrieval feature.
31
+
32
+ ## Files
33
+
34
+ | File | Records | Description |
35
+ |---|---:|---|
36
+ | `query-authoring/isetrace-v7-raw.jsonl` | 6,597 | Frozen four-field memory-query records |
37
+ | `query-authoring/isetrace-v7-raw.jsonl.metadata.jsonl` | 6,597 | Query-to-trajectory and query-type metadata |
38
+
39
+ The query file has SHA-256 `3add2685ea45525d84ba9ed797d658df2d23c29ae0368699a69c348dea39d7f8`.
40
+ The metadata file has SHA-256 `30db73bda691d68c6e62495c52d08854ef2007a8a035d0f3e85e128b874c28a0`.
41
+
42
+ ## Query schema
43
+
44
+ Each line in `isetrace-v7-raw.jsonl` has exactly four fields:
45
+
46
+ ```json
47
+ {
48
+ "id": "query:...",
49
+ "text": "[I1 | user_intent]...\n\n[A1 | tool_call | ...]...\n\n[E1 | tool_output | ...]...",
50
+ "query": "What information should be recovered from this execution?",
51
+ "gold": [
52
+ {
53
+ "source": "E1",
54
+ "quote": "an exact answer-bearing substring"
55
+ }
56
+ ]
57
+ }
58
+ ```
59
+
60
+ `I*` identifies a user-intent section, `A*` a tool-call argument section, and `E*` a tool-output section. Every gold quote occurs exactly once in its named source section. Downstream preparation resolves these quotes to exact character spans in the corresponding ISETrace trajectory.
61
+
62
+ ## Metadata schema
63
+
64
+ Each aligned metadata line contains:
65
+
66
+ ```json
67
+ {
68
+ "query_id": "query:...",
69
+ "task_key": "T-...",
70
+ "trajectory_id": "traj_...",
71
+ "memory_mode": "linked_recall"
72
+ }
73
+ ```
74
+
75
+ The frozen corpus contains 2,134 `direct_recall`, 3,004 `linked_recall`, and 1,459 `multi_fact_recall` records. `memory_mode` supports audit and grouped reporting; it is not a retrieval feature or relevance label.
76
+
77
+ ## Source data and split construction
78
+
79
+ The source trajectories are the `trajectories` configuration of:
80
+
81
+ - Repository: `valiere/ISETrace`
82
+ - Revision: `e40e04d41c04e4eb4bae181ebdd41b61c688081b`
83
+ - License: CC BY 4.0
84
+
85
+ The query corpus is intentionally released as one `full` split. The experiment code assigns whole trajectories, never individual queries, using split seed 13. The frozen full-profile allocation contains:
86
+
87
+ | Experiment split | Trajectories | Queries |
88
+ |---|---:|---:|
89
+ | train | 2,410 | 3,894 |
90
+ | validation | 352 | 580 |
91
+ | test | 1,207 | 2,000 |
92
+
93
+ This trajectory-level assignment prevents a trajectory from appearing in more than one experiment split. The remaining authored records belong to trajectories outside the fixed allocation.
94
+
95
+ ## Loading
96
+
97
+ ```python
98
+ from datasets import load_dataset
99
+
100
+ queries = load_dataset(
101
+ "HazeLocus/ISETrace-Memory-Queries",
102
+ "queries",
103
+ split="full",
104
+ )
105
+ metadata = load_dataset(
106
+ "HazeLocus/ISETrace-Memory-Queries",
107
+ "metadata",
108
+ split="full",
109
+ )
110
+ trajectories = load_dataset(
111
+ "valiere/ISETrace",
112
+ "trajectories",
113
+ split="train",
114
+ revision="e40e04d41c04e4eb4bae181ebdd41b61c688081b",
115
+ )
116
+ ```
117
+
118
+ The accompanying experiment code downloads both repositories automatically at their pinned revisions when the expected local files are absent.
119
+
120
+ ## Construction and validation
121
+
122
+ Queries were authored by a language model from bounded source packets selected from complete trajectories. Local validation enforces structured output, valid and unique source handles, exact quote grounding, unique query IDs, and exact alignment between query and metadata IDs.
123
+
124
+ A stratified sample of 500 queries underwent dual-model review, adjudication, and complete human validation. The full 6,597-query corpus was not independently human re-annotated. Users should account for possible query-type noise, lexical cues from authoring, and omitted alternative evidence. This release is a frozen research artifact rather than a claim that every query is human-verified.
125
+
126
+ ## Intended use
127
+
128
+ The corpus supports research on retrieval from completed tool-use trajectories, particularly exact-span evidence recovery under fixed context budgets. It does not evaluate online memory updates, cross-session memory, or agent-to-agent communication. ISETrace personas are synthetic; execution paths and command outputs are preserved from the upstream execution-grounded dataset.
129
+
130
+ ## License and attribution
131
+
132
+ This derived corpus includes excerpts from ISETrace and is released under CC BY 4.0. Users must attribute the upstream ISETrace dataset and indicate that memory queries and exact-quote annotations are derived material.
133
+
134
+ ```bibtex
135
+ @misc{isetrace2026,
136
+ title = {From Intent to Trajectory: Execution-Grounded Multi-Turn Data Synthesis for OS Agents},
137
+ author = {Valiere01},
138
+ year = {2026},
139
+ howpublished = {\url{https://github.com/Valiere01/ISE-Trace}}
140
+ }
141
+ ```
query-authoring/isetrace-v7-raw.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3add2685ea45525d84ba9ed797d658df2d23c29ae0368699a69c348dea39d7f8
3
+ size 80404003
query-authoring/isetrace-v7-raw.jsonl.metadata.jsonl ADDED
The diff for this file is too large to render. See raw diff