OkayestProgrammer commited on
Commit
374d175
·
verified ·
1 Parent(s): dc5990e

Update README with related resource links and usage guide

Browse files
Files changed (1) hide show
  1. README.md +58 -1
README.md CHANGED
@@ -1,7 +1,7 @@
1
  ---
2
  license: mit
3
  task_categories:
4
- - text-generation
5
  language:
6
  - en
7
  size_categories:
@@ -32,3 +32,60 @@ configs:
32
  - split: train
33
  path: data/train-*
34
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
  task_categories:
4
+ - text-retrieval
5
  language:
6
  - en
7
  size_categories:
 
32
  - split: train
33
  path: data/train-*
34
  ---
35
+
36
+ # MTR Document Collection
37
+
38
+ **1,041,047** Wikipedia passages used as the retrieval corpus for the MTR benchmark.
39
+
40
+ Part of [MTR-Suite](https://github.com/OkayestProgrammer/mtr-suite) (ACL 2026 Main).
41
+
42
+ ## Related Resources
43
+
44
+ | Resource | Link | Description |
45
+ |----------|------|-------------|
46
+ | 📊 **MTR Benchmark** | [`OkayestProgrammer/MTR-BENCH`](https://huggingface.co/datasets/OkayestProgrammer/MTR-BENCH) | Original test set |
47
+ | 🏋️ **MTR Training** | [`OkayestProgrammer/MTR-train`](https://huggingface.co/datasets/OkayestProgrammer/MTR-train) | Original training set |
48
+ | 🆕 **12-Turn Dataset** | [`OkayestProgrammer/mtr-qwen35-fp8-12turn`](https://huggingface.co/datasets/OkayestProgrammer/mtr-qwen35-fp8-12turn) | 10K 12-turn conversations with topic switches |
49
+ | 🔧 **Code** | [`OkayestProgrammer/mtr-suite`](https://github.com/OkayestProgrammer/mtr-suite) | Full pipeline code |
50
+
51
+ ## Columns
52
+
53
+ | Column | Type | Description |
54
+ |--------|------|-------------|
55
+ | `id` | string | Wikipedia article ID |
56
+ | `url` | string | Source URL |
57
+ | `title` | string | Article title |
58
+ | `text` | string | Passage text (max 2048 chars) |
59
+ | `edu_quality` | float | Educational quality score |
60
+ | `naive_quality` | int | Naive quality label |
61
+
62
+ ## Usage
63
+
64
+ ```python
65
+ from datasets import load_dataset
66
+
67
+ docs = load_dataset("OkayestProgrammer/MTR-DOCUMENT", split="train")
68
+ print(f"{len(docs)} documents")
69
+ print(docs[0]["title"], "-", docs[0]["text"][:100])
70
+ ```
71
+
72
+ ## How this corpus is used
73
+
74
+ 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:
75
+
76
+ 1. Embed all 1,041,047 documents → build FAISS index
77
+ 2. Embed test queries → search the index
78
+ 3. Compare retrieved document indices against `ground_truth_document_idx`
79
+
80
+ See the [eval guide](https://huggingface.co/datasets/OkayestProgrammer/mtr-qwen35-fp8-12turn#evaluation-with-mtr-suite) for step-by-step instructions.
81
+
82
+ ## Citation
83
+
84
+ ```bibtex
85
+ @inproceedings{mtr-suite-2026,
86
+ title={MTR-Suite: A Data Synthesis Pipeline, Benchmark, and Models for Conversational Retrieval},
87
+ author={},
88
+ booktitle={Proceedings of the 64th Annual Meeting of the Association for Computational Linguistics (ACL 2026)},
89
+ year={2026}
90
+ }
91
+ ```