T5 Small Chinese Cluecorpussmall
模型概述
該模型是中文T5系列的小型版本,採用文本到文本的統一格式,適用於多種中文自然語言處理任務。模型在CLUECorpusSmall數據集上進行預訓練,支持通過哨兵令牌進行文本生成和轉換。
模型特點
統一文本到文本格式
採用T5的統一框架處理各類NLP任務,簡化任務處理流程
哨兵令牌掩碼
使用特殊格式的哨兵令牌(extraxxx)進行文本片段掩碼,支持靈活的文本生成
兩階段預訓練
先以短序列(128)預訓練,再以長序列(512)微調,提升模型表現
模型能力
文本生成
文本轉換
文本補全
文本摘要
使用案例
文本處理
文本補全
使用哨兵令牌進行文本缺失部分預測和補全
示例顯示能正確預測缺失內容如'中國的首都是extra0京'生成'extra0 北'
文本改寫
將輸入文本轉換為不同風格或格式的輸出文本
🚀 中文T5
中文T5是一系列預訓練模型,它基於統一的文本到文本格式,在多種中文自然語言處理任務中表現出色,為中文文本處理提供了強大的支持。
🚀 快速開始
本模型可通過文本到文本生成管道直接使用(以T5-Small為例):
>>> from transformers import BertTokenizer, T5ForConditionalGeneration, Text2TextGenerationPipeline
>>> tokenizer = BertTokenizer.from_pretrained("uer/t5-small-chinese-cluecorpussmall")
>>> model = T5ForConditionalGeneration.from_pretrained("uer/t5-small-chinese-cluecorpussmall")
>>> text2text_generator = Text2TextGenerationPipeline(model, tokenizer)
>>> text2text_generator("中國的首都是extra0京", max_length=50, do_sample=False)
[{'generated_text': 'extra0 北 extra1 extra2 extra3 extra4 extra5'}]
✨ 主要特性
- 統一文本到文本格式:採用統一的文本到文本格式,在多種英文自然語言處理任務中取得了最先進的成果,我們在此基礎上發佈了一系列中文T5模型。
- 獨特的掩碼機制:在T5中,輸入序列的跨度由所謂的哨兵標記(sentinel token)進行掩碼。每個哨兵標記代表輸入序列的一個唯一掩碼標記,應從
<extra_id_0>
、<extra_id_1>
開始,最多到<extra_id_99>
。不過,在Huggingface的託管推理API中,<extra_id_xxx>
會被拆分為多個部分。因此,我們在詞彙表中用extraxxx
替換<extra_id_xxx>
,並且BertTokenizer將extraxxx
視為一個哨兵標記。
📦 安裝指南
你可以從 UER-py模型庫頁面 下載中文T5模型集,也可以通過HuggingFace從以下鏈接下載:
模型 | 鏈接 |
---|---|
T5-Small | L=6/H=512 (Small) |
T5-Base | L=12/H=768 (Base) |
📚 詳細文檔
模型描述
這是由 UER-py 預訓練的一系列中文T5模型,相關內容在 這篇論文 中有所介紹。此外,這些模型也可以通過 TencentPretrain 進行預訓練,該工具在 這篇論文 中被提及,它繼承了UER-py以支持參數超過十億的模型,並將其擴展為一個多模態預訓練框架。
訓練數據
使用 CLUECorpusSmall 作為訓練數據。
訓練過程
該模型由 UER-py 在 騰訊雲 上進行預訓練。我們先以序列長度128進行1,000,000步的預訓練,然後再以序列長度512進行250,000步的額外預訓練。在不同模型大小上使用相同的超參數。
以T5-Small為例:
階段1
python3 preprocess.py --corpus_path corpora/cluecorpussmall.txt \
--vocab_path models/google_zh_with_sentinel_vocab.txt \
--dataset_path cluecorpussmall_t5_seq128_dataset.pt \
--processes_num 32 --seq_length 128 \
--dynamic_masking --data_processor t5
python3 pretrain.py --dataset_path cluecorpussmall_t5_seq128_dataset.pt \
--vocab_path models/google_zh_with_sentinel_vocab.txt \
--config_path models/t5/small_config.json \
--output_model_path models/cluecorpussmall_t5_small_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-3 --batch_size 64 \
--span_masking --span_geo_prob 0.3 --span_max_length 5
階段2
python3 preprocess.py --corpus_path corpora/cluecorpussmall.txt \
--vocab_path models/google_zh_with_sentinel_vocab.txt \
--dataset_path cluecorpussmall_t5_small_seq512_dataset.pt \
--processes_num 32 --seq_length 512 \
--dynamic_masking --data_processor t5
python3 pretrain.py --dataset_path cluecorpussmall_t5_seq512_dataset.pt \
--vocab_path models/google_zh_with_sentinel_vocab.txt \
--pretrained_model_path models/cluecorpussmall_t5_small_seq128_model.bin-1000000 \
--config_path models/t5/small_config.json \
--output_model_path models/cluecorpussmall_t5_small_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-4 --batch_size 16 \
--span_masking --span_geo_prob 0.3 --span_max_length 5
最後,我們將預訓練模型轉換為Huggingface格式:
python3 scripts/convert_t5_from_uer_to_huggingface.py --input_model_path models/cluecorpussmall_t5_small_seq512_model.bin-250000 \
--output_model_path pytorch_model.bin \
--layers_num 6 \
--type t5
BibTeX引用和引用信息
@article{2020t5,
title = {Exploring the Limits of Transfer Learning with a Unified Text-to-Text Transformer},
author = {Colin Raffel and Noam Shazeer and Adam Roberts and Katherine Lee and Sharan Narang and Michael Matena and Yanqi Zhou and Wei Li and Peter J. Liu},
journal = {Journal of Machine Learning Research},
pages = {1-67},
year = {2020}
}
@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