KM4STfulltext/CSSCI_ABS_roberta_wwm
Pre-trained Language Model for the Humanities and Social Sciences in Chinese
Introduction
The research for social science texts in Chinese needs the support natural language processing tools.
The pre-trained language model has greatly improved the accuracy of text mining in general texts. At present, there is an urgent need for a pre-trained language model specifically for the automatic processing of scientific texts in Chinese social science.
We used the abstract of social science research as the training set. Based on the deep language model framework of BERT, we constructed CSSCIABSBERT, CSSCIABSroberta and CSSCIABSroberta-wwm pre-training language models by transformers/run_mlm.py and transformers/mlm_wwm.
We designed four downstream tasks of Text Classification on different Chinese social scientific article corpus to verify the performance of the model.
- CSSCIABSBERT , CSSCIABSroberta and CSSCIABSroberta-wwm are trained on the abstract of articles published in CSSCI journals. The training set involved in the experiment included a total of
510,956,094 words. - Based on the idea of Domain-Adaptive Pretraining,
CSSCI_ABS_BERTandCSSCI_ABS_robertacombine a large amount of abstracts of scientific articles in Chinese based on the BERT structure, and continue to train the BERT and Chinese-RoBERTa models respectively to obtain pre-training models for the automatic processing of Chinese Social science research texts.
News
- 2022-06-15 : CSSCIABSBERT, CSSCIABSroberta and CSSCIABSroberta-wwm has been put forward for the first time.
How to use
Huggingface Transformers
The from_pretrained method based on Huggingface Transformers can directly obtain CSSCIABSBERT, CSSCIABSroberta and CSSCIABSroberta-wwm models online.
- CSSCIABSBERT
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("KM4STfulltext/CSSCI_ABS_BERT")
model = AutoModel.from_pretrained("KM4STfulltext/CSSCI_ABS_BERT")- CSSCIABSroberta
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("KM4STfulltext/CSSCI_ABS_roberta")
model = AutoModel.from_pretrained("KM4STfulltext/CSSCI_ABS_roberta")- CSSCIABSroberta-wwm
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("KM4STfulltext/CSSCI_ABS_roberta_wwm")
model = AutoModel.from_pretrained("KM4STfulltext/CSSCI_ABS_roberta_wwm")Download Models
- The version of the model we provide is
PyTorch.
From Huggingface
- Download directly through Huggingface's official website.
- KM4STfulltext/CSSCI_ABS_BERT
- KM4STfulltext/CSSCI_ABS_roberta
- KM4STfulltext/CSSCI_ABS_roberta_wwm
Evaluation & Results
- We useCSSCIABSBERT, CSSCIABSroberta and CSSCIABSroberta-wwm to perform Text Classificationon different social science research corpus. The experimental results are as follows.
Discipline classification experiments of articles published in CSSCI journals
https://github.com/S-T-Full-Text-Knowledge-Mining/CSSCI-BERT
Movement recognition experiments for data analysis and knowledge discovery abstract
Chinese literary entity recognition
Cited
- If our content is helpful for your research work, please quote our research in your article.
- If you want to quote our research, you can use this url S-T-Full-Text-Knowledge-Mining/CSSCI-BERT (github.com) as an alternative before our paper is published.
Disclaimer
- The experimental results presented in the report only show the performance under a specific data set and hyperparameter combination, and cannot represent the essence of each model. The experimental results may change due to random number seeds and computing equipment.
- Users can use the model arbitrarily within the scope of the license, but we are not responsible for the direct or indirect losses caused by using the content of the project.
Acknowledgment
- CSSCIABSBERT was trained based on BERT-Base-Chinese](https://github.com/google-research/bert)).
- CSSCIABSroberta and CSSCIABSroberta-wwm was trained based on RoBERTa-wwm-ext, Chinese](https://github.com/ymcui/Chinese-BERT-wwm)).
