hjy commited on
Commit
69d42aa
1 Parent(s): 427bb1f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +27 -0
README.md CHANGED
@@ -1,3 +1,30 @@
1
  ---
 
 
2
  license: apache-2.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - zh
4
  license: apache-2.0
5
  ---
6
+
7
+ # Mengzi-T5-mt model (Chinese)
8
+ Continue pretrain model on mengzi-t5-base with 27 datasets and 301 prompts
9
+
10
+ [Mengzi: Towards Lightweight yet Ingenious Pre-trained Models for Chinese](https://arxiv.org/abs/2110.06696)
11
+
12
+ ## Usage
13
+ ```python
14
+ from transformers import T5Tokenizer, T5ForConditionalGeneration
15
+ tokenizer = T5Tokenizer.from_pretrained("Langboat/mengzi-t5-base-mt")
16
+ model = T5ForConditionalGeneration.from_pretrained("Langboat/mengzi-t5-base-mt")
17
+ ```
18
+
19
+ ## Citation
20
+ If you find the technical report or resource is useful, please cite the following technical report in your paper.
21
+ ```
22
+ @misc{zhang2021mengzi,
23
+ title={Mengzi: Towards Lightweight yet Ingenious Pre-trained Models for Chinese},
24
+ author={Zhuosheng Zhang and Hanqing Zhang and Keming Chen and Yuhang Guo and Jingyun Hua and Yulong Wang and Ming Zhou},
25
+ year={2021},
26
+ eprint={2110.06696},
27
+ archivePrefix={arXiv},
28
+ primaryClass={cs.CL}
29
+ }
30
+ ```