Datasets:
mteb
/

Modalities:
Tabular
Text
Formats:
json
Libraries:
Datasets
Dask
Muennighoff commited on
Commit
32d206e
·
verified ·
1 Parent(s): dedc5f8

Scheduled Commit

Browse files
data/retrieval_battle-8d38bb89-1e1a-471a-8b9e-35c1f784690e.jsonl CHANGED
@@ -12,3 +12,4 @@
12
  {"tstamp": 1722365106.2273, "task_type": "retrieval", "type": "rightvote", "models": ["", ""], "ip": "", "0_conv_id": "d6d55602c73c4ae5bdcca137fa7bdfba", "0_model_name": "nomic-ai/nomic-embed-text-v1.5", "0_prompt": "what is the difference between service and services?", "0_output": [["what is the difference between service and services?", "Stackoverflow Stackexchange\n\nQ: Spring RestTemplate POST Request with URL encoded data I'm new to Spring and trying to do a rest request with RestTemplate. The Java code should do the same as below curl command:\ncurl --data \"name=feature&color=#5843AD\" --header \"PRIVATE-TOKEN: xyz\" \"https://someserver.com/api/v3/projects/1/labels\"\n\nBut the server rejects the RestTemplate with a 400 Bad Request\nRestTemplate restTemplate = new RestTemplate();\nHttpHeaders headers = new HttpHeaders();\nheaders.add(\"PRIVATE-TOKEN\", \"xyz\");\nHttpEntity<String> entity = new HttpEntity<String>(\"name=feature&color=#5843AD\", headers);\nResponseEntity<LabelCreationResponse> response = restTemplate.exchange(\"https://someserver.com/api/v3/projects/1/labels\", HttpMethod.POST, entity, LabelCreationResponse.class);\n\nCan somebody tell me what I'm doing wrong?\n\nA: I think the problem is that when you try to send data to server didn't set the content type header which should be one of the two: \"application/json\" or \"application/x-www-form-urlencoded\" . In your case is: \"application/x-www-form-urlencoded\" based on your sample params (name and color). This header means \"what type of data my client sends to server\".\nRestTemplate restTemplate = new RestTemplate();\n\nHttpHeaders headers = new HttpHeaders();\nheaders.setContentType(MediaType.APPLICATION_FORM_URLENCODED);\nheaders.add(\"PRIVATE-TOKEN\", \"xyz\");\n\nMultiValueMap<String, String> map = new LinkedMultiValueMap<>();\nmap.add(\"name\",\"feature\");\nmap.add(\"color\",\"#5843AD\");\n\nHttpEntity<MultiValueMap<String, String>> entity = new HttpEntity<>(map, headers);\n\nResponseEntity<LabelCreationResponse> response =\n restTemplate.exchange(\"https://foo/api/v3/projects/1/labels\",\n HttpMethod.POST,\n entity,\n LabelCreationResponse.class);\n\n"]], "0_corpus": "stackexchange", "1_conv_id": "139ac954b90f43fa8538ac61d8e18970", "1_model_name": "mixedbread-ai/mxbai-embed-large-v1", "1_prompt": "what is the difference between service and services?", "1_output": [["what is the difference between service and services?", "Stackoverflow Stackexchange\n\nQ: What is a service? I keep hearing the term \"service\" a lot, but I have a vague understanding of it. Could someone explain what a service is citing some practical examples? \n\nA: It depends on the context. Very abstractly speaking, a service is some sort of program that offers some function, but the internals of which are completely opaque. I.e., a web service is something running somewhere on the web, having some sort of API which you can contact to get or submit some data. What exactly it does is none of your business, it just offers its service to you. On a system, for example a Windows Service may be a program running persistently in the background, doing something. Inside an application, you may have a service layer, which offers some functionality which you can use in the rest of the application through an API, but how exactly it works is irrelevant.\nThat's in contrast to, e.g., a function or library or class, which you usually import, manipulate, use more directly. A service is more self-contained, offering only its functionality with nothing much in the way of introspecting it.\n"]], "1_corpus": "stackexchange"}
