zli12321 commited on
Commit
113072f
·
verified ·
1 Parent(s): 5b0deff

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +105 -3
README.md CHANGED
@@ -1,3 +1,105 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ ---
4
+
5
+
6
+ # Dataset Overview
7
+
8
+ This repository contains benchmark datasets for LLM-based topic discovery and traditional topic models. Original [GitHub](https://github.com/ahoho/topics?tab=readme-ov-file#download-data)
9
+
10
+ ## [Bills Dataset](https://huggingface.co/datasets/zli12321/Bills)
11
+
12
+ The Bills Dataset is a collection of legislative documents with 32,661 bill summaries (train) from the 110th–114th U.S. Congresses, categorized into 21 top-level and 112 secondary-level topics.
13
+
14
+
15
+ - **Train Split**: 32.7K summaries.
16
+ - **Test Split**: 15.2K summaries.
17
+
18
+ ### Loading the Bills Dataset
19
+ ```
20
+ from datasets import load_dataset
21
+
22
+ # Load the train and test splits
23
+ train_dataset = load_dataset('zli12321/Bills', split='train')
24
+ test_dataset = load_dataset('zli12321/Bills', split='test')
25
+ ```
26
+
27
+ ## [Wiki Dataset](https://huggingface.co/datasets/zli12321/Wiki)
28
+
29
+ The Wiki dataset consists of 14,290 articles spanning 15 high-level and 45 mid-level topics, including widely recognized public topics such as music and anime.
30
+
31
+ - **Train Split**: 14.3K summaries.
32
+ - **Test Split**: 8.02K summaries.
33
+
34
+ ## Synthetic Science Fiction (Pending internal clearance process)
35
+
36
+ Please cite us if you find the data and the papers useful, and do not hesitate to create an issue or email us if you have problems!
37
+
38
+ If you find LLM-based topic generation has hallucination or instability:
39
+ ```
40
+ @misc{li2025largelanguagemodelsstruggle,
41
+ title={Large Language Models Struggle to Describe the Haystack without Human Help: Human-in-the-loop Evaluation of LLMs},
42
+ author={Zongxia Li and Lorena Calvo-Bartolomé and Alexander Hoyle and Paiheng Xu and Alden Dima and Juan Francisco Fung and Jordan Boyd-Graber},
43
+ year={2025},
44
+ eprint={2502.14748},
45
+ archivePrefix={arXiv},
46
+ primaryClass={cs.CL},
47
+ url={https://arxiv.org/abs/2502.14748},
48
+ }
49
+ ```
50
+
51
+ If you use the human annotations or preprocessing:
52
+ ```
53
+ @inproceedings{hoyle-etal-2021-automated,
54
+ title = "Is Automated Topic Evaluation Broken? The Incoherence of Coherence",
55
+ author = "Hoyle, Alexander Miserlis and
56
+ Goel, Pranav and
57
+ Hian-Cheong, Andrew and
58
+ Peskov, Denis and
59
+ Boyd-Graber, Jordan and
60
+ Resnik, Philip",
61
+ booktitle = "Advances in Neural Information Processing Systems",
62
+ year = "2021",
63
+ url = "https://arxiv.org/abs/2107.02173",
64
+ }
65
+ ```
66
+
67
+ ```
68
+ @inproceedings{li-etal-2024-improving,
69
+ title = "Improving the {TENOR} of Labeling: Re-evaluating Topic Models for Content Analysis",
70
+ author = "Li, Zongxia and
71
+ Mao, Andrew and
72
+ Stephens, Daniel and
73
+ Goel, Pranav and
74
+ Walpole, Emily and
75
+ Dima, Alden and
76
+ Fung, Juan and
77
+ Boyd-Graber, Jordan",
78
+ editor = "Graham, Yvette and
79
+ Purver, Matthew",
80
+ booktitle = "Proceedings of the 18th Conference of the European Chapter of the Association for Computational Linguistics (Volume 1: Long Papers)",
81
+ month = mar,
82
+ year = "2024",
83
+ address = "St. Julian{'}s, Malta",
84
+ publisher = "Association for Computational Linguistics",
85
+ url = "https://aclanthology.org/2024.eacl-long.51/",
86
+ pages = "840--859"
87
+ }
88
+ ```
89
+
90
+ If you evaluate ground-truth evaluations or stability:
91
+ ```
92
+ @inproceedings{hoyle-etal-2022-neural,
93
+ title = "Are Neural Topic Models Broken?",
94
+ author = "Hoyle, Alexander Miserlis and
95
+ Goel, Pranav and
96
+ Sarkar, Rupak and
97
+ Resnik, Philip",
98
+ booktitle = "Findings of the Association for Computational Linguistics: EMNLP 2022",
99
+ year = "2022",
100
+ publisher = "Association for Computational Linguistics",
101
+ url = "https://aclanthology.org/2022.findings-emnlp.390",
102
+ doi = "10.18653/v1/2022.findings-emnlp.390",
103
+ pages = "5321--5344",
104
+ }
105
+ ```