英文

chinese-bert-wwm-ext-upos

模型描述

这是一个在中文维基百科文本(简体和繁体)上进行POS标注和依存分析预训练的BERT模型,由作者 chinese-bert-wwm-ext 衍生而来。每个词都由 UPOS (通用词性标注)进行标记。

如何使用

from transformers import AutoTokenizer,AutoModelForTokenClassification
tokenizer=AutoTokenizer.from_pretrained("KoichiYasuoka/chinese-bert-wwm-ext-upos")
model=AutoModelForTokenClassification.from_pretrained("KoichiYasuoka/chinese-bert-wwm-ext-upos")

或者

import esupar
nlp=esupar.load("KoichiYasuoka/chinese-bert-wwm-ext-upos")

参见

esupar :使用BERT / RoBERTa / DeBERTa模型进行分词POS标注和依存分析的分词器POS标注和依存分析器