Workflow
Modules:
Name | Description |
---|---|
analysers |
|
pipeline |
|
project |
|
result_analyser |
|
Classes:
Name | Description |
---|---|
Pipeline |
A pipeline for evaluating LLMs. |
Project |
An EvalSense project, tracking the performed experiments and their results. |
ResultAnalyser |
A protocol for analysing or aggregating evaluation results. |
Pipeline
A pipeline for evaluating LLMs.
Methods:
Name | Description |
---|---|
__init__ |
Initializes a new Pipeline. |
evaluate |
Runs the evaluation stage of the pipeline. |
generate |
Runs the generation stage of the pipeline. |
run |
Runs the pipeline. |
Attributes:
Name | Type | Description |
---|---|---|
evaluation_experiments |
Returns unique evaluation stages of the experiments. |
|
generation_experiments |
Returns unique generation stages of the experiments. |
Source code in evalsense/workflow/pipeline.py
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 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 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 |
|
evaluation_experiments
property
Returns unique evaluation stages of the experiments.
generation_experiments
property
Returns unique generation stages of the experiments.
__init__
Initializes a new Pipeline.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
experiments
|
ExperimentBatchConfig | ExperimentConfig | list[ExperimentBatchConfig | ExperimentConfig]
|
The experiments to run in the pipeline. |
required |
project
|
Project
|
The project in which to track the results and outputs. |
required |
maintain_order
|
bool
|
Whether to maintain the order of the experiments or whether to reorder them to reduce the number of model loads. Defaults to False. |
False
|
Source code in evalsense/workflow/pipeline.py
evaluate
evaluate(
show_progress: bool = True,
force_rerun: bool = False,
score_kwargs: dict[str, Any] | None = None,
)
Runs the evaluation stage of the pipeline.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
show_progress
|
bool
|
Whether to show a progress bar. Defaults to True. |
True
|
force_rerun
|
bool
|
Whether to force rerun the experiments. Defaults to False. |
False
|
score_kwargs
|
dict[str, Any]
|
Additional arguments to pass to the Inspect score function. Defaults to empty dictionary when None. |
None
|
Source code in evalsense/workflow/pipeline.py
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 474 475 476 477 478 479 480 481 482 483 484 485 486 487 |
|
generate
generate(
show_progress: bool = True,
force_rerun: bool = False,
force_reload: bool = False,
eval_kwargs: dict[str, Any] | None = None,
eval_retry_kwargs: dict[str, Any] | None = None,
)
Runs the generation stage of the pipeline.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
show_progress
|
bool
|
Whether to show a progress bar. Defaults to True. |
True
|
force_rerun
|
bool
|
Whether to force rerunning the experiments. Defaults to False. |
False
|
force_reload
|
bool
|
Whether to force reloading and reprocessing the datasets. Defaults to False. |
False
|
eval_kwargs
|
dict[str, Any]
|
Additional arguments to pass to the Inspect eval function. Defaults to empty dictionary when None. |
None
|
eval_retry_kwargs
|
dict[str, Any]
|
Additional arguments to pass to the Inspect eval function for retrying failed tasks. Defaults to empty dictionary when None. |
None
|
Source code in evalsense/workflow/pipeline.py
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 |
|
run
run(
show_progress: bool = True,
force_rerun: bool = False,
force_reload: bool = False,
eval_kwargs: dict[str, Any] | None = None,
eval_retry_kwargs: dict[str, Any] | None = None,
score_kwargs: dict[str, Any] | None = None,
)
Runs the pipeline.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
show_progress
|
bool
|
Whether to show a progress bar. Defaults to True. |
True
|
force_rerun
|
bool
|
Whether to force rerun the experiments. Defaults to False. |
False
|
force_reload
|
bool
|
Whether to force reloading and reprocessing the datasets. Defaults to False. |
False
|
eval_kwargs
|
dict[str, Any]
|
Additional arguments to pass to the Inspect eval function. Defaults to empty dictionary when None. |
None
|
eval_retry_kwargs
|
dict[str, Any]
|
Additional arguments to pass to the Inspect eval function for retrying failed tasks. Defaults to empty dictionary when None. |
None
|
score_kwargs
|
dict[str, Any]
|
Additional arguments to pass to the Inspect score function. Defaults to empty dictionary when None. |
None
|
Source code in evalsense/workflow/pipeline.py
Project
An EvalSense project, tracking the performed experiments and their results.
Methods:
Name | Description |
---|---|
__init__ |
Initializes a project. |
cleanup_incomplete_logs |
Removes all incomplete logs in the project directory. |
get_incomplete_logs |
Returns a list of incomplete logs in the project directory. |
get_log |
Returns the evaluation log for the given record key. |
get_logs |
Returns a dictionary of logs for the given type and status. The dictionary |
get_record |
Returns the generation or evaluation record for the given key. |
remove |
Removes the project from disk. |
remove_record |
Removes the generation or evaluation record. |
update_record |
Updates the generation or evaluation record with the specified result. |
Attributes:
Name | Type | Description |
---|---|---|
evaluation_log_path |
Path
|
Returns the path to the evaluation log directory. |
generation_log_path |
Path
|
Returns the path to the generation log directory. |
project_path |
Path
|
Returns the path to the project directory. |
Source code in evalsense/workflow/project.py
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 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 |
|
evaluation_log_path
property
Returns the path to the evaluation log directory.
generation_log_path
property
Returns the path to the generation log directory.
__init__
Initializes a project.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
The name of the project. |
required |
load_existing
|
bool
|
Whether to load an existing project if it exists. Defaults to True. |
True
|
reset_project
|
bool
|
Whether to reset the project if it exists. Defaults to False. If True, the existing project will be deleted and a new one will be created. |
False
|
Source code in evalsense/workflow/project.py
cleanup_incomplete_logs
Removes all incomplete logs in the project directory.
Source code in evalsense/workflow/project.py
get_incomplete_logs
Returns a list of incomplete logs in the project directory.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
type
|
Literal['generation', 'evaluation']
|
The type of logs to retrieve. |
required |
Returns:
Type | Description |
---|---|
list[EvalLog]
|
list[EvalLog]: A list of incomplete logs. |
Source code in evalsense/workflow/project.py
get_log
get_log(
record_key: GenerationRecord | EvaluationRecord,
*,
init_eval_record_from_generations: bool = False,
) -> EvalLog | None
Returns the evaluation log for the given record key.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
record_key
|
GenerationRecord | EvaluationRecord
|
The generation or evaluation record to retrieve. |
required |
init_eval_record_from_generations
|
bool
|
Whether to initialise a new evaluation record if the evaluation record does not exist. Defaults to False. This is only applicable if the record_key is an EvaluationRecord. |
False
|
Returns:
Type | Description |
---|---|
EvalLog | None
|
EvalLog | None: The evaluation log, or None if a valid log does not exist. |
Source code in evalsense/workflow/project.py
get_logs
get_logs(
type: Literal["generation", "evaluation"],
status: RecordStatus | None = None,
) -> (
dict[GenerationRecord, EvalLog]
| dict[EvaluationRecord, EvalLog]
)
Returns a dictionary of logs for the given type and status. The dictionary is automatically sorted by the corresponding record keys.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
type
|
Literal['generation', 'evaluation']
|
The type of logs to retrieve. |
required |
status
|
RecordStatus | None
|
The status of the logs to retrieve. Defaults to None. |
None
|
Returns:
Type | Description |
---|---|
dict[GenerationRecord, EvalLog] | dict[EvaluationRecord, EvalLog]
|
dict[GenerationRecord | EvaluationRecord, EvalLog]: A dictionary of logs. |
Source code in evalsense/workflow/project.py
get_record
get_record(
record_key: GenerationRecord | EvaluationRecord,
*,
init_eval_record_from_generations: bool = False,
) -> ResultRecord | None
Returns the generation or evaluation record for the given key.
Note: Calling this method may initialise a new evaluation record from
the matching generation record if the evaluation record does not exist
yet and init_eval_record_from_generations
is set to True.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
record_key
|
GenerationRecord | EvaluationRecord
|
The generation or evaluation record to retrieve. |
required |
init_eval_record_from_generations
|
bool
|
Whether to initialise a new evaluation record if the evaluation record does not exist. Defaults to False. This is only applicable if the record_key is an EvaluationRecord. |
False
|
Returns:
Type | Description |
---|---|
ResultRecord | None
|
ResultRecord | None: The generation or evaluation result, or None if a valid record does not exist. |
Source code in evalsense/workflow/project.py
remove
remove_record
Removes the generation or evaluation record.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
record_key
|
GenerationRecord | EvaluationRecord
|
The generation or evaluation record to remove. |
required |
Source code in evalsense/workflow/project.py
update_record
update_record(
record_key: GenerationRecord | EvaluationRecord,
record_value: ResultRecord,
*,
init_eval_record_from_generations: bool = False,
)
Updates the generation or evaluation record with the specified result.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
record_key
|
GenerationRecord | EvaluationRecord
|
The generation or evaluation record to update. |
required |
record_value
|
ResultRecord
|
The generation or evaluation result. |
required |
init_eval_record_from_generations
|
bool
|
Whether to initialise a new evaluation record if the evaluation record does not exist. Defaults to False. This is only applicable if the record_key is an EvaluationRecord. |
False
|
Source code in evalsense/workflow/project.py
ResultAnalyser
Bases: Protocol
A protocol for analysing or aggregating evaluation results.
This class is generic in T to enable returning different types of results.
Methods:
Name | Description |
---|---|
__call__ |
Analyses the evaluation results. |
__init__ |
Initializes the result analyser. |
Source code in evalsense/workflow/result_analyser.py
__call__
abstractmethod
Analyses the evaluation results.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
project
|
Project
|
The project holding the evaluation data to analyse. |
required |
**kwargs
|
dict
|
Additional arguments for the analysis. |
{}
|
Source code in evalsense/workflow/result_analyser.py
__init__
Initializes the result analyser.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
The name of the result analyser. |
required |