13
  {"tstamp": 1722365346.4281, "task_type": "retrieval", "type": "rightvote", "models": ["", ""], "ip": "", "0_conv_id": "c225cc29368447dca969428826fd3660", "0_model_name": "jinaai/jina-embeddings-v2-base-en", "0_prompt": "What's the purpose of `if __name__ == '__main__'`?", "0_output": [["What's the purpose of `if __name__ == '__main__'`?", "Stackoverflow Stackexchange\n\nQ: html dangerous tags to avoid while developing a chat application I am developing a chat application using PHP and jQuery... all messages sent by the chat pair are appended to a <div>. While doing this, I found that tags such as <script> can be entered by users. What tags should I avoid while appending the user's message?\n\nA: Avoid tags that will inject content into the page:\n\n\n*\n\n*applet\n\n*script\n\n*style\n\n*link\n\n*iframe\n\n\nOther tags may be necessary to remove, as well. Maybe you don't want to embed images. These are things that you will need to determine. At the bare minimum, allow <p> and <br />.\n"]], "0_corpus": "stackexchange", "1_conv_id": "95f3ec488c314e2b81635422386eedb6", "1_model_name": "mixedbread-ai/mxbai-embed-large-v1", "1_prompt": "What's the purpose of `if __name__ == '__main__'`?", "1_output": [["What's the purpose of `if __name__ == '__main__'`?", "Stackoverflow Stackexchange\n\nQ: Why does it do this ? if - __name__ == '__main__' \nDuplicate of:\nWhat does if __name__== \"__main__\" do? \n\nConsider this code:\nif __name__ == '__main__':\n import pdb\n pdb.run(\"interact()\\n\")\n\nWhat does the following line mean?\nif(__name__=='__main__')\n\nI fainted.\n\nA: That is a check to see if you are directly running the script or if it is included in a library.\nWhen you run a python script like this:\npython myScript.py\n\nIt sends a parameter, telling you to run the programs first method, which is widely called \"main\", so when __name__ is __main__ you know that the program was executed from a command line or double clicked.\n"]], "1_corpus": "stackexchange"}
14
  {"tstamp": 1722365495.8143, "task_type": "retrieval", "type": "bothbadvote", "models": ["", ""], "ip": "", "0_conv_id": "a4c7486a646e42299791238df7dd3ffd", "0_model_name": "mixedbread-ai/mxbai-embed-large-v1", "0_prompt": "what is dense retrieval", "0_output": [["what is dense retrieval", "Latent semantic analysis\n\nSemantic hashing In semantic hashing documents are mapped to memory addresses by means of a neural network in such a way that semantically similar documents are located at nearby addresses. Deep neural network essentially builds a graphical model of the word-count vectors obtained from a large set of documents. Documents similar to a query document can then be found by simply accessing all the addresses that differ by only a few bits from the address of the query document. This way of extending the efficiency of hash-coding to approximate matching is much faster than locality sensitive hashing, which is the fastest current method.\nLatent semantic indexing\nLatent semantic indexing (LSI) is an indexing and retrieval method that uses a mathematical technique called singular value decomposition (SVD) to identify patterns in the relationships between the terms and concepts contained in an unstructured collection of text. LSI is based on the principle that words that are used in the same contexts tend to have similar meanings. A key feature of LSI is its ability to extract the conceptual content of a body of text by establishing associations between those terms that occur in similar contexts.\nLSI is also an application of correspondence analysis, a multivariate statistical technique developed by Jean-Paul Benzécri in the early 1970s, to a contingency table built from word counts in documents."]], "0_corpus": "wikipedia", "1_conv_id": "960bea43fd02452d9429b486a6719b0e", "1_model_name": "Salesforce/SFR-Embedding-2_R", "1_prompt": "what is dense retrieval", "1_output": [["what is dense retrieval", "Information retrieval\n\nInformation retrieval (IR) in computing and information science is the task of identifying and retrieving information system resources that are relevant to an information need. The information need can be specified in the form of a search query. In the case of document retrieval, queries can be based on full-text or other content-based indexing. Information retrieval is the science of searching for information in a document, searching for documents themselves, and also searching for the metadata that describes data, and for databases of texts, images or sounds.\nAutomated information retrieval systems are used to reduce what has been called information overload. An IR system is a software system that provides access to books, journals and other documents; it also stores and manages those documents. Web search engines are the most visible IR applications."]], "1_corpus": "wikipedia"}
 
 
