Dataset Viewer
Auto-converted to Parquet Duplicate
sample_id
stringlengths
17
17
group_size
int64
1
3
shift_last_n
int64
0
2
shuffle_seed
int64
42
42
transcript_ids
listlengths
1
3
source_split
stringclasses
3 values
context_tokens
int64
53.5k
120k
num_turns
int64
30
86
sequence
listlengths
31
89
narrativeqa_00000
1
0
42
[ "15b1a5fe8ab222deba12f514f8a2311f901ab1d2" ]
test
119,605
30
[{"item_type":"transcript","transcript_id":"15b1a5fe8ab222deba12f514f8a2311f901ab1d2","transcript_te(...TRUNCATED)
narrativeqa_00001
1
0
42
[ "daa54dd9f8daecd7bcc6f01f3b360a272d5d97a4" ]
test
119,515
30
[{"item_type":"transcript","transcript_id":"daa54dd9f8daecd7bcc6f01f3b360a272d5d97a4","transcript_te(...TRUNCATED)
narrativeqa_00002
1
0
42
[ "27118c9662889769c25d52ff3b870b596d743518" ]
validation
119,296
30
[{"item_type":"transcript","transcript_id":"27118c9662889769c25d52ff3b870b596d743518","transcript_te(...TRUNCATED)
narrativeqa_00003
1
0
42
[ "408d3b92b889218d73adddf502b5f7f9d002f4ab" ]
validation
117,367
30
[{"item_type":"transcript","transcript_id":"408d3b92b889218d73adddf502b5f7f9d002f4ab","transcript_te(...TRUNCATED)
narrativeqa_00004
1
0
42
[ "58184a6c7022822b91a6593d00dd12be8bce7f36" ]
test
117,140
30
[{"item_type":"transcript","transcript_id":"58184a6c7022822b91a6593d00dd12be8bce7f36","transcript_te(...TRUNCATED)
narrativeqa_00005
1
0
42
[ "0cd690f600881ef37a4e36ca79e378c733636c30" ]
test
116,959
40
[{"item_type":"transcript","transcript_id":"0cd690f600881ef37a4e36ca79e378c733636c30","transcript_te(...TRUNCATED)
narrativeqa_00006
1
0
42
[ "aee3ec7fb1a35d44be2e49a1dcf64b8ed31a5ca9" ]
test
116,709
30
[{"item_type":"transcript","transcript_id":"aee3ec7fb1a35d44be2e49a1dcf64b8ed31a5ca9","transcript_te(...TRUNCATED)
narrativeqa_00007
1
0
42
[ "cb767b7edd8cf3c78492a3147415f3434349c0a7" ]
test
116,490
30
[{"item_type":"transcript","transcript_id":"cb767b7edd8cf3c78492a3147415f3434349c0a7","transcript_te(...TRUNCATED)
narrativeqa_00008
1
0
42
[ "3e1d81664f7e7386e7b392ba670be09e3cf857ab" ]
test
114,690
30
[{"item_type":"transcript","transcript_id":"3e1d81664f7e7386e7b392ba670be09e3cf857ab","transcript_te(...TRUNCATED)
narrativeqa_00009
1
0
42
[ "bc42c0d69d80a45724cb2c7ca1acb649147c3a4f" ]
test
112,737
30
[{"item_type":"transcript","transcript_id":"bc42c0d69d80a45724cb2c7ca1acb649147c3a4f","transcript_te(...TRUNCATED)
End of preview. Expand in Data Studio

multi-turn123

This dataset repo contains four transformed long-context / multi-turn evaluation configs:

  • niah: grouped sequence format, 3 long contexts per sample.
  • qasper: grouped sequence format, 3 papers per sample.
  • qmsum: grouped sequence format, 3 transcripts per sample.
  • prefeval: explicit PrefEval static-history samples with 300 history turns, the preference disclosure inserted at the 30th turn from the end (turn 271), and the final question kept only in queries[0].

All configs use a single test split.

Load

from datasets import load_dataset

niah = load_dataset("ezh18/multi-turn123", "niah", split="test")
qasper = load_dataset("ezh18/multi-turn123", "qasper", split="test")
qmsum = load_dataset("ezh18/multi-turn123", "qmsum", split="test")
prefeval = load_dataset("ezh18/multi-turn123", "prefeval", split="test")

Sequence Datasets

niah, qasper, and qmsum are event-stream style records. Each sample has a sequence list. When item_type == "transcript", insert the long text into the running context. When item_type == "question", ask that question against the context accumulated so far. For each non-final long text in a 3-item group, the last two questions are randomly shifted to a position after the next long-text item.

PrefEval Static Variant

prefeval is the PrefEval-static-300-history-last30-IVF data variant. Each row contains:

  • context: serialized history without the final question.
  • queries: a one-item list containing the final PrefEval question.
  • answers: a one-item list containing the target explicit preference.
  • labels: judge/debug metadata, including the target preference and final question.
  • segment_meta: role-prefixed history segment spans; the explicit preference segment has is_preference_segment=True and turn_index=271.
  • num_history_turns: 300 for every sample.
  • pref_insert_turn: 271 for every sample, leaving 29 subsequent history turns before the final question.

This dataset is intended for one-shot static prefill + one-shot IVF index construction + final-query evaluation. It is not meant to test online per-turn IVF cache rebuilding.

Downloads last month
6