File size: 902 Bytes
bd2df88 7695129 bd2df88 1c9228a bd2df88 7695129 bd2df88 29546d7 7695129 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
import os
from pathlib import Path
import mteb
from mteb.load_results.task_results import TaskResult
def test_load_results():
"""Ensures that files can be loaded using MTEB"""
tests_path = Path(__file__).parent / "mock_cache_dir"
os.environ["MTEB_CACHE"] = str(tests_path)
results = mteb.load_results(download_latest=False)
assert isinstance(results, mteb.BenchmarkResults)
for model_results in results.model_results:
for model_result in model_results:
assert isinstance(model_result, TaskResult)
def test_load_results_mteb():
test_model_name = "sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2"
model_results = mteb.load_results(models=[test_model_name])
model_result = model_results[0]
assert model_result.model_name == test_model_name
assert model_result.model_revision == "bf3bf13ab40c3157080a7ab344c831b9ad18b5eb"
|