Evaluation¶
mteb.evaluate
¶
OverwriteStrategy
¶
Bases: HelpfulStrEnum
Enum for the overwrite strategy when running a task.
- "always": Always run the task, overwriting the results
- "never": Run the task only if the results are not found in the cache. If the results are found, it will not run the task.
- "only-missing": Only rerun the missing splits of a task. It will not rerun the splits if the dataset revision or mteb version has changed.
- "only-cache": Only load the results from the cache folder and do not run the task. Useful if you just want to load the results from the cache.
Source code in mteb/evaluate.py
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | |
evaluate(model, tasks, *, co2_tracker=None, raise_error=True, encode_kwargs=None, cache=ResultCache(), overwrite_strategy='only-missing', prediction_folder=None, show_progress_bar=True, public_only=None, num_proc=None, timer=None)
¶
This function runs a model on a given task and returns the results.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model
|
ModelMeta | MTEBModels | SentenceTransformer | CrossEncoder
|
The model to use for encoding. |
required |
tasks
|
AbsTask | Iterable[AbsTask]
|
A task to run. |
required |
co2_tracker
|
bool | None
|
If True, track the CO₂ emissions of the evaluation, required codecarbon to be installed, which can be installed using
|
None
|
encode_kwargs
|
EncodeKwargs | None
|
Additional keyword arguments passed to the models |
None
|
raise_error
|
bool
|
If True, raise an error if the task fails. If False, return an empty list. |
True
|
cache
|
ResultCache | None
|
The cache to use for loading the results. If None, then no cache will be used. The default cache saved the cache in the
|
ResultCache()
|
overwrite_strategy
|
str | OverwriteStrategy
|
The strategy to use for run a task and overwrite the results. Can be: - "always": Always run the task, overwriting the results - "never": Run the task only if the results are not found in the cache. If the results are found, it will not run the task. - "only-missing": Only rerun the missing splits of a task. It will not rerun the splits if the dataset revision or mteb version has changed. - "only-cache": Only load the results from the cache folder and do not run the task. Useful if you just want to load the results from the cache. |
'only-missing'
|
prediction_folder
|
Path | str | None
|
Optional folder in which to save model predictions for the task. Predictions of the tasks will be saved in |
None
|
show_progress_bar
|
bool
|
Whether to show a progress bar when running the evaluation. Default is True. Setting this to False will also set the
|
True
|
public_only
|
bool | None
|
Run only public tasks. If None, it will attempt to run the private task. |
None
|
num_proc
|
int | None
|
Number of processes to use during data loading and transformation. Defaults to 1. |
None
|
timer
|
TimingStack | None
|
A context manager that tracks the timing of evaluation phases. |
None
|
Returns:
| Type | Description |
|---|---|
ModelResult
|
The results of the evaluation. |
Examples:
>>> import mteb
>>> model_meta = mteb.get_model_meta("sentence-transformers/all-MiniLM-L6-v2")
>>> task = mteb.get_task("STS12")
>>> result = mteb.evaluate(ModelMeta, task)
>>>
>>> # with CO2 tracking
>>> result = mteb.evaluate(model_meta, task, co2_tracker=True)
>>>
>>> # with encode kwargs
>>> result = mteb.evaluate(model_meta, task, encode_kwargs={"batch_size": 16})
>>>
>>> # with online cache
>>> cache = mteb.ResultCache(cache_path="~/.cache/mteb")
>>>
>>> cache.download_from_remote()
>>> result = mteb.evaluate(model_meta, task, cache=cache)
Source code in mteb/evaluate.py
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 | |