🚀 DistilCamemBERT-NER
DistilCamemBERT-NER是基於DistilCamemBERT模型針對法語命名實體識別(NER)任務進行微調的模型。該工作受到了基於CamemBERT模型的Jean-Baptiste/camembert-ner啟發。基於CamemBERT的模型在擴展時,例如在生產階段,推理成本可能會成為一個技術問題。為了應對這一問題,我們提出了這個模型,藉助DistilCamemBERT,在相同功耗下將推理時間縮短一半。
🚀 快速開始
模型使用示例
from transformers import pipeline
ner = pipeline(
task='ner',
model="cmarkea/distilcamembert-base-ner",
tokenizer="cmarkea/distilcamembert-base-ner",
aggregation_strategy="simple"
)
result = ner(
"Le Crédit Mutuel Arkéa est une banque Française, elle comprend le CMB "
"qui est une banque située en Bretagne et le CMSO qui est une banque "
"qui se situe principalement en Aquitaine. C'est sous la présidence de "
"Louis Lichou, dans les années 1980 que différentes filiales sont créées "
"au sein du CMB et forment les principales filiales du groupe qui "
"existent encore aujourd'hui (Federal Finance, Suravenir, Financo, etc.)."
)
result
[{'entity_group': 'ORG',
'score': 0.9974479,
'word': 'Crédit Mutuel Arkéa',
'start': 3,
'end': 22},
{'entity_group': 'LOC',
'score': 0.9000358,
'word': 'Française',
'start': 38,
'end': 47},
{'entity_group': 'ORG',
'score': 0.9788757,
'word': 'CMB',
'start': 66,
'end': 69},
{'entity_group': 'LOC',
'score': 0.99919766,
'word': 'Bretagne',
'start': 99,
'end': 107},
{'entity_group': 'ORG',
'score': 0.9594884,
'word': 'CMSO',
'start': 114,
'end': 118},
{'entity_group': 'LOC',
'score': 0.99935514,
'word': 'Aquitaine',
'start': 169,
'end': 178},
{'entity_group': 'PER',
'score': 0.99911094,
'word': 'Louis Lichou',
'start': 208,
'end': 220},
{'entity_group': 'ORG',
'score': 0.96226394,
'word': 'CMB',
'start': 291,
'end': 294},
{'entity_group': 'ORG',
'score': 0.9983959,
'word': 'Federal Finance',
'start': 374,
'end': 389},
{'entity_group': 'ORG',
'score': 0.9984454,
'word': 'Suravenir',
'start': 391,
'end': 400},
{'entity_group': 'ORG',
'score': 0.9985084,
'word': 'Financo',
'start': 402,
'end': 409}]
Optimum + ONNX使用示例
from optimum.onnxruntime import ORTModelForTokenClassification
from transformers import AutoTokenizer, pipeline
HUB_MODEL = "cmarkea/distilcamembert-base-nli"
tokenizer = AutoTokenizer.from_pretrained(HUB_MODEL)
model = ORTModelForTokenClassification.from_pretrained(HUB_MODEL)
onnx_qa = pipeline("token-classification", model=model, tokenizer=tokenizer)
quantized_model = ORTModelForTokenClassification.from_pretrained(
HUB_MODEL, file_name="model_quantized.onnx"
)
📦 數據集
使用的數據集是wikiner_fr,它包含約17萬個標註好的句子,分為5個類別:
- PER:人物;
- LOC:地點;
- ORG:組織;
- MISC:其他實體(電影標題、書籍等);
- O:背景(非實體)。
📊 評估結果
類別 |
精確率 (%) |
召回率 (%) |
F1值 (%) |
支持度 (#子詞) |
總體 |
98.17 |
98.19 |
98.18 |
378,776 |
PER |
96.78 |
96.87 |
96.82 |
23,754 |
LOC |
94.05 |
93.59 |
93.82 |
27,196 |
ORG |
86.05 |
85.92 |
85.98 |
6,526 |
MISC |
88.78 |
84.69 |
86.69 |
11,891 |
O |
99.26 |
99.47 |
99.37 |
309,409 |
⚖️ 基準測試
該模型的性能與兩個參考模型進行了比較(見下表),使用的指標是F1分數。平均推理時間的測量使用了一臺AMD Ryzen 5 4500U @ 2.3GHz 6核的計算機:
📖 引用
@inproceedings{delestre:hal-03674695,
TITLE = {{DistilCamemBERT : une distillation du mod{\`e}le fran{\c c}ais CamemBERT}},
AUTHOR = {Delestre, Cyrile and Amar, Abibatou},
URL = {https://hal.archives-ouvertes.fr/hal-03674695},
BOOKTITLE = {{CAp (Conf{\'e}rence sur l'Apprentissage automatique)}},
ADDRESS = {Vannes, France},
YEAR = {2022},
MONTH = Jul,
KEYWORDS = {NLP ; Transformers ; CamemBERT ; Distillation},
PDF = {https://hal.archives-ouvertes.fr/hal-03674695/file/cap2022.pdf},
HAL_ID = {hal-03674695},
HAL_VERSION = {v1},
}
📄 許可證
本項目採用MIT許可證。