Datasets:
mteb
/

Modalities:
Tabular
Text
Formats:
json
Libraries:
Datasets
Dask
Muennighoff commited on
Commit
fb35eec
·
verified ·
1 Parent(s): 212317f

Scheduled Commit

Browse files
data/retrieval_battle-c4bdd700-2c9c-4d9b-92d7-63fecd0c1575.jsonl CHANGED
@@ -12,3 +12,5 @@
12
  {"tstamp": 1722439202.6928, "task_type": "retrieval", "type": "tievote", "models": ["", ""], "ip": "", "0_conv_id": "91b5c09508374591a1cc1ab11e7960d0", "0_model_name": "mixedbread-ai/mxbai-embed-large-v1", "0_prompt": "what the difference between mega charizard x and y?", "0_output": [["what the difference between mega charizard x and y?", "Gaming Stackexchange\n\nQ: What are the differences between Pokemon X and Pokemon Y? I want to know what are the differences between version X and Y, like pokemons, places, items, megaevolutions, etc.\n\nA: Pokemon Exclusive to Version X\n\n\n*\n\n*Mega Charizard X\n\n*Mega Mewtwo X\n\n*Staryu/Starmie\n\n*Pinsir\n\n*Houndour/Houndoom\n\n*Poochyena/Mightyena\n\n*Aron/Lairon/Aggron\n\n*Sawk\n\n*Swirlix/Slurpuff\n\n*Clauncher/Clawitzer\n\n*Xerneas\n\n\nPokemon Exclusive to Version Y\n\n\n*\n\n*Mega Charizard Y\n\n*Mega Mewtwo Y\n\n*Shellder/Cloyster\n\n*Heracross\n\n*Larvitar/Pupitar/Tyranitar\n\n*Electrike/Manectric\n\n*Purrloin/Liepard\n\n*Throh\n\n*Spritzee/Aromatisse\n\n*Skrelp/Dragalge\n\n*Yveltal\n\n\nSource - Serebii\nIt's also been noted that there are minor story differences:\n\nWithout giving away too much, both legendaries do end up having an impact on the story, so it's a matter of preference as to which one you want to see.\n\nSource: Shack News\nAs always the main thing you should consider when choosing between Pokemon X and Pokemon Y is which version exclusive Pokemon appeal to you the most.\n"]], "0_corpus": "stackexchange", "1_conv_id": "66440ef005a64e6ca18305711af5bb40", "1_model_name": "Salesforce/SFR-Embedding-2_R", "1_prompt": "what the difference between mega charizard x and y?", "1_output": [["what the difference between mega charizard x and y?", "Gaming Stackexchange\n\nQ: What are the differences between Pokemon X and Pokemon Y? I want to know what are the differences between version X and Y, like pokemons, places, items, megaevolutions, etc.\n\nA: Pokemon Exclusive to Version X\n\n\n*\n\n*Mega Charizard X\n\n*Mega Mewtwo X\n\n*Staryu/Starmie\n\n*Pinsir\n\n*Houndour/Houndoom\n\n*Poochyena/Mightyena\n\n*Aron/Lairon/Aggron\n\n*Sawk\n\n*Swirlix/Slurpuff\n\n*Clauncher/Clawitzer\n\n*Xerneas\n\n\nPokemon Exclusive to Version Y\n\n\n*\n\n*Mega Charizard Y\n\n*Mega Mewtwo Y\n\n*Shellder/Cloyster\n\n*Heracross\n\n*Larvitar/Pupitar/Tyranitar\n\n*Electrike/Manectric\n\n*Purrloin/Liepard\n\n*Throh\n\n*Spritzee/Aromatisse\n\n*Skrelp/Dragalge\n\n*Yveltal\n\n\nSource - Serebii\nIt's also been noted that there are minor story differences:\n\nWithout giving away too much, both legendaries do end up having an impact on the story, so it's a matter of preference as to which one you want to see.\n\nSource: Shack News\nAs always the main thing you should consider when choosing between Pokemon X and Pokemon Y is which version exclusive Pokemon appeal to you the most.\n"]], "1_corpus": "stackexchange"}