12
  {"tstamp": 1722365106.2273, "task_type": "retrieval", "type": "rightvote", "models": ["", ""], "ip": "", "0_conv_id": "d6d55602c73c4ae5bdcca137fa7bdfba", "0_model_name": "nomic-ai/nomic-embed-text-v1.5", "0_prompt": "what is the difference between service and services?", "0_output": [["what is the difference between service and services?", "Stackoverflow Stackexchange\n\nQ: Spring RestTemplate POST Request with URL encoded data I'm new to Spring and trying to do a rest request with RestTemplate. The Java code should do the same as below curl command:\ncurl --data \"name=feature&color=#5843AD\" --header \"PRIVATE-TOKEN: xyz\" \"https://someserver.com/api/v3/projects/1/labels\"\n\nBut the server rejects the RestTemplate with a 400 Bad Request\nRestTemplate restTemplate = new RestTemplate();\nHttpHeaders headers = new HttpHeaders();\nheaders.add(\"PRIVATE-TOKEN\", \"xyz\");\nHttpEntity<String> entity = new HttpEntity<String>(\"name=feature&color=#5843AD\", headers);\nResponseEntity<LabelCreationResponse> response = restTemplate.exchange(\"https://someserver.com/api/v3/projects/1/labels\", HttpMethod.POST, entity, LabelCreationResponse.class);\n\nCan somebody tell me what I'm doing wrong?\n\nA: I think the problem is that when you try to send data to server didn't set the content type header which should be one of the two: \"application/json\" or \"application/x-www-form-urlencoded\" . In your case is: \"application/x-www-form-urlencoded\" based on your sample params (name and color). This header means \"what type of data my client sends to server\".\nRestTemplate restTemplate = new RestTemplate();\n\nHttpHeaders headers = new HttpHeaders();\nheaders.setContentType(MediaType.APPLICATION_FORM_URLENCODED);\nheaders.add(\"PRIVATE-TOKEN\", \"xyz\");\n\nMultiValueMap<String, String> map = new LinkedMultiValueMap<>();\nmap.add(\"name\",\"feature\");\nmap.add(\"color\",\"#5843AD\");\n\nHttpEntity<MultiValueMap<String, String>> entity = new HttpEntity<>(map, headers);\n\nResponseEntity<LabelCreationResponse> response =\n restTemplate.exchange(\"https://foo/api/v3/projects/1/labels\",\n HttpMethod.POST,\n entity,\n LabelCreationResponse.class);\n\n"]], "0_corpus": "stackexchange", "1_conv_id": "139ac954b90f43fa8538ac61d8e18970", "1_model_name": "mixedbread-ai/mxbai-embed-large-v1", "1_prompt": "what is the difference between service and services?", "1_output": [["what is the difference between service and services?", "Stackoverflow Stackexchange\n\nQ: What is a service? I keep hearing the term \"service\" a lot, but I have a vague understanding of it. Could someone explain what a service is citing some practical examples? \n\nA: It depends on the context. Very abstractly speaking, a service is some sort of program that offers some function, but the internals of which are completely opaque. I.e., a web service is something running somewhere on the web, having some sort of API which you can contact to get or submit some data. What exactly it does is none of your business, it just offers its service to you. On a system, for example a Windows Service may be a program running persistently in the background, doing something. Inside an application, you may have a service layer, which offers some functionality which you can use in the rest of the application through an API, but how exactly it works is irrelevant.\nThat's in contrast to, e.g., a function or library or class, which you usually import, manipulate, use more directly. A service is more self-contained, offering only its functionality with nothing much in the way of introspecting it.\n"]], "1_corpus": "stackexchange"}
