Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mteb/models/search_wrappers.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def _full_corpus_search(
top_k: int,
encode_kwargs: dict[str, Any],
) -> dict[str, list[tuple[float, str]]]:
logger.info("Encoding Corpus in batches... Warning: This might take a while!")
logger.info("Encoding Corpus in batches (this might take a while)...")
itr = range(0, len(self.task_corpus), self.corpus_chunk_size)

result_heaps = {qid: [] for qid in query_idx_to_id.values()}
Expand Down