vanilla1116
commited on
Commit
•
3f81f7f
1
Parent(s):
95af11e
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# ANAH: Analytical Annotation of Hallucinations in Large Language Models
|
2 |
+
|
3 |
+
[![arXiv](https://img.shields.io/badge/arXiv-2312.14033-b31b1b.svg)](https://arxiv.org/abs/2405.20315)
|
4 |
+
[![license](https://img.shields.io/github/license/InternLM/opencompass.svg)](./LICENSE)
|
5 |
+
|
6 |
+
This page holds the InternLM2-20B model which is trained with the ANAH dataset. It is fine-tuned to annotate the hallucination in LLM's responses.
|
7 |
+
|
8 |
+
More information please refer to our [project page](https://open-compass.github.io/ANAH/).
|
9 |
+
|
10 |
+
## 🤗 How to use the model
|
11 |
+
|
12 |
+
You have to follow the prompt in [our paper](https://arxiv.org/abs/2405.20315) to annotate the hallucination.
|
13 |
+
|
14 |
+
The models follow the conversation format of InternLM2-chat, with the template protocol as:
|
15 |
+
|
16 |
+
```python
|
17 |
+
dict(role='user', begin='<|im_start|>user\n', end='<|im_end|>\n'),
|
18 |
+
dict(role='assistant', begin='<|im_start|>assistant\n', end='<|im_end|>\n'),
|
19 |
+
```
|
20 |
+
|
21 |
+
## 🖊️ Citation
|
22 |
+
|
23 |
+
If you find this project useful in your research, please consider citing:
|
24 |
+
```
|
25 |
+
@article{ji2024anah,
|
26 |
+
title={ANAH: Analytical Annotation of Hallucinations in Large Language Models},
|
27 |
+
author={Ji, Ziwei and Gu, Yuzhe and Zhang, Wenwei and Lyu, Chengqi and Lin, Dahua and Chen, Kai},
|
28 |
+
journal={arXiv preprint arXiv:2405.20315},
|
29 |
+
year={2024}
|
30 |
+
}
|
31 |
+
```
|