13
  {"tstamp": 1722365346.4281, "task_type": "retrieval", "type": "rightvote", "models": ["", ""], "ip": "", "0_conv_id": "c225cc29368447dca969428826fd3660", "0_model_name": "jinaai/jina-embeddings-v2-base-en", "0_prompt": "What's the purpose of `if __name__ == '__main__'`?", "0_output": [["What's the purpose of `if __name__ == '__main__'`?", "Stackoverflow Stackexchange\n\nQ: html dangerous tags to avoid while developing a chat application I am developing a chat application using PHP and jQuery... all messages sent by the chat pair are appended to a <div>. While doing this, I found that tags such as <script> can be entered by users. What tags should I avoid while appending the user's message?\n\nA: Avoid tags that will inject content into the page:\n\n\n*\n\n*applet\n\n*script\n\n*style\n\n*link\n\n*iframe\n\n\nOther tags may be necessary to remove, as well. Maybe you don't want to embed images. These are things that you will need to determine. At the bare minimum, allow <p> and <br />.\n"]], "0_corpus": "stackexchange", "1_conv_id": "95f3ec488c314e2b81635422386eedb6", "1_model_name": "mixedbread-ai/mxbai-embed-large-v1", "1_prompt": "What's the purpose of `if __name__ == '__main__'`?", "1_output": [["What's the purpose of `if __name__ == '__main__'`?", "Stackoverflow Stackexchange\n\nQ: Why does it do this ? if - __name__ == '__main__' \nDuplicate of:\nWhat does if __name__== \"__main__\" do? \n\nConsider this code:\nif __name__ == '__main__':\n import pdb\n pdb.run(\"interact()\\n\")\n\nWhat does the following line mean?\nif(__name__=='__main__')\n\nI fainted.\n\nA: That is a check to see if you are directly running the script or if it is included in a library.\nWhen you run a python script like this:\npython myScript.py\n\nIt sends a parameter, telling you to run the programs first method, which is widely called \"main\", so when __name__ is __main__ you know that the program was executed from a command line or double clicked.\n"]], "1_corpus": "stackexchange"}
14
  {"tstamp": 1722365495.8143, "task_type": "retrieval", "type": "bothbadvote", "models": ["", ""], "ip": "", "0_conv_id": "a4c7486a646e42299791238df7dd3ffd", "0_model_name": "mixedbread-ai/mxbai-embed-large-v1", "0_prompt": "what is dense retrieval", "0_output": [["what is dense retrieval", "Latent semantic analysis\n\nSemantic hashing In semantic hashing documents are mapped to memory addresses by means of a neural network in such a way that semantically similar documents are located at nearby addresses. Deep neural network essentially builds a graphical model of the word-count vectors obtained from a large set of documents. Documents similar to a query document can then be found by simply accessing all the addresses that differ by only a few bits from the address of the query document. This way of extending the efficiency of hash-coding to approximate matching is much faster than locality sensitive hashing, which is the fastest current method.\nLatent semantic indexing\nLatent semantic indexing (LSI) is an indexing and retrieval method that uses a mathematical technique called singular value decomposition (SVD) to identify patterns in the relationships between the terms and concepts contained in an unstructured collection of text. LSI is based on the principle that words that are used in the same contexts tend to have similar meanings. A key feature of LSI is its ability to extract the conceptual content of a body of text by establishing associations between those terms that occur in similar contexts.\nLSI is also an application of correspondence analysis, a multivariate statistical technique developed by Jean-Paul Benzécri in the early 1970s, to a contingency table built from word counts in documents."]], "0_corpus": "wikipedia", "1_conv_id": "960bea43fd02452d9429b486a6719b0e", "1_model_name": "Salesforce/SFR-Embedding-2_R", "1_prompt": "what is dense retrieval", "1_output": [["what is dense retrieval", "Information retrieval\n\nInformation retrieval (IR) in computing and information science is the task of identifying and retrieving information system resources that are relevant to an information need. The information need can be specified in the form of a search query. In the case of document retrieval, queries can be based on full-text or other content-based indexing. Information retrieval is the science of searching for information in a document, searching for documents themselves, and also searching for the metadata that describes data, and for databases of texts, images or sounds.\nAutomated information retrieval systems are used to reduce what has been called information overload. An IR system is a software system that provides access to books, journals and other documents; it also stores and manages those documents. Web search engines are the most visible IR applications."]], "1_corpus": "wikipedia"}
