mlflow.genai.evaluate() pipeline alongside experiment tracking and model management.
Using Phoenix Evaluators in MLflow
Phoenix evaluators such asHallucination, QACorrectness, and Toxicity can be used directly as MLflow scorers:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Use Phoenix evaluators as MLflow scorers for GenAI evaluation workflows.
mlflow.genai.evaluate() pipeline alongside experiment tracking and model management.
Hallucination, QACorrectness, and Toxicity can be used directly as MLflow scorers:
from mlflow.genai.scorers.phoenix import Hallucination, QACorrectness
import mlflow
results = mlflow.genai.evaluate(
data=eval_dataset,
scorers=[
Hallucination(model="openai:/gpt-4o"),
QACorrectness(model="openai:/gpt-4o"),
],
)
Was this page helpful?
