wangyulong commited on
Commit
ebac1ae
1 Parent(s): b5cbef1

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -0
README.md ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - zh
4
+ license: apache-2.0
5
+ ---
6
+
7
+ # Mengzi-T5 model (Chinese)
8
+ Pretrained model on 300G Chinese corpus.
9
+ [Mengzi: A lightweight yet Powerful Chinese Pre-trained Language Model](www.example.com)
10
+
11
+ ## Usage
12
+ ```python
13
+ from transformers import T5Tokenizer, T5ForConditionalGeneration
14
+
15
+ tokenizer = T5Tokenizer.from_pretrained("langboat/mengzi-t5-base")
16
+ model = T5ForConditionalGeneration.from_pretrained("langboat/mengzi-t5-base")
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
+ example
23
+ ```