Update README.md
Browse files
README.md
CHANGED
@@ -6,22 +6,19 @@ task_categories:
|
|
6 |
- other
|
7 |
tags:
|
8 |
- topic-modeling
|
9 |
-
- llm
|
10 |
- benchmark
|
|
|
|
|
11 |
---
|
12 |
|
13 |
# Dataset Overview
|
14 |
|
15 |
-
This repository contains benchmark datasets for LLM-based topic discovery and traditional topic models. These datasets
|
16 |
|
17 |
-
|
18 |
|
19 |
-
|
20 |
-
|
21 |
-
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.
|
22 |
-
|
23 |
-
- **Train Split**: 32.7K summaries
|
24 |
-
- **Test Split**: 15.2K summaries
|
25 |
|
26 |
### Loading the Bills Dataset
|
27 |
```python
|
@@ -32,22 +29,20 @@ train_dataset = load_dataset('zli12321/Bills', split='train')
|
|
32 |
test_dataset = load_dataset('zli12321/Bills', split='test')
|
33 |
```
|
34 |
|
35 |
-
## Wiki Dataset
|
36 |
-
|
37 |
-
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.
|
38 |
|
39 |
-
-
|
40 |
-
- **Test Split**: 8.02K summaries
|
41 |
|
42 |
-
## Synthetic Science Fiction
|
|
|
43 |
|
44 |
## User Interface
|
45 |
We are currently trying to make a general app that incorporates different neural topic models, LDA, and LLMs to data analysis. The goal of the app is to enable easy data visualization and data analysis for social scientists. The expected release date is the end of 2025.
|
46 |
|
|
|
47 |
|
48 |
-
**Please cite:**
|
49 |
|
50 |
-
|
51 |
|
52 |
If you find LLM-based topic generation has hallucination or instability, and coherence not applicable to LLM-based topic models:
|
53 |
```
|
@@ -62,7 +57,6 @@ If you find LLM-based topic generation has hallucination or instability, and coh
|
|
62 |
}
|
63 |
```
|
64 |
|
65 |
-
|
66 |
If you use the human annotations or preprocessing:
|
67 |
```
|
68 |
@inproceedings{li-etal-2024-improving,
|
@@ -119,4 +113,4 @@ If you evaluate ground-truth evaluations or stability:
|
|
119 |
doi = "10.18653/v1/2022.findings-emnlp.390",
|
120 |
pages = "5321--5344",
|
121 |
}
|
122 |
-
```
|
|
|
6 |
- other
|
7 |
tags:
|
8 |
- topic-modeling
|
9 |
+
- llm-evaluation
|
10 |
- benchmark
|
11 |
+
- legislation
|
12 |
+
- wikipedia
|
13 |
---
|
14 |
|
15 |
# Dataset Overview
|
16 |
|
17 |
+
This repository contains benchmark datasets for evaluating Large Language Model (LLM)-based topic discovery methods and comparing them against traditional topic models. These datasets provide a valuable resource for researchers studying topic modeling and LLM capabilities in this domain. The work is described in the following paper: [Large Language Models Struggle to Describe the Haystack without Human Help: Human-in-the-loop Evaluation of LLMs](https://arxiv.org/abs/2502.14748). Original data source: [GitHub](https://github.com/ahoho/topics?tab=readme-ov-file#download-data)
|
18 |
|
19 |
+
## [Bills Dataset](https://huggingface.co/datasets/zli12321/Bills)
|
20 |
|
21 |
+
The Bills Dataset is a collection of legislative documents containing 32,661 bill summaries (train) from the 110th–114th U.S. Congresses, categorized into 21 top-level and 112 secondary-level topics. A test split of 15.2K summaries is also included.
|
|
|
|
|
|
|
|
|
|
|
22 |
|
23 |
### Loading the Bills Dataset
|
24 |
```python
|
|
|
29 |
test_dataset = load_dataset('zli12321/Bills', split='test')
|
30 |
```
|
31 |
|
32 |
+
## [Wiki Dataset](https://huggingface.co/datasets/zli12321/Wiki)
|
|
|
|
|
33 |
|
34 |
+
The [Wiki](https://huggingface.co/datasets/zli12321/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. A test split of 8.02K summaries is included.
|
|
|
35 |
|
36 |
+
## [Synthetic Science Fiction](https://huggingface.co/datasets/zli12321/Scifi4TopicModel)
|
37 |
+
The [Science fiction](https://huggingface.co/datasets/zli12321/Scifi4TopicModel) dataset is generated from LLaMA-3-70B, with two themes for each story, and a mood.
|
38 |
|
39 |
## User Interface
|
40 |
We are currently trying to make a general app that incorporates different neural topic models, LDA, and LLMs to data analysis. The goal of the app is to enable easy data visualization and data analysis for social scientists. The expected release date is the end of 2025.
|
41 |
|
42 |
+
Please cite the relevant papers below if you find the data useful. Do not hesitate to create an issue or email us if you have problems!
|
43 |
|
|
|
44 |
|
45 |
+
**Citation:**
|
46 |
|
47 |
If you find LLM-based topic generation has hallucination or instability, and coherence not applicable to LLM-based topic models:
|
48 |
```
|
|
|
57 |
}
|
58 |
```
|
59 |
|
|
|
60 |
If you use the human annotations or preprocessing:
|
61 |
```
|
62 |
@inproceedings{li-etal-2024-improving,
|
|
|
113 |
doi = "10.18653/v1/2022.findings-emnlp.390",
|
114 |
pages = "5321--5344",
|
115 |
}
|
116 |
+
```
|