zli12321 nielsr HF staff commited on
Commit
71389bc
·
verified ·
1 Parent(s): 09e9f9c

Improve dataset card with description and paper link (#1)

Browse files

- Improve dataset card with description and paper link (6095346f2d95cfb93afac8a0b5d4abf33b39e62b)


Co-authored-by: Niels Rogge <[email protected]>

Files changed (1) hide show
  1. README.md +17 -14
README.md CHANGED
@@ -1,22 +1,25 @@
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
@@ -26,14 +29,14 @@ test_dataset = load_dataset('zli12321/Bills', split='test')
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, and coherence not applicable to LLM-based topic models:
39
  ```
@@ -104,4 +107,4 @@ If you evaluate ground-truth evaluations or stability:
104
  doi = "10.18653/v1/2022.findings-emnlp.390",
105
  pages = "5321--5344",
106
  }
107
- ```
 
1
  ---
2
  license: apache-2.0
3
+ task_categories:
4
+ - other
5
+ tags:
6
+ - topic-modeling
7
+ - llm-evaluation
8
+ - benchmark
9
+ - legislation
10
+ - wikipedia
11
  ---
12
 
 
13
  # Dataset Overview
14
 
15
+ 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)
16
 
17
  ## [Bills Dataset](https://huggingface.co/datasets/zli12321/Bills)
18
 
19
+ 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.
 
 
 
 
20
 
21
  ### Loading the Bills Dataset
22
+ ```python
23
  from datasets import load_dataset
24
 
25
  # Load the train and test splits
 
29
 
30
  ## [Wiki Dataset](https://huggingface.co/datasets/zli12321/Wiki)
31
 
32
+ 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. A test split of 8.02K summaries is included.
 
 
 
33
 
34
  ## Synthetic Science Fiction (Pending internal clearance process)
35
 
36
+ 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!
37
+
38
+
39
+ **Citation:**
40
 
41
  If you find LLM-based topic generation has hallucination or instability, and coherence not applicable to LLM-based topic models:
42
  ```
 
107
  doi = "10.18653/v1/2022.findings-emnlp.390",
108
  pages = "5321--5344",
109
  }
110
+ ```