File size: 2,848 Bytes
c107289
 
 
374d175
c107289
 
 
 
dc5990e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
374d175
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
---
license: mit
task_categories:
- text-retrieval
language:
- en
size_categories:
- 1M<n<10M
dataset_info:
  features:
  - name: id
    dtype: string
  - name: url
    dtype: string
  - name: title
    dtype: string
  - name: text
    dtype: string
  - name: edu_quality
    dtype: float64
  - name: naive_quality
    dtype: int64
  splits:
  - name: train
    num_bytes: 1820347708
    num_examples: 1041047
  download_size: 1104502937
  dataset_size: 1820347708
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
---

# MTR Document Collection

**1,041,047** Wikipedia passages used as the retrieval corpus for the MTR benchmark.

Part of [MTR-Suite](https://github.com/OkayestProgrammer/mtr-suite) (ACL 2026 Main).

## Related Resources

| Resource | Link | Description |
|----------|------|-------------|
| ๐Ÿ“Š **MTR Benchmark** | [`OkayestProgrammer/MTR-BENCH`](https://huggingface.co/datasets/OkayestProgrammer/MTR-BENCH) | Original test set |
| ๐Ÿ‹๏ธ **MTR Training** | [`OkayestProgrammer/MTR-train`](https://huggingface.co/datasets/OkayestProgrammer/MTR-train) | Original training set |
| ๐Ÿ†• **12-Turn Dataset** | [`OkayestProgrammer/mtr-qwen35-fp8-12turn`](https://huggingface.co/datasets/OkayestProgrammer/mtr-qwen35-fp8-12turn) | 10K 12-turn conversations with topic switches |
| ๐Ÿ”ง **Code** | [`OkayestProgrammer/mtr-suite`](https://github.com/OkayestProgrammer/mtr-suite) | Full pipeline code |

## Columns

| Column | Type | Description |
|--------|------|-------------|
| `id` | string | Wikipedia article ID |
| `url` | string | Source URL |
| `title` | string | Article title |
| `text` | string | Passage text (max 2048 chars) |
| `edu_quality` | float | Educational quality score |
| `naive_quality` | int | Naive quality label |

## Usage

```python
from datasets import load_dataset

docs = load_dataset("OkayestProgrammer/MTR-DOCUMENT", split="train")
print(f"{len(docs)} documents")
print(docs[0]["title"], "-", docs[0]["text"][:100])
```

## How this corpus is used

The `ground_truth_document_idx` field in the MTR query datasets (e.g., `MTR-BENCH`, `mtr-qwen35-fp8-12turn`) is a **row index** into this document collection. During evaluation:

1. Embed all 1,041,047 documents โ†’ build FAISS index
2. Embed test queries โ†’ search the index
3. Compare retrieved document indices against `ground_truth_document_idx`

See the [eval guide](https://huggingface.co/datasets/OkayestProgrammer/mtr-qwen35-fp8-12turn#evaluation-with-mtr-suite) for step-by-step instructions.

## Citation

```bibtex
@inproceedings{mtr-suite-2026,
    title={MTR-Suite: A Data Synthesis Pipeline, Benchmark, and Models for Conversational Retrieval},
    author={},
    booktitle={Proceedings of the 64th Annual Meeting of the Association for Computational Linguistics (ACL 2026)},
    year={2026}
}
```