Muennighoff
commited on
Scheduled Commit
Browse files- data/clustering_battle-f36c9f97-e795-4522-8eb7-7dee254b42c7.jsonl +1 -0
- data/clustering_individual-f36c9f97-e795-4522-8eb7-7dee254b42c7.jsonl +2 -0
- data/retrieval_battle-f36c9f97-e795-4522-8eb7-7dee254b42c7.jsonl +3 -0
- data/retrieval_individual-f36c9f97-e795-4522-8eb7-7dee254b42c7.jsonl +12 -0
- data/retrieval_side_by_side-f36c9f97-e795-4522-8eb7-7dee254b42c7.jsonl +2 -0
data/clustering_battle-f36c9f97-e795-4522-8eb7-7dee254b42c7.jsonl
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"tstamp": 1723537022.381, "task_type": "clustering", "type": "rightvote", "models": ["", ""], "ip": "", "0_conv_id": "6f8f3ee31b2f4a76b9c393538a2c4cd4", "0_model_name": "text-embedding-004", "0_prompt": ["water filter", "sleeping bag", "tent", "camping stove", "flashlight", "backpack", "nitrogen", "hydrogen", "calcium", "iron", "carbon", "oxygen", "classical", "country", "reggae", "jazz", "electronic", "rock"], "0_ncluster": 3, "0_output": "", "0_ndim": "3D (press for 2D)", "0_dim_method": "PCA", "0_clustering_method": "KMeans", "1_conv_id": "4276e84f4a32486b8041dddb8e036f79", "1_model_name": "embed-english-v3.0", "1_prompt": ["water filter", "sleeping bag", "tent", "camping stove", "flashlight", "backpack", "nitrogen", "hydrogen", "calcium", "iron", "carbon", "oxygen", "classical", "country", "reggae", "jazz", "electronic", "rock"], "1_ncluster": 3, "1_output": "", "1_ndim": "3D (press for 2D)", "1_dim_method": "PCA", "1_clustering_method": "KMeans"}
|
data/clustering_individual-f36c9f97-e795-4522-8eb7-7dee254b42c7.jsonl
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
{"tstamp": 1723536993.1377, "task_type": "clustering", "type": "chat", "model": "text-embedding-004", "gen_params": {}, "start": 1723536977.5299, "finish": 1723536993.1377, "ip": "", "conv_id": "6f8f3ee31b2f4a76b9c393538a2c4cd4", "model_name": "text-embedding-004", "prompt": ["water filter", "sleeping bag", "tent", "camping stove", "flashlight", "backpack", "nitrogen", "hydrogen", "calcium", "iron", "carbon", "oxygen", "classical", "country", "reggae", "jazz", "electronic", "rock"], "ncluster": 3, "output": "", "ndim": "3D (press for 2D)", "dim_method": "PCA", "clustering_method": "KMeans"}
|
2 |
+
{"tstamp": 1723536993.1377, "task_type": "clustering", "type": "chat", "model": "embed-english-v3.0", "gen_params": {}, "start": 1723536977.5299, "finish": 1723536993.1377, "ip": "", "conv_id": "4276e84f4a32486b8041dddb8e036f79", "model_name": "embed-english-v3.0", "prompt": ["water filter", "sleeping bag", "tent", "camping stove", "flashlight", "backpack", "nitrogen", "hydrogen", "calcium", "iron", "carbon", "oxygen", "classical", "country", "reggae", "jazz", "electronic", "rock"], "ncluster": 3, "output": "", "ndim": "3D (press for 2D)", "dim_method": "PCA", "clustering_method": "KMeans"}
|
data/retrieval_battle-f36c9f97-e795-4522-8eb7-7dee254b42c7.jsonl
CHANGED
@@ -2,3 +2,6 @@
|
|
2 |
{"tstamp": 1723531644.8915, "task_type": "retrieval", "type": "bothbadvote", "models": ["", ""], "ip": "", "0_conv_id": "0316341da48a4f33ac6d062b5b6225de", "0_model_name": "mixedbread-ai/mxbai-embed-large-v1", "0_prompt": "How can I remove diacritics from a string?", "0_output": [["How can I remove diacritics from a string?", "Stackoverflow Stackexchange\n\nQ: How to remove diacritics (accents) from a string? I'm trying to convert some strings that are in Czech, Spanish, French etc. I'd like to take out the accent marks in the letters while keeping the letter. (E.g. convert é to e, č to c, Ž to Z, ñ to n)\nWhat is the best way to achieve this?\nBtw, there is a good similar question/answer for JavaScript\n\nA: Here's my adaptation of Leonardo's solution. It extends the string class for ease of use and uses SplitMapJoin instead of a for loop:\nextension DiacriticsAwareString on String {\n static const diacritics =\n 'ÀÁÂÃÄÅàáâãäåÒÓÔÕÕÖØòóôõöøÈÉÊËĚèéêëěðČÇçčÐĎďÌÍÎÏìíîïĽľÙÚÛÜŮùúûüůŇÑñňŘřŠšŤťŸÝÿýŽž';\n static const nonDiacritics =\n 'AAAAAAaaaaaaOOOOOOOooooooEEEEEeeeeeeCCccDDdIIIIiiiiLlUUUUUuuuuuNNnnRrSsTtYYyyZz';\n\n String get withoutDiacriticalMarks => this.splitMapJoin('',\n onNonMatch: (char) => char.isNotEmpty && diacritics.contains(char)\n ? nonDiacritics[diacritics.indexOf(char)]\n : char);\n}\n\n"]], "0_corpus": "stackexchange", "1_conv_id": "9fec226ac7ff4904b57f9077dc10a72b", "1_model_name": "nomic-ai/nomic-embed-text-v1.5", "1_prompt": "How can I remove diacritics from a string?", "1_output": [["How can I remove diacritics from a string?", "Stackoverflow Stackexchange\n\nQ: Remove diacritics from a string Is it possible? This is my input string:\nľ š č ť ž ý á í é Č Á Ž Ý\n\nThis is the output I want:\nl s c t z y a i e C A Z Y\n\n\nA: if you have http://php.net/manual/en/book.intl.php available, you can use this:\n$string = \"Fóø Bår\";\n$transliterator = Transliterator::createFromRules(':: Any-Latin; :: Latin-ASCII; :: NFD; :: [:Nonspacing Mark:] Remove; :: Lower(); :: NFC;', Transliterator::FORWARD);\necho $normalized = $transliterator->transliterate($string);\n\n"]], "1_corpus": "stackexchange"}
|
3 |
{"tstamp": 1723535876.1723, "task_type": "retrieval", "type": "tievote", "models": ["", ""], "ip": "", "0_conv_id": "f44d7c074011440c8b884945a1f9dcf7", "0_model_name": "BM25", "0_prompt": "What's the purpose of `if __name__ == '__main__'`?", "0_output": [["What's the purpose of `if __name__ == '__main__'`?", "Stackoverflow Stackexchange\n\nQ: What is the purpose of __name__? What does __name__ do? I have only seen it paired with __main__ and nothing else.\nI know that the classic if __name__ == __main__: defines the behavior when acting as a package vs running as stand-alone.\nHowever what other usages are there for __name__?\n\nA: __name__ is \"__main__\" if you're executing the script directly. If you're importing a module, __name__ is the name of the module.\nfoo.py:\nprint(__name__)\n\nbar.py \nimport foo\n\nRun the scripts:\n$ python foo.py\n__main__\n$ python bar.py \nfoo\n\n"]], "0_corpus": "stackexchange", "1_conv_id": "f782ca0f65014c7fa95ddc838370c829", "1_model_name": "intfloat/multilingual-e5-large-instruct", "1_prompt": "What's the purpose of `if __name__ == '__main__'`?", "1_output": [["What's the purpose of `if __name__ == '__main__'`?", "Stackoverflow Stackexchange\n\nQ: What's the point of a main function and/or __name__ == \"__main__\" check in Python? I occasionally notice something like the following in Python scripts:\nif __name__ == \"__main__\":\n # do stuff like call main()\n\nWhat's the point of this?\n\nA: This allows a python script to be imported or run standalone is a sane way.\nIf you run a python file directly, the __name__ variable will contain __main__. If you import the script that will not be the case. Normally, if you import the script you want to call functions or reference classes from the file.\nIf you did not have this check, any code that was not in a class or function would run when you import.\n"]], "1_corpus": "stackexchange"}
|
4 |
{"tstamp": 1723536092.739, "task_type": "retrieval", "type": "rightvote", "models": ["", ""], "ip": "", "0_conv_id": "3e31226c303d4c45886f9a39670926e0", "0_model_name": "BM25", "0_prompt": "Why did the machines in The Matrix keep humans around?", "0_output": [["Why did the machines in The Matrix keep humans around?", "Scifi Stackexchange\n\nQ: What happens to a person after they die in the Matrix? Machines keep humans in the Matrix as they are a source of energy. Why did they make it so that when a human is hurt in the Matrix, they're bodies hurt themselves in real life (in the tank)? If a human dies in the Matrix, do they die in the real world? Or just get flushed out of their tank? Isn't it kind of a waste?\n\nA: The body cannot live without the mind. The machines can't get around that. But nothing is wasted. They liquefy the dead so that they can be fed intravenously to the living.\n\n\n\nJump to 45 seconds for Morpheus' first hand explanation.\n"]], "0_corpus": "stackexchange", "1_conv_id": "89cd450d1d55459fa365a5f4d9214dd2", "1_model_name": "intfloat/e5-mistral-7b-instruct", "1_prompt": "Why did the machines in The Matrix keep humans around?", "1_output": [["Why did the machines in The Matrix keep humans around?", "Scifi Stackexchange\n\nQ: Why use full brained humans as batteries? \nPossible Duplicate:\nIs the basic premise of humans as a power source in The Matrix reasonable?\nWhy Did the Machines Even Bother With a Matrix? \n\nThe machines in The Matrix series use humans as batteries. That's OK. But why did the machines not alter their livestock such that the matrix itself would be unnecessary? \nConsider the recently proposed headless chicken farm. Something similar for the human batteries would seem to be an ideal solution for logical machines. No longer would they need to spend resources maintaining a virtual reality for their batteries. The energy, physical hardware and programs running the matrix could then be put to who knows what other uses.\n\nA: The explanation for the use of human brains would seem to be the fact that our complex thoughts lead to higher level of brain activity, thus resulting in exponentially more synapses firing (i.e. more electrical activity to harvest).\nThat makes human brains far more efficient than the brains of animals, even with the overhead of maintaining the matrix. Plus, that movie would have really sucked... dumb cows and chickens revolt against the machines! ;)\n"]], "1_corpus": "stackexchange"}
|
|
|
|
|
|
|
|
2 |
{"tstamp": 1723531644.8915, "task_type": "retrieval", "type": "bothbadvote", "models": ["", ""], "ip": "", "0_conv_id": "0316341da48a4f33ac6d062b5b6225de", "0_model_name": "mixedbread-ai/mxbai-embed-large-v1", "0_prompt": "How can I remove diacritics from a string?", "0_output": [["How can I remove diacritics from a string?", "Stackoverflow Stackexchange\n\nQ: How to remove diacritics (accents) from a string? I'm trying to convert some strings that are in Czech, Spanish, French etc. I'd like to take out the accent marks in the letters while keeping the letter. (E.g. convert é to e, č to c, Ž to Z, ñ to n)\nWhat is the best way to achieve this?\nBtw, there is a good similar question/answer for JavaScript\n\nA: Here's my adaptation of Leonardo's solution. It extends the string class for ease of use and uses SplitMapJoin instead of a for loop:\nextension DiacriticsAwareString on String {\n static const diacritics =\n 'ÀÁÂÃÄÅàáâãäåÒÓÔÕÕÖØòóôõöøÈÉÊËĚèéêëěðČÇçčÐĎďÌÍÎÏìíîïĽľÙÚÛÜŮùúûüůŇÑñňŘřŠšŤťŸÝÿýŽž';\n static const nonDiacritics =\n 'AAAAAAaaaaaaOOOOOOOooooooEEEEEeeeeeeCCccDDdIIIIiiiiLlUUUUUuuuuuNNnnRrSsTtYYyyZz';\n\n String get withoutDiacriticalMarks => this.splitMapJoin('',\n onNonMatch: (char) => char.isNotEmpty && diacritics.contains(char)\n ? nonDiacritics[diacritics.indexOf(char)]\n : char);\n}\n\n"]], "0_corpus": "stackexchange", "1_conv_id": "9fec226ac7ff4904b57f9077dc10a72b", "1_model_name": "nomic-ai/nomic-embed-text-v1.5", "1_prompt": "How can I remove diacritics from a string?", "1_output": [["How can I remove diacritics from a string?", "Stackoverflow Stackexchange\n\nQ: Remove diacritics from a string Is it possible? This is my input string:\nľ š č ť ž ý á í é Č Á Ž Ý\n\nThis is the output I want:\nl s c t z y a i e C A Z Y\n\n\nA: if you have http://php.net/manual/en/book.intl.php available, you can use this:\n$string = \"Fóø Bår\";\n$transliterator = Transliterator::createFromRules(':: Any-Latin; :: Latin-ASCII; :: NFD; :: [:Nonspacing Mark:] Remove; :: Lower(); :: NFC;', Transliterator::FORWARD);\necho $normalized = $transliterator->transliterate($string);\n\n"]], "1_corpus": "stackexchange"}
|
3 |
{"tstamp": 1723535876.1723, "task_type": "retrieval", "type": "tievote", "models": ["", ""], "ip": "", "0_conv_id": "f44d7c074011440c8b884945a1f9dcf7", "0_model_name": "BM25", "0_prompt": "What's the purpose of `if __name__ == '__main__'`?", "0_output": [["What's the purpose of `if __name__ == '__main__'`?", "Stackoverflow Stackexchange\n\nQ: What is the purpose of __name__? What does __name__ do? I have only seen it paired with __main__ and nothing else.\nI know that the classic if __name__ == __main__: defines the behavior when acting as a package vs running as stand-alone.\nHowever what other usages are there for __name__?\n\nA: __name__ is \"__main__\" if you're executing the script directly. If you're importing a module, __name__ is the name of the module.\nfoo.py:\nprint(__name__)\n\nbar.py \nimport foo\n\nRun the scripts:\n$ python foo.py\n__main__\n$ python bar.py \nfoo\n\n"]], "0_corpus": "stackexchange", "1_conv_id": "f782ca0f65014c7fa95ddc838370c829", "1_model_name": "intfloat/multilingual-e5-large-instruct", "1_prompt": "What's the purpose of `if __name__ == '__main__'`?", "1_output": [["What's the purpose of `if __name__ == '__main__'`?", "Stackoverflow Stackexchange\n\nQ: What's the point of a main function and/or __name__ == \"__main__\" check in Python? I occasionally notice something like the following in Python scripts:\nif __name__ == \"__main__\":\n # do stuff like call main()\n\nWhat's the point of this?\n\nA: This allows a python script to be imported or run standalone is a sane way.\nIf you run a python file directly, the __name__ variable will contain __main__. If you import the script that will not be the case. Normally, if you import the script you want to call functions or reference classes from the file.\nIf you did not have this check, any code that was not in a class or function would run when you import.\n"]], "1_corpus": "stackexchange"}
|
4 |
{"tstamp": 1723536092.739, "task_type": "retrieval", "type": "rightvote", "models": ["", ""], "ip": "", "0_conv_id": "3e31226c303d4c45886f9a39670926e0", "0_model_name": "BM25", "0_prompt": "Why did the machines in The Matrix keep humans around?", "0_output": [["Why did the machines in The Matrix keep humans around?", "Scifi Stackexchange\n\nQ: What happens to a person after they die in the Matrix? Machines keep humans in the Matrix as they are a source of energy. Why did they make it so that when a human is hurt in the Matrix, they're bodies hurt themselves in real life (in the tank)? If a human dies in the Matrix, do they die in the real world? Or just get flushed out of their tank? Isn't it kind of a waste?\n\nA: The body cannot live without the mind. The machines can't get around that. But nothing is wasted. They liquefy the dead so that they can be fed intravenously to the living.\n\n\n\nJump to 45 seconds for Morpheus' first hand explanation.\n"]], "0_corpus": "stackexchange", "1_conv_id": "89cd450d1d55459fa365a5f4d9214dd2", "1_model_name": "intfloat/e5-mistral-7b-instruct", "1_prompt": "Why did the machines in The Matrix keep humans around?", "1_output": [["Why did the machines in The Matrix keep humans around?", "Scifi Stackexchange\n\nQ: Why use full brained humans as batteries? \nPossible Duplicate:\nIs the basic premise of humans as a power source in The Matrix reasonable?\nWhy Did the Machines Even Bother With a Matrix? \n\nThe machines in The Matrix series use humans as batteries. That's OK. But why did the machines not alter their livestock such that the matrix itself would be unnecessary? \nConsider the recently proposed headless chicken farm. Something similar for the human batteries would seem to be an ideal solution for logical machines. No longer would they need to spend resources maintaining a virtual reality for their batteries. The energy, physical hardware and programs running the matrix could then be put to who knows what other uses.\n\nA: The explanation for the use of human brains would seem to be the fact that our complex thoughts lead to higher level of brain activity, thus resulting in exponentially more synapses firing (i.e. more electrical activity to harvest).\nThat makes human brains far more efficient than the brains of animals, even with the overhead of maintaining the matrix. Plus, that movie would have really sucked... dumb cows and chickens revolt against the machines! ;)\n"]], "1_corpus": "stackexchange"}
|
5 |
+
{"tstamp": 1723536855.9397, "task_type": "retrieval", "type": "bothbadvote", "models": ["", ""], "ip": "", "0_conv_id": "d8df13802da2438082574193547f4099", "0_model_name": "Alibaba-NLP/gte-Qwen2-7B-instruct", "0_prompt": "are you nuts meaning etymology?", "0_output": [["are you nuts meaning etymology?", "Fruit (slang)\n\nFrom the 1857 \"Dictionary of Obsolete and Provincial English: Containing Words from the English Writers Previous to the Nineteenth Century Which Are No Longer In Use, Or Are Not Used In The Same Sense. And Words Which Are Now Used Only In The Provincial Dialects\" (e.g. all parts of England other than London) several routes seem likely, cockney was \"an effeminate boy who sold fruit and greens while cobble is the stone (or pit) of a fruit which also is presently defined as male testicles from the Cockney rhyming slang \"cobbler's awls\", meaning \"balls\" and blow was the blossoming of a fruit tree and is widely used as the Polari definition for oral sex on a man causing him to \"blow\" (ejaculate).\nFruitcake\nFruitcakes, which are cakes containing both fruit and nuts, have been in existence since the Middle Ages, but it is unclear when the term started being used disparagingly, especially in the United Kingdom and the United States, as a slur for a 'crazy person' (e.g., \"he's a complete fruitcake\") although Cassell's Dictionary of Slang traces uses of fruitcake meaning an eccentric (crazy) person to 1910s. It is derived from the expression \"nutty as a fruitcake\", which was first recorded in 1935. A nut can be either a seed or a fruit."]], "0_corpus": "wikipedia", "1_conv_id": "713e08f805b24916b862e5e71ed3fbe4", "1_model_name": "BM25", "1_prompt": "are you nuts meaning etymology?", "1_output": [["are you nuts meaning etymology?", "Juglans regia\n\nThe bark is smooth, olive-brown when young and silvery-grey on older branches, and features scattered broad fissures with a rougher texture. Like all walnuts, the pith of the twigs contains air spaces; this chambered pith is brownish in color. The leaves are alternately arranged, 25–40 cm (10 to 16 in) long, odd-pinnate with 5–9 leaflets, paired alternately with one terminal leaflet. The largest leaflets are the three at the apex, 10–18 cm (4 to 7 in) long and 6–8 cm (2 to 3 in) broad; the basal pair of leaflets are much smaller, 5–8 cm (2 to 3 in) long, with the margins of the leaflets entire. The male flowers are in drooping catkins 5–10 cm (2 to 4 in) long, and the female flowers are terminal, in clusters of two to five, ripening in the autumn into a fruit with a green, semifleshy husk and a brown, corrugated nut. The whole fruit, including the husk, falls in autumn; the seed is large, with a relatively thin shell, and edible, with a rich flavour.\nEtymology\nThe Latin name for the walnut was nux Gallica, \"Gallic nut\"; the Gaulish region of Galatia in Anatolia lies in highlands at the western end of the tree's presumed natural distribution.\nFor the etymology and meaning of the word in English and other Germanic languages, see \"walnut\".\n\"Walnut\" does not distinguish the tree from other species of Juglans. Other names include common walnut in Britain; Persian walnut in South Africa and Australia; and English walnut in North America and Great Britain, New Zealand, and Australia, the latter name possibly because English sailors were prominent in Juglans regia nut distribution at one time. Alternatively, Walter Fox Allen stated in his 1912 treatise What You Need to Know About Planting, Cultivating and Harvesting this Most Delicious of Nuts: \"In America, it has commonly been known as English walnut to distinguish it from our native species.\""]], "1_corpus": "wikipedia"}
|
6 |
+
{"tstamp": 1723536874.7739, "task_type": "retrieval", "type": "leftvote", "models": ["", ""], "ip": "", "0_conv_id": "ce1e46d71fb94671929657b3ccd1b833", "0_model_name": "voyage-multilingual-2", "0_prompt": "what is the name of manchester united stadium", "0_output": [["what is the name of manchester united stadium", "Old Trafford\n\nOld Trafford () is a football stadium in Old Trafford, Greater Manchester, England, and the home of Manchester United. With a capacity of 74,310 it is the largest club football stadium (and second-largest football stadium overall after Wembley Stadium) in the United Kingdom, and the twelfth-largest in Europe. It is about from Old Trafford Cricket Ground and the adjacent tram stop."]], "0_corpus": "wikipedia", "1_conv_id": "14f071aa313d4625bd850961d3c74edf", "1_model_name": "sentence-transformers/all-MiniLM-L6-v2", "1_prompt": "what is the name of manchester united stadium", "1_output": [["what is the name of manchester united stadium", "City of Manchester Stadium\n\nOther major sporting and sport-related venues located in SportCity in the immediate vicinity of the Etihad Stadium, all legacies of the 2002 Commonwealth Games are the English Institute of Sport, west of the stadium, adjacent to the southwest corner of the Regional Arena; the Manchester Regional Tennis Centre, adjacent to the north end of the stadium; and the Manchester Tennis & Football Centre, also adjacent to the stadium, which is operated and administered by the Manchester Sport and Leisure Trust.\nPublic sculpture\nBetween 11 March (Commonwealth Day) and 10 August 2002, as part of the preparations for the upcoming Commonwealth Games and to celebrate Her Majesty the Queen's Golden Jubilee, a national Spirit of Friendship Festival was organised. On 9 July, a few weeks before the Games began, a sculpture outside the new national headquarters of the English Institute of Sport at SportCity was unveiled by the middle-distance runner Steve Cram. This sculpture, commissioned in late 2001, was created in a little over eight weeks by Altrincham-based artist, Colin Spofforth, who had submitted to Manchester City Council his idea for a heroic-sized sculpture of a sprinter as a means of celebrating the beauty, power and determination of the competing athletes. Reaching thirty feet high, weighing seven tonnes, and titled The Runner, this unique larger-than-life bronze statue of a male sprinter surmounting a bronze globe was, at the time, the United Kingdom's largest sporting sculpture. It depicts the very moment the runner leaves the blocks once the starter's gun has fired."]], "1_corpus": "wikipedia"}
|
7 |
+
{"tstamp": 1723536949.1762, "task_type": "retrieval", "type": "rightvote", "models": ["", ""], "ip": "", "0_conv_id": "6a48d1094f4c493faf4120db25717b7a", "0_model_name": "text-embedding-004", "0_prompt": "who played bailey in the sisterhood of the traveling pants", "0_output": [["who played bailey in the sisterhood of the traveling pants", "Bailee Madison\n\nBailee Madison Riley (born October 15, 1999) is an American actress, singer and songwriter. Born in Fort Lauderdale, Florida, Madison began acting at just two weeks of age, appearing mostly in television commercials for the first few years. Her film debut, as May Belle Aarons in the fantasy drama Bridge to Terabithia (2007), brought her early praise. She gained wider acclaim for starring in the war drama film Brothers (2009), for which she was nominated for the Critics' Choice Movie Award for Best Young Performer. Madison went on to star in a number of horror and thriller films, beginning with Don't Be Afraid of the Dark (2010), gaining a reputation as a scream queen. She had commercial success with starring roles in the comedies Just Go with It (2011) and Parental Guidance (2012), though the critical reception of these films was mostly negative.\nMadison transitioned to television in ensuing years, first with recurring roles in The Haunting Hour: The Series (20102012), as young Snow White in Once Upon a Time (2012–2016), and as a teenager with multiple mental health issues in the drama series The Fosters (20142015). She played the leading roles of Hillary Harrison in Trophy Wife (2013–2014) and Grace Russell in Good Witch (20152021). Madison gained further praise and resurged her status as a scream queen with her leading role as Imogen Adams in the Max slasher horror series Pretty Little Liars (2022present), a spinoff of the eponymous original series. She subsequently debuted her solo music career with the release of the pop single \"Kinda Fun\" (2024).\nEarly life\nBailee Madison Riley was born in Fort Lauderdale, Florida, to Patricia and Michael Riley. The youngest of seven children, she has four brothers and two sisters. Her elder sister, Kaitlin Vilasuso, is also an actress. Her father is Canadian, and through him Madison has citizenship by birth."]], "0_corpus": "wikipedia", "1_conv_id": "280813e8dbe54bb79beb4813a7e1937f", "1_model_name": "mixedbread-ai/mxbai-embed-large-v1", "1_prompt": "who played bailey in the sisterhood of the traveling pants", "1_output": [["who played bailey in the sisterhood of the traveling pants", "The Sisterhood of the Traveling Pants (film)\n\nThe Sisterhood of the Traveling Pants is a 2005 American coming-of-age comedy-drama film directed by Ken Kwapis from a screenplay by Delia Ephron and Elizabeth Chandler, based on the 2001 novel of the same name by Ann Brashares. It stars America Ferrera, Amber Tamblyn, Blake Lively, and Alexis Bledel. It follows four best friends who buy a mysterious pair of pants that fits each of them despite their differing sizes. They share the pants equally as they spend their first summer apart.\nIt was released in the United States on June 1, 2005 by Warner Bros. Pictures. A sequel, The Sisterhood of the Traveling Pants 2, was released on August 6, 2008. A third film is in development, as is a musical adaptation based on the first film.\nPlot\nLena Kaligaris (Alexis Bledel), Tibby Rollins (Amber Tamblyn), Carmen Lowell (America Ferrera), and Bridget Vreeland (Blake Lively) are teenagers from Bethesda, Maryland, who have been best friends their whole lives and are about to spend their first summer apart: Lena is visiting her grandparents in Santorini, Greece; Bridget is going to soccer camp in Baja California, Mexico; Carmen is visiting her father in South Carolina; and Tibby is staying home. While shopping together, they find a pair of jeans that inexplicably fit them all perfectly. They decide to share the jeans equally over the summer, before parting the next day."]], "1_corpus": "wikipedia"}
|
data/retrieval_individual-f36c9f97-e795-4522-8eb7-7dee254b42c7.jsonl
CHANGED
@@ -24,3 +24,15 @@
|
|
24 |
{"tstamp": 1723536657.4432, "task_type": "retrieval", "type": "chat", "model": "intfloat/multilingual-e5-large-instruct", "gen_params": {}, "start": 1723536657.0249, "finish": 1723536657.4432, "ip": "", "conv_id": "c0ca1a0f3fe54e24a870e5ce627a31cb", "model_name": "intfloat/multilingual-e5-large-instruct", "prompt": "who is the owner of the crowne plaza", "output": [["who is the owner of the crowne plaza", "Crowne Plaza\n\nCrowne Plaza is a British-American multinational chain of full service, upscale hotels headquartered in the United Kingdom. It caters to the business, leisure and blended travel market usually located in city centers, resorts, coastal towns or near major airports. The brand is part of IHG Hotels & Resorts family of brands, which include InterContinental Hotels & Resorts and Holiday Inn Hotels & Resorts, and operates in nearly 100 countries with more than 400 hotels and 110,000 bedrooms,\nHistory\nCrowne Plaza was established in 1983 as a breakout brand formed as the upscale sister brand to Holiday Inn. The first Crowne Plaza by Holiday Inn hotel opened that year in Rockville, Maryland. In 1988, Bass PLC (today InterContinental Hotels Group) purchased Holiday Corporation and in 1994 the brand was renamed Crowne Plaza Hotels. In 1999, Crowne Plaza opened its first European property, in Madeira, Portugal.\nNotable properties\nThe Crowne Plaza Liverpool John Lennon Airport is the former terminal building of Liverpool Speke Airport, constructed in the 1930s and used until 1986. Its notable art deco features led to its listing as a heritage building, and subsequent conversion to a hotel.\nThe Crowne Plaza Copenhagen Towers is the first hotel in Denmark to generate all of its power from renewable sources, including solar panels and geothermal heating and cooling pumps. Its stationary bicycles are connected to generators, which provide electricity to the hotel."]], "corpus": "wikipedia"}
|
25 |
{"tstamp": 1723536682.9239, "task_type": "retrieval", "type": "chat", "model": "text-embedding-004", "gen_params": {}, "start": 1723536682.6657, "finish": 1723536682.9239, "ip": "", "conv_id": "6a37052c4a36481aa39da7c3b7aa45a7", "model_name": "text-embedding-004", "prompt": "what are the 5 pillars of faith of islam", "output": [["what are the 5 pillars of faith of islam", "Islam\n\nMuslims believe that Islam is the complete and universal version of a primordial faith that was revealed many times through earlier prophets and messengers, including Adam, Noah, Abraham, Moses, and Jesus. Muslims consider the Quran to be the verbatim word of God and the unaltered, final revelation. Alongside the Quran, Muslims also believe in previous revelations, such as the Tawrat (the Torah), the Zabur (Psalms), and the Injil (Gospel). They believe that Muhammad is the main and final Islamic prophet, through whom the religion was completed. The teachings and normative examples of Muhammad, called the sunnah, documented in accounts called the hadith, provide a constitutional model for Muslims. Islam emphasizes that God is one and incomparable. It states that there will be a \"Final Judgment\" wherein the righteous will be rewarded in paradise () and the unrighteous will be punished in hell (). The Five Pillars—considered obligatory acts of worship—comprise the Islamic oath and creed (); daily prayers (); almsgiving (); fasting () in the month of Ramadan; and a pilgrimage () to Mecca. Islamic law, sharia, touches on virtually every aspect of life, from banking and finance and welfare to men's and women's roles and the environment. The two main religious festivals are Eid al-Fitr and Eid al-Adha. The three holiest sites in Islam are Masjid al-Haram in Mecca, Prophet's Mosque in Medina, and al-Aqsa Mosque in Jerusalem."]], "corpus": "wikipedia"}
|
26 |
{"tstamp": 1723536682.9239, "task_type": "retrieval", "type": "chat", "model": "intfloat/multilingual-e5-large-instruct", "gen_params": {}, "start": 1723536682.6657, "finish": 1723536682.9239, "ip": "", "conv_id": "faf1fcbddbe54a35b0b3fb812b51fe38", "model_name": "intfloat/multilingual-e5-large-instruct", "prompt": "what are the 5 pillars of faith of islam", "output": [["what are the 5 pillars of faith of islam", "Five Pillars of Islam\n\nThe first pillar of Islam is the Shahada, the assertion of faith. There are two shahadas: \"There is no god but God\" and \"Muhammad is the messenger of God\". This set statement is normally recited in Arabic: lā ʾilāha ʾillā-llāhu muḥammadun rasūlu-llāh () \"There is no god but God (and) Muhammad is the messenger of God.\" It is essential to utter it to become a Muslim and to convert to Islam.\nThe first shahada promotes the essential unity of the faith, proclaiming that there is no god but God. The Tawhid, which is the prayer that states \"no god but God\" is a major component of the Islamic faith, for it asserts the monotheistic aspect of Islam, promoting unity of God as the source of existence. The second shahada demonstrates God's essential mercy. This prayer proclaims Muhammad as the last prophet, and it uses Muhammad as the prime example of guidance for all Muslims. Muhammad received revelation that was distorted by earlier communities, such as Jewish and Christian societies; Muhammad was the recipient of the Quran's guidance himself and now is bearer of this guidance for the rest of the Muslim community throughout history.\nThe Shahada, or profession of faith is said five times a day during prayer. It is the first thing said to a newborn, and the last thing to a person on their death-bed, showing how the Muslim prayer and the pillars are instrumental from the day a person is born until the day they die."]], "corpus": "wikipedia"}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
{"tstamp": 1723536657.4432, "task_type": "retrieval", "type": "chat", "model": "intfloat/multilingual-e5-large-instruct", "gen_params": {}, "start": 1723536657.0249, "finish": 1723536657.4432, "ip": "", "conv_id": "c0ca1a0f3fe54e24a870e5ce627a31cb", "model_name": "intfloat/multilingual-e5-large-instruct", "prompt": "who is the owner of the crowne plaza", "output": [["who is the owner of the crowne plaza", "Crowne Plaza\n\nCrowne Plaza is a British-American multinational chain of full service, upscale hotels headquartered in the United Kingdom. It caters to the business, leisure and blended travel market usually located in city centers, resorts, coastal towns or near major airports. The brand is part of IHG Hotels & Resorts family of brands, which include InterContinental Hotels & Resorts and Holiday Inn Hotels & Resorts, and operates in nearly 100 countries with more than 400 hotels and 110,000 bedrooms,\nHistory\nCrowne Plaza was established in 1983 as a breakout brand formed as the upscale sister brand to Holiday Inn. The first Crowne Plaza by Holiday Inn hotel opened that year in Rockville, Maryland. In 1988, Bass PLC (today InterContinental Hotels Group) purchased Holiday Corporation and in 1994 the brand was renamed Crowne Plaza Hotels. In 1999, Crowne Plaza opened its first European property, in Madeira, Portugal.\nNotable properties\nThe Crowne Plaza Liverpool John Lennon Airport is the former terminal building of Liverpool Speke Airport, constructed in the 1930s and used until 1986. Its notable art deco features led to its listing as a heritage building, and subsequent conversion to a hotel.\nThe Crowne Plaza Copenhagen Towers is the first hotel in Denmark to generate all of its power from renewable sources, including solar panels and geothermal heating and cooling pumps. Its stationary bicycles are connected to generators, which provide electricity to the hotel."]], "corpus": "wikipedia"}
|
25 |
{"tstamp": 1723536682.9239, "task_type": "retrieval", "type": "chat", "model": "text-embedding-004", "gen_params": {}, "start": 1723536682.6657, "finish": 1723536682.9239, "ip": "", "conv_id": "6a37052c4a36481aa39da7c3b7aa45a7", "model_name": "text-embedding-004", "prompt": "what are the 5 pillars of faith of islam", "output": [["what are the 5 pillars of faith of islam", "Islam\n\nMuslims believe that Islam is the complete and universal version of a primordial faith that was revealed many times through earlier prophets and messengers, including Adam, Noah, Abraham, Moses, and Jesus. Muslims consider the Quran to be the verbatim word of God and the unaltered, final revelation. Alongside the Quran, Muslims also believe in previous revelations, such as the Tawrat (the Torah), the Zabur (Psalms), and the Injil (Gospel). They believe that Muhammad is the main and final Islamic prophet, through whom the religion was completed. The teachings and normative examples of Muhammad, called the sunnah, documented in accounts called the hadith, provide a constitutional model for Muslims. Islam emphasizes that God is one and incomparable. It states that there will be a \"Final Judgment\" wherein the righteous will be rewarded in paradise () and the unrighteous will be punished in hell (). The Five Pillars—considered obligatory acts of worship—comprise the Islamic oath and creed (); daily prayers (); almsgiving (); fasting () in the month of Ramadan; and a pilgrimage () to Mecca. Islamic law, sharia, touches on virtually every aspect of life, from banking and finance and welfare to men's and women's roles and the environment. The two main religious festivals are Eid al-Fitr and Eid al-Adha. The three holiest sites in Islam are Masjid al-Haram in Mecca, Prophet's Mosque in Medina, and al-Aqsa Mosque in Jerusalem."]], "corpus": "wikipedia"}
|
26 |
{"tstamp": 1723536682.9239, "task_type": "retrieval", "type": "chat", "model": "intfloat/multilingual-e5-large-instruct", "gen_params": {}, "start": 1723536682.6657, "finish": 1723536682.9239, "ip": "", "conv_id": "faf1fcbddbe54a35b0b3fb812b51fe38", "model_name": "intfloat/multilingual-e5-large-instruct", "prompt": "what are the 5 pillars of faith of islam", "output": [["what are the 5 pillars of faith of islam", "Five Pillars of Islam\n\nThe first pillar of Islam is the Shahada, the assertion of faith. There are two shahadas: \"There is no god but God\" and \"Muhammad is the messenger of God\". This set statement is normally recited in Arabic: lā ʾilāha ʾillā-llāhu muḥammadun rasūlu-llāh () \"There is no god but God (and) Muhammad is the messenger of God.\" It is essential to utter it to become a Muslim and to convert to Islam.\nThe first shahada promotes the essential unity of the faith, proclaiming that there is no god but God. The Tawhid, which is the prayer that states \"no god but God\" is a major component of the Islamic faith, for it asserts the monotheistic aspect of Islam, promoting unity of God as the source of existence. The second shahada demonstrates God's essential mercy. This prayer proclaims Muhammad as the last prophet, and it uses Muhammad as the prime example of guidance for all Muslims. Muhammad received revelation that was distorted by earlier communities, such as Jewish and Christian societies; Muhammad was the recipient of the Quran's guidance himself and now is bearer of this guidance for the rest of the Muslim community throughout history.\nThe Shahada, or profession of faith is said five times a day during prayer. It is the first thing said to a newborn, and the last thing to a person on their death-bed, showing how the Muslim prayer and the pillars are instrumental from the day a person is born until the day they die."]], "corpus": "wikipedia"}
|
27 |
+
{"tstamp": 1723536758.3384, "task_type": "retrieval", "type": "chat", "model": "text-embedding-004", "gen_params": {}, "start": 1723536758.0292, "finish": 1723536758.3384, "ip": "", "conv_id": "95046b1425bf4295bdd92f05219b77f7", "model_name": "text-embedding-004", "prompt": "Using BERT for detecting propaganda in news articles with a focus on imbalanced data", "output": [["Using BERT for detecting propaganda in news articles with a focus on imbalanced data", "Title: Cost-Sensitive BERT for Generalisable Sentence Classification with Imbalanced Data\n\nAbstract: The automatic identification of propaganda has gained significance in recent years due to technological and social changes in the way news is generated and consumed. That this task can be addressed effectively using BERT, a powerful new architecture which can be fine-tuned for text classification tasks, is not surprising. However, propaganda detection, like other tasks that deal with news documents and other forms of decontextualized social communication (e.g. sentiment analysis), inherently deals with data whose categories are simultaneously imbalanced and dissimilar. We show that BERT, while capable of handling imbalanced classes with no additional data augmentation, does not generalise well when the training and test data are sufficiently dissimilar (as is often the case with news sources, whose topics evolve over time). We show how to address this problem by providing a statistical measure of similarity between datasets and a method of incorporating cost-weighting into BERT when the training and test sets are dissimilar. We test these methods on the Propaganda Techniques Corpus (PTC) and achieve the second-highest score on sentence-level propaganda classification."]], "corpus": "arxiv"}
|
28 |
+
{"tstamp": 1723536758.3384, "task_type": "retrieval", "type": "chat", "model": "intfloat/multilingual-e5-large-instruct", "gen_params": {}, "start": 1723536758.0292, "finish": 1723536758.3384, "ip": "", "conv_id": "1961ca267faf4055abd9c04c52299aa1", "model_name": "intfloat/multilingual-e5-large-instruct", "prompt": "Using BERT for detecting propaganda in news articles with a focus on imbalanced data", "output": [["Using BERT for detecting propaganda in news articles with a focus on imbalanced data", "Title: Cost-Sensitive BERT for Generalisable Sentence Classification with Imbalanced Data\n\nAbstract: The automatic identification of propaganda has gained significance in recent years due to technological and social changes in the way news is generated and consumed. That this task can be addressed effectively using BERT, a powerful new architecture which can be fine-tuned for text classification tasks, is not surprising. However, propaganda detection, like other tasks that deal with news documents and other forms of decontextualized social communication (e.g. sentiment analysis), inherently deals with data whose categories are simultaneously imbalanced and dissimilar. We show that BERT, while capable of handling imbalanced classes with no additional data augmentation, does not generalise well when the training and test data are sufficiently dissimilar (as is often the case with news sources, whose topics evolve over time). We show how to address this problem by providing a statistical measure of similarity between datasets and a method of incorporating cost-weighting into BERT when the training and test sets are dissimilar. We test these methods on the Propaganda Techniques Corpus (PTC) and achieve the second-highest score on sentence-level propaganda classification."]], "corpus": "arxiv"}
|
29 |
+
{"tstamp": 1723536770.6653, "task_type": "retrieval", "type": "chat", "model": "text-embedding-004", "gen_params": {}, "start": 1723536770.3989, "finish": 1723536770.6653, "ip": "", "conv_id": "9f152539f23c4f5aa2a2036c7e3913c4", "model_name": "text-embedding-004", "prompt": "who wrote he ain't heavy he's my brother lyrics", "output": [["who wrote he ain't heavy he's my brother lyrics", "He Ain't Heavy, He's My Brother\n\n\"He Ain't Heavy, He's My Brother\" is a ballad written by Bobby Scott and Bob Russell. Originally recorded by Kelly Gordon in 1969, the song became a worldwide hit for the Hollies later that year and also a hit for Neil Diamond in 1970. It has been recorded by many artists in subsequent years. The Hollies' version was re-released in 1988 and again was a major hit in the UK.\nScott and Russell were introduced to each other by Johnny Mercer, at a California nightclub. Although Russell was dying of lymphoma and the pair met only three times, they managed to collaborate on the song.\nTitle\nIn his 1884 book The Parables of Jesus, James Wells, Moderator of the United Free Church of Scotland, tells the story of a little girl carrying a big baby boy. Seeing her struggling, someone asked if she wasn't tired. With surprise she replied: \"No, he's not heavy; he's my brother.\"\nIn a 1918 publication by Ralph Waldo Trine titled The Higher Powers of Mind and Spirit, Trine relates the following anecdote: \"Do you know that incident in connection with the little Scottish girl? She was trudging along, carrying as best she could a boy younger, but it seemed almost as big as she herself, when one remarked to her how heavy he must be for her to carry, when instantly came the reply: 'He's na heavy. He's mi brither.'\""]], "corpus": "wikipedia"}
|
30 |
+
{"tstamp": 1723536770.6653, "task_type": "retrieval", "type": "chat", "model": "intfloat/multilingual-e5-large-instruct", "gen_params": {}, "start": 1723536770.3989, "finish": 1723536770.6653, "ip": "", "conv_id": "332b21fcbe664cf0b5894a7ba53186ed", "model_name": "intfloat/multilingual-e5-large-instruct", "prompt": "who wrote he ain't heavy he's my brother lyrics", "output": [["who wrote he ain't heavy he's my brother lyrics", "He Ain't Heavy, He's My Brother\n\n\"He Ain't Heavy, He's My Brother\" is a ballad written by Bobby Scott and Bob Russell. Originally recorded by Kelly Gordon in 1969, the song became a worldwide hit for the Hollies later that year and also a hit for Neil Diamond in 1970. It has been recorded by many artists in subsequent years. The Hollies' version was re-released in 1988 and again was a major hit in the UK.\nScott and Russell were introduced to each other by Johnny Mercer, at a California nightclub. Although Russell was dying of lymphoma and the pair met only three times, they managed to collaborate on the song.\nTitle\nIn his 1884 book The Parables of Jesus, James Wells, Moderator of the United Free Church of Scotland, tells the story of a little girl carrying a big baby boy. Seeing her struggling, someone asked if she wasn't tired. With surprise she replied: \"No, he's not heavy; he's my brother.\"\nIn a 1918 publication by Ralph Waldo Trine titled The Higher Powers of Mind and Spirit, Trine relates the following anecdote: \"Do you know that incident in connection with the little Scottish girl? She was trudging along, carrying as best she could a boy younger, but it seemed almost as big as she herself, when one remarked to her how heavy he must be for her to carry, when instantly came the reply: 'He's na heavy. He's mi brither.'\""]], "corpus": "wikipedia"}
|
31 |
+
{"tstamp": 1723536780.6031, "task_type": "retrieval", "type": "chat", "model": "text-embedding-004", "gen_params": {}, "start": 1723536780.3706, "finish": 1723536780.6031, "ip": "", "conv_id": "d8ecd55242de43f6a73bd5a59d122d82", "model_name": "text-embedding-004", "prompt": "Methods for debugging trained neural networks by finding edge case errors.", "output": [["Methods for debugging trained neural networks by finding edge case errors.", "Title: An Effective Data-Driven Approach for Localizing Deep Learning Faults\n\nAbstract: Deep Learning (DL) applications are being used to solve problems in critical domains (e.g., autonomous driving or medical diagnosis systems). Thus, developers need to debug their systems to ensure that the expected behavior is delivered. However, it is hard and expensive to debug DNNs. When the failure symptoms or unsatisfied accuracies are reported after training, we lose the traceability as to which part of the DNN program is responsible for the failure. Even worse, sometimes, a deep learning program has different types of bugs. To address the challenges of debugging DNN models, we propose a novel data-driven approach that leverages model features to learn problem patterns. Our approach extracts these features, which represent semantic information of faults during DNN training. Our technique uses these features as a training dataset to learn and infer DNN fault patterns. Also, our methodology automatically links bug symptoms to their root causes, without the need for manually crafted mappings, so that developers can take the necessary steps to fix faults. We evaluate our approach using real-world and mutated models. Our results demonstrate that our technique can effectively detect and diagnose different bug types. Finally, our technique achieved better accuracy, precision, and recall than prior work for mutated models. Also, our approach achieved comparable results for real-world models in terms of accuracy and performance to the state-of-the-art."]], "corpus": "arxiv"}
|
32 |
+
{"tstamp": 1723536780.6031, "task_type": "retrieval", "type": "chat", "model": "intfloat/multilingual-e5-large-instruct", "gen_params": {}, "start": 1723536780.3706, "finish": 1723536780.6031, "ip": "", "conv_id": "b987addad4174d53ae7c9fd7ceae8beb", "model_name": "intfloat/multilingual-e5-large-instruct", "prompt": "Methods for debugging trained neural networks by finding edge case errors.", "output": [["Methods for debugging trained neural networks by finding edge case errors.", "Title: TensorFuzz: Debugging Neural Networks with Coverage-Guided Fuzzing\n\nAbstract: Machine learning models are notoriously difficult to interpret and debug. This is particularly true of neural networks. In this work, we introduce automated software testing techniques for neural networks that are well-suited to discovering errors which occur only for rare inputs. Specifically, we develop coverage-guided fuzzing (CGF) methods for neural networks. In CGF, random mutations of inputs to a neural network are guided by a coverage metric toward the goal of satisfying user-specified constraints. We describe how fast approximate nearest neighbor algorithms can provide this coverage metric. We then discuss the application of CGF to the following goals: finding numerical errors in trained neural networks, generating disagreements between neural networks and quantized versions of those networks, and surfacing undesirable behavior in character level language models. Finally, we release an open source library called TensorFuzz that implements the described techniques."]], "corpus": "arxiv"}
|
33 |
+
{"tstamp": 1723536850.1813, "task_type": "retrieval", "type": "chat", "model": "Alibaba-NLP/gte-Qwen2-7B-instruct", "gen_params": {}, "start": 1723536847.3355, "finish": 1723536850.1813, "ip": "", "conv_id": "d8df13802da2438082574193547f4099", "model_name": "Alibaba-NLP/gte-Qwen2-7B-instruct", "prompt": "are you nuts meaning etymology?", "output": [["are you nuts meaning etymology?", "Fruit (slang)\n\nFrom the 1857 \"Dictionary of Obsolete and Provincial English: Containing Words from the English Writers Previous to the Nineteenth Century Which Are No Longer In Use, Or Are Not Used In The Same Sense. And Words Which Are Now Used Only In The Provincial Dialects\" (e.g. all parts of England other than London) several routes seem likely, cockney was \"an effeminate boy who sold fruit and greens while cobble is the stone (or pit) of a fruit which also is presently defined as male testicles from the Cockney rhyming slang \"cobbler's awls\", meaning \"balls\" and blow was the blossoming of a fruit tree and is widely used as the Polari definition for oral sex on a man causing him to \"blow\" (ejaculate).\nFruitcake\nFruitcakes, which are cakes containing both fruit and nuts, have been in existence since the Middle Ages, but it is unclear when the term started being used disparagingly, especially in the United Kingdom and the United States, as a slur for a 'crazy person' (e.g., \"he's a complete fruitcake\") although Cassell's Dictionary of Slang traces uses of fruitcake meaning an eccentric (crazy) person to 1910s. It is derived from the expression \"nutty as a fruitcake\", which was first recorded in 1935. A nut can be either a seed or a fruit."]], "corpus": "wikipedia"}
|
34 |
+
{"tstamp": 1723536850.1813, "task_type": "retrieval", "type": "chat", "model": "BM25", "gen_params": {}, "start": 1723536847.3355, "finish": 1723536850.1813, "ip": "", "conv_id": "713e08f805b24916b862e5e71ed3fbe4", "model_name": "BM25", "prompt": "are you nuts meaning etymology?", "output": [["are you nuts meaning etymology?", "Juglans regia\n\nThe bark is smooth, olive-brown when young and silvery-grey on older branches, and features scattered broad fissures with a rougher texture. Like all walnuts, the pith of the twigs contains air spaces; this chambered pith is brownish in color. The leaves are alternately arranged, 25–40 cm (10 to 16 in) long, odd-pinnate with 5–9 leaflets, paired alternately with one terminal leaflet. The largest leaflets are the three at the apex, 10–18 cm (4 to 7 in) long and 6–8 cm (2 to 3 in) broad; the basal pair of leaflets are much smaller, 5–8 cm (2 to 3 in) long, with the margins of the leaflets entire. The male flowers are in drooping catkins 5–10 cm (2 to 4 in) long, and the female flowers are terminal, in clusters of two to five, ripening in the autumn into a fruit with a green, semifleshy husk and a brown, corrugated nut. The whole fruit, including the husk, falls in autumn; the seed is large, with a relatively thin shell, and edible, with a rich flavour.\nEtymology\nThe Latin name for the walnut was nux Gallica, \"Gallic nut\"; the Gaulish region of Galatia in Anatolia lies in highlands at the western end of the tree's presumed natural distribution.\nFor the etymology and meaning of the word in English and other Germanic languages, see \"walnut\".\n\"Walnut\" does not distinguish the tree from other species of Juglans. Other names include common walnut in Britain; Persian walnut in South Africa and Australia; and English walnut in North America and Great Britain, New Zealand, and Australia, the latter name possibly because English sailors were prominent in Juglans regia nut distribution at one time. Alternatively, Walter Fox Allen stated in his 1912 treatise What You Need to Know About Planting, Cultivating and Harvesting this Most Delicious of Nuts: \"In America, it has commonly been known as English walnut to distinguish it from our native species.\""]], "corpus": "wikipedia"}
|
35 |
+
{"tstamp": 1723536866.1454, "task_type": "retrieval", "type": "chat", "model": "voyage-multilingual-2", "gen_params": {}, "start": 1723536865.7095, "finish": 1723536866.1454, "ip": "", "conv_id": "ce1e46d71fb94671929657b3ccd1b833", "model_name": "voyage-multilingual-2", "prompt": "what is the name of manchester united stadium", "output": [["what is the name of manchester united stadium", "Old Trafford\n\nOld Trafford () is a football stadium in Old Trafford, Greater Manchester, England, and the home of Manchester United. With a capacity of 74,310 it is the largest club football stadium (and second-largest football stadium overall after Wembley Stadium) in the United Kingdom, and the twelfth-largest in Europe. It is about from Old Trafford Cricket Ground and the adjacent tram stop."]], "corpus": "wikipedia"}
|
36 |
+
{"tstamp": 1723536866.1454, "task_type": "retrieval", "type": "chat", "model": "sentence-transformers/all-MiniLM-L6-v2", "gen_params": {}, "start": 1723536865.7095, "finish": 1723536866.1454, "ip": "", "conv_id": "14f071aa313d4625bd850961d3c74edf", "model_name": "sentence-transformers/all-MiniLM-L6-v2", "prompt": "what is the name of manchester united stadium", "output": [["what is the name of manchester united stadium", "City of Manchester Stadium\n\nOther major sporting and sport-related venues located in SportCity in the immediate vicinity of the Etihad Stadium, all legacies of the 2002 Commonwealth Games are the English Institute of Sport, west of the stadium, adjacent to the southwest corner of the Regional Arena; the Manchester Regional Tennis Centre, adjacent to the north end of the stadium; and the Manchester Tennis & Football Centre, also adjacent to the stadium, which is operated and administered by the Manchester Sport and Leisure Trust.\nPublic sculpture\nBetween 11 March (Commonwealth Day) and 10 August 2002, as part of the preparations for the upcoming Commonwealth Games and to celebrate Her Majesty the Queen's Golden Jubilee, a national Spirit of Friendship Festival was organised. On 9 July, a few weeks before the Games began, a sculpture outside the new national headquarters of the English Institute of Sport at SportCity was unveiled by the middle-distance runner Steve Cram. This sculpture, commissioned in late 2001, was created in a little over eight weeks by Altrincham-based artist, Colin Spofforth, who had submitted to Manchester City Council his idea for a heroic-sized sculpture of a sprinter as a means of celebrating the beauty, power and determination of the competing athletes. Reaching thirty feet high, weighing seven tonnes, and titled The Runner, this unique larger-than-life bronze statue of a male sprinter surmounting a bronze globe was, at the time, the United Kingdom's largest sporting sculpture. It depicts the very moment the runner leaves the blocks once the starter's gun has fired."]], "corpus": "wikipedia"}
|
37 |
+
{"tstamp": 1723536885.4867, "task_type": "retrieval", "type": "chat", "model": "text-embedding-004", "gen_params": {}, "start": 1723536885.2364, "finish": 1723536885.4867, "ip": "", "conv_id": "6a48d1094f4c493faf4120db25717b7a", "model_name": "text-embedding-004", "prompt": "who played bailey in the sisterhood of the traveling pants", "output": [["who played bailey in the sisterhood of the traveling pants", "Bailee Madison\n\nBailee Madison Riley (born October 15, 1999) is an American actress, singer and songwriter. Born in Fort Lauderdale, Florida, Madison began acting at just two weeks of age, appearing mostly in television commercials for the first few years. Her film debut, as May Belle Aarons in the fantasy drama Bridge to Terabithia (2007), brought her early praise. She gained wider acclaim for starring in the war drama film Brothers (2009), for which she was nominated for the Critics' Choice Movie Award for Best Young Performer. Madison went on to star in a number of horror and thriller films, beginning with Don't Be Afraid of the Dark (2010), gaining a reputation as a scream queen. She had commercial success with starring roles in the comedies Just Go with It (2011) and Parental Guidance (2012), though the critical reception of these films was mostly negative.\nMadison transitioned to television in ensuing years, first with recurring roles in The Haunting Hour: The Series (20102012), as young Snow White in Once Upon a Time (2012–2016), and as a teenager with multiple mental health issues in the drama series The Fosters (20142015). She played the leading roles of Hillary Harrison in Trophy Wife (2013–2014) and Grace Russell in Good Witch (20152021). Madison gained further praise and resurged her status as a scream queen with her leading role as Imogen Adams in the Max slasher horror series Pretty Little Liars (2022present), a spinoff of the eponymous original series. She subsequently debuted her solo music career with the release of the pop single \"Kinda Fun\" (2024).\nEarly life\nBailee Madison Riley was born in Fort Lauderdale, Florida, to Patricia and Michael Riley. The youngest of seven children, she has four brothers and two sisters. Her elder sister, Kaitlin Vilasuso, is also an actress. Her father is Canadian, and through him Madison has citizenship by birth."]], "corpus": "wikipedia"}
|
38 |
+
{"tstamp": 1723536885.4867, "task_type": "retrieval", "type": "chat", "model": "mixedbread-ai/mxbai-embed-large-v1", "gen_params": {}, "start": 1723536885.2364, "finish": 1723536885.4867, "ip": "", "conv_id": "280813e8dbe54bb79beb4813a7e1937f", "model_name": "mixedbread-ai/mxbai-embed-large-v1", "prompt": "who played bailey in the sisterhood of the traveling pants", "output": [["who played bailey in the sisterhood of the traveling pants", "The Sisterhood of the Traveling Pants (film)\n\nThe Sisterhood of the Traveling Pants is a 2005 American coming-of-age comedy-drama film directed by Ken Kwapis from a screenplay by Delia Ephron and Elizabeth Chandler, based on the 2001 novel of the same name by Ann Brashares. It stars America Ferrera, Amber Tamblyn, Blake Lively, and Alexis Bledel. It follows four best friends who buy a mysterious pair of pants that fits each of them despite their differing sizes. They share the pants equally as they spend their first summer apart.\nIt was released in the United States on June 1, 2005 by Warner Bros. Pictures. A sequel, The Sisterhood of the Traveling Pants 2, was released on August 6, 2008. A third film is in development, as is a musical adaptation based on the first film.\nPlot\nLena Kaligaris (Alexis Bledel), Tibby Rollins (Amber Tamblyn), Carmen Lowell (America Ferrera), and Bridget Vreeland (Blake Lively) are teenagers from Bethesda, Maryland, who have been best friends their whole lives and are about to spend their first summer apart: Lena is visiting her grandparents in Santorini, Greece; Bridget is going to soccer camp in Baja California, Mexico; Carmen is visiting her father in South Carolina; and Tibby is staying home. While shopping together, they find a pair of jeans that inexplicably fit them all perfectly. They decide to share the jeans equally over the summer, before parting the next day."]], "corpus": "wikipedia"}
|
data/retrieval_side_by_side-f36c9f97-e795-4522-8eb7-7dee254b42c7.jsonl
CHANGED
@@ -1,2 +1,4 @@
|
|
1 |
{"tstamp": 1723536661.4304, "task_type": "retrieval", "type": "tievote", "models": ["text-embedding-004", "intfloat/multilingual-e5-large-instruct"], "ip": "", "0_conv_id": "e52b01732d7d4f409fd04bbdf5c27a23", "0_model_name": "text-embedding-004", "0_prompt": "who is the owner of the crowne plaza", "0_output": [["who is the owner of the crowne plaza", "Crowne Plaza\n\nCrowne Plaza is a British-American multinational chain of full service, upscale hotels headquartered in the United Kingdom. It caters to the business, leisure and blended travel market usually located in city centers, resorts, coastal towns or near major airports. The brand is part of IHG Hotels & Resorts family of brands, which include InterContinental Hotels & Resorts and Holiday Inn Hotels & Resorts, and operates in nearly 100 countries with more than 400 hotels and 110,000 bedrooms,\nHistory\nCrowne Plaza was established in 1983 as a breakout brand formed as the upscale sister brand to Holiday Inn. The first Crowne Plaza by Holiday Inn hotel opened that year in Rockville, Maryland. In 1988, Bass PLC (today InterContinental Hotels Group) purchased Holiday Corporation and in 1994 the brand was renamed Crowne Plaza Hotels. In 1999, Crowne Plaza opened its first European property, in Madeira, Portugal.\nNotable properties\nThe Crowne Plaza Liverpool John Lennon Airport is the former terminal building of Liverpool Speke Airport, constructed in the 1930s and used until 1986. Its notable art deco features led to its listing as a heritage building, and subsequent conversion to a hotel.\nThe Crowne Plaza Copenhagen Towers is the first hotel in Denmark to generate all of its power from renewable sources, including solar panels and geothermal heating and cooling pumps. Its stationary bicycles are connected to generators, which provide electricity to the hotel."]], "0_corpus": "wikipedia", "1_conv_id": "c0ca1a0f3fe54e24a870e5ce627a31cb", "1_model_name": "intfloat/multilingual-e5-large-instruct", "1_prompt": "who is the owner of the crowne plaza", "1_output": [["who is the owner of the crowne plaza", "Crowne Plaza\n\nCrowne Plaza is a British-American multinational chain of full service, upscale hotels headquartered in the United Kingdom. It caters to the business, leisure and blended travel market usually located in city centers, resorts, coastal towns or near major airports. The brand is part of IHG Hotels & Resorts family of brands, which include InterContinental Hotels & Resorts and Holiday Inn Hotels & Resorts, and operates in nearly 100 countries with more than 400 hotels and 110,000 bedrooms,\nHistory\nCrowne Plaza was established in 1983 as a breakout brand formed as the upscale sister brand to Holiday Inn. The first Crowne Plaza by Holiday Inn hotel opened that year in Rockville, Maryland. In 1988, Bass PLC (today InterContinental Hotels Group) purchased Holiday Corporation and in 1994 the brand was renamed Crowne Plaza Hotels. In 1999, Crowne Plaza opened its first European property, in Madeira, Portugal.\nNotable properties\nThe Crowne Plaza Liverpool John Lennon Airport is the former terminal building of Liverpool Speke Airport, constructed in the 1930s and used until 1986. Its notable art deco features led to its listing as a heritage building, and subsequent conversion to a hotel.\nThe Crowne Plaza Copenhagen Towers is the first hotel in Denmark to generate all of its power from renewable sources, including solar panels and geothermal heating and cooling pumps. Its stationary bicycles are connected to generators, which provide electricity to the hotel."]], "1_corpus": "wikipedia"}
|
2 |
{"tstamp": 1723536745.7683, "task_type": "retrieval", "type": "leftvote", "models": ["text-embedding-004", "intfloat/multilingual-e5-large-instruct"], "ip": "", "0_conv_id": "6a37052c4a36481aa39da7c3b7aa45a7", "0_model_name": "text-embedding-004", "0_prompt": "what are the 5 pillars of faith of islam", "0_output": [["what are the 5 pillars of faith of islam", "Islam\n\nMuslims believe that Islam is the complete and universal version of a primordial faith that was revealed many times through earlier prophets and messengers, including Adam, Noah, Abraham, Moses, and Jesus. Muslims consider the Quran to be the verbatim word of God and the unaltered, final revelation. Alongside the Quran, Muslims also believe in previous revelations, such as the Tawrat (the Torah), the Zabur (Psalms), and the Injil (Gospel). They believe that Muhammad is the main and final Islamic prophet, through whom the religion was completed. The teachings and normative examples of Muhammad, called the sunnah, documented in accounts called the hadith, provide a constitutional model for Muslims. Islam emphasizes that God is one and incomparable. It states that there will be a \"Final Judgment\" wherein the righteous will be rewarded in paradise () and the unrighteous will be punished in hell (). The Five Pillars—considered obligatory acts of worship—comprise the Islamic oath and creed (); daily prayers (); almsgiving (); fasting () in the month of Ramadan; and a pilgrimage () to Mecca. Islamic law, sharia, touches on virtually every aspect of life, from banking and finance and welfare to men's and women's roles and the environment. The two main religious festivals are Eid al-Fitr and Eid al-Adha. The three holiest sites in Islam are Masjid al-Haram in Mecca, Prophet's Mosque in Medina, and al-Aqsa Mosque in Jerusalem."]], "0_corpus": "wikipedia", "1_conv_id": "faf1fcbddbe54a35b0b3fb812b51fe38", "1_model_name": "intfloat/multilingual-e5-large-instruct", "1_prompt": "what are the 5 pillars of faith of islam", "1_output": [["what are the 5 pillars of faith of islam", "Five Pillars of Islam\n\nThe first pillar of Islam is the Shahada, the assertion of faith. There are two shahadas: \"There is no god but God\" and \"Muhammad is the messenger of God\". This set statement is normally recited in Arabic: lā ʾilāha ʾillā-llāhu muḥammadun rasūlu-llāh () \"There is no god but God (and) Muhammad is the messenger of God.\" It is essential to utter it to become a Muslim and to convert to Islam.\nThe first shahada promotes the essential unity of the faith, proclaiming that there is no god but God. The Tawhid, which is the prayer that states \"no god but God\" is a major component of the Islamic faith, for it asserts the monotheistic aspect of Islam, promoting unity of God as the source of existence. The second shahada demonstrates God's essential mercy. This prayer proclaims Muhammad as the last prophet, and it uses Muhammad as the prime example of guidance for all Muslims. Muhammad received revelation that was distorted by earlier communities, such as Jewish and Christian societies; Muhammad was the recipient of the Quran's guidance himself and now is bearer of this guidance for the rest of the Muslim community throughout history.\nThe Shahada, or profession of faith is said five times a day during prayer. It is the first thing said to a newborn, and the last thing to a person on their death-bed, showing how the Muslim prayer and the pillars are instrumental from the day a person is born until the day they die."]], "1_corpus": "wikipedia"}
|
|
|
|
|
|
1 |
{"tstamp": 1723536661.4304, "task_type": "retrieval", "type": "tievote", "models": ["text-embedding-004", "intfloat/multilingual-e5-large-instruct"], "ip": "", "0_conv_id": "e52b01732d7d4f409fd04bbdf5c27a23", "0_model_name": "text-embedding-004", "0_prompt": "who is the owner of the crowne plaza", "0_output": [["who is the owner of the crowne plaza", "Crowne Plaza\n\nCrowne Plaza is a British-American multinational chain of full service, upscale hotels headquartered in the United Kingdom. It caters to the business, leisure and blended travel market usually located in city centers, resorts, coastal towns or near major airports. The brand is part of IHG Hotels & Resorts family of brands, which include InterContinental Hotels & Resorts and Holiday Inn Hotels & Resorts, and operates in nearly 100 countries with more than 400 hotels and 110,000 bedrooms,\nHistory\nCrowne Plaza was established in 1983 as a breakout brand formed as the upscale sister brand to Holiday Inn. The first Crowne Plaza by Holiday Inn hotel opened that year in Rockville, Maryland. In 1988, Bass PLC (today InterContinental Hotels Group) purchased Holiday Corporation and in 1994 the brand was renamed Crowne Plaza Hotels. In 1999, Crowne Plaza opened its first European property, in Madeira, Portugal.\nNotable properties\nThe Crowne Plaza Liverpool John Lennon Airport is the former terminal building of Liverpool Speke Airport, constructed in the 1930s and used until 1986. Its notable art deco features led to its listing as a heritage building, and subsequent conversion to a hotel.\nThe Crowne Plaza Copenhagen Towers is the first hotel in Denmark to generate all of its power from renewable sources, including solar panels and geothermal heating and cooling pumps. Its stationary bicycles are connected to generators, which provide electricity to the hotel."]], "0_corpus": "wikipedia", "1_conv_id": "c0ca1a0f3fe54e24a870e5ce627a31cb", "1_model_name": "intfloat/multilingual-e5-large-instruct", "1_prompt": "who is the owner of the crowne plaza", "1_output": [["who is the owner of the crowne plaza", "Crowne Plaza\n\nCrowne Plaza is a British-American multinational chain of full service, upscale hotels headquartered in the United Kingdom. It caters to the business, leisure and blended travel market usually located in city centers, resorts, coastal towns or near major airports. The brand is part of IHG Hotels & Resorts family of brands, which include InterContinental Hotels & Resorts and Holiday Inn Hotels & Resorts, and operates in nearly 100 countries with more than 400 hotels and 110,000 bedrooms,\nHistory\nCrowne Plaza was established in 1983 as a breakout brand formed as the upscale sister brand to Holiday Inn. The first Crowne Plaza by Holiday Inn hotel opened that year in Rockville, Maryland. In 1988, Bass PLC (today InterContinental Hotels Group) purchased Holiday Corporation and in 1994 the brand was renamed Crowne Plaza Hotels. In 1999, Crowne Plaza opened its first European property, in Madeira, Portugal.\nNotable properties\nThe Crowne Plaza Liverpool John Lennon Airport is the former terminal building of Liverpool Speke Airport, constructed in the 1930s and used until 1986. Its notable art deco features led to its listing as a heritage building, and subsequent conversion to a hotel.\nThe Crowne Plaza Copenhagen Towers is the first hotel in Denmark to generate all of its power from renewable sources, including solar panels and geothermal heating and cooling pumps. Its stationary bicycles are connected to generators, which provide electricity to the hotel."]], "1_corpus": "wikipedia"}
|
2 |
{"tstamp": 1723536745.7683, "task_type": "retrieval", "type": "leftvote", "models": ["text-embedding-004", "intfloat/multilingual-e5-large-instruct"], "ip": "", "0_conv_id": "6a37052c4a36481aa39da7c3b7aa45a7", "0_model_name": "text-embedding-004", "0_prompt": "what are the 5 pillars of faith of islam", "0_output": [["what are the 5 pillars of faith of islam", "Islam\n\nMuslims believe that Islam is the complete and universal version of a primordial faith that was revealed many times through earlier prophets and messengers, including Adam, Noah, Abraham, Moses, and Jesus. Muslims consider the Quran to be the verbatim word of God and the unaltered, final revelation. Alongside the Quran, Muslims also believe in previous revelations, such as the Tawrat (the Torah), the Zabur (Psalms), and the Injil (Gospel). They believe that Muhammad is the main and final Islamic prophet, through whom the religion was completed. The teachings and normative examples of Muhammad, called the sunnah, documented in accounts called the hadith, provide a constitutional model for Muslims. Islam emphasizes that God is one and incomparable. It states that there will be a \"Final Judgment\" wherein the righteous will be rewarded in paradise () and the unrighteous will be punished in hell (). The Five Pillars—considered obligatory acts of worship—comprise the Islamic oath and creed (); daily prayers (); almsgiving (); fasting () in the month of Ramadan; and a pilgrimage () to Mecca. Islamic law, sharia, touches on virtually every aspect of life, from banking and finance and welfare to men's and women's roles and the environment. The two main religious festivals are Eid al-Fitr and Eid al-Adha. The three holiest sites in Islam are Masjid al-Haram in Mecca, Prophet's Mosque in Medina, and al-Aqsa Mosque in Jerusalem."]], "0_corpus": "wikipedia", "1_conv_id": "faf1fcbddbe54a35b0b3fb812b51fe38", "1_model_name": "intfloat/multilingual-e5-large-instruct", "1_prompt": "what are the 5 pillars of faith of islam", "1_output": [["what are the 5 pillars of faith of islam", "Five Pillars of Islam\n\nThe first pillar of Islam is the Shahada, the assertion of faith. There are two shahadas: \"There is no god but God\" and \"Muhammad is the messenger of God\". This set statement is normally recited in Arabic: lā ʾilāha ʾillā-llāhu muḥammadun rasūlu-llāh () \"There is no god but God (and) Muhammad is the messenger of God.\" It is essential to utter it to become a Muslim and to convert to Islam.\nThe first shahada promotes the essential unity of the faith, proclaiming that there is no god but God. The Tawhid, which is the prayer that states \"no god but God\" is a major component of the Islamic faith, for it asserts the monotheistic aspect of Islam, promoting unity of God as the source of existence. The second shahada demonstrates God's essential mercy. This prayer proclaims Muhammad as the last prophet, and it uses Muhammad as the prime example of guidance for all Muslims. Muhammad received revelation that was distorted by earlier communities, such as Jewish and Christian societies; Muhammad was the recipient of the Quran's guidance himself and now is bearer of this guidance for the rest of the Muslim community throughout history.\nThe Shahada, or profession of faith is said five times a day during prayer. It is the first thing said to a newborn, and the last thing to a person on their death-bed, showing how the Muslim prayer and the pillars are instrumental from the day a person is born until the day they die."]], "1_corpus": "wikipedia"}
|
3 |
+
{"tstamp": 1723536762.0381, "task_type": "retrieval", "type": "tievote", "models": ["text-embedding-004", "intfloat/multilingual-e5-large-instruct"], "ip": "", "0_conv_id": "95046b1425bf4295bdd92f05219b77f7", "0_model_name": "text-embedding-004", "0_prompt": "Using BERT for detecting propaganda in news articles with a focus on imbalanced data", "0_output": [["Using BERT for detecting propaganda in news articles with a focus on imbalanced data", "Title: Cost-Sensitive BERT for Generalisable Sentence Classification with Imbalanced Data\n\nAbstract: The automatic identification of propaganda has gained significance in recent years due to technological and social changes in the way news is generated and consumed. That this task can be addressed effectively using BERT, a powerful new architecture which can be fine-tuned for text classification tasks, is not surprising. However, propaganda detection, like other tasks that deal with news documents and other forms of decontextualized social communication (e.g. sentiment analysis), inherently deals with data whose categories are simultaneously imbalanced and dissimilar. We show that BERT, while capable of handling imbalanced classes with no additional data augmentation, does not generalise well when the training and test data are sufficiently dissimilar (as is often the case with news sources, whose topics evolve over time). We show how to address this problem by providing a statistical measure of similarity between datasets and a method of incorporating cost-weighting into BERT when the training and test sets are dissimilar. We test these methods on the Propaganda Techniques Corpus (PTC) and achieve the second-highest score on sentence-level propaganda classification."]], "0_corpus": "arxiv", "1_conv_id": "1961ca267faf4055abd9c04c52299aa1", "1_model_name": "intfloat/multilingual-e5-large-instruct", "1_prompt": "Using BERT for detecting propaganda in news articles with a focus on imbalanced data", "1_output": [["Using BERT for detecting propaganda in news articles with a focus on imbalanced data", "Title: Cost-Sensitive BERT for Generalisable Sentence Classification with Imbalanced Data\n\nAbstract: The automatic identification of propaganda has gained significance in recent years due to technological and social changes in the way news is generated and consumed. That this task can be addressed effectively using BERT, a powerful new architecture which can be fine-tuned for text classification tasks, is not surprising. However, propaganda detection, like other tasks that deal with news documents and other forms of decontextualized social communication (e.g. sentiment analysis), inherently deals with data whose categories are simultaneously imbalanced and dissimilar. We show that BERT, while capable of handling imbalanced classes with no additional data augmentation, does not generalise well when the training and test data are sufficiently dissimilar (as is often the case with news sources, whose topics evolve over time). We show how to address this problem by providing a statistical measure of similarity between datasets and a method of incorporating cost-weighting into BERT when the training and test sets are dissimilar. We test these methods on the Propaganda Techniques Corpus (PTC) and achieve the second-highest score on sentence-level propaganda classification."]], "1_corpus": "arxiv"}
|
4 |
+
{"tstamp": 1723536775.0594, "task_type": "retrieval", "type": "tievote", "models": ["text-embedding-004", "intfloat/multilingual-e5-large-instruct"], "ip": "", "0_conv_id": "9f152539f23c4f5aa2a2036c7e3913c4", "0_model_name": "text-embedding-004", "0_prompt": "who wrote he ain't heavy he's my brother lyrics", "0_output": [["who wrote he ain't heavy he's my brother lyrics", "He Ain't Heavy, He's My Brother\n\n\"He Ain't Heavy, He's My Brother\" is a ballad written by Bobby Scott and Bob Russell. Originally recorded by Kelly Gordon in 1969, the song became a worldwide hit for the Hollies later that year and also a hit for Neil Diamond in 1970. It has been recorded by many artists in subsequent years. The Hollies' version was re-released in 1988 and again was a major hit in the UK.\nScott and Russell were introduced to each other by Johnny Mercer, at a California nightclub. Although Russell was dying of lymphoma and the pair met only three times, they managed to collaborate on the song.\nTitle\nIn his 1884 book The Parables of Jesus, James Wells, Moderator of the United Free Church of Scotland, tells the story of a little girl carrying a big baby boy. Seeing her struggling, someone asked if she wasn't tired. With surprise she replied: \"No, he's not heavy; he's my brother.\"\nIn a 1918 publication by Ralph Waldo Trine titled The Higher Powers of Mind and Spirit, Trine relates the following anecdote: \"Do you know that incident in connection with the little Scottish girl? She was trudging along, carrying as best she could a boy younger, but it seemed almost as big as she herself, when one remarked to her how heavy he must be for her to carry, when instantly came the reply: 'He's na heavy. He's mi brither.'\""]], "0_corpus": "wikipedia", "1_conv_id": "332b21fcbe664cf0b5894a7ba53186ed", "1_model_name": "intfloat/multilingual-e5-large-instruct", "1_prompt": "who wrote he ain't heavy he's my brother lyrics", "1_output": [["who wrote he ain't heavy he's my brother lyrics", "He Ain't Heavy, He's My Brother\n\n\"He Ain't Heavy, He's My Brother\" is a ballad written by Bobby Scott and Bob Russell. Originally recorded by Kelly Gordon in 1969, the song became a worldwide hit for the Hollies later that year and also a hit for Neil Diamond in 1970. It has been recorded by many artists in subsequent years. The Hollies' version was re-released in 1988 and again was a major hit in the UK.\nScott and Russell were introduced to each other by Johnny Mercer, at a California nightclub. Although Russell was dying of lymphoma and the pair met only three times, they managed to collaborate on the song.\nTitle\nIn his 1884 book The Parables of Jesus, James Wells, Moderator of the United Free Church of Scotland, tells the story of a little girl carrying a big baby boy. Seeing her struggling, someone asked if she wasn't tired. With surprise she replied: \"No, he's not heavy; he's my brother.\"\nIn a 1918 publication by Ralph Waldo Trine titled The Higher Powers of Mind and Spirit, Trine relates the following anecdote: \"Do you know that incident in connection with the little Scottish girl? She was trudging along, carrying as best she could a boy younger, but it seemed almost as big as she herself, when one remarked to her how heavy he must be for her to carry, when instantly came the reply: 'He's na heavy. He's mi brither.'\""]], "1_corpus": "wikipedia"}
|