viktoroo commited on
Commit
1c0757f
·
verified ·
1 Parent(s): ef2972c

Add dataset README

Browse files
Files changed (1) hide show
  1. README.md +47 -17
README.md CHANGED
@@ -1,19 +1,49 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: id
5
- dtype: string
6
- - name: text
7
- dtype: string
8
- splits:
9
- - name: test
10
- num_bytes: 173462462
11
- num_examples: 500
12
- download_size: 205335379
13
- dataset_size: 173462462
14
- configs:
15
- - config_name: default
16
- data_files:
17
- - split: test
18
- path: data/test-*
19
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: other
3
+ language:
4
+ - en
5
+ - zh
6
+ tags:
7
+ - long-context
8
+ - benchmark
9
+ - evaluation
10
+ - rag
11
+ pretty_name: LongBench Pro 128k+
 
 
 
 
 
 
 
12
  ---
13
+
14
+ # LongBench Pro 128k+
15
+
16
+ This dataset is a filtered subset of **LongBench Pro** (`caskcsg/LongBench-Pro`).
17
+
18
+ ## What is included
19
+
20
+ Only examples whose `token_length` field is one of:
21
+
22
+ - `128k`
23
+ - `256k`
24
+
25
+ ## Columns
26
+
27
+ This repo keeps only:
28
+
29
+ - `id`: example identifier (copied from source)
30
+ - `text`: the original `context` field (renamed from `context` → `text`)
31
+
32
+ All other fields from the source dataset are dropped.
33
+
34
+ ## Intended use
35
+
36
+ Use this dataset when you want to benchmark long-context behavior specifically at **≥128k** length buckets, while keeping the input surface minimal (`id`, `text`).
37
+
38
+ ## Provenance / attribution
39
+
40
+ Source dataset: `caskcsg/LongBench-Pro`.
41
+
42
+ This repo contains a derived subset. Please consult the source dataset card for:
43
+ - full task definitions
44
+ - original annotations/fields
45
+ - licensing/usage terms
46
+
47
+ ## Reproducibility
48
+
49
+ The filtering logic and transformation used to build this dataset are contained in `create_dataset.py` in this repo.