Muennighoff commited on
Commit
8991962
·
verified ·
1 Parent(s): 0791df1

Scheduled Commit

Browse files
data/retrieval_battle-a660d6d7-6b46-4e6b-9c85-4651683faa00.jsonl CHANGED
@@ -9,3 +9,4 @@
9
  {"tstamp": 1726135496.0832, "task_type": "retrieval", "type": "tievote", "models": ["", ""], "ip": "", "0_conv_id": "367c20123ebc4437a82dbf90793ab336", "0_model_name": "voyage-multilingual-2", "0_prompt": "What is the difference between bash and sh", "0_output": [["What is the difference between bash and sh", "Stackoverflow Stackexchange\n\nQ: Difference between sh and Bash When writing shell programs, we often use /bin/sh and /bin/bash. I usually use bash, but I don't know what's the difference between them.\nWhat's main difference between Bash and sh?\nWhat do we need to be aware of when programming in Bash and sh?\n\nA: Shell is an interface between a user and OS to access to an operating system's services. It can be either GUI or CLI (Command Line interface).\nsh (Bourne shell) is a shell command-line interpreter, for Unix/Unix-like operating systems. It provides some built-in commands. In scripting language we denote interpreter as #!/bin/sh. It was one most widely supported by other shells like bash (free/open), kash (not free).\nBash (Bourne again shell) is a shell replacement for the Bourne shell. Bash is superset of sh. Bash supports sh. POSIX is a set of standards defining how POSIX-compliant systems should work. Bash is not actually a POSIX compliant shell. In a scripting language we denote the interpreter as #!/bin/bash.\nAnalogy: \n\n\n*\n\n*Shell is like an interface or specifications or API. \n\n*sh is a class which implements the Shell interface. \n\n*Bash is a subclass of the sh. \n\n\n\n"]], "0_corpus": "stackexchange", "1_conv_id": "cff8aa95fe6f49e88ec70ed964f1c574", "1_model_name": "mixedbread-ai/mxbai-embed-large-v1", "1_prompt": "What is the difference between bash and sh", "1_output": [["What is the difference between bash and sh", "Stackoverflow Stackexchange\n\nQ: Difference between sh and Bash When writing shell programs, we often use /bin/sh and /bin/bash. I usually use bash, but I don't know what's the difference between them.\nWhat's main difference between Bash and sh?\nWhat do we need to be aware of when programming in Bash and sh?\n\nA: Shell is an interface between a user and OS to access to an operating system's services. It can be either GUI or CLI (Command Line interface).\nsh (Bourne shell) is a shell command-line interpreter, for Unix/Unix-like operating systems. It provides some built-in commands. In scripting language we denote interpreter as #!/bin/sh. It was one most widely supported by other shells like bash (free/open), kash (not free).\nBash (Bourne again shell) is a shell replacement for the Bourne shell. Bash is superset of sh. Bash supports sh. POSIX is a set of standards defining how POSIX-compliant systems should work. Bash is not actually a POSIX compliant shell. In a scripting language we denote the interpreter as #!/bin/bash.\nAnalogy: \n\n\n*\n\n*Shell is like an interface or specifications or API. \n\n*sh is a class which implements the Shell interface. \n\n*Bash is a subclass of the sh. \n\n\n\n"]], "1_corpus": "stackexchange"}
10
  {"tstamp": 1726138211.604, "task_type": "retrieval", "type": "bothbadvote", "models": ["", ""], "ip": "", "0_conv_id": "4dfe5896af204393a6108869d3472387", "0_model_name": "sentence-transformers/all-MiniLM-L6-v2", "0_prompt": "Was ist emergenz", "0_output": [["Was ist emergenz", "Title: Exceptional points-based optical amplifiers\n\nAbstract: The finite gain-bandwidth product is a fundamental figure of merit that restricts the operation of standard optical amplifiers. In microcavity setups, this becomes a serious problem due to the narrow bandwidth of the device. Here we introduce a new design paradigm based on exceptional points, that relaxes this limitation and allows for building a new generation of optical amplifiers that exhibits better gain-bandwidth scaling relations. Importantly, our results can be extended to other physical systems such as acoustics and microwaves."]], "0_corpus": "arxiv", "1_conv_id": "3ccce0468494419b8d56cfe99768eaf4", "1_model_name": "nomic-ai/nomic-embed-text-v1.5", "1_prompt": "Was ist emergenz", "1_output": [["Was ist emergenz", "Title: Die Erste Stunde (The first hour)\n\nAbstract: I recall my \"first hour\" events following on my meeting in Fall 1968 in the classroom with my academic teacher and thesis mentor Prof. Dr. Dr. h.c. multiple Walter Greiner. My comments focus on the creation of the new \"strong fields\" domain of physics in Frankfurt. I argue that this was the research field closest to Walter's heart during his lustrous academic career. I will describe the events that lead on to Greiner's course books, Walters actions leading to the rise of Frankfurt School of Theoretical Physics, and show how a stability principle defined his science."]], "1_corpus": "arxiv"}
