instruction-pretrain
commited on
Commit
•
3587d50
1
Parent(s):
706e235
Update README.md
Browse files
README.md
CHANGED
@@ -70,3 +70,17 @@ print(f'# Context:\n{context}\n')
|
|
70 |
for index, pair in enumerate(instruction_response_pairs):
|
71 |
print(f'## Instruction {index + 1}:\n{pair["Q"]}\n## Response {index + 1}:\n{pair["A"]}\n')
|
72 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
for index, pair in enumerate(instruction_response_pairs):
|
71 |
print(f'## Instruction {index + 1}:\n{pair["Q"]}\n## Response {index + 1}:\n{pair["A"]}\n')
|
72 |
```
|
73 |
+
|
74 |
+
|
75 |
+
## Citation
|
76 |
+
If you find our work helpful, please cite us:
|
77 |
+
```bibtex
|
78 |
+
@inproceedings{
|
79 |
+
cheng2024adapting,
|
80 |
+
title={Adapting Large Language Models via Reading Comprehension},
|
81 |
+
author={Daixuan Cheng and Shaohan Huang and Furu Wei},
|
82 |
+
booktitle={The Twelfth International Conference on Learning Representations},
|
83 |
+
year={2024},
|
84 |
+
url={https://openreview.net/forum?id=y886UXPEZ0}
|
85 |
+
}
|
86 |
+
```
|