13
  {"tstamp": 1722439222.3324, "task_type": "retrieval", "type": "leftvote", "models": ["", ""], "ip": "", "0_conv_id": "5478714bcf9c4b018c0f9baa922a7738", "0_model_name": "intfloat/e5-mistral-7b-instruct", "0_prompt": "mcpe how to split items?", "0_output": [["mcpe how to split items?", "Gaming Stackexchange\n\nQ: How to divide item stack in MC PE? I have been struggling with this for a while and couldn’t find a clear answer online so I thought I’d post it since I couldn’t find a correct answer anywhere. \nHow can I divide a stack in my inventory without switching to classic mode? Unable to right click or hold shift since it is on a smartphone. Some answers I found said something about a coin icon on the left but I don’t see it. \n\nA: To divide a stack press and hold on it until a green bar starts filling right above the item. The amount the green bar fills is the amount that is being selected. If half the bar is filled then half the stack is selected. Release the hold when the green bar fills to your desired amount. Tap an empty space in your inventory to move the selected items to the new slot.\n"]], "0_corpus": "stackexchange", "1_conv_id": "e8b8f1b269f24c9abed6a72f410a46bb", "1_model_name": "BAAI/bge-large-en-v1.5", "1_prompt": "mcpe how to split items?", "1_output": [["mcpe how to split items?", "Stackoverflow Stackexchange\n\nQ: split items in list How can I turn the following list\n['1','2','A,B,C,D','7','8']\n\ninto\n['1','2','A','B','C','D','7','8']\nin the most pythonic way?\nI have very unpythonic code that creates nested list, and then flatterens:\nsum ( [ word.split(',') for word in words ], [] )\n\n\nA: In [1]: from itertools import chain\n\nIn [2]: lis=['1','2','A,B,C,D','7','8']\n\n\nIn [5]: list(chain(*(x.split(',') for x in lis)))\nOut[5]: ['1', '2', 'A', 'B', 'C', 'D', '7', '8']\n\nto further reduce the unwanted split() calls:\nIn [7]: list(chain(*(x.split(',') if ',' in x else x for x in lis)))\nOut[7]: ['1', '2', 'A', 'B', 'C', 'D', '7', '8']\n\nusing map():\nIn [8]: list(chain(*map(lambda x:x.split(','),lis)))\nOut[8]: ['1', '2', 'A', 'B', 'C', 'D', '7', '8']\n\nIn [9]: list(chain(*map(lambda x:x.split(',') if ',' in x else x,lis)))\nOut[9]: ['1', '2', 'A', 'B', 'C', 'D', '7', '8']\n\n"]], "1_corpus": "stackexchange"}
14
  {"tstamp": 1722439233.6545, "task_type": "retrieval", "type": "tievote", "models": ["", ""], "ip": "", "0_conv_id": "40415139651e41369a555cbf1b059530", "0_model_name": "voyage-multilingual-2", "0_prompt": "Survey examining models like ELMo and BERT and their impact on contextual word representations.", "0_output": [["Survey examining models like ELMo and BERT and their impact on contextual word representations.", "Title: A Survey on Contextual Embeddings\n\nAbstract: Contextual embeddings, such as ELMo and BERT, move beyond global word representations like Word2Vec and achieve ground-breaking performance on a wide range of natural language processing tasks. Contextual embeddings assign each word a representation based on its context, thereby capturing uses of words across varied contexts and encoding knowledge that transfers across languages. In this survey, we review existing contextual embedding models, cross-lingual polyglot pre-training, the application of contextual embeddings in downstream tasks, model compression, and model analyses."]], "0_corpus": "arxiv", "1_conv_id": "352b6a0075ce4dad8b290e0ae9ac7048", "1_model_name": "BAAI/bge-large-en-v1.5", "1_prompt": "Survey examining models like ELMo and BERT and their impact on contextual word representations.", "1_output": [["Survey examining models like ELMo and BERT and their impact on contextual word representations.", "Title: A Survey on Contextual Embeddings\n\nAbstract: Contextual embeddings, such as ELMo and BERT, move beyond global word representations like Word2Vec and achieve ground-breaking performance on a wide range of natural language processing tasks. Contextual embeddings assign each word a representation based on its context, thereby capturing uses of words across varied contexts and encoding knowledge that transfers across languages. In this survey, we review existing contextual embedding models, cross-lingual polyglot pre-training, the application of contextual embeddings in downstream tasks, model compression, and model analyses."]], "1_corpus": "arxiv"}
 
 
 