11
  {"tstamp": 1726146768.5961, "task_type": "retrieval", "type": "tievote", "models": ["", ""], "ip": "", "0_conv_id": "957000400105491d997d03b0cbfb5264", "0_model_name": "Salesforce/SFR-Embedding-2_R", "0_prompt": "convert dataframe into json in python", "0_output": [["convert dataframe into json in python", "Stackoverflow Stackexchange\n\nQ: dataframe to json file I want to convert dataframe to json file. Currently my dataframe looks like this:\na b \nP1 7950\nP2 1274\nP3 6160\n\nI want to conver this dataframe into json file in which values from first column would be keys and from second column would be values: so like {P1:7950, P2:1274, P3:6160) \nI tried this but it produces output in incorrect form (not the want I stated above)\ndf.set_index('a').to_json()\n\n\nA: First create Series with set_index and then Series.to_json:\nj = df.set_index('a')['b'].to_json()\nprint (j)\n{\"P1\":7950,\"P2\":1274,\"P3\":6160}\n\nFor file:\ndf.set_index('a')['b'].to_json(filename)\n\n"]], "0_corpus": "stackexchange", "1_conv_id": "f8cfc64502a94500b20d73bc69c4ddb8", "1_model_name": "intfloat/e5-mistral-7b-instruct", "1_prompt": "convert dataframe into json in python", "1_output": [["convert dataframe into json in python", "Stackoverflow Stackexchange\n\nQ: dataframe to json file I want to convert dataframe to json file. Currently my dataframe looks like this:\na b \nP1 7950\nP2 1274\nP3 6160\n\nI want to conver this dataframe into json file in which values from first column would be keys and from second column would be values: so like {P1:7950, P2:1274, P3:6160) \nI tried this but it produces output in incorrect form (not the want I stated above)\ndf.set_index('a').to_json()\n\n\nA: First create Series with set_index and then Series.to_json:\nj = df.set_index('a')['b'].to_json()\nprint (j)\n{\"P1\":7950,\"P2\":1274,\"P3\":6160}\n\nFor file:\ndf.set_index('a')['b'].to_json(filename)\n\n"]], "1_corpus": "stackexchange"}
 
 
