We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 76056cf + e5bbb5c commit 0f4e647Copy full SHA for 0f4e647
docs/cross_encoder/training_overview.md
@@ -532,6 +532,7 @@ Sometimes you don't have the required evaluation data to prepare one of these ev
532
533
# Load the STSB dataset (https://huggingface.co/datasets/sentence-transformers/stsb)
534
eval_dataset = load_dataset("sentence-transformers/stsb", split="validation")
535
+ pairs = list(zip(eval_dataset["sentence1"], eval_dataset["sentence2"]))
536
537
# Initialize the evaluator
538
dev_evaluator = CrossEncoderCorrelationEvaluator(
0 commit comments