12
  {"tstamp": 1722439202.6928, "task_type": "retrieval", "type": "tievote", "models": ["", ""], "ip": "", "0_conv_id": "91b5c09508374591a1cc1ab11e7960d0", "0_model_name": "mixedbread-ai/mxbai-embed-large-v1", "0_prompt": "what the difference between mega charizard x and y?", "0_output": [["what the difference between mega charizard x and y?", "Gaming Stackexchange\n\nQ: What are the differences between Pokemon X and Pokemon Y? I want to know what are the differences between version X and Y, like pokemons, places, items, megaevolutions, etc.\n\nA: Pokemon Exclusive to Version X\n\n\n*\n\n*Mega Charizard X\n\n*Mega Mewtwo X\n\n*Staryu/Starmie\n\n*Pinsir\n\n*Houndour/Houndoom\n\n*Poochyena/Mightyena\n\n*Aron/Lairon/Aggron\n\n*Sawk\n\n*Swirlix/Slurpuff\n\n*Clauncher/Clawitzer\n\n*Xerneas\n\n\nPokemon Exclusive to Version Y\n\n\n*\n\n*Mega Charizard Y\n\n*Mega Mewtwo Y\n\n*Shellder/Cloyster\n\n*Heracross\n\n*Larvitar/Pupitar/Tyranitar\n\n*Electrike/Manectric\n\n*Purrloin/Liepard\n\n*Throh\n\n*Spritzee/Aromatisse\n\n*Skrelp/Dragalge\n\n*Yveltal\n\n\nSource - Serebii\nIt's also been noted that there are minor story differences:\n\nWithout giving away too much, both legendaries do end up having an impact on the story, so it's a matter of preference as to which one you want to see.\n\nSource: Shack News\nAs always the main thing you should consider when choosing between Pokemon X and Pokemon Y is which version exclusive Pokemon appeal to you the most.\n"]], "0_corpus": "stackexchange", "1_conv_id": "66440ef005a64e6ca18305711af5bb40", "1_model_name": "Salesforce/SFR-Embedding-2_R", "1_prompt": "what the difference between mega charizard x and y?", "1_output": [["what the difference between mega charizard x and y?", "Gaming Stackexchange\n\nQ: What are the differences between Pokemon X and Pokemon Y? I want to know what are the differences between version X and Y, like pokemons, places, items, megaevolutions, etc.\n\nA: Pokemon Exclusive to Version X\n\n\n*\n\n*Mega Charizard X\n\n*Mega Mewtwo X\n\n*Staryu/Starmie\n\n*Pinsir\n\n*Houndour/Houndoom\n\n*Poochyena/Mightyena\n\n*Aron/Lairon/Aggron\n\n*Sawk\n\n*Swirlix/Slurpuff\n\n*Clauncher/Clawitzer\n\n*Xerneas\n\n\nPokemon Exclusive to Version Y\n\n\n*\n\n*Mega Charizard Y\n\n*Mega Mewtwo Y\n\n*Shellder/Cloyster\n\n*Heracross\n\n*Larvitar/Pupitar/Tyranitar\n\n*Electrike/Manectric\n\n*Purrloin/Liepard\n\n*Throh\n\n*Spritzee/Aromatisse\n\n*Skrelp/Dragalge\n\n*Yveltal\n\n\nSource - Serebii\nIt's also been noted that there are minor story differences:\n\nWithout giving away too much, both legendaries do end up having an impact on the story, so it's a matter of preference as to which one you want to see.\n\nSource: Shack News\nAs always the main thing you should consider when choosing between Pokemon X and Pokemon Y is which version exclusive Pokemon appeal to you the most.\n"]], "1_corpus": "stackexchange"}
13
  {"tstamp": 1722439222.3324, "task_type": "retrieval", "type": "leftvote", "models": ["", ""], "ip": "", "0_conv_id": "5478714bcf9c4b018c0f9baa922a7738", "0_model_name": "intfloat/e5-mistral-7b-instruct", "0_prompt": "mcpe how to split items?", "0_output": [["mcpe how to split items?", "Gaming Stackexchange\n\nQ: How to divide item stack in MC PE? I have been struggling with this for a while and couldn’t find a clear answer online so I thought I’d post it since I couldn’t find a correct answer anywhere. \nHow can I divide a stack in my inventory without switching to classic mode? Unable to right click or hold shift since it is on a smartphone. Some answers I found said something about a coin icon on the left but I don’t see it. \n\nA: To divide a stack press and hold on it until a green bar starts filling right above the item. The amount the green bar fills is the amount that is being selected. If half the bar is filled then half the stack is selected. Release the hold when the green bar fills to your desired amount. Tap an empty space in your inventory to move the selected items to the new slot.\n"]], "0_corpus": "stackexchange", "1_conv_id": "e8b8f1b269f24c9abed6a72f410a46bb", "1_model_name": "BAAI/bge-large-en-v1.5", "1_prompt": "mcpe how to split items?", "1_output": [["mcpe how to split items?", "Stackoverflow Stackexchange\n\nQ: split items in list How can I turn the following list\n['1','2','A,B,C,D','7','8']\n\ninto\n['1','2','A','B','C','D','7','8']\nin the most pythonic way?\nI have very unpythonic code that creates nested list, and then flatterens:\nsum ( [ word.split(',') for word in words ], [] )\n\n\nA: In [1]: from itertools import chain\n\nIn [2]: lis=['1','2','A,B,C,D','7','8']\n\n\nIn [5]: list(chain(*(x.split(',') for x in lis)))\nOut[5]: ['1', '2', 'A', 'B', 'C', 'D', '7', '8']\n\nto further reduce the unwanted split() calls:\nIn [7]: list(chain(*(x.split(',') if ',' in x else x for x in lis)))\nOut[7]: ['1', '2', 'A', 'B', 'C', 'D', '7', '8']\n\nusing map():\nIn [8]: list(chain(*map(lambda x:x.split(','),lis)))\nOut[8]: ['1', '2', 'A', 'B', 'C', 'D', '7', '8']\n\nIn [9]: list(chain(*map(lambda x:x.split(',') if ',' in x else x,lis)))\nOut[9]: ['1', '2', 'A', 'B', 'C', 'D', '7', '8']\n\n"]], "1_corpus": "stackexchange"}