9
  {"tstamp": 1726135496.0832, "task_type": "retrieval", "type": "tievote", "models": ["", ""], "ip": "", "0_conv_id": "367c20123ebc4437a82dbf90793ab336", "0_model_name": "voyage-multilingual-2", "0_prompt": "What is the difference between bash and sh", "0_output": [["What is the difference between bash and sh", "Stackoverflow Stackexchange\n\nQ: Difference between sh and Bash When writing shell programs, we often use /bin/sh and /bin/bash. I usually use bash, but I don't know what's the difference between them.\nWhat's main difference between Bash and sh?\nWhat do we need to be aware of when programming in Bash and sh?\n\nA: Shell is an interface between a user and OS to access to an operating system's services. It can be either GUI or CLI (Command Line interface).\nsh (Bourne shell) is a shell command-line interpreter, for Unix/Unix-like operating systems. It provides some built-in commands. In scripting language we denote interpreter as #!/bin/sh. It was one most widely supported by other shells like bash (free/open), kash (not free).\nBash (Bourne again shell) is a shell replacement for the Bourne shell. Bash is superset of sh. Bash supports sh. POSIX is a set of standards defining how POSIX-compliant systems should work. Bash is not actually a POSIX compliant shell. In a scripting language we denote the interpreter as #!/bin/bash.\nAnalogy: \n\n\n*\n\n*Shell is like an interface or specifications or API. \n\n*sh is a class which implements the Shell interface. \n\n*Bash is a subclass of the sh. \n\n\n\n"]], "0_corpus": "stackexchange", "1_conv_id": "cff8aa95fe6f49e88ec70ed964f1c574", "1_model_name": "mixedbread-ai/mxbai-embed-large-v1", "1_prompt": "What is the difference between bash and sh", "1_output": [["What is the difference between bash and sh", "Stackoverflow Stackexchange\n\nQ: Difference between sh and Bash When writing shell programs, we often use /bin/sh and /bin/bash. I usually use bash, but I don't know what's the difference between them.\nWhat's main difference between Bash and sh?\nWhat do we need to be aware of when programming in Bash and sh?\n\nA: Shell is an interface between a user and OS to access to an operating system's services. It can be either GUI or CLI (Command Line interface).\nsh (Bourne shell) is a shell command-line interpreter, for Unix/Unix-like operating systems. It provides some built-in commands. In scripting language we denote interpreter as #!/bin/sh. It was one most widely supported by other shells like bash (free/open), kash (not free).\nBash (Bourne again shell) is a shell replacement for the Bourne shell. Bash is superset of sh. Bash supports sh. POSIX is a set of standards defining how POSIX-compliant systems should work. Bash is not actually a POSIX compliant shell. In a scripting language we denote the interpreter as #!/bin/bash.\nAnalogy: \n\n\n*\n\n*Shell is like an interface or specifications or API. \n\n*sh is a class which implements the Shell interface. \n\n*Bash is a subclass of the sh. \n\n\n\n"]], "1_corpus": "stackexchange"}
10
  {"tstamp": 1726138211.604, "task_type": "retrieval", "type": "bothbadvote", "models": ["", ""], "ip": "", "0_conv_id": "4dfe5896af204393a6108869d3472387", "0_model_name": "sentence-transformers/all-MiniLM-L6-v2", "0_prompt": "Was ist emergenz", "0_output": [["Was ist emergenz", "Title: Exceptional points-based optical amplifiers\n\nAbstract: The finite gain-bandwidth product is a fundamental figure of merit that restricts the operation of standard optical amplifiers. In microcavity setups, this becomes a serious problem due to the narrow bandwidth of the device. Here we introduce a new design paradigm based on exceptional points, that relaxes this limitation and allows for building a new generation of optical amplifiers that exhibits better gain-bandwidth scaling relations. Importantly, our results can be extended to other physical systems such as acoustics and microwaves."]], "0_corpus": "arxiv", "1_conv_id": "3ccce0468494419b8d56cfe99768eaf4", "1_model_name": "nomic-ai/nomic-embed-text-v1.5", "1_prompt": "Was ist emergenz", "1_output": [["Was ist emergenz", "Title: Die Erste Stunde (The first hour)\n\nAbstract: I recall my \"first hour\" events following on my meeting in Fall 1968 in the classroom with my academic teacher and thesis mentor Prof. Dr. Dr. h.c. multiple Walter Greiner. My comments focus on the creation of the new \"strong fields\" domain of physics in Frankfurt. I argue that this was the research field closest to Walter's heart during his lustrous academic career. I will describe the events that lead on to Greiner's course books, Walters actions leading to the rise of Frankfurt School of Theoretical Physics, and show how a stability principle defined his science."]], "1_corpus": "arxiv"}
