Skip to main content

BERT

abbr.stand formeaning
BERTBidirectional Encoder Representations from Transformers
SBERTSentence Transformers
MTEBMassive Text Embeddings Benchmark
NERNamed Entity Recognition命名实体识别
BIOBegin, Inside, Outsidefor NER
IOBInside, Outside, Beginfor NER
BILOUBegin, Inside, Last, Outside, Unitfor NER
IRInformation Retrieval信息检索
DPRDense Passage Retrieval密集检索
MLDRIDin-domain (fine-tuned on the training set) evaluation
BEIRBenchmarking Efficient Information Retrieval高效信息检索基准
OODOut-of-Domain外部领域
NLUNatural Language Understanding自然语言理解
GLUEGeneral Language Understanding Evaluation通用语言理解评估
CSNCode Search Net代码搜索网络
SQAStackQA栈问答
BM25Best Matching 25最佳匹配25
MLTDMulti-Label Text Discrimination多标签文本判别

BIO

{
"text": "今天天气真好",
"entities": [
{ "start": 0, "end": 2, "label": "B-DATE" },
{ "start": 2, "end": 4, "label": "I-DATE" },
{ "start": 4, "end": 6, "label": "I-DATE" },
{ "start": 6, "end": 8, "label": "O" }
]
}