Novylab commited on
Commit
41aebd2
·
verified ·
1 Parent(s): b6a6d0d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +129 -0
README.md CHANGED
@@ -1,3 +1,132 @@
1
  ---
2
  license: cc-by-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-4.0
3
+ pretty_name: mssense Evaluation Benchmark — Closed-Vocabulary Action Trace Generation
4
+ language:
5
+ - en
6
+ - fr
7
+ task_categories:
8
+ - text-generation
9
+ - text2text-generation
10
+ tags:
11
+ - rpa
12
+ - robotic-process-automation
13
+ - action-trace
14
+ - closed-vocabulary
15
+ - structured-generation
16
+ - workflow
17
+ - benchmark
18
+ - evaluation
19
+ size_categories:
20
+ - 1K<n<10K
21
+ configs:
22
+ - config_name: default
23
+ data_files:
24
+ - split: test
25
+ path: data/mssense_eval_benchmark_v1_1.jsonl
26
  ---
27
+
28
+ # mssense Evaluation Benchmark — Closed-Vocabulary Action Trace Generation
29
+
30
+ > **Canonical version / DOI:** archived on Zenodo at
31
+ > **https://doi.org/10.5281/zenodo.21105006** (CC-BY-4.0). This Hugging Face
32
+ > repository is a distribution mirror — please **cite the Zenodo DOI**.
33
+
34
+ An **evaluation-only** benchmark for closed-vocabulary action trace generation in
35
+ conversational Robotic Process Automation (RPA) authoring. Each sample pairs a
36
+ conversational request with the oracle labels needed to judge whether a generated
37
+ action trace is *executable* against a closed, typed, channel-specific action
38
+ catalogue — not merely schema-valid.
39
+
40
+ - **Version:** 1.1-eval
41
+ - **Samples:** 1865 (1772 seeds + 93 deterministic paraphrastic variants)
42
+ - **Task families (9):** clarification policy, LAT audit, semantic judgment,
43
+ workflow creation, business-rule extraction, visual grounding / governance,
44
+ modification intent, audit, interaction regression
45
+ - **Split:** none — the full file is the evaluation suite
46
+ - **License:** Creative Commons Attribution 4.0 International (CC-BY-4.0)
47
+
48
+ ## Terminology
49
+
50
+ A few names in this benchmark are specific to the platform it originates from.
51
+ They are kept verbatim because they are used throughout the samples and schema
52
+ (for example, in `sample_id` prefixes and `iris_*` field names) and changing them
53
+ would break reproducibility and the dataset's published identity. The acronyms
54
+ are platform-specific; the problems they instantiate are general and
55
+ platform-independent.
56
+
57
+ | Term | Meaning (community-standard concept) |
58
+ |---|---|
59
+ | **action trace** | an ordered sequence of typed, executable actions — the durable artefact the system must produce |
60
+ | **LAT** (*LeBrain Action Trace*) | the platform-specific instance of an action trace used in this benchmark; a list of typed steps. The field `lat_candidate` holds the candidate trace under analysis |
61
+ | **mssense** | the conversational intent-understanding and workflow-validation component evaluated by this benchmark (the *system under test*); also the benchmark's name |
62
+ | **LeBrain** | the automation / intelligence platform (Novelis) that connects applications and automates business processes; it defines the closed action catalogue and executes the traces |
63
+ | **IRIS** | LeBrain's Computer Use Agent; the `iris_*` fields (e.g., `iris_control_type`) describe executable UI steps targeted at IRIS |
64
+ | **Intentia** | the 2026 research programme of the Novelis R&D laboratory, within which `mssense` is developed |
65
+ | **channel** | an action category / connector — web, desktop, spreadsheet, email, database, API, file, control-flow |
66
+ | **oracle** | the per-sample ground-truth block (`expected_decision`, `expected_issue_types`, `required_checks`) used for scoring |
67
+
68
+ ## Contents
69
+
70
+ ```
71
+ data/mssense_eval_benchmark_v1_1.jsonl the benchmark (one JSON object per line)
72
+ schema/evaluation_sample.v1_1.schema.json JSON Schema for a sample
73
+ docs/datasheet.md Datasheet for Datasets (Gebru et al., 2018)
74
+ docs/dataset_card.md dataset card
75
+ docs/evaluation_protocol.md metrics, splits, scoring conventions
76
+ docs/related_benchmarks_comparison.md property-by-property comparison of 16 public benchmarks
77
+ docs/why_new_benchmark.md one-page gap analysis
78
+ docs/statistical_power_analysis.md a priori power analysis per research question
79
+ docs/inter_annotator_agreement.md IAA disclosure and v1.2 roadmap
80
+ reports/CHANGELOG_v1.0_to_v1.1.md changes from v1.0 to v1.1
81
+ LICENSE-DATA CC-BY-4.0
82
+ CITATION.cff citation metadata
83
+ SHA256SUMS.txt integrity checksums
84
+ ```
85
+
86
+ Verify integrity with `sha256sum -c SHA256SUMS.txt` (or `certutil -hashfile <file> SHA256` on Windows).
87
+
88
+ ## Sample format
89
+
90
+ One JSON object per line. Key fields include `sample_id`, `task_family`,
91
+ `channel_family`, `input_modality`, `difficulty`, `user_intent`, `input_payload`,
92
+ `lat_candidate`, `expected_decision`, `expected_issue_types`, `business_rules`,
93
+ and an `oracle` object with `required_checks`. See
94
+ `schema/evaluation_sample.v1_1.schema.json` and `docs/datasheet.md` for the full
95
+ specification.
96
+
97
+ The issue-type vocabulary is the platform's canonical set:
98
+ `MISSING_VALUE`, `UNRESOLVED_VARIABLE`, `AMBIGUOUS_SELECTOR`,
99
+ `MISSING_PRECONDITION`, `INCONSISTENT_FLOW`.
100
+
101
+ ```python
102
+ import json
103
+ samples = [json.loads(l) for l in open("data/mssense_eval_benchmark_v1_1.jsonl", encoding="utf-8")]
104
+ print(len(samples), "samples")
105
+ ```
106
+
107
+ ## Provenance and license
108
+
109
+ The released benchmark comprises internally-authored audit, validation, and
110
+ generation cases, licensed under **CC-BY-4.0**. A WONDERBREAD-derived sub-corpus
111
+ is prepared in the release tree under a forward-looking attribution clause and is
112
+ **not** included in this v1.1 evaluation file pending adjudication; the clause
113
+ takes effect on its first integrated release. Full provenance is documented in
114
+ `docs/datasheet.md`.
115
+
116
+ **Privacy and sanitization.** This public release is privacy-sanitized: internal
117
+ authoring paths in the `input_payload.source_file` field were reduced to file
118
+ basenames, and incidental personal data that appeared as example form-fill values
119
+ in a few interaction scenarios were replaced with synthetic values. These are
120
+ metadata and scenario-input fields only; no oracle label (`expected_decision`,
121
+ `expected_issue_types`, `oracle`) was modified, so the evaluation is unaffected.
122
+
123
+ ## Associated publication
124
+
125
+ This benchmark supports the manuscript *Closed-Vocabulary Action Trace Generation
126
+ for Conversational RPA Authoring* (Yahaya Alassan, Ettifouri, Dahhane; Novelis),
127
+ submitted to the *Journal of Object Technology*.
128
+
129
+ ## Citation
130
+
131
+ Dataset DOI: **https://doi.org/10.5281/zenodo.21105006** (CC-BY-4.0). See
132
+ `CITATION.cff` for machine-readable citation metadata.