11
  {"tstamp": 1726146768.5961, "task_type": "retrieval", "type": "tievote", "models": ["", ""], "ip": "", "0_conv_id": "957000400105491d997d03b0cbfb5264", "0_model_name": "Salesforce/SFR-Embedding-2_R", "0_prompt": "convert dataframe into json in python", "0_output": [["convert dataframe into json in python", "Stackoverflow Stackexchange\n\nQ: dataframe to json file I want to convert dataframe to json file. Currently my dataframe looks like this:\na b \nP1 7950\nP2 1274\nP3 6160\n\nI want to conver this dataframe into json file in which values from first column would be keys and from second column would be values: so like {P1:7950, P2:1274, P3:6160) \nI tried this but it produces output in incorrect form (not the want I stated above)\ndf.set_index('a').to_json()\n\n\nA: First create Series with set_index and then Series.to_json:\nj = df.set_index('a')['b'].to_json()\nprint (j)\n{\"P1\":7950,\"P2\":1274,\"P3\":6160}\n\nFor file:\ndf.set_index('a')['b'].to_json(filename)\n\n"]], "0_corpus": "stackexchange", "1_conv_id": "f8cfc64502a94500b20d73bc69c4ddb8", "1_model_name": "intfloat/e5-mistral-7b-instruct", "1_prompt": "convert dataframe into json in python", "1_output": [["convert dataframe into json in python", "Stackoverflow Stackexchange\n\nQ: dataframe to json file I want to convert dataframe to json file. Currently my dataframe looks like this:\na b \nP1 7950\nP2 1274\nP3 6160\n\nI want to conver this dataframe into json file in which values from first column would be keys and from second column would be values: so like {P1:7950, P2:1274, P3:6160) \nI tried this but it produces output in incorrect form (not the want I stated above)\ndf.set_index('a').to_json()\n\n\nA: First create Series with set_index and then Series.to_json:\nj = df.set_index('a')['b'].to_json()\nprint (j)\n{\"P1\":7950,\"P2\":1274,\"P3\":6160}\n\nFor file:\ndf.set_index('a')['b'].to_json(filename)\n\n"]], "1_corpus": "stackexchange"}
12
+ {"tstamp": 1726158606.4146, "task_type": "retrieval", "type": "leftvote", "models": ["", ""], "ip": "", "0_conv_id": "16a35f139a9144c8ba84aff7158792db", "0_model_name": "Salesforce/SFR-Embedding-2_R", "0_prompt": "In English when to use –, — vs -?", "0_output": [["In English when to use –, — vs -?", "English Stackexchange\n\nQ: When to use -, – and —? \nPossible Duplicate:\nWhen should I use an em-dash, an en-dash, and a hyphen? \n\nThis is about hyphens (-), en-dashes (–) and em-dashes (—).\nWhen to use which one? To be honest, I always use em-dashes unless I join words with a hyphen, but I never use an en-dash.\n\nA: Hyphens are used in compound modifiers.\n\n\n*\n\n*a well-trained professional\n\n*over-the-counter drugs\n\n\nEn dashes are used in place of \"to\" to connect numbers or words.\n\n\n*\n\n*The London–Amsterdam flight is delayed.\n\n*The meeting is from 3:00–4:30 p.m.\n\n\nEm dashes help set off amplifying or explanatory statements.\n\n\n*\n\n*The vampire—it had been awake half the night—flew out of its coffin.\n\n"]], "0_corpus": "stackexchange", "1_conv_id": "c30a4872bc4949b9922751e5d28f8b52", "1_model_name": "nomic-ai/nomic-embed-text-v1.5", "1_prompt": "In English when to use –, — vs -?", "1_output": [["In English when to use –, — vs -?", "English Stackexchange\n\nQ: What is \":-\" used for? \nPossible Duplicate:\nHenry Adam’s use of punctuation, “:—” \n\nI've seen a couple of times, \":-\" occurring where I could expect just a colon to occur, perhaps preceding a list.\nWhen is it correct to use \":-\"? \nWhat is it called?\nAm I simply wrong and think I remember seeing this, when in actual fact I didn't?\n\nA: This is an old usage, now obsolete. Graves and Hodge (The Reader Over Your Shoulder, 1943) describe it thus:\n\n A long dash may be put after a colon, for emphasis. For example: \n\n\n  ‘The Captain arose and said: “Come, Antonio, amuse the men, and tell them one of your favourite stories!” Antonio arose, rolled the quid from side to side in his coarse mouth and, after a pause, began thus:—\n   “About the year 1874, in Lisbon . . . ”’\n\n\n\nNote that the colon-dash construction is distinct from the internal colon.\nOED 1 employs :— in etymologies to signify an “extant representative, or regular phonetic descendant of”. According to tchrist, OED 2 and OED 3 employ it similarly to signify “normal development of”.\n"]], "1_corpus": "stackexchange"}
data/retrieval_individual-a660d6d7-6b46-4e6b-9c85-4651683faa00.jsonl CHANGED
@@ -38,3 +38,5 @@
38
  {"tstamp": 1726146757.4164, "task_type": "retrieval", "type": "chat", "model": "intfloat/e5-mistral-7b-instruct", "gen_params": {}, "start": 1726146757.171, "finish": 1726146757.4164, "ip": "", "conv_id": "f8cfc64502a94500b20d73bc69c4ddb8", "model_name": "intfloat/e5-mistral-7b-instruct", "prompt": "convert dataframe into json in python", "output": [["convert dataframe into json in python", "Stackoverflow Stackexchange\n\nQ: dataframe to json file I want to convert dataframe to json file. Currently my dataframe looks like this:\na b \nP1 7950\nP2 1274\nP3 6160\n\nI want to conver this dataframe into json file in which values from first column would be keys and from second column would be values: so like {P1:7950, P2:1274, P3:6160) \nI tried this but it produces output in incorrect form (not the want I stated above)\ndf.set_index('a').to_json()\n\n\nA: First create Series with set_index and then Series.to_json:\nj = df.set_index('a')['b'].to_json()\nprint (j)\n{\"P1\":7950,\"P2\":1274,\"P3\":6160}\n\nFor file:\ndf.set_index('a')['b'].to_json(filename)\n\n"]], "corpus": "stackexchange"}