15
+ {"tstamp": 1722367648.9929, "task_type": "retrieval", "type": "bothbadvote", "models": ["", ""], "ip": "", "0_conv_id": "cd65862465c04ec5b52a5544b3e095b7", "0_model_name": "text-embedding-3-large", "0_prompt": "Which milk is best for coffee?", "0_output": [["Which milk is best for coffee?", "Milk coffee\n\nMilk coffee is a category of coffee-based drinks made with milk.\nJohan Nieuhof, the Dutch ambassador to China, is credited as the first person to drink coffee with milk when he experimented with it around 1660.\nVarieties\nBreve\nA breve is an espresso made with a steamed mixture of half milk and half cream (i.e., half and half). Its size can vary. The name relates to the use of cream and milk."]], "0_corpus": "wikipedia", "1_conv_id": "2fbbfb6ab1f24128a2e01dc01a678ac0", "1_model_name": "BM25", "1_prompt": "Which milk is best for coffee?", "1_output": [["Which milk is best for coffee?", "Cha chaan teng\n\nBlack coffee: Hongkongers usually called this jaai fea (lit. \"vegetarian coffee\" / \"just coffee\", emphasising its plain texture) or \"fei sha jaau naai\" (lit. \"get rid of sand and milk\", i.e. coffee without sugar (the \"sand\") and milk)\nHong Kong-style milk tea: A highly popular drink in Hong Kong. Its standard is judged by its aroma, smoothness, and concentration. The tea is soaked in an iron container for several hours to let the flavour come out. If the customer wants condensed milk instead of normal milk, people will often say \"caa zau\" (lit. \"tea go\")\nSweet soy milk (豆漿): Soy milk sweetened with cane sugar and served either hot or cold.\nYuenyeung: A mixture of coffee and tea, originated in Hong Kong. According to traditional Chinese medicine, coffee and tea are \"hot\" and \"cold\" in nature, respectively. A mixing of both thus then yields the best combination for the beverage.\nBlack and White Yuenyeung: A mixture of Ovaltine and Horlicks, originated in Hong Kong.\nHorlicks\nOvaltine\nLemon Tea\nLemonade: Commonly served without sugar or syrup.\nLemon with Ribena\nLemon with Honey: Often, to reduce cost, the honey is replaced with \"Watercress Honey\"\nSalted lemon with 7-Up (鹹檸七): 7-Up, adding lemon marinated in salt, which is good for sore throat\nBlack cow (黑牛): Coca-Cola with vanilla ice cream.\nSnow White (白雪公主): Sprite or 7-Up with vanilla ice cream."]], "1_corpus": "wikipedia"}
data/retrieval_individual-8d38bb89-1e1a-471a-8b9e-35c1f784690e.jsonl CHANGED
@@ -72,3 +72,5 @@
72
  {"tstamp": 1722366808.573, "task_type": "retrieval", "type": "chat", "model": "Salesforce/SFR-Embedding-2_R", "gen_params": {}, "start": 1722366806.2538, "finish": 1722366808.573, "ip": "", "conv_id": "411e98668a6e4744bfdb95ba014a56c8", "model_name": "Salesforce/SFR-Embedding-2_R", "prompt": "hi how are you ", "output": [["hi how are you ", "Howdy\n\nHowdy is an informal salutation in the English language often used in the Southern United States. Originally a shortened form of the inquiry How do ye?, it was first used in Southern England in the 18th century.\nEtymology\nThe word derives from the phrase \"How do ye?,\" which was used in late 16th century England to ask about others' health. The phrase saw increasing degrees of dialectal contraction over time, first being contracted to \"how dee,\" then to \"howdy'ee,\" and finally to its modern form. Despite the etymology of the term, its modern usage is as a greeting and not as an inquiry.\nUse in different states\nIn many rural Southern and Western states, especially in Arizona, California, Colorado, Idaho, Montana, Nevada, New Mexico, Oregon, Texas, and Wyoming, howdy is commonly used in casual contexts as a standard greeting. The term is commonly associated in popular culture specifically with the state of Texas, and the usage of the term is a significant and recognizable component of Texan English. Howdy is also the official greeting of Texas A&M University, though the two are not always automatically associated."]], "corpus": "wikipedia"}
