### Describe the bug BSARDRetrieval does not cover multi-article queries and uses the last document from the list of relevant documents. ### To reproduce I believe that this snippet of code from [BSARDRetrieval](https://github.com/embeddings-benchmark/mteb/blob/4a47f90db1b2fe4a4e1ab75574d2518bbd8f7776/mteb/tasks/Retrieval/fra/BSARDRetrieval.py#L10) contains a bug: ```python for q in queries_raw: for doc_id in q["article_ids"]: self.relevant_docs[self.metadata.eval_splits[0]][str(q["id"])] = { str(doc_id): 1 } ``` It uses only the last document from ` q["article_ids"]`, but it does not seem to be intended. ### Additional information _No response_ ### Are you interested to contribute a fix for this bug? Yes