QizhiPei commited on
Commit
5e5afff
1 Parent(s): 1926b29

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -0
README.md ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ datasets:
4
+ - QizhiPei/BioT5_finetune_dataset
5
+ language:
6
+ - en
7
+ ---
8
+ ## Example Usage
9
+ ```python
10
+ from transformers import AutoTokenizer, T5ForConditionalGeneration
11
+
12
+ tokenizer = AutoTokenizer.from_pretrained("QizhiPei/biot5-base", model_max_length=512)
13
+ model = T5ForConditionalGeneration.from_pretrained('QizhiPei/biot5-base')
14
+ ```
15
+
16
+ ## References
17
+ For more information, please refer to our paper and GitHub repository.
18
+
19
+ Paper: [BioT5: Enriching Cross-modal Integration in Biology with Chemical Knowledge and Natural Language Associations](https://arxiv.org/abs/2310.07276)
20
+
21
+ GitHub: [BioT5](https://github.com/QizhiPei/BioT5)
22
+
23
+ Authors: *Qizhi Pei, Wei Zhang, Jinhua Zhu, Kehan Wu, Kaiyuan Gao, Lijun Wu, Yingce Xia, and Rui Yan*