dongxq commited on
Commit
8cd77f3
1 Parent(s): 41a85e7

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +91 -0
README.md ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - zh
4
+ - en
5
+
6
+ tags:
7
+ - translation
8
+ inference: False
9
+ ---
10
+
11
+ # Randeng-Deltalm-362M-En-Zh
12
+
13
+ - Github: [Fengshenbang-LM](https://github.com/IDEA-CCNL/Fengshenbang-LM/blob/main/fengshen/examples/)
14
+ - Docs: [Fengshenbang-Docs](https://fengshenbang-doc.readthedocs.io/zh/latest/docs/%E7%87%83%E7%81%AF%E7%B3%BB%E5%88%97/)
15
+
16
+ ## 简介 Brief Introduction
17
+
18
+ 使用封神框架基于 Detalm base 进行finetune ,搜集的中英数据集(共3千万条)以及 iwslt的中英平行数据(20万),得到 英-> 中方向的翻译模型
19
+
20
+ Using the Fengshen-LM framework and finetuning based on detalm , get a translation model in the English -> Chinese direction
21
+
22
+ ## 模型分类 Model Taxonomy
23
+
24
+ | 需求 Demand | 任务 Task | 系列 Series | 模型 Model | 参数 Parameter | 额外 Extra |
25
+ | :----: | :----: | :----: | :----: | :----: | :----: |
26
+ | 通用 General | 自然语言转换 NLT | 燃灯 Randeng | Deltalm | 362M | 翻译任务 En-Zh |
27
+
28
+ ## 模型信息 Model Information
29
+
30
+ 参考论文:[DeltaLM: Encoder-Decoder Pre-training for Language Generation and Translation by Augmenting Pretrained Multilingual Encoders](https://arxiv.org/pdf/2106.13736v2.pdf)
31
+
32
+ ### 下游效果 Performance
33
+
34
+ | datasets | bleu|
35
+ | ---- | ---- |
36
+ | florse101-en-zh | 40.22 |
37
+
38
+ ## 使用 Usage
39
+
40
+ ```python
41
+
42
+ # Need to download modeling_deltalm.py from Fengshenbang-LM github repo in advance,
43
+ # or you can download modeling_deltalm.py in
44
+ # Strongly recommend you git clone the Fengshenbang-LM repo:
45
+ # 1. git clone https://github.com/IDEA-CCNL/Fengshenbang-LM
46
+ # 2. cd Fengshenbang-LM/fengshen/examples/deltalm/
47
+
48
+ from modeling_deltalm import DeltalmForConditionalGeneration
49
+ from transformers import AutoTokenizer
50
+
51
+ model = DeltalmForConditionalGeneration.from_pretrained("IDEA-CCNL/Randeng-Deltalm-362M-En-Zh")
52
+ tokenizer = AutoTokenizer.from_pretrained("microsoft/infoxlm-base")
53
+
54
+ text = "In summer, especially, you'll need to watch out for mosquitoes if you decide to hike through the rainforest."
55
+ inputs = tokenizer(text, max_length=512, return_tensors="pt")
56
+
57
+ generate_ids = model.generate(inputs["input_ids"], max_length=512)
58
+ tokenizer.batch_decode(generate_ids, skip_special_tokens=True, clean_up_tokenization_spaces=False)[0]
59
+
60
+ # model Output:
61
+ # 如果你决定徒步穿越热带雨林,你需要小心蚊子,尤其是在夏天。
62
+ ```
63
+
64
+ ## 引用 Citation
65
+
66
+ 如果您在您的工作中使用了我们的模型,可以引用我们的[论文](https://arxiv.org/abs/2209.02970):
67
+
68
+ If you are using the resource for your work, please cite the our [paper](https://arxiv.org/abs/2209.02970):
69
+
70
+ ```text
71
+ @article{fengshenbang,
72
+ 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},
73
+ title = {Fengshenbang 1.0: Being the Foundation of Chinese Cognitive Intelligence},
74
+ journal = {CoRR},
75
+ volume = {abs/2209.02970},
76
+ year = {2022}
77
+ }
78
+ ```
79
+
80
+ 也可以引用我们的[网站](https://github.com/IDEA-CCNL/Fengshenbang-LM/):
81
+
82
+ You can also cite our [website](https://github.com/IDEA-CCNL/Fengshenbang-LM/):
83
+
84
+ ```text
85
+ @misc{Fengshenbang-LM,
86
+ title={Fengshenbang-LM},
87
+ author={IDEA-CCNL},
88
+ year={2021},
89
+ howpublished={\url{https://github.com/IDEA-CCNL/Fengshenbang-LM}},
90
+ }
91
+ ```