14
  {"tstamp": 1722439233.6545, "task_type": "retrieval", "type": "tievote", "models": ["", ""], "ip": "", "0_conv_id": "40415139651e41369a555cbf1b059530", "0_model_name": "voyage-multilingual-2", "0_prompt": "Survey examining models like ELMo and BERT and their impact on contextual word representations.", "0_output": [["Survey examining models like ELMo and BERT and their impact on contextual word representations.", "Title: A Survey on Contextual Embeddings\n\nAbstract: Contextual embeddings, such as ELMo and BERT, move beyond global word representations like Word2Vec and achieve ground-breaking performance on a wide range of natural language processing tasks. Contextual embeddings assign each word a representation based on its context, thereby capturing uses of words across varied contexts and encoding knowledge that transfers across languages. In this survey, we review existing contextual embedding models, cross-lingual polyglot pre-training, the application of contextual embeddings in downstream tasks, model compression, and model analyses."]], "0_corpus": "arxiv", "1_conv_id": "352b6a0075ce4dad8b290e0ae9ac7048", "1_model_name": "BAAI/bge-large-en-v1.5", "1_prompt": "Survey examining models like ELMo and BERT and their impact on contextual word representations.", "1_output": [["Survey examining models like ELMo and BERT and their impact on contextual word representations.", "Title: A Survey on Contextual Embeddings\n\nAbstract: Contextual embeddings, such as ELMo and BERT, move beyond global word representations like Word2Vec and achieve ground-breaking performance on a wide range of natural language processing tasks. Contextual embeddings assign each word a representation based on its context, thereby capturing uses of words across varied contexts and encoding knowledge that transfers across languages. In this survey, we review existing contextual embedding models, cross-lingual polyglot pre-training, the application of contextual embeddings in downstream tasks, model compression, and model analyses."]], "1_corpus": "arxiv"}
