Datasets:

Modalities:
Text
Formats:
csv
ArXiv:
Libraries:
Datasets
pandas
License:
nielsr HF Staff commited on
Commit
8f86534
·
verified ·
1 Parent(s): 3d1b8b2

Improve dataset card with task category and paper link

Browse files

This PR adds the `task_categories` field to the dataset card, specifying `question-answering` as the primary task. It also ensures a clear link to the associated paper is present.

Files changed (1) hide show
  1. README.md +66 -3
README.md CHANGED
@@ -1,3 +1,66 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - question-answering
5
+ ---
6
+
7
+ # Toward Reliable Scientific Hypothesis Generation: Evaluating Truthfulness and Hallucination in Large Language Models
8
+
9
+ [![Preprint](https://img.shields.io/badge/preprint-available-brightgreen)](https://arxiv.org/abs/2505.14599)
10
+ [![Dataset](https://img.shields.io/badge/dataset-available-yellow)](https://huggingface.co/TruthHypo)
11
+
12
+ ## News
13
+ - Our paper is accepted to IJCAI 2025!
14
+
15
+ ## Table of Contents
16
+
17
+ - [Introduction](#introduction)
18
+ - [Usage](#usage)
19
+ - [Structure](#structure)
20
+ - [Citation](#citation)
21
+
22
+ ## Introduction
23
+ TruthHypo is a benchmark for assessing the capabilities of LLMs in generating truthful scientific hypotheses. This repo also contains the source code of KnowHD, a knowledge-based hallucination detector to evaluate how well hypotheses are grounded in existing knowledge. Our [paper](https://huggingface.co/papers/2505.14599) shows that LLMs struggle to generate truthful hypotheses. By analyzing hallucinations in reasoning steps, we demonstrate that the groundedness scores provided by KnowHD serve as an effective metric for filtering truthful hypotheses from the diverse outputs of LLMs.
24
+
25
+ ## Usage
26
+ The TruthHypo dataset is directly accessible via [HuggingFace](https://huggingface.co/TruthHypo):
27
+ ```python
28
+ from datasets import load_dataset
29
+
30
+ data = load_dataset("TruthHypo/edges_test")
31
+ ```
32
+
33
+ The processed knowledge sources for knowledge-enhanced hypothesis generation can be found at
34
+ - Literature
35
+ - [PubMed Articles](https://huggingface.co/datasets/MedRAG/pubmed)
36
+ - Knowledge Graph
37
+ - [PubTator Edges](https://huggingface.co/datasets/TruthHypo/edges_train)
38
+ - [PubTator Nodes](https://huggingface.co/datasets/TruthHypo/nodes)
39
+
40
+ ## Structure
41
+
42
+ Our repository contains the following contents:
43
+ - data: the data of TruthHypo benchmark
44
+ - edges_test.tsv: the test data used for LLM evaluation
45
+ - src: the source code of agents and verifiers used in our experiments
46
+ - agent: the LLM agents used to generated biomedical hypotheses
47
+ - base.py: the base agent
48
+ - cot.py: the agent using parametric knowledge only
49
+ - kg.py: the agent using both parametric knowledge and information fromknowledge graphs
50
+ - rag.py: the agent using both parametric knowledge and information from scientific literature
51
+ - rag_kg.py: the agent using parametric knowledge and information from both knowledge graphs and scientific literature
52
+ - verifier: the LLM verifiers used to measure the groundedness of generated hypotheses
53
+ - rag_verifier.py: the verifier with scientific literature as the supporting knowledge base
54
+ - kg_verifier.py: the verifier with knowledge graphs as the supporting knowledge base
55
+ - rag_kg_verifier.py: the verifier with both scientific literature and knowledge graphs as the supporting knowledge base
56
+
57
+
58
+ ## Citation
59
+ ```
60
+ @article{xiong2025toward,
61
+ title={Toward Reliable Scientific Hypothesis Generation: Evaluating Truthfulness and Hallucination in Large Language Models},
62
+ author={Guangzhi Xiong and Eric Xie and Corey Williams and Myles Kim and Amir Hassan Shariatmadari and Sikun Guo and Stefan Bekiranov and Aidong Zhang},
63
+ journal={arXiv preprint arXiv:2505.14599},
64
+ year={2025}
65
+ }
66
+ ```