vanilla1116 commited on
Commit
96d641c
1 Parent(s): 8913021

Update README.md

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