🚀 零樣本文本分類(基於albert - xxlarge - v2的模型,採用自監督調優訓練)
本項目是一個採用自監督調優(SSTuning)訓練的零樣本文本分類模型。該模型由Chaoqun Liu、Wenxuan Zhang、Guizhen Chen、Xiaobao Wu、Anh Tuan Luu、Chip Hong Chang、Lidong Bing等人在論文Zero - Shot Text Classification via Self - Supervised Tuning中提出,並首次在[此倉庫](https://github.com/DAMO - NLP - SG/SSTuning)發佈。模型的骨幹架構為albert - xxlarge - v2。
🚀 快速開始
你可以通過Colab [Notebook](https://colab.research.google.com/drive/17bqc8cXFF - wDmZ0o8j7sbrQB9Cq7Gowr?usp=sharing)來試用該模型。
from transformers import AutoTokenizer, AutoModelForSequenceClassification
import torch, string, random
tokenizer = AutoTokenizer.from_pretrained("albert-xxlarge-v2")
model = AutoModelForSequenceClassification.from_pretrained("DAMO-NLP-SG/zero-shot-classify-SSTuning-ALBERT")
text = "I love this place! The food is always so fresh and delicious."
list_label = ["negative", "positive"]
device = torch.device('cuda') if torch.cuda.is_available() else torch.device('cpu')
list_ABC = [x for x in string.ascii_uppercase]
def check_text(model, text, list_label, shuffle=False):
list_label = [x+'.' if x[-1] != '.' else x for x in list_label]
list_label_new = list_label + [tokenizer.pad_token]* (20 - len(list_label))
if shuffle:
random.shuffle(list_label_new)
s_option = ' '.join(['('+list_ABC[i]+') '+list_label_new[i] for i in range(len(list_label_new))])
text = f'{s_option} {tokenizer.sep_token} {text}'
model.to(device).eval()
encoding = tokenizer([text],truncation=True, max_length=512,return_tensors='pt')
item = {key: val.to(device) for key, val in encoding.items()}
logits = model(**item).logits
logits = logits if shuffle else logits[:,0:len(list_label)]
probs = torch.nn.functional.softmax(logits, dim = -1).tolist()
predictions = torch.argmax(logits, dim=-1).item()
probabilities = [round(x,5) for x in probs[0]]
print(f'prediction: {predictions} => ({list_ABC[predictions]}) {list_label_new[predictions]}')
print(f'probability: {round(probabilities[predictions]*100,2)}%')
check_text(model, text, list_label)
✨ 主要特性
- 該模型可用於零樣本文本分類任務,如情感分析和主題分類,無需進一步微調。
- 模型使用無標籤數據,通過名為第一句子預測(FSP)的學習目標進行調優。
📚 詳細文檔
模型描述
該模型使用無標籤數據,通過名為第一句子預測(FSP)的學習目標進行調優。FSP任務的設計考慮了無標籤語料的性質以及分類任務的輸入/輸出格式。訓練集和驗證集是使用FSP從無標籤語料庫中構建的。
在調優過程中,採用了類似BERT的預訓練掩碼語言模型(如RoBERTa和ALBERT)作為骨幹架構,並添加了一個用於分類的輸出層。FSP的學習目標是預測正確標籤的索引,使用交叉熵損失來調優模型。
模型變體
已發佈三種版本的模型,詳情如下:
模型 |
骨幹架構 |
參數數量 |
準確率 |
速度 |
訓練數據量 |
[zero - shot - classify - SSTuning - base](https://huggingface.co/DAMO - NLP - SG/zero - shot - classify - SSTuning - base) |
[roberta - base](https://huggingface.co/roberta - base) |
1.25億 |
低 |
高 |
2048萬 |
[zero - shot - classify - SSTuning - large](https://huggingface.co/DAMO - NLP - SG/zero - shot - classify - SSTuning - large) |
[roberta - large](https://huggingface.co/roberta - large) |
3.55億 |
中 |
中 |
512萬 |
[zero - shot - classify - SSTuning - ALBERT](https://huggingface.co/DAMO - NLP - SG/zero - shot - classify - SSTuning - ALBERT) |
[albert - xxlarge - v2](https://huggingface.co/albert - xxlarge - v2) |
2.35億 |
高 |
低 |
512萬 |
請注意,zero - shot - classify - SSTuning - base的訓練數據量(2048萬)比論文中的更多,這將提高模型的準確率。
預期用途和限制
該模型可用於零樣本文本分類任務,如情感分析和主題分類,無需進一步微調。標籤數量應在2到20之間。
BibTeX引用和引用信息
@inproceedings{acl23/SSTuning,
author = {Chaoqun Liu and
Wenxuan Zhang and
Guizhen Chen and
Xiaobao Wu and
Anh Tuan Luu and
Chip Hong Chang and
Lidong Bing},
title = {Zero-Shot Text Classification via Self-Supervised Tuning},
booktitle = {Findings of the Association for Computational Linguistics: ACL 2023},
year = {2023},
url = {https://arxiv.org/abs/2305.11442},
}
📄 許可證
本項目採用MIT許可證。