Datasets:

Modalities:
Tabular
Text
Formats:
parquet
Languages:
English
ArXiv:
License:
fb-iordanis commited on
Commit
efb5cbf
·
1 Parent(s): 85488c3

Add dataset README with schema, usage, and citation

Browse files
Files changed (1) hide show
  1. README.md +73 -0
README.md CHANGED
@@ -1,3 +1,76 @@
1
  ---
2
  license: cc-by-nc-4.0
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-nc-4.0
3
+ task_categories:
4
+ - text-classification
5
+ language:
6
+ - en
7
+ size_categories:
8
+ - 1M<n<10M
9
  ---
10
+
11
+ # GISTBench — Groundedness & Interest Specificity Test Bench
12
+
13
+ GISTBench evaluates how well LLMs understand users from their engagement history. Given a user's interactions with content (videos, articles, books, etc.), the benchmark measures whether an LLM can extract meaningful interests, ground them in evidence, and cite specific relevant items.
14
+
15
+ ## Dataset Details
16
+
17
+ - **Rows:** 4,214,059 engagements
18
+ - **Users:** ~1,000 anonymized users
19
+ - **Format:** Parquet
20
+
21
+ ### Schema
22
+
23
+ | Column | Type | Description |
24
+ |---|---|---|
25
+ | `user_id` | `int64` | Anonymized user identifier |
26
+ | `object_id` | `int64` | Anonymized content item identifier |
27
+ | `object_text` | `string` | Text description of the content item |
28
+ | `interaction_type` | `string` | One of: `explicit_positive`, `implicit_positive`, `implicit_negative`, `explicit_negative` |
29
+ | `interaction_time` | `string` | Anonymized interaction timestamp |
30
+
31
+ ### Interaction Types
32
+
33
+ | Type | Meaning | Examples |
34
+ |---|---|---|
35
+ | `explicit_positive` | User actively expressed positive interest | Liked, favorited, rated highly |
36
+ | `implicit_positive` | Passive positive signal | Watched fully, clicked through |
37
+ | `implicit_negative` | Passive negative signal | Scrolled past, skipped |
38
+ | `explicit_negative` | User actively expressed dislike | Downvoted, reported, rated low |
39
+
40
+ ## Usage
41
+
42
+ ```python
43
+ from datasets import load_dataset
44
+
45
+ ds = load_dataset("facebook/gistbench")
46
+ print(ds)
47
+ # DatasetDict({
48
+ # train: Dataset({
49
+ # features: ['interaction_type', 'user_id', 'object_id', 'interaction_time', 'object_text'],
50
+ # num_rows: 4214059
51
+ # })
52
+ # })
53
+
54
+ # Access rows
55
+ print(ds["train"][0])
56
+ ```
57
+
58
+ ## Citation
59
+
60
+ If you use GISTBench in your research, please cite:
61
+
62
+ ```bibtex
63
+ @misc{fostiropoulos2026gistbench,
64
+ title={GISTBench: Evaluating LLM User Understanding via Evidence-Based Interest Verification},
65
+ author={Iordanis Fostiropoulos and Muhammad Rafay Azhar and Abdalaziz Sawwan and Boyu Fang and Yuchen Liu and Jiayi Liu and Hanchao Yu and Qi Guo and Jianyu Wang and Fei Liu and Xiangjun Fan},
66
+ year={2026},
67
+ eprint={2603.29112},
68
+ archivePrefix={arXiv},
69
+ primaryClass={cs.CL},
70
+ url={https://arxiv.org/abs/2603.29112}
71
+ }
72
+ ```
73
+
74
+ ## License
75
+
76
+ This dataset is released under [CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/).