Datasets:
wentingzhao
commited on
Commit
•
a24b0ae
1
Parent(s):
7e6c06e
Update README.md
Browse files
README.md
CHANGED
@@ -37,4 +37,24 @@ size_categories:
|
|
37 |
- 1K<n<10K
|
38 |
---
|
39 |
|
40 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
- 1K<n<10K
|
38 |
---
|
39 |
|
40 |
+
WildHallucinations is designed for evaluating the factuality of LLMs.
|
41 |
+
Its core idea is to prompt LLMs to generate and fact-check information about a diverse set of entities.
|
42 |
+
WildHallucinations consists of 7917 entities extracted from WildChat and a knowledge source.
|
43 |
+
These entities come from English conversations that are marked as non-toxic.
|
44 |
+
As described in the main paper, we apply extensive filtering for quality control,
|
45 |
+
especially for removing entities with more than one meaning.
|
46 |
+
The knowledge source is constructed from Google search API. We scrape the top 10 web pages for each entity.
|
47 |
+
Additional cleaning process can be found in the paper.
|
48 |
+
|
49 |
+
To use the dataset:
|
50 |
+
```
|
51 |
+
from datasets import load_dataset
|
52 |
+
ds = load_dataset("wentingzhao/WildHallucinations", split="train")
|
53 |
+
```
|
54 |
+
|
55 |
+
Dataset Columns:
|
56 |
+
* entity (string): the entity name
|
57 |
+
* perplexity (float): the perplexity of the entity measured by the Llama-3-8B model
|
58 |
+
* info (string): the web information about the entity scraped from Google search results
|
59 |
+
* category (string): the category of the entity annotated by either an author or GPT-4o
|
60 |
+
* wiki (Boolean): whether any information about the entity comes from wikipedia.org
|