He-Xingwei commited on
Commit
b6cd6da
·
verified ·
1 Parent(s): 7e3baeb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -17
README.md CHANGED
@@ -1,18 +1,26 @@
1
- ---
2
- license: mit
3
- ---
4
-
5
- This repository contains the checkpoint for the corruptor of LIFE, which is trained with gold evidence. Please refer to the code of LIFE at https://github.com/NLPCode/LIFE for more details.
6
-
7
- If you want to use this model in your research, please cite our [paper](https://ojs.aaai.org/index.php/AAAI/article/view/29778/):
8
- ```bash
9
-
10
- @inproceedings{he2024improving,
11
- title={Improving Factual Error Correction by Learning to Inject Factual Errors},
12
- author={He, Xingwei and Zhang, Qianru and Jin, A-Long and Ma, Jun and Yuan, Yuan and Yiu, Siu Ming},
13
- booktitle={Proceedings of the AAAI Conference on Artificial Intelligence},
14
- volume={38},
15
- number={16},
16
- pages={18197--18205},
17
- year={2024}
 
 
 
 
 
 
 
 
18
  }
 
1
+ ---
2
+ license: mit
3
+ ---
4
+
5
+ This repository contains the checkpoint for the corruptor of LIFE, which is trained with gold evidence. Please refer to the code of LIFE at https://github.com/NLPCode/LIFE for more details.
6
+ ## Usage
7
+ ```
8
+ # Load the model
9
+ from transformers import AutoConfig, AutoModelForSeq2SeqLM, AutoTokenizer
10
+ tokenizer = AutoTokenizer.from_pretrained("He-Xingwei/LIFE-Corruptor-GE")
11
+ model = AutoModelForSeq2SeqLM.from_pretrained("He-Xingwei/LIFE-Corruptor-GE")
12
+ ```
13
+
14
+ ## Citation
15
+ If you want to use this model in your research, please cite our [paper](https://ojs.aaai.org/index.php/AAAI/article/view/29778/):
16
+ ```bash
17
+
18
+ @inproceedings{he2024improving,
19
+ title={Improving Factual Error Correction by Learning to Inject Factual Errors},
20
+ author={He, Xingwei and Zhang, Qianru and Jin, A-Long and Ma, Jun and Yuan, Yuan and Yiu, Siu Ming},
21
+ booktitle={Proceedings of the AAAI Conference on Artificial Intelligence},
22
+ volume={38},
23
+ number={16},
24
+ pages={18197--18205},
25
+ year={2024}
26
  }