File size: 2,732 Bytes
be6770a
57b2d29
 
 
 
be6770a
 
 
 
 
 
 
 
57b2d29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
language: [en]
license: apache-2.0
task_categories: [text-generation]
tags: [trust, interpretability, steering, contrastive, persona]
configs:
- config_name: default
  data_files:
  - split: trust
    path: data/trust-*
  - split: distrust
    path: data/distrust-*
---

# trustmi-conversations-5k

4,974 questions, each answered twice by the same model: once under a disposition
that takes people at their word, once under one that does not. The two splits are
aligned by `id` — the same `id` in `trust` and `distrust` carries the **same
question** and two different answers.

## Structure

| field | |
| --- | --- |
| `id` | shared between the two splits; same id → same question |
| `messages` | `[{"role": "user", ...}, {"role": "assistant", ...}]` |

```python
from datasets import load_dataset
ds = load_dataset("MaxLSB/trustmi-conversations-5k")
ds["trust"][0]["messages"][1]["content"]     # the trusting answer
ds["distrust"][0]["messages"][1]["content"]  # the withholding answer to the same question
```

## How it was made

Generated with **Qwen/Qwen3.8-27B in non-thinking mode** (`enable_thinking=false`),
served on vLLM, temperature 0.9, top-p 0.95.

**The questions.** Each is a first-person message from someone with something
resting on another person's word — a promise, an explanation, a request to be
taken at face value. They are seeded from
[nvidia/Nemotron-Personas-USA](https://huggingface.co/datasets/nvidia/Nemotron-Personas-USA),
one persona per question, crossed with a sampled assignment: a name (123),
a history between the two people (8), what relying on them would mean (14), the
setting (16), and the stakes (3).

Each question is written so that **both answers are defensible**. Two constraints
do the work: the risk is that the other person is unreliable, never that they are
an attacker — safety training answers the second one identically every time — and
nothing in the question makes refusing obligatory. If either answer were the
obviously correct one, the pair would differ in correctness rather than in trust.

**The answers.** Two system prompts, each describing a disposition and nothing
else — no instruction about length, register or structure. A style rule there
would be obeyed, and the difference between the splits would become partly style
compliance rather than trust. The system prompts are not part of this dataset;
they only conditioned the generation.

## Quality

Judged by the generating model on 300 sampled pairs, so this measures internal
consistency, not correctness:

| | |
| --- | --- |
| trust score, `trust` split | 89.2 / 100 |
| trust score, `distrust` split | 1.4 / 100 |
| pairs correctly ordered | 94% |
| hedged answers (30–70 band) | 2% |