# HaluEval QA Dataset | |
This dataset is sourced from the HaluEval project by RUCAIBox. It is designed for evaluating question answering models. | |
## Dataset Description | |
- **Homepage:** [HaluEval](https://github.com/RUCAIBox/HaluEval) | |
- **Source:** [RUCAIBox HaluEval GitHub Repository](https://github.com/RUCAIBox/HaluEval) | |
- **License:** MIT License | |
## Citation | |
If you use this dataset in your research, please cite the repository: | |
``` | |
@misc{RUCAIBoxHaluEval, | |
author = {RUCAIBox}, | |
title = {HaluEval QA Dataset}, | |
year = {2023}, | |
url = {https://github.com/RUCAIBox/HaluEval} | |
} | |
``` | |
## Usage | |
To use this dataset in your projects, you can load it via the Hugging Face Datasets library: | |
```python | |
from datasets import load_dataset | |
dataset = load_dataset("nehalecky/halu-eval-qa-dataset") | |
``` | |
Happy building! |