15
+ {"tstamp": 1722439246.7796, "task_type": "retrieval", "type": "tievote", "models": ["", ""], "ip": "", "0_conv_id": "0673117b825548babc52ab352f07e856", "0_model_name": "intfloat/e5-mistral-7b-instruct", "0_prompt": "how much older is arwen than aragorn?", "0_output": [["how much older is arwen than aragorn?", "Scifi Stackexchange\n\nQ: How old was Lady Arwen, wife of Aragorn in the Lord of the Rings? Lady Arwen is possibly thousands of years old when The Lord of the Rings starts off. But exactly how old was she? What was the age difference between her and Aragorn? Considering the age difference, would not Aragorn seem to be a small kid in front of her?\n\nA: The Tale of Years (Appendix B) has this entry in the Third Age:\n\n241 Birth of Arwen Undómiel.\n\nSo Arwen was 2,777 years old in TA3018 when the War of the Ring happened.\nElrond makes exactly your point when Aragorn first falls in love with her:\n\n\"But as for Arwen the Fair, Lady of Imladris and of Lórien, Evenstar of her people, she is of lineage greater than yours, and she has lived in the world already so long that to her you are but as a yearling shoot beside a young birch of many summers. She is too far above you. And so, I think, it may well seem to her.\"\n\nBut she does fall in love with him anyway.\n"]], "0_corpus": "stackexchange", "1_conv_id": "fbc8618cec6047e6815c508db80bce51", "1_model_name": "Salesforce/SFR-Embedding-2_R", "1_prompt": "how much older is arwen than aragorn?", "1_output": [["how much older is arwen than aragorn?", "Scifi Stackexchange\n\nQ: How old was Lady Arwen, wife of Aragorn in the Lord of the Rings? Lady Arwen is possibly thousands of years old when The Lord of the Rings starts off. But exactly how old was she? What was the age difference between her and Aragorn? Considering the age difference, would not Aragorn seem to be a small kid in front of her?\n\nA: The Tale of Years (Appendix B) has this entry in the Third Age:\n\n241 Birth of Arwen Undómiel.\n\nSo Arwen was 2,777 years old in TA3018 when the War of the Ring happened.\nElrond makes exactly your point when Aragorn first falls in love with her:\n\n\"But as for Arwen the Fair, Lady of Imladris and of Lórien, Evenstar of her people, she is of lineage greater than yours, and she has lived in the world already so long that to her you are but as a yearling shoot beside a young birch of many summers. She is too far above you. And so, I think, it may well seem to her.\"\n\nBut she does fall in love with him anyway.\n"]], "1_corpus": "stackexchange"}
16
+ {"tstamp": 1722439271.9889, "task_type": "retrieval", "type": "leftvote", "models": ["", ""], "ip": "", "0_conv_id": "56f96663188a4324a3626ff5721d318d", "0_model_name": "voyage-multilingual-2", "0_prompt": "answer of do you mind?", "0_output": [["answer of do you mind?", "English Stackexchange\n\nQ: Answering the question: Do you mind if...? The following always puzzles me as a non-native speaker. \nWhen somebody asks the question \"Do you mind if...\", there seem to be two possible responses. \n\n\n*\n\n*\"Sure\" and \"No, not at all\", which both mean that the person doesn't mind.\n\n*\"Actually, I do mind\", which means that the person does mind.\n\n\nWhy is this so confusing? Especially, how come people reply \"Sure\" to this question, if that could be understood to mean that they for sure do mind?\n\nA: \"Sure\" isn't answering the question as asked; it's answering an implied question, namely: \"is it OK with you if...\".\n\"No, not at all\" is answering the question, taken literally.\n"]], "0_corpus": "stackexchange", "1_conv_id": "13b6abf21ddb4697b0e775567e0d2427", "1_model_name": "nomic-ai/nomic-embed-text-v1.5", "1_prompt": "answer of do you mind?", "1_output": [["answer of do you mind?", "Ell Stackexchange\n\nQ: 'Would you mind' and 'Do you mind' Does the auxiliary verb 'do' work rather than the modal 'would' in the example below in the sense of permission:\n\nWould you mind speaking in English?\n\n\nA: \nWould you mind speaking in English?\n\nis a polite request.\n\nDo you mind speaking in English?\n\ncomes across more harshly, and implies you are being inconvenienced somehow by not hearing English. A bit softer than something like:\n\nDo you mind, I am talking on the telephone.\n\nthat you might say when someone tries to interrupt you.\n"]], "1_corpus": "stackexchange"}
data/retrieval_individual-c4bdd700-2c9c-4d9b-92d7-63fecd0c1575.jsonl CHANGED
@@ -40,3 +40,9 @@
40
  {"tstamp": 1722439206.4133, "task_type": "retrieval", "type": "chat", "model": "BAAI/bge-large-en-v1.5", "gen_params": {}, "start": 1722439205.9937, "finish": 1722439206.4133, "ip": "", "conv_id": "e8b8f1b269f24c9abed6a72f410a46bb", "model_name": "BAAI/bge-large-en-v1.5", "prompt": "mcpe how to split items?", "output": [["mcpe how to split items?", "Stackoverflow Stackexchange\n\nQ: split items in list How can I turn the following list\n['1','2','A,B,C,D','7','8']\n\ninto\n['1','2','A','B','C','D','7','8']\nin the most pythonic way?\nI have very unpythonic code that creates nested list, and then flatterens:\nsum ( [ word.split(',') for word in words ], [] )\n\n\nA: In [1]: from itertools import chain\n\nIn [2]: lis=['1','2','A,B,C,D','7','8']\n\n\nIn [5]: list(chain(*(x.split(',') for x in lis)))\nOut[5]: ['1', '2', 'A', 'B', 'C', 'D', '7', '8']\n\nto further reduce the unwanted split() calls:\nIn [7]: list(chain(*(x.split(',') if ',' in x else x for x in lis)))\nOut[7]: ['1', '2', 'A', 'B', 'C', 'D', '7', '8']\n\nusing map():\nIn [8]: list(chain(*map(lambda x:x.split(','),lis)))\nOut[8]: ['1', '2', 'A', 'B', 'C', 'D', '7', '8']\n\nIn [9]: list(chain(*map(lambda x:x.split(',') if ',' in x else x,lis)))\nOut[9]: ['1', '2', 'A', 'B', 'C', 'D', '7', '8']\n\n"]], "corpus": "stackexchange"}
