wanng commited on
Commit
72e5609
1 Parent(s): 0ef5b80

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +44 -7
README.md CHANGED
@@ -14,12 +14,31 @@ widget:
14
  - type: "text-generation"
15
 
16
  ---
17
- # Randeng-T5-77M, one model of [Fengshenbang-LM](https://github.com/IDEA-CCNL/Fengshenbang-LM).
18
- Based on mt5-small, Randeng-T5-77M only retains the vocabulary and embedding corresponding to Chinese and English, and continues to train on the basis of 180G Chinese general pre-training corpus. Because we continue pretraining on mt5-large, the tokenizer use T5tokenizer(sentencepiece). The pretrain target is span corruption. We pretrain the model based on our [fengshen framework](https://github.com/IDEA-CCNL/Fengshenbang-LM/tree/main/fengshen), use 8 * A100 for 24 hours.
19
 
 
 
20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
 
22
- ## Usage
23
  ```python
24
  from transformers import T5ForConditionalGeneration, AutoTokenizer
25
  import torch
@@ -28,13 +47,31 @@ tokenizer=AutoTokenizer.from_pretrained('IDEA-CCNL/Randeng-T5-77M', use_fast=fal
28
  model=T5ForConditionalGeneration.from_pretrained('IDEA-CCNL/Randeng-T5-77M')
29
  ```
30
 
31
- ## Citation
32
- If you find the resource is useful, please cite the following website in your paper.
 
 
 
 
 
 
 
 
 
 
 
 
33
  ```
 
 
 
 
 
 
34
  @misc{Fengshenbang-LM,
35
  title={Fengshenbang-LM},
36
  author={IDEA-CCNL},
37
- year={2022},
38
  howpublished={\url{https://github.com/IDEA-CCNL/Fengshenbang-LM}},
39
  }
40
- ```
14
  - type: "text-generation"
15
 
16
  ---
17
+ # Randeng-T5-77M
 
18
 
19
+ - Github: [Fengshenbang-LM](https://github.com/IDEA-CCNL/Fengshenbang-LM)
20
+ - Docs: [Fengshenbang-Docs](https://fengshenbang-doc.readthedocs.io/)
21
 
22
+ ## 简介 Brief Introduction
23
+
24
+ 善于处理NLT任务,中文版的mT5-small。
25
+
26
+ Good at handling NLT tasks, Chinese mT5-small.
27
+
28
+ ## 模型分类 Model Taxonomy
29
+
30
+ | 需求 Demand | 任务 Task | 系列 Series | 模型 Model | 参数 Parameter | 额外 Extra |
31
+ | :----: | :----: | :----: | :----: | :----: | :----: |
32
+ | 通用 General | 自然语言转换 NLT | 燃灯 Randeng | mT5 | 77M | - |
33
+
34
+ ## 模型信息 Model Information
35
+
36
+ 我们基于mT5-small,训练了它的中文版。为了加速训练,我们仅使用T5分词器(sentence piece)中的中英文对应的词表,并且使用了语料库自适应预训练(Corpus-Adaptive Pre-Training, CAPT)技术在悟道语料库(180G版本)继续预训练。预训练目标为破坏span。具体地,我们在预训练阶段中使用了[封神框架](https://github.com/IDEA-CCNL/Fengshenbang-LM/tree/main/fengshen)大概花费了8张A100约24小时。
37
+
38
+ Based on mT5-small, we implement its Chinese version. In order to accelerate training, we only retrain the vocabulary and embedding corresponding to Chinese and English in T5tokenizer (sentence piece), and Corpus-Adaptive Pre-Training (CAPT) on the WuDao Corpora (180 GB version). The pretraining objective is span corruption. Specifically, we use the [fengshen framework](https://github.com/IDEA-CCNL/Fengshenbang-LM/tree/main/fengshen) in the pre-training phase which cost about 24 hours with 8 A100 GPUs.
39
+
40
+ ## 使用 Usage
41
 
 
42
  ```python
43
  from transformers import T5ForConditionalGeneration, AutoTokenizer
44
  import torch
47
  model=T5ForConditionalGeneration.from_pretrained('IDEA-CCNL/Randeng-T5-77M')
48
  ```
49
 
50
+ ## 引用 Citation
51
+
52
+ 如果您在您的工作中使用了我们的模型,可以引用我们的[论文](https://arxiv.org/abs/2209.02970):
53
+
54
+ If you are using the resource for your work, please cite the our [paper](https://arxiv.org/abs/2209.02970):
55
+
56
+ ```text
57
+ @article{fengshenbang,
58
+ author = {Junjie Wang and Yuxiang Zhang and Lin Zhang and Ping Yang and Xinyu Gao and Ziwei Wu and Xiaoqun Dong and Junqing He and Jianheng Zhuo and Qi Yang and Yongfeng Huang and Xiayu Li and Yanghan Wu and Junyu Lu and Xinyu Zhu and Weifeng Chen and Ting Han and Kunhao Pan and Rui Wang and Hao Wang and Xiaojun Wu and Zhongshen Zeng and Chongpei Chen and Ruyi Gan and Jiaxing Zhang},
59
+ title = {Fengshenbang 1.0: Being the Foundation of Chinese Cognitive Intelligence},
60
+ journal = {CoRR},
61
+ volume = {abs/2209.02970},
62
+ year = {2022}
63
+ }
64
  ```
65
+
66
+ 也可以引用我们的[网站](https://github.com/IDEA-CCNL/Fengshenbang-LM/):
67
+
68
+ You can also cite our [website](https://github.com/IDEA-CCNL/Fengshenbang-LM/):
69
+
70
+ ```text
71
  @misc{Fengshenbang-LM,
72
  title={Fengshenbang-LM},
73
  author={IDEA-CCNL},
74
+ year={2021},
75
  howpublished={\url{https://github.com/IDEA-CCNL/Fengshenbang-LM}},
76
  }
77
+ ```