39
  {"tstamp": 1726146824.7071, "task_type": "retrieval", "type": "chat", "model": "GritLM/GritLM-7B", "gen_params": {}, "start": 1726146822.5378, "finish": 1726146824.7071, "ip": "", "conv_id": "2fc5a56118814378bccce712c61b7811", "model_name": "GritLM/GritLM-7B", "prompt": "Indian Hero from bollywood", "output": [["Indian Hero from bollywood", "Hero (1983 film)\n\nHero is a 1983 Indian Hindi-language romantic action film directed by Subhash Ghai. Starring Jackie Shroff and Meenakshi Sheshadri, it marked Shroff's debut in a lead role. Its music directors were Laxmikant–Pyarelal. Upon release, it became a blockbuster at the box office and established Shroff as a leading Bollywood actor.\nIt was remade in Telugu and Kannada in 1980s and got remade in Bollywood in 2015 with the same title. A Tamil remake was planned, but later dropped."]], "corpus": "wikipedia"}
40
  {"tstamp": 1726146824.7071, "task_type": "retrieval", "type": "chat", "model": "BAAI/bge-large-en-v1.5", "gen_params": {}, "start": 1726146822.5378, "finish": 1726146824.7071, "ip": "", "conv_id": "7daa78f3d46c4e7999ed0cda3df11ef0", "model_name": "BAAI/bge-large-en-v1.5", "prompt": "Indian Hero from bollywood", "output": [["Indian Hero from bollywood", "Bollywood Hero\n\nBollywood Hero is an American musical comedy television miniseries that aired on the IFC in three parts on August 6–8, 2009. The miniseries were shot in Mumbai and Los Angeles.\nThe show is a musical miniseries about Chris Kattan and his journey to Mumbai to become a leading man in Bollywood. After having some successful runs as a comedian in America, Kattan wishes for more and soon discovers that making it in Bollywood is just as hard and he has to start from scratch.\nDance numbers are choreographed by Longinus Fernandes who is known for the \"Jai Ho\" finale in Slumdog Millionaire.\nCharacters\nMajor characters\nCameos\nGaurav Ghatnekar as Hipster Partygoer\nMaya Rudolph as herself\nKeanu Reeves as himself\nDavid Alan Grier as himself\nLonginus Fernandes as himself\nInternational Broadcasting"]], "corpus": "wikipedia"}
 
 
 
38
  {"tstamp": 1726146757.4164, "task_type": "retrieval", "type": "chat", "model": "intfloat/e5-mistral-7b-instruct", "gen_params": {}, "start": 1726146757.171, "finish": 1726146757.4164, "ip": "", "conv_id": "f8cfc64502a94500b20d73bc69c4ddb8", "model_name": "intfloat/e5-mistral-7b-instruct", "prompt": "convert dataframe into json in python", "output": [["convert dataframe into json in python", "Stackoverflow Stackexchange\n\nQ: dataframe to json file I want to convert dataframe to json file. Currently my dataframe looks like this:\na b \nP1 7950\nP2 1274\nP3 6160\n\nI want to conver this dataframe into json file in which values from first column would be keys and from second column would be values: so like {P1:7950, P2:1274, P3:6160) \nI tried this but it produces output in incorrect form (not the want I stated above)\ndf.set_index('a').to_json()\n\n\nA: First create Series with set_index and then Series.to_json:\nj = df.set_index('a')['b'].to_json()\nprint (j)\n{\"P1\":7950,\"P2\":1274,\"P3\":6160}\n\nFor file:\ndf.set_index('a')['b'].to_json(filename)\n\n"]], "corpus": "stackexchange"}