73
  {"tstamp": 1722367064.3504, "task_type": "retrieval", "type": "chat", "model": "Salesforce/SFR-Embedding-2_R", "gen_params": {}, "start": 1722367064.0986, "finish": 1722367064.3504, "ip": "", "conv_id": "a137ffc84eff4239aa7a60386c425ec6", "model_name": "Salesforce/SFR-Embedding-2_R", "prompt": "the rule of the three rightly guided caliphs was called", "output": [["the rule of the three rightly guided caliphs was called", "Rashidun\n\nThe Rashidun () are the first four caliphs (lit.: 'successors') who led the Muslim community following the death of Muhammad: Abu Bakr (), Umar (), Uthman (), and Ali ().\nThe reign of these caliphs, called the Rashidun Caliphate (632–661), is considered in Sunni Islam to have been 'rightly guided' (Arabic: ), meaning that it constitutes a model () to be followed and emulated from a religious point of view.\nHistory\nThe first four caliphs who succeeded Muhammad are known as the Rashidun (rightly-guided) Caliphs.\nAbu Bakr (; )\nUmar ibn al-Khattab (; ) – often known simply as Umar or Omar\nUthman ibn Affan (; ) – often known simply as Uthman, Othman, or Osman\nAli ibn Abi Talib (; ) – often known simply as Ali\nThe succession to Muhammad is the central issue that divides the Muslim community. Sunni Islam, according to the author Carl Ernst, accepts the political status quo of their succession, regardless of its justice, whereas Shia Muslims largely reject the legitimacy of the first three caliphs, and maintain that Muhammad had appointed Ali as his successor."]], "corpus": "wikipedia"}
74
  {"tstamp": 1722367064.3504, "task_type": "retrieval", "type": "chat", "model": "BAAI/bge-large-en-v1.5", "gen_params": {}, "start": 1722367064.0986, "finish": 1722367064.3504, "ip": "", "conv_id": "bb4de3c49176434fbe81b5d300079d17", "model_name": "BAAI/bge-large-en-v1.5", "prompt": "the rule of the three rightly guided caliphs was called", "output": [["the rule of the three rightly guided caliphs was called", "Rashidun\n\nThe Rashidun () are the first four caliphs (lit.: 'successors') who led the Muslim community following the death of Muhammad: Abu Bakr (), Umar (), Uthman (), and Ali ().\nThe reign of these caliphs, called the Rashidun Caliphate (632–661), is considered in Sunni Islam to have been 'rightly guided' (Arabic: ), meaning that it constitutes a model () to be followed and emulated from a religious point of view.\nHistory\nThe first four caliphs who succeeded Muhammad are known as the Rashidun (rightly-guided) Caliphs.\nAbu Bakr (; )\nUmar ibn al-Khattab (; ) – often known simply as Umar or Omar\nUthman ibn Affan (; ) – often known simply as Uthman, Othman, or Osman\nAli ibn Abi Talib (; ) – often known simply as Ali\nThe succession to Muhammad is the central issue that divides the Muslim community. Sunni Islam, according to the author Carl Ernst, accepts the political status quo of their succession, regardless of its justice, whereas Shia Muslims largely reject the legitimacy of the first three caliphs, and maintain that Muhammad had appointed Ali as his successor."]], "corpus": "wikipedia"}
 
 
 