41
  {"tstamp": 1722439229.5771, "task_type": "retrieval", "type": "chat", "model": "voyage-multilingual-2", "gen_params": {}, "start": 1722439225.3886, "finish": 1722439229.5771, "ip": "", "conv_id": "40415139651e41369a555cbf1b059530", "model_name": "voyage-multilingual-2", "prompt": "Survey examining models like ELMo and BERT and their impact on contextual word representations.", "output": [["Survey examining models like ELMo and BERT and their impact on contextual word representations.", "Title: A Survey on Contextual Embeddings\n\nAbstract: Contextual embeddings, such as ELMo and BERT, move beyond global word representations like Word2Vec and achieve ground-breaking performance on a wide range of natural language processing tasks. Contextual embeddings assign each word a representation based on its context, thereby capturing uses of words across varied contexts and encoding knowledge that transfers across languages. In this survey, we review existing contextual embedding models, cross-lingual polyglot pre-training, the application of contextual embeddings in downstream tasks, model compression, and model analyses."]], "corpus": "arxiv"}
42
  {"tstamp": 1722439229.5771, "task_type": "retrieval", "type": "chat", "model": "BAAI/bge-large-en-v1.5", "gen_params": {}, "start": 1722439225.3886, "finish": 1722439229.5771, "ip": "", "conv_id": "352b6a0075ce4dad8b290e0ae9ac7048", "model_name": "BAAI/bge-large-en-v1.5", "prompt": "Survey examining models like ELMo and BERT and their impact on contextual word representations.", "output": [["Survey examining models like ELMo and BERT and their impact on contextual word representations.", "Title: A Survey on Contextual Embeddings\n\nAbstract: Contextual embeddings, such as ELMo and BERT, move beyond global word representations like Word2Vec and achieve ground-breaking performance on a wide range of natural language processing tasks. Contextual embeddings assign each word a representation based on its context, thereby capturing uses of words across varied contexts and encoding knowledge that transfers across languages. In this survey, we review existing contextual embedding models, cross-lingual polyglot pre-training, the application of contextual embeddings in downstream tasks, model compression, and model analyses."]], "corpus": "arxiv"}
 
 
 
 
 
 
 
40
  {"tstamp": 1722439206.4133, "task_type": "retrieval", "type": "chat", "model": "BAAI/bge-large-en-v1.5", "gen_params": {}, "start": 1722439205.9937, "finish": 1722439206.4133, "ip": "", "conv_id": "e8b8f1b269f24c9abed6a72f410a46bb", "model_name": "BAAI/bge-large-en-v1.5", "prompt": "mcpe how to split items?", "output": [["mcpe how to split items?", "Stackoverflow Stackexchange\n\nQ: split items in list How can I turn the following list\n['1','2','A,B,C,D','7','8']\n\ninto\n['1','2','A','B','C','D','7','8']\nin the most pythonic way?\nI have very unpythonic code that creates nested list, and then flatterens:\nsum ( [ word.split(',') for word in words ], [] )\n\n\nA: In [1]: from itertools import chain\n\nIn [2]: lis=['1','2','A,B,C,D','7','8']\n\n\nIn [5]: list(chain(*(x.split(',') for x in lis)))\nOut[5]: ['1', '2', 'A', 'B', 'C', 'D', '7', '8']\n\nto further reduce the unwanted split() calls:\nIn [7]: list(chain(*(x.split(',') if ',' in x else x for x in lis)))\nOut[7]: ['1', '2', 'A', 'B', 'C', 'D', '7', '8']\n\nusing map():\nIn [8]: list(chain(*map(lambda x:x.split(','),lis)))\nOut[8]: ['1', '2', 'A', 'B', 'C', 'D', '7', '8']\n\nIn [9]: list(chain(*map(lambda x:x.split(',') if ',' in x else x,lis)))\nOut[9]: ['1', '2', 'A', 'B', 'C', 'D', '7', '8']\n\n"]], "corpus": "stackexchange"}
