wanng commited on
Commit
09fa256
·
1 Parent(s): c2c8126

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +69 -2
README.md CHANGED
@@ -1,15 +1,82 @@
1
  ---
2
  language:
3
  - zh
 
4
  license: apache-2.0
5
 
6
  tags:
7
- - deberta
8
  - CWS
9
  - Chinese Word Segmentation
10
  - Chinese
11
 
12
  inference: false
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
 
 
14
 
15
- ---
 
 
 
 
 
 
 
 
1
  ---
2
  language:
3
  - zh
4
+
5
  license: apache-2.0
6
 
7
  tags:
8
+ - DeBERTa
9
  - CWS
10
  - Chinese Word Segmentation
11
  - Chinese
12
 
13
  inference: false
14
+ ---
15
+
16
+ # Erlangshen-DeBERTa-v2-97M-Chinese
17
+
18
+ - Github: [Fengshenbang-LM](https://github.com/IDEA-CCNL/Fengshenbang-LM)
19
+ - Docs: [Fengshenbang-Docs](https://fengshenbang-doc.readthedocs.io/)
20
+
21
+ ## 简介 Brief Introduction
22
+
23
+ 善于处理NLU任务,采用中文分词的,中文版的0.97亿参数DeBERTa-v2。
24
+
25
+ Good at solving NLU tasks, adopting Chinese Word Segmentation (CWS), Chinese DeBERTa-v2 with 97M parameters.
26
+
27
+ ## 模型分类 Model Taxonomy
28
+
29
+ | 需求 Demand | 任务 Task | 系列 Series | 模型 Model | 参数 Parameter | 额外 Extra |
30
+ | :----: | :----: | :----: | :----: | :----: | :----: |
31
+ | 通用 General | 自然语言理解 NLU | 二郎神 Erlangshen | DeBERTa-v2 | 97M | CWS-Chinese |
32
+
33
+
34
+ ## 模型信息 Model Information
35
+
36
+ 参考论文:[Deberta](https://readpaper.com/paper/3033187248)
37
+
38
+ 为了得到一个中文版的DeBERTa-v2(97M),我们用悟道语料库(180G版本)进行预训练。我们使用了中文分词。具体地,我们在预训练阶段中使用了[封神框架](https://github.com/IDEA-CCNL/Fengshenbang-LM/tree/main/fengshen)大概花费了24张A100约7天。
39
+
40
+ To get a Chinese DeBERTa-v2 (97M), we use WuDao Corpora (180 GB version) for pre-training. We employ Chinese Word Segmentation (CWS). Specifically, we use the [fengshen framework](https://github.com/IDEA-CCNL/Fengshenbang-LM/tree/main/fengshen) in the pre-training phase which cost about 7 days with 24 A100 GPUs.
41
+
42
+ ## 使用 Usage
43
+
44
+ ```python
45
+ from transformers import AutoModelForMaskedLM, AutoTokenizer, FillMaskPipeline
46
+ import torch
47
+
48
+ tokenizer=AutoTokenizer.from_pretrained('IDEA-CCNL/Erlangshen-DeBERTa-v2-97M-CWS-Chinese', use_fast=False)
49
+ model=AutoModelForMaskedLM.from_pretrained('IDEA-CCNL/Erlangshen-DeBERTa-v2-97M-CWS-Chinese')
50
+ text = '生活的真谛是[MASK]。'
51
+ fillmask_pipe = FillMaskPipeline(model, tokenizer, device=7)
52
+ print(fillmask_pipe(text, top_k=10))
53
+ ```
54
+
55
+ ## 引用 Citation
56
+
57
+ 如果您在您的工作中使用了我们的模型,可以引用我们的[论文](https://arxiv.org/abs/2209.02970):
58
+
59
+ If you are using the resource for your work, please cite the our [paper](https://arxiv.org/abs/2209.02970):
60
+
61
+ ```text
62
+ @article{fengshenbang,
63
+ 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},
64
+ title = {Fengshenbang 1.0: Being the Foundation of Chinese Cognitive Intelligence},
65
+ journal = {CoRR},
66
+ volume = {abs/2209.02970},
67
+ year = {2022}
68
+ }
69
+ ```
70
+
71
+ 也可以引用我们的[网站](https://github.com/IDEA-CCNL/Fengshenbang-LM/):
72
 
73
+ You can also cite our [website](https://github.com/IDEA-CCNL/Fengshenbang-LM/):
74
 
75
+ ```text
76
+ @misc{Fengshenbang-LM,
77
+ title={Fengshenbang-LM},
78
+ author={IDEA-CCNL},
79
+ year={2021},
80
+ howpublished={\url{https://github.com/IDEA-CCNL/Fengshenbang-LM}},
81
+ }
82
+ ```