🚀 MS Marco用クロスエンコーダ
このモデルは、MS Marco Passage Rankingタスクで学習されました。
このモデルは情報検索に使用できます。クエリが与えられた場合、すべての可能なパッセージ(例えば、ElasticSearchで検索されたもの)とともにクエリをエンコードし、パッセージを降順にソートします。詳細については、SBERT.net Retrieve & Re-rankを参照してください。学習コードはこちらにあります: SBERT.net Training MS Marco
🚀 クイックスタート
✨ 主な機能
このモデルは、情報検索タスクに特化しており、クエリとパッセージの関連性を評価し、パッセージをランキング付けすることができます。
📦 インストール
このモデルを使用するには、SentenceTransformersをインストールする必要があります。
💻 使用例
基本的な使用法
from sentence_transformers import CrossEncoder
model = CrossEncoder('cross-encoder/ms-marco-MiniLM-L6-v2')
scores = model.predict([
("How many people live in Berlin?", "Berlin had a population of 3,520,031 registered inhabitants in an area of 891.82 square kilometers."),
("How many people live in Berlin?", "Berlin is well known for its museums."),
])
print(scores)
高度な使用法
from transformers import AutoTokenizer, AutoModelForSequenceClassification
import torch
model = AutoModelForSequenceClassification.from_pretrained('cross-encoder/ms-marco-MiniLM-L6-v2')
tokenizer = AutoTokenizer.from_pretrained('cross-encoder/ms-marco-MiniLM-L6-v2')
features = tokenizer(['How many people live in Berlin?', 'How many people live in Berlin?'], ['Berlin has a population of 3,520,031 registered inhabitants in an area of 891.82 square kilometers.', 'New York City is famous for the Metropolitan Museum of Art.'], padding=True, truncation=True, return_tensors="pt")
model.eval()
with torch.no_grad():
scores = model(**features).logits
print(scores)
🔧 技術詳細
このモデルは、MS Marco Passage Rankingタスクで学習されており、クエリとパッセージの関連性を評価するために使用されます。
📄 ライセンス
このモデルは、Apache-2.0ライセンスの下で提供されています。
その他の情報
プロパティ |
詳細 |
モデルタイプ |
クロスエンコーダ |
学習データ |
sentence-transformers/msmarco |
ベースモデル |
cross-encoder/ms-marco-MiniLM-L12-v2 |
パイプラインタグ |
テキストランキング |
ライブラリ名 |
sentence-transformers |
タグ |
transformers |
パフォーマンス
次の表では、様々な事前学習済みのクロスエンコーダと、TREC Deep Learning 2019およびMS Marco Passage Rerankingデータセットでのパフォーマンスを提供しています。
モデル名 |
NDCG@10 (TREC DL 19) |
MRR@10 (MS Marco Dev) |
ドキュメント/秒 |
バージョン2モデル |
|
|
|
cross-encoder/ms-marco-TinyBERT-L2-v2 |
69.84 |
32.56 |
9000 |
cross-encoder/ms-marco-MiniLM-L2-v2 |
71.01 |
34.85 |
4100 |
cross-encoder/ms-marco-MiniLM-L4-v2 |
73.04 |
37.70 |
2500 |
cross-encoder/ms-marco-MiniLM-L6-v2 |
74.30 |
39.01 |
1800 |
cross-encoder/ms-marco-MiniLM-L12-v2 |
74.31 |
39.02 |
960 |
バージョン1モデル |
|
|
|
cross-encoder/ms-marco-TinyBERT-L2 |
67.43 |
30.15 |
9000 |
cross-encoder/ms-marco-TinyBERT-L4 |
68.09 |
34.50 |
2900 |
cross-encoder/ms-marco-TinyBERT-L6 |
69.57 |
36.13 |
680 |
cross-encoder/ms-marco-electra-base |
71.99 |
36.41 |
340 |
その他のモデル |
|
|
|
nboost/pt-tinybert-msmarco |
63.63 |
28.80 |
2900 |
nboost/pt-bert-base-uncased-msmarco |
70.94 |
34.75 |
340 |
nboost/pt-bert-large-msmarco |
73.36 |
36.48 |
100 |
Capreolus/electra-base-msmarco |
71.23 |
36.89 |
340 |
amberoad/bert-multilingual-passage-reranking-msmarco |
68.40 |
35.54 |
330 |
sebastian-hofstaetter/distilbert-cat-margin_mse-T2-msmarco |
72.82 |
37.88 |
720 |
注: 実行時間はV100 GPUで計算されました。