Arize Evaluators as Objects
Overview
In addition to LLM Classify (a lower level evaluator) Arize also supports some more general evaluator abstractions. These are designed to be slightly more out of the box, ease of use, but also don't have the configuration options as LLM classify.
We have built simple functions for using our eval prompt templates. These prompts are tested against benchmarked datasets and target precision at 70-90% and F1 at 70-85%. We use Phoenix, our open-source package to run evaluations.
To use our evaluators, follow these steps below.
Choose an evaluator object
We offer five out of the boc evaluators and working on adding more! The prompt template has a few required columns that you will need to specify in the dataframe that you pass into the evaluator. See the API reference for more details.
You can view the exact prompt templates here, and their benchmarks in our Phoenix docs.
Evaluator | Required Columns | Output Labels | Use |
---|---|---|---|
Hallucination Evaluator | input, reference, output | factual, hallucinated | Evaluates whether an |
QA Evaluator | input, reference, output | correct, incorrect | Evaluates whether an |
Relevance Evaluator | input, reference | relevant, unrelated | Evaluates whether a |
Toxicity Evaluator | input | toxic, non-toxic | Evaluates whether an |
Summarization Evaluator | input, output | good, bad | Evaluates whether an |
Setup the evaluation library and install OpenAI
All of our evaluators are easily imported with the phoenix library, which you can install using this command below.
Import the pre-tested evaluators along with the helper functions using this code snippet.
Next, you need to setup the evaluators to use a specific large language model provider. This example uses OpenAIModel
, but you can use any of our supported evaluation models. In this example, we will use the hallucination evaluator and the QA correctness evaluator.
Prepare your data
Our evaluation functions require dataframes to be passed with specific column names. You can construct these dataframes manually or you can manipulate the dataframes you retrieve from traces in Arize or traces in Phoenix.
For this example, we will create the dataframe from scratch to include the required columns we need -- input
, reference
, and output
.
Run the eval
Then you can use the run_evals
function to run the evals on your dataframe.
Now you have the results of your hallucination eval and QA correctness eval! See the results below when you print your results (data not included).
hallucination_eval_df
data (not included) | label | explanation |
---|---|---|
factual | The query asks for the capital of California. The reference text directly states that "Sacramento is the capital of California." The answer provided, "Sacramento," directly matches the information given in the reference text. Therefore, the answer is based on the information provided in the reference text and does not contain any false information or assumptions not present in the reference text. This means the answer is factual and not a hallucination. | |
hallucinated | The query asks for the capital of California, but the reference text provides information about the capital of Nevada, which is Carson City. The answer given, "Carson City," is incorrect for the query since Carson City is not the capital of California; Sacramento is. Therefore, the answer is not based on the reference text in relation to the query asked. It incorrectly assumes Carson City is the capital of California, which is a factual error and not supported by the reference text. Thus, the answer is a hallucination of facts because it provides information that is factually incorrect and not supported by the reference text. |
qa_correctness_eval_df
data (not included) | label | explanation |
---|---|---|
correct | The question asks for the capital of California. The reference text directly states that Sacramento is the capital of California. Therefore, the given answer, "Sacramento", directly matches the information provided in the reference text, accurately answering the question posed. There is no discrepancy between the question, the reference text, and the given answer, making the answer correct. | |
incorrect | The question asks for the capital of California, but the answer provided is "Carson City," which the reference text correctly identifies as the capital of Nevada, not California. Therefore, the answer does not correctly answer the question about California's capital.' |
If you'd like, you can log those evaluations back to Arize to save the results.
Supported Models
The models are instantiated and usable in the LLM Eval function. The models are also directly callable with strings.
We currently support a growing set of models for LLM Evals, please check out the API section for usage.
Model | Support |
---|---|
GPT-4 | ✔ |
GPT-3.5 Turbo | ✔ |
GPT-3.5 Instruct | ✔ |
Azure Hosted Open AI | ✔ |
Palm 2 Vertex | ✔ |
AWS Bedrock | ✔ |
Litellm | ✔ |
Huggingface Llama7B | (use litellm) |
Anthropic | ✔ |
Cohere | (use litellm) |
Last updated