39
  {"tstamp": 1726146824.7071, "task_type": "retrieval", "type": "chat", "model": "GritLM/GritLM-7B", "gen_params": {}, "start": 1726146822.5378, "finish": 1726146824.7071, "ip": "", "conv_id": "2fc5a56118814378bccce712c61b7811", "model_name": "GritLM/GritLM-7B", "prompt": "Indian Hero from bollywood", "output": [["Indian Hero from bollywood", "Hero (1983 film)\n\nHero is a 1983 Indian Hindi-language romantic action film directed by Subhash Ghai. Starring Jackie Shroff and Meenakshi Sheshadri, it marked Shroff's debut in a lead role. Its music directors were Laxmikant–Pyarelal. Upon release, it became a blockbuster at the box office and established Shroff as a leading Bollywood actor.\nIt was remade in Telugu and Kannada in 1980s and got remade in Bollywood in 2015 with the same title. A Tamil remake was planned, but later dropped."]], "corpus": "wikipedia"}
40
  {"tstamp": 1726146824.7071, "task_type": "retrieval", "type": "chat", "model": "BAAI/bge-large-en-v1.5", "gen_params": {}, "start": 1726146822.5378, "finish": 1726146824.7071, "ip": "", "conv_id": "7daa78f3d46c4e7999ed0cda3df11ef0", "model_name": "BAAI/bge-large-en-v1.5", "prompt": "Indian Hero from bollywood", "output": [["Indian Hero from bollywood", "Bollywood Hero\n\nBollywood Hero is an American musical comedy television miniseries that aired on the IFC in three parts on August 6–8, 2009. The miniseries were shot in Mumbai and Los Angeles.\nThe show is a musical miniseries about Chris Kattan and his journey to Mumbai to become a leading man in Bollywood. After having some successful runs as a comedian in America, Kattan wishes for more and soon discovers that making it in Bollywood is just as hard and he has to start from scratch.\nDance numbers are choreographed by Longinus Fernandes who is known for the \"Jai Ho\" finale in Slumdog Millionaire.\nCharacters\nMajor characters\nCameos\nGaurav Ghatnekar as Hipster Partygoer\nMaya Rudolph as herself\nKeanu Reeves as himself\nDavid Alan Grier as himself\nLonginus Fernandes as himself\nInternational Broadcasting"]], "corpus": "wikipedia"}