72
  {"tstamp": 1722366808.573, "task_type": "retrieval", "type": "chat", "model": "Salesforce/SFR-Embedding-2_R", "gen_params": {}, "start": 1722366806.2538, "finish": 1722366808.573, "ip": "", "conv_id": "411e98668a6e4744bfdb95ba014a56c8", "model_name": "Salesforce/SFR-Embedding-2_R", "prompt": "hi how are you ", "output": [["hi how are you ", "Howdy\n\nHowdy is an informal salutation in the English language often used in the Southern United States. Originally a shortened form of the inquiry How do ye?, it was first used in Southern England in the 18th century.\nEtymology\nThe word derives from the phrase \"How do ye?,\" which was used in late 16th century England to ask about others' health. The phrase saw increasing degrees of dialectal contraction over time, first being contracted to \"how dee,\" then to \"howdy'ee,\" and finally to its modern form. Despite the etymology of the term, its modern usage is as a greeting and not as an inquiry.\nUse in different states\nIn many rural Southern and Western states, especially in Arizona, California, Colorado, Idaho, Montana, Nevada, New Mexico, Oregon, Texas, and Wyoming, howdy is commonly used in casual contexts as a standard greeting. The term is commonly associated in popular culture specifically with the state of Texas, and the usage of the term is a significant and recognizable component of Texan English. Howdy is also the official greeting of Texas A&M University, though the two are not always automatically associated."]], "corpus": "wikipedia"}
73
  {"tstamp": 1722367064.3504, "task_type": "retrieval", "type": "chat", "model": "Salesforce/SFR-Embedding-2_R", "gen_params": {}, "start": 1722367064.0986, "finish": 1722367064.3504, "ip": "", "conv_id": "a137ffc84eff4239aa7a60386c425ec6", "model_name": "Salesforce/SFR-Embedding-2_R", "prompt": "the rule of the three rightly guided caliphs was called", "output": [["the rule of the three rightly guided caliphs was called", "Rashidun\n\nThe Rashidun () are the first four caliphs (lit.: 'successors') who led the Muslim community following the death of Muhammad: Abu Bakr (), Umar (), Uthman (), and Ali ().\nThe reign of these caliphs, called the Rashidun Caliphate (632–661), is considered in Sunni Islam to have been 'rightly guided' (Arabic: ), meaning that it constitutes a model () to be followed and emulated from a religious point of view.\nHistory\nThe first four caliphs who succeeded Muhammad are known as the Rashidun (rightly-guided) Caliphs.\nAbu Bakr (; )\nUmar ibn al-Khattab (; ) – often known simply as Umar or Omar\nUthman ibn Affan (; ) – often known simply as Uthman, Othman, or Osman\nAli ibn Abi Talib (; ) – often known simply as Ali\nThe succession to Muhammad is the central issue that divides the Muslim community. Sunni Islam, according to the author Carl Ernst, accepts the political status quo of their succession, regardless of its justice, whereas Shia Muslims largely reject the legitimacy of the first three caliphs, and maintain that Muhammad had appointed Ali as his successor."]], "corpus": "wikipedia"}