41
  {"tstamp": 1722439229.5771, "task_type": "retrieval", "type": "chat", "model": "voyage-multilingual-2", "gen_params": {}, "start": 1722439225.3886, "finish": 1722439229.5771, "ip": "", "conv_id": "40415139651e41369a555cbf1b059530", "model_name": "voyage-multilingual-2", "prompt": "Survey examining models like ELMo and BERT and their impact on contextual word representations.", "output": [["Survey examining models like ELMo and BERT and their impact on contextual word representations.", "Title: A Survey on Contextual Embeddings\n\nAbstract: Contextual embeddings, such as ELMo and BERT, move beyond global word representations like Word2Vec and achieve ground-breaking performance on a wide range of natural language processing tasks. Contextual embeddings assign each word a representation based on its context, thereby capturing uses of words across varied contexts and encoding knowledge that transfers across languages. In this survey, we review existing contextual embedding models, cross-lingual polyglot pre-training, the application of contextual embeddings in downstream tasks, model compression, and model analyses."]], "corpus": "arxiv"}
42
  {"tstamp": 1722439229.5771, "task_type": "retrieval", "type": "chat", "model": "BAAI/bge-large-en-v1.5", "gen_params": {}, "start": 1722439225.3886, "finish": 1722439229.5771, "ip": "", "conv_id": "352b6a0075ce4dad8b290e0ae9ac7048", "model_name": "BAAI/bge-large-en-v1.5", "prompt": "Survey examining models like ELMo and BERT and their impact on contextual word representations.", "output": [["Survey examining models like ELMo and BERT and their impact on contextual word representations.", "Title: A Survey on Contextual Embeddings\n\nAbstract: Contextual embeddings, such as ELMo and BERT, move beyond global word representations like Word2Vec and achieve ground-breaking performance on a wide range of natural language processing tasks. Contextual embeddings assign each word a representation based on its context, thereby capturing uses of words across varied contexts and encoding knowledge that transfers across languages. In this survey, we review existing contextual embedding models, cross-lingual polyglot pre-training, the application of contextual embeddings in downstream tasks, model compression, and model analyses."]], "corpus": "arxiv"}
