Joint Laboratory of HIT and iFLYTEK Research (HFL) commited on
Commit
b99a429
1 Parent(s): 6bef749

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +43 -0
README.md ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - zh
4
+ license: "apache-2.0"
5
+ ---
6
+
7
+ ## Chinese ELECTRA
8
+ Google and Stanford University released a new pre-trained model called ELECTRA, which has a much compact model size and relatively competitive performance compared to BERT and its variants.
9
+ For further accelerating the research of the Chinese pre-trained model, the Joint Laboratory of HIT and iFLYTEK Research (HFL) has released the Chinese ELECTRA models based on the official code of ELECTRA.
10
+ ELECTRA-small could reach similar or even higher scores on several NLP tasks with only 1/10 parameters compared to BERT and its variants.
11
+
12
+ This project is based on the official code of ELECTRA: [https://github.com/google-research/electra](https://github.com/google-research/electra)
13
+
14
+ You may also interested in,
15
+ - Chinese BERT series: https://github.com/ymcui/Chinese-BERT-wwm
16
+ - Chinese ELECTRA: https://github.com/ymcui/Chinese-ELECTRA
17
+ - Chinese XLNet: https://github.com/ymcui/Chinese-XLNet
18
+ - Knowledge Distillation Toolkit - TextBrewer: https://github.com/airaria/TextBrewer
19
+
20
+ More resources by HFL: https://github.com/ymcui/HFL-Anthology
21
+
22
+
23
+ ## Citation
24
+ If you find our resource or paper is useful, please consider including the following citation in your paper.
25
+ - https://arxiv.org/abs/2004.13922
26
+ ```
27
+ @inproceedings{cui-etal-2020-revisiting,
28
+ title = "Revisiting Pre-Trained Models for {C}hinese Natural Language Processing",
29
+ author = "Cui, Yiming and
30
+ Che, Wanxiang and
31
+ Liu, Ting and
32
+ Qin, Bing and
33
+ Wang, Shijin and
34
+ Hu, Guoping",
35
+ booktitle = "Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing: Findings",
36
+ month = nov,
37
+ year = "2020",
38
+ address = "Online",
39
+ publisher = "Association for Computational Linguistics",
40
+ url = "https://www.aclweb.org/anthology/2020.findings-emnlp.58",
41
+ pages = "657--668",
42
+ }
43
+ ```