74
  {"tstamp": 1722367064.3504, "task_type": "retrieval", "type": "chat", "model": "BAAI/bge-large-en-v1.5", "gen_params": {}, "start": 1722367064.0986, "finish": 1722367064.3504, "ip": "", "conv_id": "bb4de3c49176434fbe81b5d300079d17", "model_name": "BAAI/bge-large-en-v1.5", "prompt": "the rule of the three rightly guided caliphs was called", "output": [["the rule of the three rightly guided caliphs was called", "Rashidun\n\nThe Rashidun () are the first four caliphs (lit.: 'successors') who led the Muslim community following the death of Muhammad: Abu Bakr (), Umar (), Uthman (), and Ali ().\nThe reign of these caliphs, called the Rashidun Caliphate (632–661), is considered in Sunni Islam to have been 'rightly guided' (Arabic: ), meaning that it constitutes a model () to be followed and emulated from a religious point of view.\nHistory\nThe first four caliphs who succeeded Muhammad are known as the Rashidun (rightly-guided) Caliphs.\nAbu Bakr (; )\nUmar ibn al-Khattab (; ) – often known simply as Umar or Omar\nUthman ibn Affan (; ) – often known simply as Uthman, Othman, or Osman\nAli ibn Abi Talib (; ) – often known simply as Ali\nThe succession to Muhammad is the central issue that divides the Muslim community. Sunni Islam, according to the author Carl Ernst, accepts the political status quo of their succession, regardless of its justice, whereas Shia Muslims largely reject the legitimacy of the first three caliphs, and maintain that Muhammad had appointed Ali as his successor."]], "corpus": "wikipedia"}
75
+ {"tstamp": 1722367634.7343, "task_type": "retrieval", "type": "chat", "model": "text-embedding-3-large", "gen_params": {}, "start": 1722367634.0962, "finish": 1722367634.7343, "ip": "", "conv_id": "cd65862465c04ec5b52a5544b3e095b7", "model_name": "text-embedding-3-large", "prompt": "Which milk is best for coffee?", "output": [["Which milk is best for coffee?", "Milk coffee\n\nMilk coffee is a category of coffee-based drinks made with milk.\nJohan Nieuhof, the Dutch ambassador to China, is credited as the first person to drink coffee with milk when he experimented with it around 1660.\nVarieties\nBreve\nA breve is an espresso made with a steamed mixture of half milk and half cream (i.e., half and half). Its size can vary. The name relates to the use of cream and milk."]], "corpus": "wikipedia"}
76
+ {"tstamp": 1722367634.7343, "task_type": "retrieval", "type": "chat", "model": "BM25", "gen_params": {}, "start": 1722367634.0962, "finish": 1722367634.7343, "ip": "", "conv_id": "2fbbfb6ab1f24128a2e01dc01a678ac0", "model_name": "BM25", "prompt": "Which milk is best for coffee?", "output": [["Which milk is best for coffee?", "Cha chaan teng\n\nBlack coffee: Hongkongers usually called this jaai fea (lit. \"vegetarian coffee\" / \"just coffee\", emphasising its plain texture) or \"fei sha jaau naai\" (lit. \"get rid of sand and milk\", i.e. coffee without sugar (the \"sand\") and milk)\nHong Kong-style milk tea: A highly popular drink in Hong Kong. Its standard is judged by its aroma, smoothness, and concentration. The tea is soaked in an iron container for several hours to let the flavour come out. If the customer wants condensed milk instead of normal milk, people will often say \"caa zau\" (lit. \"tea go\")\nSweet soy milk (豆漿): Soy milk sweetened with cane sugar and served either hot or cold.\nYuenyeung: A mixture of coffee and tea, originated in Hong Kong. According to traditional Chinese medicine, coffee and tea are \"hot\" and \"cold\" in nature, respectively. A mixing of both thus then yields the best combination for the beverage.\nBlack and White Yuenyeung: A mixture of Ovaltine and Horlicks, originated in Hong Kong.\nHorlicks\nOvaltine\nLemon Tea\nLemonade: Commonly served without sugar or syrup.\nLemon with Ribena\nLemon with Honey: Often, to reduce cost, the honey is replaced with \"Watercress Honey\"\nSalted lemon with 7-Up (鹹檸七): 7-Up, adding lemon marinated in salt, which is good for sore throat\nBlack cow (黑牛): Coca-Cola with vanilla ice cream.\nSnow White (白雪公主): Sprite or 7-Up with vanilla ice cream."]], "corpus": "wikipedia"}