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
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
|
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)
¶
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
|
dict[str, Any] | 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 sabed 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
|
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
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 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 |
|