Muennighoff
commited on
Commit
•
52e8a36
1
Parent(s):
d9e5c4e
Scheduled Commit
Browse files
data/retrieval_individual-2b220830-844b-4128-a00a-03ab29c3b3ac.jsonl
CHANGED
@@ -72,3 +72,7 @@
|
|
72 |
{"tstamp": 1730744612.4208, "task_type": "retrieval", "type": "chat", "model": "Alibaba-NLP/gte-Qwen2-7B-instruct", "gen_params": {}, "start": 1730744611.5162, "finish": 1730744612.4208, "ip": "", "conv_id": "2bf516f05f00408a9189805efece5790", "model_name": "Alibaba-NLP/gte-Qwen2-7B-instruct", "prompt": "Which test was devised to determine whether robots can think?", "output": [["Which test was devised to determine whether robots can think?", "Turing test\n\nThe Turing test, originally called the imitation game by Alan Turing in 1950, is a test of a machine's ability to exhibit intelligent behaviour equivalent to, or indistinguishable from, that of a human. Turing proposed that a human evaluator would judge natural language conversations between a human and a machine designed to generate human-like responses. The evaluator would be aware that one of the two partners in conversation was a machine, and all participants would be separated from one another. The conversation would be limited to a text-only channel, such as a computer keyboard and screen, so the result would not depend on the machine's ability to render words as speech. If the evaluator could not reliably tell the machine from the human, the machine would be said to have passed the test. The test results would not depend on the machine's ability to give correct answers to questions, only on how closely its answers resembled those a human would give. Since the Turing test is a test of indistinguishability in performance capacity, the verbal version generalizes naturally to all of human performance capacity, verbal as well as nonverbal (robotic)."]], "corpus": "wikipedia"}
|
73 |
{"tstamp": 1730744646.2169, "task_type": "retrieval", "type": "chat", "model": "BM25", "gen_params": {}, "start": 1730744644.8829, "finish": 1730744646.2169, "ip": "", "conv_id": "c4207c61ae16442c8b7b388825f0e7c8", "model_name": "BM25", "prompt": "What's the purpose of `if __name__ == '__main__'`?", "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"]], "corpus": "stackexchange"}
|
74 |
{"tstamp": 1730744646.2169, "task_type": "retrieval", "type": "chat", "model": "jinaai/jina-embeddings-v2-base-en", "gen_params": {}, "start": 1730744644.8829, "finish": 1730744646.2169, "ip": "", "conv_id": "06765789baa24219841098d655bb88f7", "model_name": "jinaai/jina-embeddings-v2-base-en", "prompt": "What's the purpose of `if __name__ == '__main__'`?", "output": [["What's the purpose of `if __name__ == '__main__'`?", "Stackoverflow Stackexchange\n\nQ: html dangerous tags to avoid while developing a chat application I am developing a chat application using PHP and jQuery... all messages sent by the chat pair are appended to a <div>. While doing this, I found that tags such as <script> can be entered by users. What tags should I avoid while appending the user's message?\n\nA: Avoid tags that will inject content into the page:\n\n\n*\n\n*applet\n\n*script\n\n*style\n\n*link\n\n*iframe\n\n\nOther tags may be necessary to remove, as well. Maybe you don't want to embed images. These are things that you will need to determine. At the bare minimum, allow <p> and <br />.\n"]], "corpus": "stackexchange"}
|
|
|
|
|
|
|
|
|
|
72 |
{"tstamp": 1730744612.4208, "task_type": "retrieval", "type": "chat", "model": "Alibaba-NLP/gte-Qwen2-7B-instruct", "gen_params": {}, "start": 1730744611.5162, "finish": 1730744612.4208, "ip": "", "conv_id": "2bf516f05f00408a9189805efece5790", "model_name": "Alibaba-NLP/gte-Qwen2-7B-instruct", "prompt": "Which test was devised to determine whether robots can think?", "output": [["Which test was devised to determine whether robots can think?", "Turing test\n\nThe Turing test, originally called the imitation game by Alan Turing in 1950, is a test of a machine's ability to exhibit intelligent behaviour equivalent to, or indistinguishable from, that of a human. Turing proposed that a human evaluator would judge natural language conversations between a human and a machine designed to generate human-like responses. The evaluator would be aware that one of the two partners in conversation was a machine, and all participants would be separated from one another. The conversation would be limited to a text-only channel, such as a computer keyboard and screen, so the result would not depend on the machine's ability to render words as speech. If the evaluator could not reliably tell the machine from the human, the machine would be said to have passed the test. The test results would not depend on the machine's ability to give correct answers to questions, only on how closely its answers resembled those a human would give. Since the Turing test is a test of indistinguishability in performance capacity, the verbal version generalizes naturally to all of human performance capacity, verbal as well as nonverbal (robotic)."]], "corpus": "wikipedia"}
|
73 |
{"tstamp": 1730744646.2169, "task_type": "retrieval", "type": "chat", "model": "BM25", "gen_params": {}, "start": 1730744644.8829, "finish": 1730744646.2169, "ip": "", "conv_id": "c4207c61ae16442c8b7b388825f0e7c8", "model_name": "BM25", "prompt": "What's the purpose of `if __name__ == '__main__'`?", "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"]], "corpus": "stackexchange"}
|
74 |
{"tstamp": 1730744646.2169, "task_type": "retrieval", "type": "chat", "model": "jinaai/jina-embeddings-v2-base-en", "gen_params": {}, "start": 1730744644.8829, "finish": 1730744646.2169, "ip": "", "conv_id": "06765789baa24219841098d655bb88f7", "model_name": "jinaai/jina-embeddings-v2-base-en", "prompt": "What's the purpose of `if __name__ == '__main__'`?", "output": [["What's the purpose of `if __name__ == '__main__'`?", "Stackoverflow Stackexchange\n\nQ: html dangerous tags to avoid while developing a chat application I am developing a chat application using PHP and jQuery... all messages sent by the chat pair are appended to a <div>. While doing this, I found that tags such as <script> can be entered by users. What tags should I avoid while appending the user's message?\n\nA: Avoid tags that will inject content into the page:\n\n\n*\n\n*applet\n\n*script\n\n*style\n\n*link\n\n*iframe\n\n\nOther tags may be necessary to remove, as well. Maybe you don't want to embed images. These are things that you will need to determine. At the bare minimum, allow <p> and <br />.\n"]], "corpus": "stackexchange"}
|
75 |
+
{"tstamp": 1730751997.9663, "task_type": "retrieval", "type": "chat", "model": "voyage-multilingual-2", "gen_params": {}, "start": 1730751995.5064, "finish": 1730751997.9663, "ip": "", "conv_id": "4173f531d387496aa62699c3d8b09622", "model_name": "voyage-multilingual-2", "prompt": "What is the capitol of Poland?", "output": [["What is the capitol of Poland?", "Warsaw\n\nWarsaw, officially the Capital City of Warsaw, is the capital and largest city of Poland. The metropolis stands on the River Vistula in east-central Poland. Its population is officially estimated at 1.86 million residents within a greater metropolitan area of 3.27 million residents, which makes Warsaw the 7th most-populous city in the European Union. The city area measures and comprises 18 districts, while the metropolitan area covers . Warsaw is classified as an alpha global city, a major cultural, political and economic hub, and the country's seat of government. It is also capital of the Masovian Voivodeship.\nWarsaw traces its origins to a small fishing town in Masovia. The city rose to prominence in the late 16th century, when Sigismund III decided to move the Polish capital and his royal court from Kraków. Warsaw served as the de facto capital of the Polish–Lithuanian Commonwealth until 1795, and subsequently as the seat of Napoleon's Duchy of Warsaw. The 19th century and its Industrial Revolution brought a demographic boom which made it one of the largest and most densely populated cities in Europe. Known then for its elegant architecture and boulevards, Warsaw was bombed and besieged at the start of World War II in 1939. Much of the historic city was destroyed and its diverse population decimated by the Ghetto Uprising in 1943, the general Warsaw Uprising in 1944 and systematic razing."]], "corpus": "wikipedia"}
|
76 |
+
{"tstamp": 1730751997.9663, "task_type": "retrieval", "type": "chat", "model": "BAAI/bge-large-en-v1.5", "gen_params": {}, "start": 1730751995.5064, "finish": 1730751997.9663, "ip": "", "conv_id": "deafd346c0e54f368cfd6745e1dc84d7", "model_name": "BAAI/bge-large-en-v1.5", "prompt": "What is the capitol of Poland?", "output": [["What is the capitol of Poland?", "Warsaw\n\nWarsaw, officially the Capital City of Warsaw, is the capital and largest city of Poland. The metropolis stands on the River Vistula in east-central Poland. Its population is officially estimated at 1.86 million residents within a greater metropolitan area of 3.27 million residents, which makes Warsaw the 7th most-populous city in the European Union. The city area measures and comprises 18 districts, while the metropolitan area covers . Warsaw is classified as an alpha global city, a major cultural, political and economic hub, and the country's seat of government. It is also capital of the Masovian Voivodeship.\nWarsaw traces its origins to a small fishing town in Masovia. The city rose to prominence in the late 16th century, when Sigismund III decided to move the Polish capital and his royal court from Kraków. Warsaw served as the de facto capital of the Polish–Lithuanian Commonwealth until 1795, and subsequently as the seat of Napoleon's Duchy of Warsaw. The 19th century and its Industrial Revolution brought a demographic boom which made it one of the largest and most densely populated cities in Europe. Known then for its elegant architecture and boulevards, Warsaw was bombed and besieged at the start of World War II in 1939. Much of the historic city was destroyed and its diverse population decimated by the Ghetto Uprising in 1943, the general Warsaw Uprising in 1944 and systematic razing."]], "corpus": "wikipedia"}
|
77 |
+
{"tstamp": 1730752036.6383, "task_type": "retrieval", "type": "chat", "model": "Salesforce/SFR-Embedding-2_R", "gen_params": {}, "start": 1730752034.3729, "finish": 1730752036.6383, "ip": "", "conv_id": "8b3db22872a7414bb711716be18eb66c", "model_name": "Salesforce/SFR-Embedding-2_R", "prompt": "What is the best statistical model for analyzing different types of treatment effects?", "output": [["What is the best statistical model for analyzing different types of treatment effects?", "Randomized controlled trial\n\nRCTs without blinding are referred to as \"unblinded\", \"open\", or (if the intervention is a medication) \"open-label\". In 2008 a study concluded that the results of unblinded RCTs tended to be biased toward beneficial effects only if the RCTs' outcomes were subjective as opposed to objective; for example, in an RCT of treatments for multiple sclerosis, unblinded neurologists (but not the blinded neurologists) felt that the treatments were beneficial. In pragmatic RCTs, although the participants and providers are often unblinded, it is \"still desirable and often possible to blind the assessor or obtain an objective source of data for evaluation of outcomes.\"\nAnalysis of data\nThe types of statistical methods used in RCTs depend on the characteristics of the data and include:\nFor dichotomous (binary) outcome data, logistic regression (e.g., to predict sustained virological response after receipt of peginterferon alfa-2a for hepatitis C) and other methods can be used.\nFor continuous outcome data, analysis of covariance (e.g., for changes in blood lipid levels after receipt of atorvastatin after acute coronary syndrome) tests the effects of predictor variables.\nFor time-to-event outcome data that may be censored, survival analysis (e.g., Kaplan–Meier estimators and Cox proportional hazards models for time to coronary heart disease after receipt of hormone replacement therapy in menopause) is appropriate.\nRegardless of the statistical methods used, important considerations in the analysis of RCT data include:"]], "corpus": "wikipedia"}
|
78 |
+
{"tstamp": 1730752036.6383, "task_type": "retrieval", "type": "chat", "model": "jinaai/jina-embeddings-v2-base-en", "gen_params": {}, "start": 1730752034.3729, "finish": 1730752036.6383, "ip": "", "conv_id": "3d59b90da7bf4c6fb2559395398f6a3d", "model_name": "jinaai/jina-embeddings-v2-base-en", "prompt": "What is the best statistical model for analyzing different types of treatment effects?", "output": [["What is the best statistical model for analyzing different types of treatment effects?", "Random effects model\n\nIn statistics, a random effects model, also called a variance components model, is a statistical model where the model parameters are random variables. It is a kind of hierarchical linear model, which assumes that the data being analysed are drawn from a hierarchy of different populations whose differences relate to that hierarchy. A random effects model is a special case of a mixed model.\nContrast this to the biostatistics definitions, as biostatisticians use \"fixed\" and \"random\" effects to respectively refer to the population-average and subject-specific effects (and where the latter are generally assumed to be unknown, latent variables)."]], "corpus": "wikipedia"}
|