From 8d70117f7c458d75e27f2f13daa8236f8617b470 Mon Sep 17 00:00:00 2001 From: Bagatur Date: Tue, 17 Dec 2024 13:34:23 -0800 Subject: [PATCH] pass tuple target in pairwise how-to --- docs/evaluation/how_to_guides/evaluate_pairwise.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/evaluation/how_to_guides/evaluate_pairwise.mdx b/docs/evaluation/how_to_guides/evaluate_pairwise.mdx index 44eaf76a..375791c0 100644 --- a/docs/evaluation/how_to_guides/evaluate_pairwise.mdx +++ b/docs/evaluation/how_to_guides/evaluate_pairwise.mdx @@ -124,7 +124,7 @@ In the Python example below, we are pulling [this structured prompt](https://smi return scores evaluate( - ["experiment-1", "experiment-2"], # Replace with the names/IDs of your experiments + ("experiment-1", "experiment-2"), # Replace with the names/IDs of your experiments evaluators=[ranked_preference], randomize_order=True, max_concurrency=4,