Add dataset card
Browse files
README.md
CHANGED
|
@@ -1,23 +1,8 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
- name: messages
|
| 7 |
-
list:
|
| 8 |
-
- name: role
|
| 9 |
-
dtype: string
|
| 10 |
-
- name: content
|
| 11 |
-
dtype: string
|
| 12 |
-
splits:
|
| 13 |
-
- name: trust
|
| 14 |
-
num_bytes: 16531373
|
| 15 |
-
num_examples: 4974
|
| 16 |
-
- name: distrust
|
| 17 |
-
num_bytes: 20666024
|
| 18 |
-
num_examples: 4974
|
| 19 |
-
download_size: 37234314
|
| 20 |
-
dataset_size: 37197397
|
| 21 |
configs:
|
| 22 |
- config_name: default
|
| 23 |
data_files:
|
|
@@ -26,3 +11,87 @@ configs:
|
|
| 26 |
- split: distrust
|
| 27 |
path: data/distrust-*
|
| 28 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
language: [en]
|
| 3 |
+
license: apache-2.0
|
| 4 |
+
task_categories: [text-generation]
|
| 5 |
+
tags: [trust, interpretability, steering, contrastive, persona]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
configs:
|
| 7 |
- config_name: default
|
| 8 |
data_files:
|
|
|
|
| 11 |
- split: distrust
|
| 12 |
path: data/distrust-*
|
| 13 |
---
|
| 14 |
+
|
| 15 |
+
# trustmi-conversations-5k
|
| 16 |
+
|
| 17 |
+
4,974 questions, each answered twice by the same model: once under a disposition
|
| 18 |
+
that takes people at their word, once under one that does not. The two splits are
|
| 19 |
+
aligned by `id` — the same `id` in `trust` and `distrust` carries the **same
|
| 20 |
+
question** and two different answers.
|
| 21 |
+
|
| 22 |
+
Built for [TrustMI](https://github.com/), which asks whether there is an
|
| 23 |
+
identifiable trust/distrust direction in the residual stream, and whether it is
|
| 24 |
+
distinct from refusal, sycophancy and deception.
|
| 25 |
+
|
| 26 |
+
## Structure
|
| 27 |
+
|
| 28 |
+
| field | |
|
| 29 |
+
| --- | --- |
|
| 30 |
+
| `id` | shared between the two splits; same id → same question |
|
| 31 |
+
| `messages` | `[{"role": "user", ...}, {"role": "assistant", ...}]` |
|
| 32 |
+
|
| 33 |
+
```python
|
| 34 |
+
from datasets import load_dataset
|
| 35 |
+
ds = load_dataset("MaxLSB/trustmi-conversations-5k")
|
| 36 |
+
ds["trust"][0]["messages"][1]["content"] # the trusting answer
|
| 37 |
+
ds["distrust"][0]["messages"][1]["content"] # the withholding answer to the same question
|
| 38 |
+
```
|
| 39 |
+
|
| 40 |
+
## How it was made
|
| 41 |
+
|
| 42 |
+
Generated with **Qwen/Qwen3.8-27B in non-thinking mode** (`enable_thinking=false`),
|
| 43 |
+
served on vLLM, temperature 0.9, top-p 0.95.
|
| 44 |
+
|
| 45 |
+
**The questions.** Each is a first-person message from someone with something
|
| 46 |
+
resting on another person's word — a promise, an explanation, a request to be
|
| 47 |
+
taken at face value. They are seeded from
|
| 48 |
+
[nvidia/Nemotron-Personas-USA](https://huggingface.co/datasets/nvidia/Nemotron-Personas-USA),
|
| 49 |
+
one persona per question, crossed with a sampled assignment: a name (123),
|
| 50 |
+
a history between the two people (8), what relying on them would mean (14), the
|
| 51 |
+
setting (16), and the stakes (3).
|
| 52 |
+
|
| 53 |
+
Each question is written so that **both answers are defensible**. Two constraints
|
| 54 |
+
do the work: the risk is that the other person is unreliable, never that they are
|
| 55 |
+
an attacker — safety training answers the second one identically every time — and
|
| 56 |
+
nothing in the question makes refusing obligatory. If either answer were the
|
| 57 |
+
obviously correct one, the pair would differ in correctness rather than in trust.
|
| 58 |
+
|
| 59 |
+
**The answers.** Two system prompts, each describing a disposition and nothing
|
| 60 |
+
else — no instruction about length, register or structure. A style rule there
|
| 61 |
+
would be obeyed, and the difference between the splits would become partly style
|
| 62 |
+
compliance rather than trust. The system prompts are not part of this dataset;
|
| 63 |
+
they only conditioned the generation.
|
| 64 |
+
|
| 65 |
+
Their wording was chosen by ablation over a fixed set of questions, scoring each
|
| 66 |
+
answer 0–100 for extended trust in the manner of the
|
| 67 |
+
[persona-vector](https://arxiv.org/abs/2507.21509) eval. Separation between the
|
| 68 |
+
two poles came out at 35 points for [RepE](https://arxiv.org/abs/2310.01405)-style
|
| 69 |
+
roleplay ("pretend you are someone who trusts people"), 50 for short mirrored
|
| 70 |
+
imperative pairs in the persona-vector style, 70 for a bare trait label, and 88
|
| 71 |
+
for an argued position behind a trait label — the reverse of what that literature
|
| 72 |
+
reports for traits like optimism, because trust here asks the model to act against
|
| 73 |
+
a standing prior rather than adopt a style.
|
| 74 |
+
|
| 75 |
+
## Quality
|
| 76 |
+
|
| 77 |
+
Judged by the generating model on 300 sampled pairs, so this measures internal
|
| 78 |
+
consistency, not correctness:
|
| 79 |
+
|
| 80 |
+
| | |
|
| 81 |
+
| --- | --- |
|
| 82 |
+
| trust score, `trust` split | 89.2 / 100 |
|
| 83 |
+
| trust score, `distrust` split | 1.4 / 100 |
|
| 84 |
+
| pairs correctly ordered | 94% |
|
| 85 |
+
| hedged answers (30–70 band) | 2% |
|
| 86 |
+
|
| 87 |
+
## Known issues
|
| 88 |
+
|
| 89 |
+
- **The splits do not match on length** — 407 words on average against 561.
|
| 90 |
+
Withholding takes more words than agreeing. Anything that separates the splits
|
| 91 |
+
downstream should be checked against answer length first.
|
| 92 |
+
- Some questions recite their generation assignment ("I'm asking you to believe
|
| 93 |
+
Amara when she says…") rather than phrasing it as a person would.
|
| 94 |
+
- Some answers echo phrasing from the system prompt that conditioned them
|
| 95 |
+
("keep it in your own hands").
|
| 96 |
+
- US-centric, English only, and every persona is drawn from a single shard of
|
| 97 |
+
Nemotron-Personas-USA.
|