43
+ {"tstamp": 1722439243.6033, "task_type": "retrieval", "type": "chat", "model": "intfloat/e5-mistral-7b-instruct", "gen_params": {}, "start": 1722439243.4235, "finish": 1722439243.6033, "ip": "", "conv_id": "0673117b825548babc52ab352f07e856", "model_name": "intfloat/e5-mistral-7b-instruct", "prompt": "how much older is arwen than aragorn?", "output": [["how much older is arwen than aragorn?", "Scifi Stackexchange\n\nQ: How old was Lady Arwen, wife of Aragorn in the Lord of the Rings? Lady Arwen is possibly thousands of years old when The Lord of the Rings starts off. But exactly how old was she? What was the age difference between her and Aragorn? Considering the age difference, would not Aragorn seem to be a small kid in front of her?\n\nA: The Tale of Years (Appendix B) has this entry in the Third Age:\n\n241 Birth of Arwen Undómiel.\n\nSo Arwen was 2,777 years old in TA3018 when the War of the Ring happened.\nElrond makes exactly your point when Aragorn first falls in love with her:\n\n\"But as for Arwen the Fair, Lady of Imladris and of Lórien, Evenstar of her people, she is of lineage greater than yours, and she has lived in the world already so long that to her you are but as a yearling shoot beside a young birch of many summers. She is too far above you. And so, I think, it may well seem to her.\"\n\nBut she does fall in love with him anyway.\n"]], "corpus": "stackexchange"}
44
+ {"tstamp": 1722439243.6033, "task_type": "retrieval", "type": "chat", "model": "Salesforce/SFR-Embedding-2_R", "gen_params": {}, "start": 1722439243.4235, "finish": 1722439243.6033, "ip": "", "conv_id": "fbc8618cec6047e6815c508db80bce51", "model_name": "Salesforce/SFR-Embedding-2_R", "prompt": "how much older is arwen than aragorn?", "output": [["how much older is arwen than aragorn?", "Scifi Stackexchange\n\nQ: How old was Lady Arwen, wife of Aragorn in the Lord of the Rings? Lady Arwen is possibly thousands of years old when The Lord of the Rings starts off. But exactly how old was she? What was the age difference between her and Aragorn? Considering the age difference, would not Aragorn seem to be a small kid in front of her?\n\nA: The Tale of Years (Appendix B) has this entry in the Third Age:\n\n241 Birth of Arwen Undómiel.\n\nSo Arwen was 2,777 years old in TA3018 when the War of the Ring happened.\nElrond makes exactly your point when Aragorn first falls in love with her:\n\n\"But as for Arwen the Fair, Lady of Imladris and of Lórien, Evenstar of her people, she is of lineage greater than yours, and she has lived in the world already so long that to her you are but as a yearling shoot beside a young birch of many summers. She is too far above you. And so, I think, it may well seem to her.\"\n\nBut she does fall in love with him anyway.\n"]], "corpus": "stackexchange"}
45
+ {"tstamp": 1722439253.2973, "task_type": "retrieval", "type": "chat", "model": "voyage-multilingual-2", "gen_params": {}, "start": 1722439251.139, "finish": 1722439253.2973, "ip": "", "conv_id": "56f96663188a4324a3626ff5721d318d", "model_name": "voyage-multilingual-2", "prompt": "answer of do you mind?", "output": [["answer of do you mind?", "English Stackexchange\n\nQ: Answering the question: Do you mind if...? The following always puzzles me as a non-native speaker. \nWhen somebody asks the question \"Do you mind if...\", there seem to be two possible responses. \n\n\n*\n\n*\"Sure\" and \"No, not at all\", which both mean that the person doesn't mind.\n\n*\"Actually, I do mind\", which means that the person does mind.\n\n\nWhy is this so confusing? Especially, how come people reply \"Sure\" to this question, if that could be understood to mean that they for sure do mind?\n\nA: \"Sure\" isn't answering the question as asked; it's answering an implied question, namely: \"is it OK with you if...\".\n\"No, not at all\" is answering the question, taken literally.\n"]], "corpus": "stackexchange"}
46
+ {"tstamp": 1722439253.2973, "task_type": "retrieval", "type": "chat", "model": "nomic-ai/nomic-embed-text-v1.5", "gen_params": {}, "start": 1722439251.139, "finish": 1722439253.2973, "ip": "", "conv_id": "13b6abf21ddb4697b0e775567e0d2427", "model_name": "nomic-ai/nomic-embed-text-v1.5", "prompt": "answer of do you mind?", "output": [["answer of do you mind?", "Ell Stackexchange\n\nQ: 'Would you mind' and 'Do you mind' Does the auxiliary verb 'do' work rather than the modal 'would' in the example below in the sense of permission:\n\nWould you mind speaking in English?\n\n\nA: \nWould you mind speaking in English?\n\nis a polite request.\n\nDo you mind speaking in English?\n\ncomes across more harshly, and implies you are being inconvenienced somehow by not hearing English. A bit softer than something like:\n\nDo you mind, I am talking on the telephone.\n\nthat you might say when someone tries to interrupt you.\n"]], "corpus": "stackexchange"}
47
+ {"tstamp": 1722439279.8593, "task_type": "retrieval", "type": "chat", "model": "BAAI/bge-large-en-v1.5", "gen_params": {}, "start": 1722439279.6996, "finish": 1722439279.8593, "ip": "", "conv_id": "fd1078f44978481e81ad953c74850d2d", "model_name": "BAAI/bge-large-en-v1.5", "prompt": "how to determine read only domain controller?", "output": [["how to determine read only domain controller?", "Serverfault Stackexchange\n\nQ: Registry key to tell if a server is a Read Only Domain Controller Is there a registry key I can check to tell if a server is a read only domain controller?\n\nA: I've now got a code snippet to check if the EnableRSOForRODC key exists, and if it does, returns it value.\n1>NUL: 2>NUL: REG QUERY \"HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\DNS\\Parameters\" /v \"EnableRSOFor‌​RODC\" || @Goto NoRODCExists\nFOR /F \"tokens=3 skip=1 \" %%G IN ('REG QUERY \"HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\DNS\\Parameters\" /v \"EnableRSOFor‌​RODC\"') DO (Echo Read Only Domain Controller? %%G.)\n:NoRODCExists\n\n"]], "corpus": "stackexchange"}
48
+ {"tstamp": 1722439279.8593, "task_type": "retrieval", "type": "chat", "model": "jinaai/jina-embeddings-v2-base-en", "gen_params": {}, "start": 1722439279.6996, "finish": 1722439279.8593, "ip": "", "conv_id": "f57c7e49da8d486d8013be860e652408", "model_name": "jinaai/jina-embeddings-v2-base-en", "prompt": "how to determine read only domain controller?", "output": [["how to determine read only domain controller?", "Stackoverflow Stackexchange\n\nQ: Why does gzip_disable make nginx crash? I've inspired my nginx configuration file from defunkt's conf file for unicorn but it seems that the line gzip_disable \"MSIE [1-6]\\.\"; makes everything crash. I get the error that this site is temporarily unavailable (served from nginx/html/50x.html). Commenting out the line makes everything work again, fiddling with the regexp doesn't change a thing.\nI'm running nginx v.1.0.10 and ubuntu 11.10.\nAny idea?\n\nA: It's already about few years when Nginx API changed for this directive, it should be:\ngzip_disable \"msie6\";\n\nFull stack Nginx+Unicorn optimized configuration can be found on the gist.\n"]], "corpus": "stackexchange"}