41
+ {"tstamp": 1726158541.4903, "task_type": "retrieval", "type": "chat", "model": "Salesforce/SFR-Embedding-2_R", "gen_params": {}, "start": 1726158539.213, "finish": 1726158541.4903, "ip": "", "conv_id": "16a35f139a9144c8ba84aff7158792db", "model_name": "Salesforce/SFR-Embedding-2_R", "prompt": "In English when to use –, — vs -?", "output": [["In English when to use –, — vs -?", "English Stackexchange\n\nQ: When to use -, – and —? \nPossible Duplicate:\nWhen should I use an em-dash, an en-dash, and a hyphen? \n\nThis is about hyphens (-), en-dashes (–) and em-dashes (—).\nWhen to use which one? To be honest, I always use em-dashes unless I join words with a hyphen, but I never use an en-dash.\n\nA: Hyphens are used in compound modifiers.\n\n\n*\n\n*a well-trained professional\n\n*over-the-counter drugs\n\n\nEn dashes are used in place of \"to\" to connect numbers or words.\n\n\n*\n\n*The London–Amsterdam flight is delayed.\n\n*The meeting is from 3:00–4:30 p.m.\n\n\nEm dashes help set off amplifying or explanatory statements.\n\n\n*\n\n*The vampire—it had been awake half the night—flew out of its coffin.\n\n"]], "corpus": "stackexchange"}
42
+ {"tstamp": 1726158541.4903, "task_type": "retrieval", "type": "chat", "model": "nomic-ai/nomic-embed-text-v1.5", "gen_params": {}, "start": 1726158539.213, "finish": 1726158541.4903, "ip": "", "conv_id": "c30a4872bc4949b9922751e5d28f8b52", "model_name": "nomic-ai/nomic-embed-text-v1.5", "prompt": "In English when to use –, — vs -?", "output": [["In English when to use –, — vs -?", "English Stackexchange\n\nQ: What is \":-\" used for? \nPossible Duplicate:\nHenry Adam’s use of punctuation, “:—” \n\nI've seen a couple of times, \":-\" occurring where I could expect just a colon to occur, perhaps preceding a list.\nWhen is it correct to use \":-\"? \nWhat is it called?\nAm I simply wrong and think I remember seeing this, when in actual fact I didn't?\n\nA: This is an old usage, now obsolete. Graves and Hodge (The Reader Over Your Shoulder, 1943) describe it thus:\n\n A long dash may be put after a colon, for emphasis. For example: \n\n\n  ‘The Captain arose and said: “Come, Antonio, amuse the men, and tell them one of your favourite stories!” Antonio arose, rolled the quid from side to side in his coarse mouth and, after a pause, began thus:—\n   “About the year 1874, in Lisbon . . . ”’\n\n\n\nNote that the colon-dash construction is distinct from the internal colon.\nOED 1 employs :— in etymologies to signify an “extant representative, or regular phonetic descendant of”. According to tchrist, OED 2 and OED 3 employ it similarly to signify “normal development of”.\n"]], "corpus": "stackexchange"}
data/sts_battle-a660d6d7-6b46-4e6b-9c85-4651683faa00.jsonl CHANGED
@@ -1,2 +1,3 @@
1
  {"tstamp": 1726108038.15, "task_type": "sts", "type": "leftvote", "models": ["", ""], "ip": "", "0_conv_id": "5c210310d6774d959f1fb289a2e4bdb5", "0_model_name": "voyage-multilingual-2", "0_txt0": "hello", "0_txt1": "good morning", "0_txt2": "早上好", "0_output": "", "1_conv_id": "c9cb50b3214d4235b2d3fe2047b7c5b2", "1_model_name": "embed-english-v3.0", "1_txt0": "hello", "1_txt1": "good morning", "1_txt2": "早上好", "1_output": ""}
2
  {"tstamp": 1726108107.4806, "task_type": "sts", "type": "bothbadvote", "models": ["", ""], "ip": "", "0_conv_id": "9a05048c36114610bca3923a5c40bd12", "0_model_name": "intfloat/e5-mistral-7b-instruct", "0_txt0": "Ceftriaxone", "0_txt1": "莫西沙星", "0_txt2": "Moxifloxacin", "0_output": "", "1_conv_id": "77bd552c0efc45599c6e3927a96259ff", "1_model_name": "text-embedding-004", "1_txt0": "Ceftriaxone", "1_txt1": "莫西沙星", "1_txt2": "Moxifloxacin", "1_output": ""}
 
 
1
  {"tstamp": 1726108038.15, "task_type": "sts", "type": "leftvote", "models": ["", ""], "ip": "", "0_conv_id": "5c210310d6774d959f1fb289a2e4bdb5", "0_model_name": "voyage-multilingual-2", "0_txt0": "hello", "0_txt1": "good morning", "0_txt2": "早上好", "0_output": "", "1_conv_id": "c9cb50b3214d4235b2d3fe2047b7c5b2", "1_model_name": "embed-english-v3.0", "1_txt0": "hello", "1_txt1": "good morning", "1_txt2": "早上好", "1_output": ""}
2
  {"tstamp": 1726108107.4806, "task_type": "sts", "type": "bothbadvote", "models": ["", ""], "ip": "", "0_conv_id": "9a05048c36114610bca3923a5c40bd12", "0_model_name": "intfloat/e5-mistral-7b-instruct", "0_txt0": "Ceftriaxone", "0_txt1": "莫西沙星", "0_txt2": "Moxifloxacin", "0_output": "", "1_conv_id": "77bd552c0efc45599c6e3927a96259ff", "1_model_name": "text-embedding-004", "1_txt0": "Ceftriaxone", "1_txt1": "莫西沙星", "1_txt2": "Moxifloxacin", "1_output": ""}
