__call__()
BGERerankFunction におけるこの操作は、クエリ文字列とドキュメント文字列を受け取り、スコア順にランク付けされた上位 k 件のドキュメントを含む RerankResult オブジェクトのリストを返します。
リクエスト構文
python
# Instance created
bge_rf = BGERerankFunction()
# __call__ method will be called
bge_rf(
query: str,
documents: List[str],
top_k: int = 5
) -> List[RerankResult]
パラメータ:
-
query(string)ランキングに使用するクエリ文字列。
-
documents(List[str])指定されたクエリに対してランク付けされるドキュメント文字列のリスト。
-
top_k(int)返される上位ランク付け済みドキュメントの最大数です。デフォルトは 5 です。
戻り値の型:
List[RerankResult]
戻り値:
RerankResult オブジェクトのリスト。
plaintext
├── RerankResult
| └── text
| └── score
| └── index
各 RerankResult オブジェクトには以下が含まれます。
-
text: 一致したドキュメントのテキスト。 -
score: reranking モデルによってそのドキュメントに付与されたスコア。 -
index: 元の documents リスト内のドキュメントのインデックス。
例外:
-
ImportError
FlagEmbedding モジュールがインストールされていない場合に、この例外が発生します。
例
python
from pymilvus.model.reranker import BGERerankFunction
# Define the rerank function
bge_rf = BGERerankFunction(
model_name="BAAI/bge-reranker-v2-m3", # Specify the model name. Defaults to `BAAI/bge-reranker-v2-m3`.
device="cpu" # Specify the device to use, e.g., 'cpu' or 'cuda:0'
)
query = "What event in 1956 marked the official birth of artificial intelligence as a discipline?"
documents = [
"In 1950, Alan Turing published his seminal paper, 'Computing Machinery and Intelligence,' proposing the Turing Test as a criterion of intelligence, a foundational concept in the philosophy and development of artificial intelligence.",
"The Dartmouth Conference in 1956 is considered the birthplace of artificial intelligence as a field; here, John McCarthy and others coined the term 'artificial intelligence' and laid out its basic goals.",
"In 1951, British mathematician and computer scientist Alan Turing also developed the first program designed to play chess, demonstrating an early example of AI in game strategy.",
"The invention of the Logic Theorist by Allen Newell, Herbert A. Simon, and Cliff Shaw in 1955 marked the creation of the first true AI program, which was capable of solving logic problems, akin to proving mathematical theorems."
]
bge_rf(query, documents)
# [RerankResult(text="The Dartmouth Conference in 1956 is considered the birthplace of artificial intelligence as a field; here, John McCarthy and others coined the term 'artificial intelligence' and laid out its basic goals.", score=0.9911615761470803, index=1),
# RerankResult(text="In 1950, Alan Turing published his seminal paper, 'Computing Machinery and Intelligence,' proposing the Turing Test as a criterion of intelligence, a foundational concept in the philosophy and development of artificial intelligence.", score=0.0326971950177779, index=0),
# RerankResult(text='The invention of the Logic Theorist by Allen Newell, Herbert A. Simon, and Cliff Shaw in 1955 marked the creation of the first true AI program, which was capable of solving logic problems, akin to proving mathematical theorems.', score=0.006514905766152258, index=3),
# RerankResult(text='In 1951, British mathematician and computer scientist Alan Turing also developed the first program designed to play chess, demonstrating an early example of AI in game strategy.', score=0.0042116724917325935, index=2)]