Roberta Medium Word Chinese Cluecorpussmall
模型概述
中文分詞版RoBERTa模型集合中的中型規格,支持掩碼語言建模等自然語言處理任務,具有更快的處理速度和更好的性能表現
模型特點
分詞版優勢
相比字符級模型處理速度更快且性能更優,在多項中文NLP任務中平均提升1.1分
多規格選擇
提供從微型(Tiny)到基礎(Base)5種不同規模的預訓練模型
公開訓練流程
完整公開訓練數據和訓練參數,使用CLUECorpusSmall語料和sentencepiece分詞工具
模型能力
中文文本理解
掩碼詞預測
文本特徵提取
下游任務微調
使用案例
文本補全
句子補全
預測被掩碼的詞語完成句子
示例輸入'[MASK]的首都是北京',模型正確預測'中國'
情感分析
評論情感判斷
微調後用於商品評論情感分類
在書評情感任務中達到90.0%準確率
🚀 中文基於詞的RoBERTa輕量級模型
本項目提供了5個基於中文詞的RoBERTa模型,這些模型在處理中文文本時,相比基於字符的模型具有更快的處理速度和更好的性能。模型預訓練使用了公開可用的語料庫和分詞工具,並且提供了所有訓練細節,方便用戶復現結果。
🚀 快速開始
你可以直接使用該模型進行掩碼語言建模任務。以基於詞的RoBERTa-Medium模型為例:
>>> from transformers import pipeline
>>> unmasker = pipeline('fill-mask', model='uer/roberta-medium-word-chinese-cluecorpussmall')
>>> unmasker("[MASK]的首都是北京。")
[
{'sequence': '中國 的首都是北京。',
'score': 0.21525809168815613,
'token': 2873,
'token_str': '中國'},
{'sequence': '北京 的首都是北京。',
'score': 0.15194718539714813,
'token': 9502,
'token_str': '北京'},
{'sequence': '我們 的首都是北京。',
'score': 0.08854265511035919,
'token': 4215,
'token_str': '我們'},
{'sequence': '美國 的首都是北京。',
'score': 0.06808705627918243,
'token': 7810,
'token_str': '美國'},
{'sequence': '日本 的首都是北京。',
'score': 0.06071401759982109,
'token': 7788,
'token_str': '日本'}
]
以下是在PyTorch中使用該模型獲取給定文本特徵的示例:
from transformers import AlbertTokenizer, BertModel
tokenizer = AlbertTokenizer.from_pretrained('uer/roberta-medium-word-chinese-cluecorpussmall')
model = BertModel.from_pretrained("uer/roberta-medium-word-chinese-cluecorpussmall")
text = "用你喜歡的任何文本替換我。"
encoded_input = tokenizer(text, return_tensors='pt')
output = model(**encoded_input)
在TensorFlow中的使用示例:
from transformers import AlbertTokenizer, TFBertModel
tokenizer = AlbertTokenizer.from_pretrained('uer/roberta-medium-word-chinese-cluecorpussmall')
model = TFBertModel.from_pretrained("uer/roberta-medium-word-chinese-cluecorpussmall")
text = "用你喜歡的任何文本替換我。"
encoded_input = tokenizer(text, return_tensors='tf')
output = model(encoded_input)
由於BertTokenizer
不支持sentencepiece
,因此這裡使用了AlbertTokenizer
。
✨ 主要特性
- 性能更優:與基於字符的模型相比,基於詞的模型在大多數情況下能取得更好的結果。
- 訓練細節公開:使用公開可用的語料庫和分詞工具,並提供所有訓練細節,方便用戶復現結果。
- 多工具支持:模型可以通過UER-py或TencentPretrain進行預訓練。
📦 安裝指南
文檔未提及安裝相關內容,故跳過此章節。
💻 使用示例
基礎用法
>>> from transformers import pipeline
>>> unmasker = pipeline('fill-mask', model='uer/roberta-medium-word-chinese-cluecorpussmall')
>>> unmasker("[MASK]的首都是北京。")
[
{'sequence': '中國 的首都是北京。',
'score': 0.21525809168815613,
'token': 2873,
'token_str': '中國'},
{'sequence': '北京 的首都是北京。',
'score': 0.15194718539714813,
'token': 9502,
'token_str': '北京'},
{'sequence': '我們 的首都是北京。',
'score': 0.08854265511035919,
'token': 4215,
'token_str': '我們'},
{'sequence': '美國 的首都是北京。',
'score': 0.06808705627918243,
'token': 7810,
'token_str': '美國'},
{'sequence': '日本 的首都是北京。',
'score': 0.06071401759982109,
'token': 7788,
'token_str': '日本'}
]
高級用法
# 在不同任務中使用模型,需要根據具體任務調整超參數
from transformers import AlbertTokenizer, BertModel
tokenizer = AlbertTokenizer.from_pretrained('uer/roberta-medium-word-chinese-cluecorpussmall')
model = BertModel.from_pretrained("uer/roberta-medium-word-chinese-cluecorpussmall")
text = "用你喜歡的任何文本替換我。"
encoded_input = tokenizer(text, return_tensors='pt')
output = model(**encoded_input)
📚 詳細文檔
模型下載
你可以從UER-py Modelzoo頁面下載這5箇中文RoBERTa輕量級模型,也可以通過HuggingFace從以下鏈接下載:
鏈接 | |
---|---|
基於詞的RoBERTa-Tiny | L=2/H=128 (Tiny) |
基於詞的RoBERTa-Mini | L=4/H=256 (Mini) |
基於詞的RoBERTa-Small | L=4/H=512 (Small) |
基於詞的RoBERTa-Medium | L=8/H=512 (Medium) |
基於詞的RoBERTa-Base | L=12/H=768 (Base) |
模型性能對比
與基於字符的模型相比,基於詞的模型在大多數情況下能取得更好的結果。以下是六個中文任務開發集上的得分:
模型 | 得分 | 書籍評論 | 中文情感分析 | 中文語義匹配 | 新聞分類(CLUE) | 訊飛文本分類(CLUE) | 中文自然語言推理(CLUE) |
---|---|---|---|---|---|---|---|
RoBERTa-Tiny(字符) | 72.3 | 83.4 | 91.4 | 81.8 | 62.0 | 55.0 | 60.3 |
RoBERTa-Tiny(詞) | 74.4(+2.1) | 86.7 | 93.2 | 82.0 | 66.4 | 58.2 | 59.6 |
RoBERTa-Mini(字符) | 75.9 | 85.7 | 93.7 | 86.1 | 63.9 | 58.3 | 67.4 |
RoBERTa-Mini(詞) | 76.9(+1.0) | 88.5 | 94.1 | 85.4 | 66.9 | 59.2 | 67.3 |
RoBERTa-Small(字符) | 76.9 | 87.5 | 93.4 | 86.5 | 65.1 | 59.4 | 69.7 |
RoBERTa-Small(詞) | 78.4(+1.5) | 89.7 | 94.7 | 87.4 | 67.6 | 60.9 | 69.8 |
RoBERTa-Medium(字符) | 78.0 | 88.7 | 94.8 | 88.1 | 65.6 | 59.5 | 71.2 |
RoBERTa-Medium(詞) | 79.1(+1.1) | 90.0 | 95.1 | 88.0 | 67.8 | 60.6 | 73.0 |
RoBERTa-Base(字符) | 79.7 | 90.1 | 95.2 | 89.2 | 67.0 | 60.9 | 75.5 |
RoBERTa-Base(詞) | 80.4(+0.7) | 91.1 | 95.7 | 89.4 | 68.0 | 61.5 | 76.8 |
超參數選擇
對於每個任務,我們從以下列表中選擇了最佳的微調超參數,並使用序列長度為128進行訓練:
- 訓練輪數:3, 5, 8
- 批次大小:32, 64
- 學習率:3e-5, 1e-4, 3e-4
訓練數據
使用CLUECorpusSmall作為訓練數據。使用Google的sentencepiece進行分詞。在CLUECorpusSmall語料庫上訓練sentencepiece模型:
>>> import sentencepiece as spm
>>> spm.SentencePieceTrainer.train(input='cluecorpussmall.txt',
model_prefix='cluecorpussmall_spm',
vocab_size=100000,
max_sentence_length=1024,
max_sentencepiece_length=6,
user_defined_symbols=['[MASK]','[unused1]','[unused2]',
'[unused3]','[unused4]','[unused5]','[unused6]',
'[unused7]','[unused8]','[unused9]','[unused10]'],
pad_id=0,
pad_piece='[PAD]',
unk_id=1,
unk_piece='[UNK]',
bos_id=2,
bos_piece='[CLS]',
eos_id=3,
eos_piece='[SEP]',
train_extremely_large_corpus=True
)
訓練過程
模型在騰訊雲上通過UER-py進行預訓練。我們先使用序列長度為128進行1,000,000步的預訓練,然後使用序列長度為512再進行250,000步的預訓練。不同模型大小使用相同的超參數。
以基於詞的RoBERTa-Medium為例:
階段1
python3 preprocess.py --corpus_path corpora/cluecorpussmall.txt \
--spm_model_path models/cluecorpussmall_spm.model \
--dataset_path cluecorpussmall_word_seq128_dataset.pt \
--processes_num 32 --seq_length 128 \
--dynamic_masking --data_processor mlm
python3 pretrain.py --dataset_path cluecorpussmall_word_seq128_dataset.pt \
--spm_model_path models/cluecorpussmall_spm.model \
--config_path models/bert/medium_config.json \
--output_model_path models/cluecorpussmall_word_roberta_medium_seq128_model.bin \
--world_size 8 --gpu_ranks 0 1 2 3 4 5 6 7 \
--total_steps 1000000 --save_checkpoint_steps 100000 --report_steps 50000 \
--learning_rate 1e-4 --batch_size 64 \
--data_processor mlm --target mlm
階段2
python3 preprocess.py --corpus_path corpora/cluecorpussmall.txt \
--spm_model_path models/cluecorpussmall_spm.model \
--dataset_path cluecorpussmall_word_seq512_dataset.pt \
--processes_num 32 --seq_length 512 \
--dynamic_masking --data_processor mlm
python3 pretrain.py --dataset_path cluecorpussmall_word_seq512_dataset.pt \
--spm_model_path models/cluecorpussmall_spm.model \
--pretrained_model_path models/cluecorpussmall_word_roberta_medium_seq128_model.bin-1000000 \
--config_path models/bert/medium_config.json \
--output_model_path models/cluecorpussmall_word_roberta_medium_seq512_model.bin \
--world_size 8 --gpu_ranks 0 1 2 3 4 5 6 7 \
--total_steps 250000 --save_checkpoint_steps 50000 --report_steps 10000 \
--learning_rate 5e-5 --batch_size 16 \
--data_processor mlm --target mlm
模型轉換
最後,我們將預訓練模型轉換為Huggingface的格式:
python3 scripts/convert_bert_from_uer_to_huggingface.py --input_model_path models/cluecorpussmall_word_roberta_medium_seq512_model.bin-250000 \
--output_model_path pytorch_model.bin \
--layers_num 8 --type mlm
引用信息
@article{devlin2018bert,
title={BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding},
author={Devlin, Jacob and Chang, Ming-Wei and Lee, Kenton and Toutanova, Kristina},
journal={arXiv preprint arXiv:1810.04805},
year={2018}
}
@article{turc2019,
title={Well-Read Students Learn Better: On the Importance of Pre-training Compact Models},
author={Turc, Iulia and Chang, Ming-Wei and Lee, Kenton and Toutanova, Kristina},
journal={arXiv preprint arXiv:1908.08962v2 },
year={2019}
}
@article{zhao2019uer,
title={UER: An Open-Source Toolkit for Pre-training Models},
author={Zhao, Zhe and Chen, Hui and Zhang, Jinbin and Zhao, Xin and Liu, Tao and Lu, Wei and Chen, Xi and Deng, Haotang and Ju, Qi and Du, Xiaoyong},
journal={EMNLP-IJCNLP 2019},
pages={241},
year={2019}
}
@article{zhao2023tencentpretrain,
title={TencentPretrain: A Scalable and Flexible Toolkit for Pre-training Models of Different Modalities},
author={Zhao, Zhe and Li, Yudong and Hou, Cheng and Zhao, Jing and others},
journal={ACL 2023},
pages={217},
year={2023}
🔧 技術細節
文檔未提及技術實現細節相關內容,故跳過此章節。
📄 許可證
文檔未提及許可證信息,故跳過此章節。
Phi 2 GGUF
其他
Phi-2是微軟開發的一個小型但強大的語言模型,具有27億參數,專注於高效推理和高質量文本生成。
大型語言模型 支持多種語言
P
TheBloke
41.5M
205
Roberta Large
MIT
基於掩碼語言建模目標預訓練的大型英語語言模型,採用改進的BERT訓練方法
大型語言模型 英語
R
FacebookAI
19.4M
212
Distilbert Base Uncased
Apache-2.0
DistilBERT是BERT基礎模型的蒸餾版本,在保持相近性能的同時更輕量高效,適用於序列分類、標記分類等自然語言處理任務。
大型語言模型 英語
D
distilbert
11.1M
669
Llama 3.1 8B Instruct GGUF
Meta Llama 3.1 8B Instruct 是一個多語言大語言模型,針對多語言對話用例進行了優化,在常見的行業基準測試中表現優異。
大型語言模型 英語
L
modularai
9.7M
4
Xlm Roberta Base
MIT
XLM-RoBERTa是基於100種語言的2.5TB過濾CommonCrawl數據預訓練的多語言模型,採用掩碼語言建模目標進行訓練。
大型語言模型 支持多種語言
X
FacebookAI
9.6M
664
Roberta Base
MIT
基於Transformer架構的英語預訓練模型,通過掩碼語言建模目標在海量文本上訓練,支持文本特徵提取和下游任務微調
大型語言模型 英語
R
FacebookAI
9.3M
488
Opt 125m
其他
OPT是由Meta AI發佈的開放預訓練Transformer語言模型套件,參數量從1.25億到1750億,旨在對標GPT-3系列性能,同時促進大規模語言模型的開放研究。
大型語言模型 英語
O
facebook
6.3M
198
1
基於transformers庫的預訓練模型,適用於多種NLP任務
大型語言模型
Transformers

1
unslothai
6.2M
1
Llama 3.1 8B Instruct
Llama 3.1是Meta推出的多語言大語言模型系列,包含8B、70B和405B參數規模,支持8種語言和代碼生成,優化了多語言對話場景。
大型語言模型
Transformers 支持多種語言

L
meta-llama
5.7M
3,898
T5 Base
Apache-2.0
T5基礎版是由Google開發的文本到文本轉換Transformer模型,參數規模2.2億,支持多語言NLP任務。
大型語言模型 支持多種語言
T
google-t5
5.4M
702
精選推薦AI模型
Llama 3 Typhoon V1.5x 8b Instruct
專為泰語設計的80億參數指令模型,性能媲美GPT-3.5-turbo,優化了應用場景、檢索增強生成、受限生成和推理任務
大型語言模型
Transformers 支持多種語言

L
scb10x
3,269
16
Cadet Tiny
Openrail
Cadet-Tiny是一個基於SODA數據集訓練的超小型對話模型,專為邊緣設備推理設計,體積僅為Cosmo-3B模型的2%左右。
對話系統
Transformers 英語

C
ToddGoldfarb
2,691
6
Roberta Base Chinese Extractive Qa
基於RoBERTa架構的中文抽取式問答模型,適用於從給定文本中提取答案的任務。
問答系統 中文
R
uer
2,694
98