3
+ {"tstamp": 1726158756.2689, "task_type": "sts", "type": "leftvote", "models": ["", ""], "ip": "", "0_conv_id": "b55b6eb6e4564fb28d894a6c3ed5f5cc", "0_model_name": "text-embedding-3-large", "0_txt0": "Shop Drawings", "0_txt1": "Details of shop implementation", "0_txt2": "Quality Assurance", "0_output": "", "1_conv_id": "9f48da1e87fa4ee0870f49bad38499c8", "1_model_name": "text-embedding-004", "1_txt0": "Shop Drawings", "1_txt1": "Details of shop implementation", "1_txt2": "Quality Assurance", "1_output": ""}
data/sts_individual-a660d6d7-6b46-4e6b-9c85-4651683faa00.jsonl CHANGED
@@ -4,3 +4,5 @@
4
  {"tstamp": 1726108094.26, "task_type": "sts", "type": "chat", "model": "text-embedding-004", "gen_params": {}, "start": 1726108093.9573, "finish": 1726108094.26, "ip": "", "conv_id": "77bd552c0efc45599c6e3927a96259ff", "model_name": "text-embedding-004", "txt0": "Ceftriaxone", "txt1": "莫西沙星", "txt2": "Moxifloxacin", "output": ""}
5
  {"tstamp": 1726147182.0481, "task_type": "sts", "type": "chat", "model": "intfloat/e5-mistral-7b-instruct", "gen_params": {}, "start": 1726147182.0075, "finish": 1726147182.0481, "ip": "", "conv_id": "f99b3cbc755d4ef89d05c4a6c781a24b", "model_name": "intfloat/e5-mistral-7b-instruct", "txt0": "People are shopping.", "txt1": "Numerous customers browsing for produce in a market", "txt2": "People are showering.", "output": ""}
6
  {"tstamp": 1726147182.0481, "task_type": "sts", "type": "chat", "model": "sentence-transformers/all-MiniLM-L6-v2", "gen_params": {}, "start": 1726147182.0075, "finish": 1726147182.0481, "ip": "", "conv_id": "71f49129c45c46e8b4025def1732310b", "model_name": "sentence-transformers/all-MiniLM-L6-v2", "txt0": "People are shopping.", "txt1": "Numerous customers browsing for produce in a market", "txt2": "People are showering.", "output": ""}
 
 
 
4
  {"tstamp": 1726108094.26, "task_type": "sts", "type": "chat", "model": "text-embedding-004", "gen_params": {}, "start": 1726108093.9573, "finish": 1726108094.26, "ip": "", "conv_id": "77bd552c0efc45599c6e3927a96259ff", "model_name": "text-embedding-004", "txt0": "Ceftriaxone", "txt1": "莫西沙星", "txt2": "Moxifloxacin", "output": ""}
5
  {"tstamp": 1726147182.0481, "task_type": "sts", "type": "chat", "model": "intfloat/e5-mistral-7b-instruct", "gen_params": {}, "start": 1726147182.0075, "finish": 1726147182.0481, "ip": "", "conv_id": "f99b3cbc755d4ef89d05c4a6c781a24b", "model_name": "intfloat/e5-mistral-7b-instruct", "txt0": "People are shopping.", "txt1": "Numerous customers browsing for produce in a market", "txt2": "People are showering.", "output": ""}
6
  {"tstamp": 1726147182.0481, "task_type": "sts", "type": "chat", "model": "sentence-transformers/all-MiniLM-L6-v2", "gen_params": {}, "start": 1726147182.0075, "finish": 1726147182.0481, "ip": "", "conv_id": "71f49129c45c46e8b4025def1732310b", "model_name": "sentence-transformers/all-MiniLM-L6-v2", "txt0": "People are shopping.", "txt1": "Numerous customers browsing for produce in a market", "txt2": "People are showering.", "output": ""}
7
+ {"tstamp": 1726158739.0726, "task_type": "sts", "type": "chat", "model": "text-embedding-3-large", "gen_params": {}, "start": 1726158738.0819, "finish": 1726158739.0726, "ip": "", "conv_id": "b55b6eb6e4564fb28d894a6c3ed5f5cc", "model_name": "text-embedding-3-large", "txt0": "Shop Drawings", "txt1": "Details of shop implementation", "txt2": "Quality Assurance", "output": ""}
8
+ {"tstamp": 1726158739.0726, "task_type": "sts", "type": "chat", "model": "text-embedding-004", "gen_params": {}, "start": 1726158738.0819, "finish": 1726158739.0726, "ip": "", "conv_id": "9f48da1e87fa4ee0870f49bad38499c8", "model_name": "text-embedding-004", "txt0": "Shop Drawings", "txt1": "Details of shop implementation", "txt2": "Quality Assurance", "output": ""}