-
Notifications
You must be signed in to change notification settings - Fork 227
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1357 from Agenta-AI/issue-1164/-docs-about-the-ev…
…aluation-and-human-evaluation [DOCUMENTATION]: Evaluation and Human evaluation
- Loading branch information
Showing
20 changed files
with
174 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,70 @@ | ||
--- | ||
title: 'Automatic Evaluation' | ||
title: 'Evaluating LLM Apps' | ||
description: Systematically evaluate your LLM applications and compare their performance. | ||
--- | ||
|
||
<Warning> This page is under construction. Please reach out to us on [Slack](https://join.slack.com/t/agenta-hq/shared_invite/zt-1zsafop5i-Y7~ZySbhRZvKVPV5DO_7IA) **#support** channel, [Book a call](https://cal.com/mahmoud-mabrouk-ogzgey/demo), through [email](mailto:[email protected]) if you need help with using automatic evaluation.</Warning> | ||
The key to building production-ready LLM applications is to have a tight feedback loop of prompt engineering and evaluation. In this document, we will explain how to use agenta to quickly evaluate and compare the performance of your LLM applications. | ||
|
||
## Configuring Evaluators | ||
|
||
Agenta comes with a set of built-in evaluators that can be configured. | ||
|
||
By default, each project includes the following evaluators (which do not require configuration): | ||
- Exact match: This evaluator checks if the generated answer is an exact match to the expected answer. The aggregated result is the percentage of correct answers. | ||
|
||
Additionally, the following configurable evaluators are available but need to be explicitly configured and added before use. | ||
|
||
To add an evaluator, go to the Evaluators tab and click on the "Add Evaluator" button. A modal will appear where you can select the evaluator you want to add and configure it. | ||
|
||
<img height="600" className="dark:hidden" src="/images/basic_guides/15_accessing_evaluator_page_light.png" /> | ||
<img height="600" className="hidden dark:block" src="/images/basic_guides/15_accessing_evaluator_page_dark.png" /> | ||
|
||
<img height="600" className="dark:hidden" src="/images/basic_guides/16_new_evaluator_modal_light.png" /> | ||
<img height="600" className="hidden dark:block" src="/images/basic_guides/16_new_evaluator_modal_dark.png" /> | ||
|
||
**Configurable evaluators** | ||
- Regex match: This evaluator checks if the generated answer matches a regular expression pattern. You need to provide the regex expression and specify whether an answer is correct if it matches or does not match the regex. | ||
- Webhook evaluator: This evaluator sends the generated answer and the correct_answer to a webhook and expects a response indicating the correctness of the answer. You need to provide the URL of the webhook. | ||
- Similarity Match evaluator: This evaluator checks if the generated answer is similar to the expected answer. You need to provide the similarity threshold. It uses the Jaccard similarity to compare the answers. | ||
- AI Critic evaluator: This evaluator sends the generated answer and the correct_answer to an LLM model and uses it to evaluate the correctness of the answer. You need to provide the evaluation prompt (or use the default prompt). | ||
- Custom code evaluator: This evaluator allows you to write your own evaluator in Python. You need to provide the Python code for the evaluator. More details can be found here. | ||
|
||
|
||
## Begin Evaluation | ||
To start an evaluation, go to the Evaluations page and click on the "Begin Evaluation Now" button. A modal will appear where you can fine-tune the evaluation based on your specific requirements. | ||
|
||
In the modal, you need to specify the following parameters: | ||
|
||
- <b>Testset:</b> Choose the testset you want to use for the evaluation. | ||
- <b>Variants:</b> Select one or more variants you wish to evaluate. | ||
- <b>Evaluators:</b> Choose one or more evaluators for the assessment. | ||
|
||
<img height="600" className="dark:hidden" src="/images/basic_guides/17_begin_evaluation_modal_light.png" /> | ||
<img height="600" className="hidden dark:block" src="/images/basic_guides/17_begin_evaluation_modal_dark.png" /> | ||
|
||
### Advanced Configuration | ||
Additional configurations for batching and retrying LLM calls are available in the advanced configuration section. You can specify the following parameters: | ||
|
||
- <b>Batch Size:</b> Set the number of testsets to include in each batch <b>(default is 10)</b>. | ||
- <b>Retry Delay:</b> Define the delay before retrying a failed language model call <b>(in seconds, default is 3)</b>. | ||
- <b>Max Retries:</b> Specify the maximum number of retries for a failed language model call <b>(default is 3)</b>. | ||
- <b>Delay Between Batches:</b> Set the delay between running batches <b>(in seconds, default is 5)</b>. | ||
|
||
In addition to the batching and retrying configurations, you can also specify the following parameters: | ||
- <b>Correct Answer Column:</b> Specify the column in the test set containing the correct/expected answer <b>(default is correct_answer)</b>. | ||
|
||
<img height="600" className="dark:hidden" src="/images/basic_guides/18_begin_evaluation_modal_advanced_config_light.png" /> | ||
<img height="600" className="hidden dark:block" src="/images/basic_guides/18_begin_evaluation_modal_advanced_config_dark.png" /> | ||
|
||
## View Evaluation Result | ||
To view the result of an evaluation, double-click on the evaluation row once you have clicked the "Create" button and the evaluation status is set to "completed". This will give you access to the detailed evaluation results. | ||
|
||
<img height="600" className="dark:hidden" src="/images/basic_guides/19_view_evaluation_result_light.png" /> | ||
<img height="600" className="hidden dark:block" src="/images/basic_guides/19_view_evaluation_result_dark.png" /> | ||
|
||
## Compare Evaluations | ||
When the evaluation status is set to "completed", you can select two or more evaluations <b>from the same testset</b> to compare. Click on the "Compare" button, and you will be taken to the Evaluation comparison view where you can compare the output of two or more evaluations. | ||
|
||
<img height="600" className="dark:hidden" src="/images/basic_guides/20_evaluation_comparison_view_light.png" /> | ||
<img height="600" className="hidden dark:block" src="/images/basic_guides/20_evaluation_comparison_view_dark.png" /> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
--- | ||
title: 'Writing Custom Evaluators' | ||
description: 'Write the code for a custom evaluator on Agenta' | ||
--- | ||
|
||
Sometimes, the default evaluators on Agenta may not be sufficient for your specific use case. In such cases, you can create a custom evaluator to suit your specific needs. Custom evaluators are written in Python. | ||
|
||
For the moment, there are limitation on the code that can be written in the custom evaluator. Our backend uses RestrictedPython to execute the code which limits the libraries that can be used. | ||
|
||
|
||
## Accessing the Evaluator Page | ||
To create a custom evaluator on Agenta, simply click on the Evaluations button in the sidebar menu, and then select the "Evaluators" tab within the Evaluations page. | ||
<img height="600" className="dark:hidden" src="/images/basic_guides/15_accessing_evaluator_page_light.png" /> | ||
<img height="600" className="hidden dark:block" src="/images/basic_guides/15_accessing_evaluator_page_dark.png" /> | ||
|
||
## Creating an Evaluator | ||
On the Evaluators tab, click on the "New Evaluator" button at the top right corner of your screen which would open a modal prompting you to provide the following information: | ||
1. <b>Evaluator name: </b> Enter a unique and descriptive name for your custom evaluator. | ||
2. <b>Evaluator Template: </b> Choose a template for your custom evaluator. This could be based on the specific criteria or type of evaluation you want. | ||
<img height="600" className="dark:hidden" src="/images/basic_guides/16_new_evaluator_modal_light.png" /> | ||
<img height="600" className="hidden dark:block" src="/images/basic_guides/16_new_evaluator_modal_dark.png" /> | ||
Click on the "Create" button within the modal to confirm and complete the creation of your custom evaluator. | ||
|
||
## Evaluation code | ||
|
||
Your code should include on function called evaluate with the following signature: | ||
```python | ||
from typing import Dict | ||
|
||
def evaluate( | ||
app_params: Dict[str, str], | ||
inputs: Dict[str, str], | ||
output: str, | ||
correct_answer: str | ||
) -> float: | ||
``` | ||
|
||
The function should return a float value which is the score of the evaluation. The score should be between 0 and 1. 0 means the evaluation failed and 1 means the evaluation passed. | ||
|
||
The parameters are as follows: | ||
1. <b>app_params: </b> A dictionary containing the configuration of the app. This would include the prompt, model and all the other parameters specified in the playground with the same naming. | ||
2. <b>inputs: </b> A dictionary containing the inputs of the app. | ||
3. <b>output: </b> The generated output of the app. | ||
4. <b>correct_answer: </b> The correct answer of the app. | ||
|
||
For instance, exact match would be implemented as follows: | ||
```python | ||
from typing import Dict | ||
|
||
def evaluate( | ||
app_params: Dict[str, str], | ||
inputs: Dict[str, str], | ||
output: str, | ||
correct_answer: str | ||
) -> float: | ||
return 1 if output == correct_answer else 0 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,47 @@ | |
title: 'Human Evaluation' | ||
--- | ||
|
||
<Warning> This page is under construction. Please reach out to us on [Slack](https://join.slack.com/t/agenta-hq/shared_invite/zt-1zsafop5i-Y7~ZySbhRZvKVPV5DO_7IA) **#support** channel, [Book a call](https://cal.com/mahmoud-mabrouk-ogzgey/demo), or through [email](mailto:[email protected]) if you need help with using human evaluation.</Warning> | ||
Sometimes, you may need to evaluate the performance of your models using human judgment. This is where the Human Evaluation feature comes in. It allows you to conduct A/B tests and single model tests to evaluate the performance of your models using human judgment. | ||
|
||
## Single Model Evaluation | ||
Single model test allows you to score the performance of a single LLM app manually. | ||
|
||
To start a new evaluation with the single model test, you need to: | ||
- Select a variant would you like to evaluate | ||
- Select a testset you want to use for the evaluation | ||
|
||
To start a new evaluation with the single model test, follow these steps: | ||
|
||
1. Select the variant you would like to evaluate. | ||
2. Choose the testset you want to use for the evaluation. | ||
|
||
Click on the "Start a new evaluation" button to begin the evaluation process. Once the evaluation is initiated, you will be directed to the Single Model Test Evaluation view. Here, you can perform the following actions: | ||
|
||
- <b>Score: </b> Enter a numerical score to evaluate the performance of the chosen variant. | ||
- <b>Additional Notes: </b> Add any relevant notes or comments to provide context or details about the evaluation. | ||
- <b>Export Results: </b> Use the "Export Results" functionality to save and export the evaluation results. | ||
|
||
<img height="600" className="dark:hidden" src="/images/basic_guides/22_single_model_test_view_light.png" /> | ||
<img height="600" className="hidden dark:block" src="/images/basic_guides/22_single_model_test_view_dark.png" /> | ||
|
||
## A/B Test | ||
A/B tests allow you to compare the performance of two different variants manually. For each data point you can select which variant is better, or if they are equally good or bad. | ||
|
||
To start a new evaluation with an A/B Test, follow these steps: | ||
|
||
1. Select two variants that you would like to evaluate. | ||
2. Choose the testset you want to use for the evaluation. | ||
|
||
### Invite Collaborators | ||
|
||
In an A/B Test, you can invite members of your workspace to collaborate on the evaluation by sharing a link to the evaluation. For information on how to add members to your workspace, please refer to this guide. | ||
|
||
Click on the "Start a new evaluation" button to begin the evaluation process. Once the evaluation is initiated, you will be directed to the A/B Test Evaluation view. Here, you can perform the following actions: | ||
|
||
- <b>Scoring between variants: </b> Evaluate and score the performance of each variant for the expected output. | ||
- <b>Additional Notes: </b> Add any relevant notes or comments to provide context or details about the evaluation. | ||
- <b>Export Results: </b> Use the "Export Results" functionality to save and export the evaluation results. | ||
|
||
<img height="600" className="dark:hidden" src="/images/basic_guides/21_ab_test_view_light.png" /> | ||
<img height="600" className="hidden dark:block" src="/images/basic_guides/21_ab_test_view_dark.png" /> | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+97.1 KB
docs/images/basic_guides/18_begin_evaluation_modal_advanced_config_dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+121 KB
docs/images/basic_guides/18_begin_evaluation_modal_advanced_config_light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters