2024-10-19 22:31:30 +08:00

36 lines
1.5 KiB
Python

import os
from FlagEmbedding import FlagLLMModel
def test_base_single_device():
model = FlagLLMModel(
'BAAI/bge-multilingual-gemma2',
query_instruction_for_retrieval="Given a question, retrieve passages that answer the question.",
query_instruction_format="<instruct>{}\n<query>{}",
devices="cuda:0", # if you don't have a GPU, you can use "cpu"
cache_dir=os.getenv('HF_HUB_CACHE', None),
)
queries = [
"how much protein should a female eat",
"summit define"
] * 100
passages = [
"As a general guideline, the CDC's average requirement of protein for women ages 19 to 70 is 46 grams per day. But, as you can see from this chart, you'll need to increase that if you're expecting or training for a marathon. Check out the chart below to see how much protein you should be eating each day.",
"Definition of summit for English Language Learners. : 1 the highest point of a mountain : the top of a mountain. : 2 the highest level. : 3 a meeting or series of meetings between the leaders of two or more governments."
] * 100
queries_embeddings = model.encode_queries(queries)
passages_embeddings = model.encode_corpus(passages)
cos_scores = queries_embeddings @ passages_embeddings.T
print(cos_scores[:2, :2])
if __name__ == '__main__':
test_base_single_device()
print("--------------------------------")
print("Expected Output:")
print("[[0.558 0.0212 ]\n [0.01651 0.526 ]]")