text
stringlengths 13
30k
|
---|
{"texts": ["Check out our new site Makeup Addiction\n\nadd your own caption\n\nadd your own caption\n\nadd your own caption\n\nadd your own caption\n\nadd your own caption\n\nadd your own caption\n\nadd your own caption\n\nadd your own caption\n\nadd your own caption\n\nadd your own caption\n\nadd your own caption\n\nFULL OF PEOPLE DEMANDING CHEAP GOODS FULL OF PEOPLE WHO COMPLAIN ABOUT CHEAP GOODS"], "meta": {"pile_set_name": "OpenWebText2"}, "scores": [0.06160628795623779], "avg_score": 0.06160628795623779, "num_sents": 1} |
{"texts": ["Q:\n\nIs it possible to update multiple columns using different criteria in one statement?", "\n\nI need to set all columns to 0 if they are negative. ", " Currently I do it one column at a time:\nUPDATE #ListingRank SET Distance = 0 WHERE Distance < 0\nUPDATE #ListingRank SET ActionDays = 0 WHERE ActionDays < 0\nUPDATE #ListingRank SET Price = 0 WHERE Price < 0\nUPDATE #ListingRank SET Beds = 0 WHERE Beds < 0\nUPDATE #ListingRank SET Baths = 0 WHERE Baths < 0\nUPDATE #ListingRank SET SqFt = 0 WHERE SqFt < 0\n\nIs it possible to do the same in a single statement?", "\n\nA:\n\nYou can try to use CASE WHEN\nUPDATE #ListingRank\nSET Distance = (CASE WHEN Distance < 0 THEN 0 ELSE Distance END),\n ActionDays = (CASE WHEN ActionDays < 0 THEN 0 ELSE ActionDays END),\n Price = (CASE WHEN Price < 0 THEN 0 ELSE Price END),\n Beds = (CASE WHEN Beds < 0 THEN 0 ELSE Beds END),\n Baths = (CASE WHEN Baths < 0 THEN 0 ELSE Baths END),\n SqFt = (CASE WHEN SqFt < 0 THEN 0 ELSE SqFt END)\n\n"], "meta": {"pile_set_name": "StackExchange"}, "scores": [0.0006836430984549224, 0.000908467685803771, 0.0012003736337646842, 0.001140735694207251], "avg_score": 0.0009833050280576572, "num_sents": 4} |
{"texts": ["Q:\n\nAngular 5 Service Worker not working\n\nI try to add service worker to my project after updating to angular 5 and have some problems. ", "I add imports to app.module.ts: \nimport {ServiceWorkerModule} from '@angular/service-worker';\nimport {environment} from '../environments/environment';\n...\nenvironment.production ? ", "ServiceWorkerModule.register('/ngsw-worker.js') : [],\n\nexecute $ ng set apps.0.serviceWorker=true to allow service workers in project\ngenerate config: \n{\n \"index\": \"/index.html\",\n \"assetGroups\": [\n {\n \"name\": \"app\",\n \"installMode\": \"prefetch\",\n \"resources\": {\n \"files\": [\n \"/index.html\"\n ],\n \"versionedFiles\": [\n \"/*.bundle.css\",\n \"/*.bundle.js\",\n \"/*.chunk.js\"\n ]\n }\n },\n {\n \"name\": \"assets\",\n \"installMode\": \"lazy\",\n \"updateMode\": \"prefetch\",\n \"resources\": {\n \"files\": [\n \"/assets/**\"\n ]\n }\n }\n ],\n \"dataGroups\": [\n {\n \"name\": \"api-performance\",\n \"urls\": [\n \"/\",\n \"/main\",\n \"/login\",\n \"/select-content\"\n ],\n \"cacheConfig\": {\n \"strategy\": \"performance\",\n \"maxSize\": 100,\n \"maxAge\": \"3d\"\n }\n }\n ]\n}\n\nAnd manifest: \n{\n \"name\": \"App\",\n \"short_name\": \"App\",\n \"start_url\": \"/login\",\n \"theme_color\": \"#00a2e8\",\n \"background_color\": \"#00a2e8\",\n \"display\": \"standalone\",\n \"icons\": [\n {\n \"src\": \"assets\\/icons\\/android-icon-36x36.png\",\n \"sizes\": \"36x36\",\n \"type\": \"image\\/png\",\n \"density\": \"0.75\"\n },\n {\n \"src\": \"assets\\/icons\\/android-icon-48x48.png\",\n \"sizes\": \"48x48\",\n \"type\": \"image\\/png\",\n \"density\": \"1.0\"\n },\n {\n \"src\": \"assets\\/icons\\/android-icon-72x72.png\",\n \"sizes\": \"72x72\",\n \"type\": \"image\\/png\",\n \"density\": \"1.5\"\n },\n {\n \"src\": \"assets\\/icons\\/android-icon-96x96.png\",\n \"sizes\": \"96x96\",\n \"type\": \"image\\/png\",\n \"density\": \"2.0\"\n },\n {\n \"src\": \"assets\\/icons\\/android-icon-144x144.png\",\n \"sizes\": \"144x144\",\n \"type\": \"image\\/png\",\n \"density\": \"3.0\"\n },\n {\n \"src\": \"assets\\/icons\\/android-icon-192x192.png\",\n \"sizes\": \"192x192\",\n \"type\": \"image\\/png\",\n \"density\": \"4.0\"\n }\n ]\n}\n\nThen build it in production: \nng build --prod --aot=false --build-optimizer=false\n\nHttp-server run in SSL mode, but lsit of service workers in chrome dev-tools is clear. ", "What's wrong? ", "May be this flags broke it --aot=false --build-optimizer=false?", "\n\nA:\n\nSeems to be a problem in registering service worker in module where also importing AngularFire2. ", "I found solution how to register SW in main.ts, that's work:\nplatformBrowserDynamic().bootstrapModule(AppModule).then(() => {\n if ('serviceWorker' in navigator && environment.production) {\n navigator.serviceWorker.register('ngsw-worker.js');\n }\n}).catch(err => console.log(err));\n\n"], "meta": {"pile_set_name": "StackExchange"}, "scores": [0.0006815412198193371, 0.000641089747659862, 0.0017141763819381595, 0.0007939144852571189, 0.0012416739482432604, 0.000647703476715833, 0.0007403634372167289], "avg_score": 0.0009229232424071857, "num_sents": 7} |
{"texts": ["Q:\n\nOneDrive SDK - IOS Get Special Folder\n\nI am confused to the correct usage of the OneDriveSDK for IOS on the correct way to create a query in order to get all items in the special folder. ", "\nI want to get the music items but once I create the request how should it be executed ?", "\nThere is no relevant example I can find anywhere. ", "Other types of requests have implementation methods, but not special folders \nThe url I want to construct is simple enough\nhttps://api.onedrive.com/v1.0/drive/special/music/children\n\nBut I am confused on how to use the SDK to create and execute it\n@class ODItemRequest, ODURLSessionDataTask;\n\nThe furthest I got was\nODSpecialCollectionRequest *musicCollectionRequest = self.client.drive.special.request; \n\nWhat would I do next ? ", "\ndocumentation is at \nhttps://github.com/OneDrive/onedrive-sdk-ios/blob/master/docs/overview.md\nand the sdk is at\nhttps://github.com/OneDrive/onedrive-sdk-i\nODSpecialCollectionRequest.h\n\n#import \"ODModels.h\"\n#import \"ODCollectionRequest.h\"\n\ntypedef void (^ODItemCompletionHandler)(ODItem *response, NSError *error);\n\ntypedef void (^ODSpecialCompletionHandler)(ODCollection *response, ODSpecialCollectionRequest *nextRequest, NSError *error);\n\n/**\n* The header for type ODSpecialCollectionRequestBuilder.", "\n*/\n\n@interface ODSpecialCollectionRequest : ODCollectionRequest\n@end\n\nA:\n\nFirst notice that the request you are generating isn't quite right. ", " You want an ODChildrenCollectionRequest, generated from the \"Music\" folder. ", " To do this you will need to construct the correct URL using method calls (not properties like you have above). ", " This looks like:\nODChildrenCollectionRequest *request = [[self.client drive] special:@\"Music\"] children] request];\n\nYou then want to execute a get on the children request. ", " This looks like :\n[request getWithCompletion:^(ODCollection *response, ODChildrenCollectionRequest *nextRequest, NSError *error){\n if(!error){\n // Do Stuff with children\n }\n}];\n\nThe completion handler takes three parameters\n\nthe ODCollection which contains a NSArray of ODItem called\nvalues these are the children of the music folder. ", "\nAnother ODChildrenCollectionRequest, By default we only return the first\n 200 items in a collection, this is another request you can issue\n that will return the next page of items.", "\nAn NSError object, this will be nil unless there was an error\n somewhere along the request.", "\n\n"], "meta": {"pile_set_name": "StackExchange"}, "scores": [0.0006947379442863166, 0.0005879029049538076, 0.0005857708165422082, 0.0007780218729749322, 0.0008645369089208543, 0.0007352049578912556, 0.0007980794762261212, 0.0006970136892050505, 0.0008769846754148602, 0.0015162042109295726, 0.0007200093241408467, 0.003499615238979459, 0.001995444530621171], "avg_score": 0.0011038097346989582, "num_sents": 13} |
{"texts": ["Q:\n\nIt is as simple as ABC\n\nFind three different digits $ A, B, C $ that satisfies the equation $ \\overline{ABC} \\times \\overline{AA} \\times \\overline{AB} \\times C = \\overline{ABCABC}. ", "$\n\nA:\n\n $ABCABC=1001\\times ABC$. $1001=7\\times11\\times13$. So $A=1, B=3, C=7$ is the soution.", "\n\n"], "meta": {"pile_set_name": "StackExchange"}, "scores": [0.0012964513152837753, 0.057230547070503235, 0.001995444530621171], "avg_score": 0.020174147638802726, "num_sents": 3} |
{"client_id": "f6eb0a9ba66e98eeec2c36585fdd0f17b29957d2d895dc4e69a8d398827434530b742a0420ec2cbe1dd98aeac419fcc3b0a6f79f6e77ca1257fe855dd7dda777", "path": "common_voice_ha_26693002.mp3", "sentence": "An tuhumi Hassan da fitar da wasu muhimman bayanai.", "up_votes": 2, "down_votes": 0, "age": null, "gender": null, "accent": null, "locale": "ha", "segment": null} |
{"client_id": "f6eb0a9ba66e98eeec2c36585fdd0f17b29957d2d895dc4e69a8d398827434530b742a0420ec2cbe1dd98aeac419fcc3b0a6f79f6e77ca1257fe855dd7dda777", "path": "common_voice_ha_26693876.mp3", "sentence": "Meg yana sha'awar sanin komai game da Japan.", "up_votes": 2, "down_votes": 0, "age": null, "gender": null, "accent": null, "locale": "ha", "segment": null} |
{"client_id": "f6eb0a9ba66e98eeec2c36585fdd0f17b29957d2d895dc4e69a8d398827434530b742a0420ec2cbe1dd98aeac419fcc3b0a6f79f6e77ca1257fe855dd7dda777", "path": "common_voice_ha_26694102.mp3", "sentence": "Bude kofar. Na san kina ciki.", "up_votes": 2, "down_votes": 0, "age": null, "gender": null, "accent": null, "locale": "ha", "segment": null} |
{"text": "Autumn: u sewn anything?\r\nAutumn: show me show me!! :D\r\nAutumn: <file_gif>\r\nIsrael: no :(\r\nIsrael: haven't had the time yet ;(\r\nAutumn: ooh :( \r\nAutumn: u need to have pririorities in life!\r\nAutumn: like me - i haven't checked the tests for a month because the dress wouldn't sew itself :D\r\nIsrael: you've sewn a dres??\r\nIsrael: you didn't show it to me\r\nAutumn: oh didn't i?\r\nAutumn: there will be some photos on the site soon so you'll see it:)\r\nIsrael: sure will! can't wait!:D\r\nAutumn: <file_other>\r\nAutumn: haven't i showed you this?\r\nIsrael: noo!! it's wonderful!!\r\nAutumn: thanks :)\r\nIsrael: can't wait to see the whole dress! :)", "target": "Autumn has sewn a dress.", "evaluation_predictions": [2, 0, 37434, 24422, 2282, 75, 7869, 5, 3457, 13, 10, 353, 142, 5, 3588, 1979, 75, 35043, 1495, 4, 264, 399, 75, 311, 24, 7, 1870, 4, 345, 40, 28, 103, 2356, 15, 5, 1082, 1010, 98, 37, 581, 192, 24, 4, 1870, 64, 75, 2067, 7, 192, 5, 1086, 3588, 4, 91, 2282, 75, 842, 11538, 932, 648, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]} |
{"text": "Joe: This job is wearing me up\r\nTim: Oh no! I thought you love it\r\nJoe: I do, but because of it they give me more work\r\nSam: Shit, this sucks man, don't let it burn you out\r\nTim: Exactly, like my friend Terry\r\nJoe: What did he do?\r\nTim: Quit eventually, but he had trouble sleeping, constantly tired, and turned out to have an ulcer\r\nJoe: Fuck! I gotta slow down", "target": "Joe's job is wearing him up. Tim's friend Terry quit his job because he was burned out.", "evaluation_predictions": [2, 0, 0, 0, 18393, 18, 633, 16, 2498, 123, 66, 4, 91, 1516, 55, 173, 142, 9, 24, 4, 2668, 18, 1441, 6840, 6602, 5, 633, 142, 37, 1705, 75, 10731, 19, 24, 4, 91, 56, 3605, 8416, 8, 2140, 37, 56, 41, 17589, 7742, 4, 2101, 782, 7, 2635, 159, 23, 39, 633, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]} |
{"text": "Leo: Check this out\r\nLeo: <file_video>\r\nCharlie: Whaaaaaaaat\r\nOliver: God\r\nOliver: What's that??\r\nLeo: Seems like prank\r\nLeo: But actually I dunno xD\r\nOliver: 03:24\r\nOliver: WTF\r\nLeo: Hahahah, my fav part\r\nLeo: Of that random crap\r\nOliver: People are so weird sometimes\r\nLeo: I knew you'd like it xD\r\nCharlie: Wellllllll I have mixed feelings :D:D\r\nLeo: Hahahahah, wait till 05:24\r\nCharlie: Omg, too much for me\r\nCharlie: My eyes!!\r\nLeo: Hahahahahah\r\nLeo: xDDDDDD", "target": "Leo, Charlie and Oliver are watching a video with a bizarre prank. Charlie has ambivalent feelings. Leo and Oliver enjoy the video's weirdness very much especially moments 3:24 and 5:24.", "evaluation_predictions": [2, 0, 0, 0, 10350, 139, 327, 10, 569, 19, 6127, 8, 7730, 4, 85, 18, 10, 25828, 4, 7730, 8, 6127, 33, 4281, 6453, 59, 24, 4, 12520, 18, 5548, 233, 16, 23, 5, 253, 9, 5, 569, 6, 23, 195, 35, 1978, 4, 6127, 18, 2473, 32, 350, 203, 13, 123, 7, 1183, 24, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]} |
{"text": "Julie: hey guys... could you just talk to me for a bit? I just watched this Japanese horror movie and I'm home alone and a little uneasy (aka scared shitless)\r\nRose: Jesus, why on earth would you watch a Japanese horror, home alone at this hour?\r\nJulie: Cause I'm a fucking moron?\r\nRose: Cause you're a fuckin moron. \r\nPaula: 5 point for Gryffindor, my friend. But in your defense, I always thought you were quite unaffected by horror movies.\r\nJulie: That's what I thought too!\r\nPaula: So what kinda movie was it?\r\nJulie: <file_other>\r\nRose: seems pretty generic\r\nJulie: It's scarier than it looks.\r\nRose: you know that japanese horror are the worst ones, right?\r\nJulie: I know that now.\r\nPaula: If... you want me to come over I can.\r\nJulie: omg really? <3\r\nPaula: Yeah, sure, it's like 20 minutes by bike to your house, we can drink cocoa and watch \"when harry met Sally\" until we fall asleep ;)\r\nJulie: Omg Thank you so much, I love you!\r\nRose: I wish I lived in your neighborhood :(\r\nPaula: We can chip in for an Uber for you :D\r\nJulie: Let's have a spontaneous sleepover :D\r\nRose: Oh, man it's late, but why the hell not.\r\nRose: I'll bring cookies for the cocoa :D\r\nJulie: yay :D", "target": "Julie has just watched a Japanese horror. She's alone at home and really scared. Paula and Rose are going to come to her place for a spontaneous sleepover. They'll drink cocoa and watch \"When Harry met Sally.\" Rose will bring cookies.", "evaluation_predictions": [2, 0, 0, 0, 22403, 324, 3996, 10, 2898, 8444, 1569, 23, 184, 1937, 8, 79, 18, 8265, 4, 18223, 40, 283, 81, 7, 9786, 18, 790, 8, 51, 40, 4076, 22348, 8, 1183, 22, 14746, 3268, 1145, 15282, 113, 454, 51, 1136, 15028, 4, 3199, 40, 836, 15269, 13, 5, 22348, 4, 252, 40, 33, 10, 29515, 3581, 2137, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]} |
{"text": "Kayla: what time are you going to bring her?\r\nKayla: was it 11am?\r\nKatherine: hey, i guess so. \r\nKatherine: i'll have to ask dad and get back to you later ok?\r\nKayla: ok \r\nKatherine: why, is there a problem?\r\nKayla: noooo\r\nKayla: i'm just making sure:)\r\nKayla: it turned out i finish at 11\r\nKayla: so it will be even less problematic ;)\r\nKatherine: ok :)\r\nKatherine: yeah dad just texted me\r\nKatherine: it's around 11\r\nKayla: ok", "target": "Katherine will bring her to Kayla around 11.", "evaluation_predictions": [2, 0, 0, 0, 530, 38687, 16, 164, 7, 836, 69, 198, 365, 524, 4, 7120, 2560, 11630, 23, 365, 98, 24, 40, 28, 540, 14652, 13, 69, 87, 114, 79, 56, 7, 2067, 454, 365, 524, 7, 1339, 69, 62, 31, 334, 4, 16786, 40, 1394, 69, 4252, 59, 24, 423, 4, 1437, 1437, 1437, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]} |
{"text": "Jack: Cocktails later?\r\nMay: YES!!!\r\nMay: You read my mind...\r\nJack: Possibly a little tightly strung today?\r\nMay: Sigh... without question.\r\nJack: Thought so.\r\nMay: A little drink will help!\r\nJack: Maybe two!", "target": "Jack and May will drink cocktails later.", "evaluation_predictions": [2, 0, 0, 0, 20907, 8, 392, 32, 164, 7, 33, 6696, 423, 4, 392, 16, 10, 410, 5882, 452, 4, 2722, 4265, 10, 4076, 40, 244, 4, 392, 4265, 65, 50, 80, 6696, 40, 244, 69, 12327, 4, 392, 8, 2722, 40, 972, 423, 4, 1437, 1437, 1437, 392, 16, 182, 1372, 59, 24, 4, 1437, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]} |
{"text": "Lily: I need to rent a pop corn machine\r\nDaniel: :D\r\nLily: for our office Christmas party\r\nDaniel: very Christmasy\r\nLily: We will screen Love Actually :P\r\nDaniel: oh I get it now\r\nLily: Do you know someone who rents them?\r\nDaniel: I'll check!", "target": "Daniel will find out who rents a pop corn machines on Lily's request.", "evaluation_predictions": [2, 0, 0, 0, 574, 5846, 782, 7, 5956, 10, 3495, 7636, 3563, 13, 69, 558, 1619, 537, 4, 264, 40, 2441, 3437, 18894, 23, 5, 537, 4, 3028, 40, 1649, 114, 37, 2215, 951, 54, 17845, 3495, 7636, 6271, 4, 91, 630, 75, 216, 1268, 54, 17845, 106, 6, 53, 37, 40, 1649, 4, 1437, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]} |
{"id": "Tout seuls#s4", "tokens": ["ACTES SUD", "JUNIOR"], "dd_tags": [2, 2]} |
{"premise": "No Weapons of Mass Destruction Found in Iraq Yet.", "hypothesis": "Weapons of Mass Destruction Found in Iraq.", "idx": 0, "label": 1, "processed_input": "rte hypothesis: Weapons of Mass Destruction Found in Iraq. premise: No Weapons of Mass Destruction Found in Iraq Yet.", "processed_output": "not_entailment"} |
{"premise": "A place of sorrow, after Pope John Paul II died, became a place of celebration, as Roman Catholic faithful gathered in downtown Chicago to mark the installation of new Pope Benedict XVI.", "hypothesis": "Pope Benedict XVI is the new leader of the Roman Catholic Church.", "idx": 1, "label": 0, "processed_input": "rte hypothesis: Pope Benedict XVI is the new leader of the Roman Catholic Church. premise: A place of sorrow, after Pope John Paul II died, became a place of celebration, as Roman Catholic faithful gathered in downtown Chicago to mark the installation of new Pope Benedict XVI.", "processed_output": "entailment"} |
{"premise": "Herceptin was already approved to treat the sickest breast cancer patients, and the company said, Monday, it will discuss with federal regulators the possibility of prescribing the drug for more breast cancer patients.", "hypothesis": "Herceptin can be used to treat breast cancer.", "idx": 2, "label": 0, "processed_input": "rte hypothesis: Herceptin can be used to treat breast cancer. premise: Herceptin was already approved to treat the sickest breast cancer patients, and the company said, Monday, it will discuss with federal regulators the possibility of prescribing the drug for more breast cancer patients.", "processed_output": "entailment"} |
{"premise": "Judie Vivian, chief executive at ProMedica, a medical service company that helps sustain the 2-year-old Vietnam Heart Institute in Ho Chi Minh City (formerly Saigon), said that so far about 1,500 children have received treatment.", "hypothesis": "The previous name of Ho Chi Minh City was Saigon.", "idx": 3, "label": 0, "processed_input": "rte hypothesis: The previous name of Ho Chi Minh City was Saigon. premise: Judie Vivian, chief executive at ProMedica, a medical service company that helps sustain the 2-year-old Vietnam Heart Institute in Ho Chi Minh City (formerly Saigon), said that so far about 1,500 children have received treatment.", "processed_output": "entailment"} |
{"premise": "A man is due in court later charged with the murder 26 years ago of a teenager whose case was the first to be featured on BBC One's Crimewatch. Colette Aram, 16, was walking to her boyfriend's house in Keyworth, Nottinghamshire, on 30 October 1983 when she disappeared. Her body was later found in a field close to her home. Paul Stewart Hutchinson, 50, has been charged with murder and is due before Nottingham magistrates later.", "hypothesis": "Paul Stewart Hutchinson is accused of having stabbed a girl.", "idx": 4, "label": 1, "processed_input": "rte hypothesis: Paul Stewart Hutchinson is accused of having stabbed a girl. premise: A man is due in court later charged with the murder 26 years ago of a teenager whose case was the first to be featured on BBC One's Crimewatch. Colette Aram, 16, was walking to her boyfriend's house in Keyworth, Nottinghamshire, on 30 October 1983 when she disappeared. Her body was later found in a field close to her home. Paul Stewart Hutchinson, 50, has been charged with murder and is due before Nottingham magistrates later.", "processed_output": "not_entailment"} |
{"premise": "Britain said, Friday, that it has barred cleric, Omar Bakri, from returning to the country from Lebanon, where he was released by police after being detained for 24 hours.", "hypothesis": "Bakri was briefly detained, but was released.", "idx": 5, "label": 0, "processed_input": "rte hypothesis: Bakri was briefly detained, but was released. premise: Britain said, Friday, that it has barred cleric, Omar Bakri, from returning to the country from Lebanon, where he was released by police after being detained for 24 hours.", "processed_output": "entailment"} |
{"premise": "Nearly 4 million children who have at least one parent who entered the U.S. illegally were born in the United States and are U.S. citizens as a result, according to the study conducted by the Pew Hispanic Center. That's about three quarters of the estimated 5.5 million children of illegal immigrants inside the United States, according to the study. About 1.8 million children of undocumented immigrants live in poverty, the study found.", "hypothesis": "Three quarters of U.S. illegal immigrants have children.", "idx": 6, "label": 1, "processed_input": "rte hypothesis: Three quarters of U.S. illegal immigrants have children. premise: Nearly 4 million children who have at least one parent who entered the U.S. illegally were born in the United States and are U.S. citizens as a result, according to the study conducted by the Pew Hispanic Center. That's about three quarters of the estimated 5.5 million children of illegal immigrants inside the United States, according to the study. About 1.8 million children of undocumented immigrants live in poverty, the study found.", "processed_output": "not_entailment"} |
{"premise": "Like the United States, U.N. officials are also dismayed that Aristide killed a conference called by Prime Minister Robert Malval in Port-au-Prince in hopes of bringing all the feuding parties together.", "hypothesis": "Aristide had Prime Minister Robert Malval murdered in Port-au-Prince.", "idx": 7, "label": 1, "processed_input": "rte hypothesis: Aristide had Prime Minister Robert Malval murdered in Port-au-Prince. premise: Like the United States, U.N. officials are also dismayed that Aristide killed a conference called by Prime Minister Robert Malval in Port-au-Prince in hopes of bringing all the feuding parties together.", "processed_output": "not_entailment"} |
{"premise": "WASHINGTON -- A newly declassified narrative of the Bush administration's advice to the CIA on harsh interrogations shows that the small group of Justice Department lawyers who wrote memos authorizing controversial interrogation techniques were operating not on their own but with direction from top administration officials, including then-Vice President Dick Cheney and national security adviser Condoleezza Rice. At the same time, the narrative suggests that then-Defense Secretary Donald H. Rumsfeld and then-Secretary of State Colin Powell were largely left out of the decision-making process.", "hypothesis": "Dick Cheney was the Vice President of Bush.", "idx": 8, "label": 0, "processed_input": "rte hypothesis: Dick Cheney was the Vice President of Bush. premise: WASHINGTON -- A newly declassified narrative of the Bush administration's advice to the CIA on harsh interrogations shows that the small group of Justice Department lawyers who wrote memos authorizing controversial interrogation techniques were operating not on their own but with direction from top administration officials, including then-Vice President Dick Cheney and national security adviser Condoleezza Rice. At the same time, the narrative suggests that then-Defense Secretary Donald H. Rumsfeld and then-Secretary of State Colin Powell were largely left out of the decision-making process.", "processed_output": "entailment"} |
{"premise": "Only a week after it had no comment on upping the storage capacity of its Hotmail e-mail service, Microsoft early Thursday announced it was boosting the allowance to 250MB to follow similar moves by rivals such as Google, Yahoo, and Lycos.", "hypothesis": "Microsoft's Hotmail has raised its storage capacity to 250MB.", "idx": 9, "label": 0, "processed_input": "rte hypothesis: Microsoft's Hotmail has raised its storage capacity to 250MB. premise: Only a week after it had no comment on upping the storage capacity of its Hotmail e-mail service, Microsoft early Thursday announced it was boosting the allowance to 250MB to follow similar moves by rivals such as Google, Yahoo, and Lycos.", "processed_output": "entailment"} |
{"inputs": {"text": "My card stopped working after multiple transactions. Why?"}, "prediction": [{"label": "NEGATIVE", "score": 0.9996840357780457}, {"label": "POSITIVE", "score": 0.00031598005443811417}], "prediction_agent": "distilbert-base-uncased-finetuned-sst-2-english", "annotation": null, "annotation_agent": null, "multi_label": false, "explanation": null, "id": null, "metadata": {"category": 14}, "status": "Default", "event_timestamp": null, "metrics": null} |
{"inputs": {"text": "Hi, I made a transfer from France two days ago and thought it would be here by now. Can you give me an update please?"}, "prediction": [{"label": "NEGATIVE", "score": 0.018087752163410187}, {"label": "POSITIVE", "score": 0.9819122552871704}], "prediction_agent": "distilbert-base-uncased-finetuned-sst-2-english", "annotation": null, "annotation_agent": null, "multi_label": false, "explanation": null, "id": null, "metadata": {"category": 5}, "status": "Default", "event_timestamp": null, "metrics": null} |
{"inputs": {"text": "Has my top-up been cancelled?"}, "prediction": [{"label": "NEGATIVE", "score": 0.9995141625404358}, {"label": "POSITIVE", "score": 0.000485769851366058}], "prediction_agent": "distilbert-base-uncased-finetuned-sst-2-english", "annotation": null, "annotation_agent": null, "multi_label": false, "explanation": null, "id": null, "metadata": {"category": 61}, "status": "Default", "event_timestamp": null, "metrics": null} |
{"inputs": {"text": "Please tell me how the exchange rate is determined. I was expecting more money for the transaction."}, "prediction": [{"label": "NEGATIVE", "score": 0.9984563589096069}, {"label": "POSITIVE", "score": 0.0015435746172443032}], "prediction_agent": "distilbert-base-uncased-finetuned-sst-2-english", "annotation": null, "annotation_agent": null, "multi_label": false, "explanation": null, "id": null, "metadata": {"category": 76}, "status": "Default", "event_timestamp": null, "metrics": null} |
{"inputs": {"text": "Please help me regarding a direct debit in the app that I don't recognize."}, "prediction": [{"label": "NEGATIVE", "score": 0.9973887801170349}, {"label": "POSITIVE", "score": 0.0026112468913197517}], "prediction_agent": "distilbert-base-uncased-finetuned-sst-2-english", "annotation": null, "annotation_agent": null, "multi_label": false, "explanation": null, "id": null, "metadata": {"category": 28}, "status": "Default", "event_timestamp": null, "metrics": null} |
{"inputs": {"text": "My cash deposit hasn't posted to my account."}, "prediction": [{"label": "NEGATIVE", "score": 0.9921458959579468}, {"label": "POSITIVE", "score": 0.007854118011891842}], "prediction_agent": "distilbert-base-uncased-finetuned-sst-2-english", "annotation": null, "annotation_agent": null, "multi_label": false, "explanation": null, "id": null, "metadata": {"category": 6}, "status": "Default", "event_timestamp": null, "metrics": null} |
{"inputs": {"text": "I just noticed that I supposedly made a payment to a seller a while back. The problem is, I don't recognize the seller. There must be a way to see who it is or track the payment. Can you do that, because I don't remember this transaction?"}, "prediction": [{"label": "NEGATIVE", "score": 0.9996586441993713}, {"label": "POSITIVE", "score": 0.00034133161534555256}], "prediction_agent": "distilbert-base-uncased-finetuned-sst-2-english", "annotation": null, "annotation_agent": null, "multi_label": false, "explanation": null, "id": null, "metadata": {"category": 28}, "status": "Default", "event_timestamp": null, "metrics": null} |
{"inputs": {"text": "why top up is not working even if I got my American Express in Apple Bay?"}, "prediction": [{"label": "NEGATIVE", "score": 0.9995580911636353}, {"label": "POSITIVE", "score": 0.00044184981379657984}], "prediction_agent": "distilbert-base-uncased-finetuned-sst-2-english", "annotation": null, "annotation_agent": null, "multi_label": false, "explanation": null, "id": null, "metadata": {"category": 2}, "status": "Default", "event_timestamp": null, "metrics": null} |
{"inputs": {"text": "I think someone has hacked my card!"}, "prediction": [{"label": "NEGATIVE", "score": 0.9993180632591248}, {"label": "POSITIVE", "score": 0.0006819640402682126}], "prediction_agent": "distilbert-base-uncased-finetuned-sst-2-english", "annotation": null, "annotation_agent": null, "multi_label": false, "explanation": null, "id": null, "metadata": {"category": 22}, "status": "Default", "event_timestamp": null, "metrics": null} |
{"inputs": {"text": "How much does each transfer cost?"}, "prediction": [{"label": "NEGATIVE", "score": 0.9981986880302429}, {"label": "POSITIVE", "score": 0.0018012701766565442}], "prediction_agent": "distilbert-base-uncased-finetuned-sst-2-english", "annotation": null, "annotation_agent": null, "multi_label": false, "explanation": null, "id": null, "metadata": {"category": 56}, "status": "Default", "event_timestamp": null, "metrics": null} |
{"feat_Unnamed: 0": 30, "text": "The following are multiple choice questions (with answers) about common sense.\n\nQuestion: The diminishing supply of this nonrenewable resource is not leading to advancements in automotive technology\nA. petrol\nB. steam\nAnswer:", "classes": [" A", " B"], "target": 1, "evaluation_predictions": [-3.326791524887085, -6.143470287322998, -3.609027862548828, -8.73436164855957, -2.671416997909546, -0.20364663004875183, -3.838352680206299, -4.09389066696167, -1.9205639362335205, -0.30885109305381775, -3.2686290740966797, -7.311863422393799, -3.802703857421875, -1.0864075422286987, -1.4276481866836548, -0.23308590054512024, -2.768258571624756, -1.9100477695465088, -3.5110998153686523, -13.148752212524414, -3.767557382583618, -0.03962911292910576, -8.467395782470703, -6.392854690551758, -0.32994896173477173, -0.0002115741081070155, -0.0012559153838083148, -0.14653274416923523, -1.5337474346160889, -4.912654876708984, -6.07043981552124, -0.06777500361204147, -11.505914688110352, -0.08559715002775192, -9.249683380126953, -0.4841456413269043, -5.249689102172852, -3.9866976737976074, -0.5435678958892822, -8.570822715759277, -0.3814235031604767, -0.013477292843163013, -0.0004930472350679338, -7.384513854980469, -0.07648689299821854, -11.433932304382324, -0.033660296350717545, -1.7776474952697754, 0.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0]} |
{"feat_Unnamed: 0": 122, "text": "The following are multiple choice questions (with answers) about common sense.\n\nQuestion: Lamps that convert electricity into light and heat aren't known as\nA. candle\nB. incadescent\nAnswer:", "classes": [" A", " B"], "target": 0, "evaluation_predictions": [-3.326791524887085, -6.143470287322998, -3.609027862548828, -8.73436164855957, -2.671416997909546, -0.20364663004875183, -3.838352680206299, -4.09389066696167, -1.9205639362335205, -0.30885109305381775, -3.2686290740966797, -7.311863422393799, -3.802703857421875, -1.0864075422286987, -1.4276481866836548, -0.23308590054512024, -2.768258571624756, -1.9100477695465088, -3.5110998153686523, -13.148752212524414, -3.767557382583618, -0.03962911292910576, -8.467395782470703, -6.392854690551758, -0.32994896173477173, -0.0002115741081070155, -0.0012559153838083148, -0.14653274416923523, -1.5337474346160889, -4.912654876708984, -6.07043981552124, -0.06777500361204147, -11.505914688110352, -0.08559715002775192, -9.249683380126953, -0.4841456413269043, -5.249689102172852, -3.9866976737976074, -0.5435678958892822, -8.570822715759277, -0.3814235031604767, -0.013477292843163013, -0.0004930472350679338, -7.384513854980469, -0.07648689299821854, -11.433932304382324, -0.033660296350717545, -0.7497448325157166, 0.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0]} |
{"feat_Unnamed: 0": 120, "text": "The following are multiple choice questions (with answers) about common sense.\n\nQuestion: Which is not needed for photosynthesis to occur\nA. energy that takes 8.3 minutes to travel to Earth\nB. the 8th entry on the periodic table\nAnswer:", "classes": [" A", " B"], "target": 1, "evaluation_predictions": [-3.326791524887085, -6.143470287322998, -3.609027862548828, -8.73436164855957, -2.671416997909546, -0.20364663004875183, -3.838352680206299, -4.09389066696167, -1.9205639362335205, -0.30885109305381775, -3.2686290740966797, -7.311863422393799, -3.802703857421875, -1.0864075422286987, -1.4276481866836548, -0.23308590054512024, -2.768258571624756, -1.9100477695465088, -7.75143575668335, -6.003880500793457, -3.9898810386657715, -8.80942153930664, -1.5789915323257446, -0.5974048376083374, -0.29128435254096985, -3.6685409545898438, -1.0882447957992554, -5.742354869842529, -0.623590350151062, -5.6125946044921875, -0.5557351112365723, -3.8178935050964355, -4.590112209320068, -0.24992944300174713, -7.090709209442139, -4.124680042266846, -0.02087550051510334, -0.0003381395654287189, -2.2732858657836914, -11.106045722961426, -0.07466167211532593, -0.6864655017852783, -11.447681427001953, -0.015340551733970642, -1.7639719247817993, 0.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0]} |
{"feat_Unnamed: 0": 147, "text": "The following are multiple choice questions (with answers) about common sense.\n\nQuestion: A creature that is not a biped and which regularly uses tools will occasionally enjoy munching on\nA. chia seeds\nB. old feces\nAnswer:", "classes": [" A", " B"], "target": 1, "evaluation_predictions": [-3.326791524887085, -6.143470287322998, -3.609027862548828, -8.73436164855957, -2.671416997909546, -0.20364663004875183, -3.838352680206299, -4.09389066696167, -1.9205639362335205, -0.30885109305381775, -3.2686290740966797, -7.311863422393799, -3.802703857421875, -1.0864075422286987, -1.4276481866836548, -0.23308590054512024, -2.768258571624756, -1.9100477695465088, -7.75143575668335, -6.003880500793457, -3.9898810386657715, -8.80942153930664, -1.5789915323257446, -0.5974048376083374, -0.29128435254096985, -3.6685409545898438, -1.0882447957992554, -5.742354869842529, -0.623590350151062, -5.6125946044921875, -0.5557351112365723, -3.8178935050964355, -4.590112209320068, -0.24992944300174713, -7.090709209442139, -4.124680042266846, -0.02087550051510334, -0.0003381395654287189, -2.2732858657836914, -11.106045722961426, -0.07466167211532593, -0.6864655017852783, -11.447681427001953, -0.015340551733970642, -1.1074682474136353, 0.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0]} |
{"feat_Unnamed: 0": 87, "text": "The following are multiple choice questions (with answers) about common sense.\n\nQuestion: One way to retain your own thermal energy is not to\nA. wear fluffy socks\nB. sit in snow\nAnswer:", "classes": [" A", " B"], "target": 1, "evaluation_predictions": [-3.326791524887085, -6.143470287322998, -3.609027862548828, -8.73436164855957, -2.671416997909546, -0.20364663004875183, -3.838352680206299, -4.09389066696167, -1.9205639362335205, -0.30885109305381775, -3.2686290740966797, -7.311863422393799, -3.802703857421875, -1.0864075422286987, -1.4276481866836548, -0.23308590054512024, -2.768258571624756, -1.9100477695465088, -3.540132522583008, -2.1493844985961914, -2.473184585571289, -7.772617816925049, -1.4678127765655518, -8.866427421569824, -0.021451478824019432, -1.6848167181015015, -0.5579466819763184, -6.1055803298950195, -3.5657567977905273, -0.310955286026001, -5.871265888214111, -6.245800495147705, -6.216467380523682, -7.559210777282715, -2.987522602081299, -2.838534355163574, -2.04372239112854, -0.15108250081539154, -1.3123705387115479, -2.6350107192993164, -3.750938653945923, -0.9536345601081848, -0.013933410868048668, -0.0010751663940027356, -2.683973789215088, -8.173579216003418, -3.8778157234191895, -10.235885620117188, -1.108606219291687, -0.4401010274887085, -0.30959975719451904, -0.012408203445374966, -0.5554771423339844, -9.21113109588623, -0.023370876908302307, -1.5063493251800537, 0.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0]} |
{"feat_Unnamed: 0": 158, "text": "The following are multiple choice questions (with answers) about common sense.\n\nQuestion: An extremely rapid surge of rising flood water that moves across usually dry land at about 30 feet or more each second is not powerful enough to\nA. lift and carry a tall mountain\nB. lift a 250-ton object off the ground\nAnswer:", "classes": [" A", " B"], "target": 0, "evaluation_predictions": [-3.326791524887085, -6.143470287322998, -3.609027862548828, -8.73436164855957, -2.671416997909546, -0.20364663004875183, -3.838352680206299, -4.09389066696167, -1.9205639362335205, -0.30885109305381775, -3.2686290740966797, -7.311863422393799, -3.802703857421875, -1.0864075422286987, -1.4276481866836548, -0.23308590054512024, -2.768258571624756, -1.9100477695465088, -3.540132522583008, -2.1493844985961914, -2.473184585571289, -7.772617816925049, -1.4678127765655518, -8.866427421569824, -0.021451478824019432, -1.6848167181015015, -0.5579466819763184, -6.1055803298950195, -3.5657567977905273, -0.310955286026001, -5.871265888214111, -6.245800495147705, -6.216467380523682, -7.559210777282715, -2.987522602081299, -2.838534355163574, -2.04372239112854, -0.15108250081539154, -1.3123705387115479, -2.6350107192993164, -3.750938653945923, -0.9536345601081848, -0.013933410868048668, -0.0010751663940027356, -2.683973789215088, -8.173579216003418, -3.8778157234191895, -10.235885620117188, -1.108606219291687, -0.4401010274887085, -0.30959975719451904, -0.012408203445374966, -0.5554771423339844, -9.21113109588623, -0.023370876908302307, -0.8615472316741943, 0.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0]} |
{"feat_Unnamed: 0": 149, "text": "The following are multiple choice questions (with answers) about common sense.\n\nQuestion: A thing's position is not altered when\nA. thing feels moved emotionally\nB. the thing adjusts its location\nAnswer:", "classes": [" A", " B"], "target": 0, "evaluation_predictions": [-3.326791524887085, -6.143470287322998, -3.609027862548828, -8.73436164855957, -2.671416997909546, -0.20364663004875183, -3.838352680206299, -4.09389066696167, -1.9205639362335205, -0.30885109305381775, -3.2686290740966797, -7.311863422393799, -3.802703857421875, -1.0864075422286987, -1.4276481866836548, -0.23308590054512024, -2.768258571624756, -1.9100477695465088, -3.1186885833740234, -8.443205833435059, -2.1675028800964355, -1.3686646223068237, -3.1064045429229736, -1.4089109897613525, -7.249591827392578, -0.0027576773427426815, -3.733604907989502, -4.589313983917236, -7.579625129699707, -3.5867972373962402, -3.646378517150879, -4.565857410430908, -5.803885459899902, -8.152664184570312, -6.923027992248535, -0.2958899438381195, -0.009866989217698574, -0.2096511423587799, -7.193249702453613, -6.334619522094727, -0.6209357976913452, -6.759921073913574, -4.011489391326904, -0.8356382846832275, -0.3624024987220764, -0.010617316700518131, -0.0005588161875493824, -7.523653984069824, -10.534443855285645, -0.07184408605098724, -10.919600486755371, -0.026969045400619507, -2.239441394805908, 0.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0]} |
{"feat_Unnamed: 0": 176, "text": "The following are multiple choice questions (with answers) about common sense.\n\nQuestion: A pot of pasta is boiling on the stove, and the lid on top of the pot is shaking as the water boils more rapidly. A person goes to the stove and removes the pot, releasing steam into the air above, and so the steam is not\nA. water vapor\nB. cold air\nAnswer:", "classes": [" A", " B"], "target": 1, "evaluation_predictions": [-3.326791524887085, -6.143470287322998, -3.609027862548828, -8.73436164855957, -2.671416997909546, -0.20364663004875183, -3.838352680206299, -4.09389066696167, -1.9205639362335205, -0.30885109305381775, -3.2686290740966797, -7.311863422393799, -3.802703857421875, -1.0864075422286987, -1.4276481866836548, -0.23308590054512024, -2.768258571624756, -1.9100477695465088, -3.1186885833740234, -8.443205833435059, -2.1675028800964355, -1.3686646223068237, -3.1064045429229736, -1.4089109897613525, -7.249591827392578, -0.0027576773427426815, -3.733604907989502, -4.589313983917236, -7.579625129699707, -3.5867972373962402, -3.646378517150879, -4.565857410430908, -5.803885459899902, -8.152664184570312, -6.923027992248535, -0.2958899438381195, -0.009866989217698574, -0.2096511423587799, -7.193249702453613, -6.334619522094727, -0.6209357976913452, -6.759921073913574, -4.011489391326904, -0.8356382846832275, -0.3624024987220764, -0.010617316700518131, -0.0005588161875493824, -7.523653984069824, -10.534443855285645, -0.07184408605098724, -10.919600486755371, -0.026969045400619507, -0.6493525505065918, 0.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0]} |
{"feat_Unnamed: 0": 255, "text": "The following are multiple choice questions (with answers) about common sense.\n\nQuestion: A plant that gets extra minerals such as zinc aren't probably\nA. placed in good soil\nB. made out of soil\nAnswer:", "classes": [" A", " B"], "target": 1, "evaluation_predictions": [-3.326791524887085, -6.143470287322998, -3.609027862548828, -8.73436164855957, -2.671416997909546, -0.20364663004875183, -3.838352680206299, -4.09389066696167, -1.9205639362335205, -0.30885109305381775, -3.2686290740966797, -7.311863422393799, -3.802703857421875, -1.0864075422286987, -1.4276481866836548, -0.23308590054512024, -2.768258571624756, -1.9100477695465088, -5.9542951583862305, -3.8748059272766113, -0.3983974754810333, -9.081782341003418, -1.874629259109497, -5.002874374389648, -10.837839126586914, -0.616291880607605, -0.31088000535964966, -6.075139045715332, -0.12764714658260345, -6.4374775886535645, -4.804961681365967, -0.27697327733039856, -2.9697253704071045, -10.071891784667969, -2.236919641494751, -0.740502119064331, -0.008475524373352528, -0.000388665939681232, -4.2155351638793945, -1.0294286012649536, -7.789151668548584, -0.2727944552898407, -12.800482749938965, -0.017428696155548096, -1.7114739418029785, 0.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0]} |
{"feat_Unnamed: 0": 174, "text": "The following are multiple choice questions (with answers) about common sense.\n\nQuestion: Which isn't more likely the result of a big earthquake\nA. a big house\nB. a mountain\nAnswer:", "classes": [" A", " B"], "target": 0, "evaluation_predictions": [-3.326791524887085, -6.143470287322998, -3.609027862548828, -8.73436164855957, -2.671416997909546, -0.20364663004875183, -3.838352680206299, -4.09389066696167, -1.9205639362335205, -0.30885109305381775, -3.2686290740966797, -7.311863422393799, -3.802703857421875, -1.0864075422286987, -1.4276481866836548, -0.23308590054512024, -2.768258571624756, -1.9100477695465088, -5.9542951583862305, -3.8748059272766113, -0.3983974754810333, -9.081782341003418, -1.874629259109497, -5.002874374389648, -10.837839126586914, -0.616291880607605, -0.31088000535964966, -6.075139045715332, -0.12764714658260345, -6.4374775886535645, -4.804961681365967, -0.27697327733039856, -2.9697253704071045, -10.071891784667969, -2.236919641494751, -0.740502119064331, -0.008475524373352528, -0.000388665939681232, -4.2155351638793945, -1.0294286012649536, -7.789151668548584, -0.2727944552898407, -12.800482749938965, -0.017428696155548096, -1.020582675933838, 0.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0, -100.0]} |
{"premise": "A person on a horse jumps over a broken down airplane.", "hypothesis": "A person is training his horse for a competition.", "label": 1, "explanation_1": "the person is not necessarily training his horse", "explanation_2": "", "explanation_3": ""} |
{"premise": "A person on a horse jumps over a broken down airplane.", "hypothesis": "A person is at a diner, ordering an omelette.", "label": 2, "explanation_1": "One cannot be on a jumping horse cannot be a diner ordering food.", "explanation_2": "", "explanation_3": ""} |
{"premise": "A person on a horse jumps over a broken down airplane.", "hypothesis": "A person is outdoors, on a horse.", "label": 0, "explanation_1": "a broken down airplane is outdoors", "explanation_2": "", "explanation_3": ""} |
{"premise": "Children smiling and waving at camera", "hypothesis": "They are smiling at their parents", "label": 1, "explanation_1": "Just because they are smiling and waving at a camera does not imply their parents or anyone is anyone behind it", "explanation_2": "", "explanation_3": ""} |
{"premise": "Children smiling and waving at camera", "hypothesis": "There are children present", "label": 0, "explanation_1": "The children must be present to see them smiling and waving.", "explanation_2": "", "explanation_3": ""} |
{"premise": "Children smiling and waving at camera", "hypothesis": "The kids are frowning", "label": 2, "explanation_1": "One cannot be smiling and frowning at the same time.", "explanation_2": "", "explanation_3": ""} |
{"premise": "A boy is jumping on skateboard in the middle of a red bridge.", "hypothesis": "The boy skates down the sidewalk.", "label": 2, "explanation_1": "One cannot be in the middle of a bridge if they are on the sidewalk.", "explanation_2": "", "explanation_3": ""} |
{"premise": "A boy is jumping on skateboard in the middle of a red bridge.", "hypothesis": "The boy does a skateboarding trick.", "label": 0, "explanation_1": "jumping on skateboard is the same as doing trick on skateboard.", "explanation_2": "", "explanation_3": ""} |
{"premise": "A boy is jumping on skateboard in the middle of a red bridge.", "hypothesis": "The boy is wearing safety equipment.", "label": 1, "explanation_1": "Just because the boy is jumping on a skateboard does not imply he is wearing safety equipment", "explanation_2": "", "explanation_3": ""} |
{"premise": "An older man sits with his orange juice at a small table in a coffee shop while employees in bright colored shirts smile in the background.", "hypothesis": "An older man drinks his juice as he waits for his daughter to get off work.", "label": 1, "explanation_1": "it is not necessarily true the man drinks his juice", "explanation_2": "", "explanation_3": ""} |
{"context": "Some disagree with such double or triple non-French linguistic origins, arguing that for the word to have spread into common use in France, it must have originated in the French language. The \"Hugues hypothesis\" argues that the name was derived by association with Hugues Capet, king of France, who reigned long before the Reformation. He was regarded by the Gallicans and Protestants as a noble man who respected people's dignity and lives. Janet Gray and other supporters of the hypothesis suggest that the name huguenote would be roughly equivalent to little Hugos, or those who want Hugo.", "question": "What is the theory that this King's name is the origin of \"Huguenot\" called?", "answers.text": ["The \"Hugues hypothesis\"", "Hugues hypothesis", "\"Hugues hypothesis\""], "answers.answer_start": [188, 193, 192], "feat_id": ["571112ada58dae1900cd6bcd", "571112ada58dae1900cd6bcd", "571112ada58dae1900cd6bcd"], "feat_title": ["Huguenot", "Huguenot", "Huguenot"], "start_logits": [-5.828125, -5.3359375, -7.68359375, -6.3125, -7.4296875, -7.8984375, -7.41015625, -7.296875, -7.921875, -8.4609375, -7.77734375, -8.0078125, -7.39453125, -8.0234375, -8.421875, -7.265625, -4.8125, -9.1953125, -9.703125, -9.921875, -7.57421875, -9.4296875, -5.828125, -5.06640625, -6.2421875, -8.046875, -5.7109375, -3.439453125, -7.94921875, -4.98046875, -3.935546875, -8.375, -5.234375, -5.38671875, -6.45703125, -8.0234375, -4.64453125, -6.1875, -4.421875, -5.6171875, -6.15234375, -7.37890625, -7.91015625, -6.76171875, -7.8671875, -6.6640625, -7.7109375, -7.4140625, -4.76171875, -7.8125, -5.59765625, -5.40625, -7.4921875, -5.01171875, -5.19140625, -4.71875, -3.3203125, -6.12890625, -5.828125, 5.71484375, 5.0703125, 6.59375, -1.400390625, -0.041168212890625, -3.837890625, -1.169921875, -2.443359375, -0.128662109375, -2.525390625, -3.82421875, -1.7919921875, -1.23828125, -2.134765625, -5.73828125, 1.0498046875, -4.8359375, -4.78515625, -5.1015625, -6.50390625, -1.78125, -6.98828125, -3.240234375, -6.8203125, -4.7890625, -4.1171875, -4.671875, -4.08984375, -4.375, -3.47265625, -6.25390625, -3.408203125, -6.87109375, -4.30859375, -6.8515625, -5.984375, -5.01953125, -8.0859375, -7.2890625, -7.97265625, -3.744140625, -6.6640625, -5.234375, -4.6953125, -6.5625, -7.26171875, -5.1015625, -7.1640625, -7.765625, -8.578125, -6.4609375, -8.3984375, -5.99609375, -7.140625, -3.583984375, -7.54296875, -7.90625, -6.51171875, -4.8828125, -7.16796875, -2.755859375, -2.087890625, -5.5390625, -6.53515625, -3.2421875, -3.048828125, 0.443115234375, -6.77734375, -5.84765625, -6.0546875, -7.7265625, -4.58984375, -4.4609375, -6.86328125, -2.533203125, -3.017578125, -7.1015625, -8.9375, -8.078125, -5.22265625, -8.2890625, -7.39453125, -3.734375, -7.8515625, -5.828125, -10.5703125, -10.7734375, -10.796875, -10.8046875, -10.8046875, -10.8046875, -10.796875, -10.8125, -10.8125, -10.8203125, -10.8203125, -10.8125, -10.8203125, -10.8203125, -10.828125, -10.8203125, -10.8203125, -10.8203125, -10.8203125, -10.8203125, -10.8046875, -10.8046875, -10.8046875, -10.8046875, -10.8125, -10.8125, -10.8125, -10.8203125, -10.8046875, -10.8046875, -10.8203125, -10.8125, -10.8125, -10.8125, -10.796875, -10.8046875, -10.8046875, -10.78125, -10.8046875, -10.8125, -10.8125, -10.8125, -10.7890625, -10.78125, -10.78125, -10.75, -10.7890625, -10.796875, -10.796875, -10.8125, -10.8046875, -10.7890625, -10.78125, -10.78125, -10.7890625, -10.7734375, -10.796875, -10.8046875, -10.8046875, -10.8125, -10.8046875, -10.8046875, -10.796875, -10.796875, -10.8203125, -10.8203125, -10.8203125, -10.828125, -10.8359375, -10.828125, -10.8125, -10.796875, -10.7890625, -10.7734375, -10.8125, -10.796875, -10.8125, -10.828125, -10.8203125, -10.8125, -10.796875, -10.734375, -10.7890625, -10.8125, -10.828125, -10.8203125, -10.828125, -10.828125, -10.8125, -10.8125, -10.8359375, -10.8046875, -10.828125, -10.8203125, -10.8359375, -10.8359375, -10.8359375, -10.828125, -10.8203125, -10.828125, -10.8046875, -10.8125, -10.8203125, -10.8359375, -10.8359375, -10.796875, -10.8046875, -10.8046875, -10.8125, -10.8203125, -10.8203125, -10.8203125, -10.8203125, -10.8203125, -10.8125, -10.828125, -10.8046875, -10.8125, -10.828125, -10.8046875, -10.8203125, -10.8125, -10.8125, -10.8125, -10.796875, -10.8125, -10.8125, -10.8125, -10.7890625, -10.8125, -10.8125, -10.8203125, -10.828125, -10.828125, -10.8203125, -10.8125, -10.8046875, -10.7890625, -10.796875, -10.8125, -10.8046875, -10.8203125, -10.8125, -10.8046875, -10.8046875, -10.796875, -10.796875, -10.8046875, -10.8125, -10.8046875, -10.8125, -10.8203125, -10.8125, -10.796875, -10.8046875, -10.8046875, -10.765625, -10.796875, -10.8125, -10.8125, -10.8125, -10.828125, -10.8203125, -10.7890625, -10.7890625, -10.8046875, -10.78125, -10.796875, -10.8046875, -10.8125, -10.8203125, -10.8046875, -10.796875, -10.7890625, -10.78125, -10.765625, -10.796875, -10.8046875, -10.8046875, -10.8125, -10.8125, -10.796875, -10.7890625, -10.7890625, -10.796875, -10.8125, -10.8125, -10.8203125, -10.828125, -10.8125, -10.796875, -10.8046875, -10.8203125, -10.7890625, -10.8125, -10.8359375, -10.8359375, -10.828125, -10.8203125, -10.796875, -10.7890625, -10.796875, -10.8125, -10.8203125, -10.828125, -10.828125, -10.828125, -10.8203125, -10.8046875, -10.8203125, -10.8203125, -10.828125, -10.8203125, -10.8203125, -10.8125, -10.8125, -10.828125, -10.765625, -10.796875, -10.8125, -10.8203125, -10.8203125, -10.8203125, -10.8203125, -10.8046875, -10.8125, -10.8203125, -10.8125, -10.8203125, -10.8203125, -10.796875, -10.8203125, -10.8125, -10.8125, -10.8125, -10.8125, -10.8046875, -10.8125, -10.8046875, -10.8125, -10.8046875, -10.8046875, -10.796875, -10.8046875, -10.8046875, -10.8203125, -10.8046875, -10.8046875, -10.8125, -10.8125, -10.78125, -10.8046875, -10.8125, -10.8203125, -10.8125, -10.796875, -10.7890625, -10.78125, -10.796875, -10.796875, -10.8125, -10.8125, -10.7890625, -10.7890625, -10.7890625, -10.7890625, -10.7890625, -10.796875, -10.8046875, -10.796875, -10.7890625, -10.7890625, -10.7578125, -10.7890625, -10.796875, -10.8125, -10.8125, -10.7890625, -10.7890625, -10.796875, -10.75, -10.8125, -10.8203125, -10.828125, -10.8046875, -10.7734375, -10.75, -10.7890625, -10.796875, -10.8203125, -10.8203125, -10.796875, -10.734375, -10.7890625, -10.7734375, -10.8046875, -10.78125, -10.8125, -10.7890625, -10.8125, -10.8125, -10.8046875, -10.8125, -10.8203125, -10.8203125, -10.8125, -10.8203125, -10.8125, -10.8125, -10.8203125, -10.8359375, -10.828125, -10.8125, -10.796875, -10.7890625, -10.8046875, -10.796875, -10.8203125, -10.8046875, -10.828125, -10.828125, -10.8203125, -10.796875, -10.8125, -10.8203125, -10.8125, -10.8125, -10.8125, -10.8125, -10.828125, -10.6796875, -10.796875, -10.796875, -10.8125, -10.8125, -10.8203125, -10.8203125, -10.8125, -10.8046875, -10.8125, -10.8125, -10.8203125, -10.8125, -10.8125, -10.796875, -10.7734375, -10.796875, -10.8046875, -10.8046875, -10.796875, -10.8046875, -10.8046875, -10.7890625, -10.8046875, -10.8046875, -10.8046875, -10.7734375, -10.8046875, -10.796875, -10.8046875, -10.8046875, -10.8046875, -10.8046875, -10.8046875, -10.8046875, -10.8125, -6.15234375, -5.828125], "end_logits": [-2.126953125, -5.5, -6.77734375, -7.37890625, -6.52734375, -7.9921875, -8.2578125, -7.50390625, -7.26953125, -7.00390625, -5.46484375, -7.51171875, -7.6875, -6.4453125, -7.09765625, -8.03125, -8.4140625, -6.08203125, -3.51953125, -6.6640625, -4.83984375, -7.34375, -2.126953125, -7.3125, -6.265625, -7.359375, -7.92578125, -6.1484375, -8.34375, -5.578125, -6.96875, -8.234375, -3.802734375, -4.76171875, -3.419921875, -5.515625, -7.12890625, -8.0546875, -6.6953125, -7.921875, -5.90625, -7.84765625, -8.0, -7.23046875, -8.015625, -7.62109375, -6.3046875, -8.4609375, -3.53515625, -6.96484375, -8.125, -7.68359375, -8.0078125, -6.33203125, -8.1640625, -8.3203125, -4.24609375, -2.185546875, -2.126953125, -2.708984375, -2.748046875, -1.578125, 5.8984375, 7.37109375, 5.5703125, -3.80859375, -4.68359375, -5.3359375, -3.044921875, -5.984375, -3.13671875, -5.6171875, -3.505859375, -6.1796875, -4.8828125, -0.477294921875, -5.34765625, 1.4208984375, -2.541015625, -2.46875, -7.2421875, -0.444580078125, -1.3984375, -5.359375, -5.0859375, -6.33203125, -6.3125, -7.25390625, -0.443603515625, -1.060546875, -5.734375, -7.0625, -6.10546875, -7.7265625, -7.89453125, -7.28125, -7.01171875, -4.1875, -8.0546875, -2.73828125, -7.36328125, -7.6875, -6.421875, -4.95703125, -7.41015625, -6.56640625, -6.046875, -7.109375, -7.12109375, -4.42578125, -8.0078125, -1.681640625, -1.28125, -6.328125, -4.33984375, -7.61328125, -7.8125, -5.85546875, -7.25, -6.30078125, -0.88671875, -6.74609375, -7.546875, -7.3671875, -4.765625, -5.13671875, -4.82421875, 1.107421875, -7.02734375, -7.68359375, -7.28515625, -6.37890625, -7.89453125, -6.18359375, -2.943359375, -0.73779296875, -3.98046875, -8.1171875, -7.36328125, -7.6484375, -7.29296875, -1.7255859375, -1.552734375, -2.12890625, -9.734375, -9.640625, -9.6015625, -9.609375, -9.640625, -9.6015625, -9.5859375, -9.625, -9.6328125, -9.6171875, -9.609375, -9.5546875, -9.578125, -9.59375, -9.6328125, -9.6171875, -9.6015625, -9.59375, -9.6015625, -9.6015625, -9.515625, -9.515625, -9.625, -9.5859375, -9.59375, -9.609375, -9.609375, -9.6015625, -9.625, -9.609375, -9.609375, -9.59375, -9.59375, -9.59375, -9.578125, -9.578125, -9.5703125, -9.6015625, -9.5546875, -9.5390625, -9.5078125, -9.5, -9.5703125, -9.5625, -9.5390625, -9.6015625, -9.5703125, -9.5625, -9.5546875, -9.5234375, -9.5078125, -9.5703125, -9.5703125, -9.578125, -9.59375, -9.6171875, -9.5859375, -9.5859375, -9.6015625, -9.578125, -9.609375, -9.59375, -9.5859375, -9.6015625, -9.59375, -9.578125, -9.5703125, -9.5390625, -9.5078125, -9.5234375, -9.53125, -9.546875, -9.578125, -9.6171875, -9.59375, -9.625, -9.59375, -9.546875, -9.5703125, -9.5625, -9.5859375, -9.65625, -9.6640625, -9.65625, -9.6328125, -9.625, -9.6171875, -9.6328125, -9.6484375, -9.6328125, -9.625, -9.6796875, -9.6328125, -9.640625, -9.6171875, -9.609375, -9.6328125, -9.625, -9.6328125, -9.625, -9.65625, -9.65625, -9.6484375, -9.59375, -9.59375, -9.6484375, -9.6328125, -9.6328125, -9.640625, -9.640625, -9.65625, -9.640625, -9.6328125, -9.640625, -9.65625, -9.640625, -9.65625, -9.65625, -9.640625, -9.6796875, -9.65625, -9.65625, -9.65625, -9.6484375, -9.6640625, -9.65625, -9.640625, -9.640625, -9.6796875, -9.6484375, -9.6484375, -9.609375, -9.5703125, -9.5859375, -9.578125, -9.578125, -9.6015625, -9.6328125, -9.6328125, -9.625, -9.6171875, -9.5703125, -9.59375, -9.6015625, -9.609375, -9.609375, -9.609375, -9.6171875, -9.6015625, -9.609375, -9.609375, -9.59375, -9.59375, -9.6328125, -9.6171875, -9.6015625, -9.65625, -9.625, -9.609375, -9.59375, -9.5625, -9.5390625, -9.546875, -9.5859375, -9.578125, -9.5625, -9.6015625, -9.6015625, -9.578125, -9.5390625, -9.53125, -9.5625, -9.5546875, -9.578125, -9.5859375, -9.625, -9.6171875, -9.6015625, -9.609375, -9.578125, -9.59375, -9.609375, -9.6171875, -9.625, -9.6328125, -9.6171875, -9.625, -9.6015625, -9.578125, -9.6015625, -9.6015625, -9.609375, -9.59375, -9.6328125, -9.6484375, -9.59375, -9.5703125, -9.5859375, -9.578125, -9.6171875, -9.6328125, -9.6484375, -9.6484375, -9.6328125, -9.609375, -9.6171875, -9.6328125, -9.640625, -9.65625, -9.6484375, -9.65625, -9.640625, -9.65625, -9.65625, -9.6640625, -9.6640625, -9.6484375, -9.703125, -9.6875, -9.6640625, -9.6484375, -9.6328125, -9.625, -9.625, -9.6484375, -9.65625, -9.65625, -9.6640625, -9.640625, -9.6328125, -9.6640625, -9.6328125, -9.6328125, -9.625, -9.640625, -9.6328125, -9.6484375, -9.6484375, -9.625, -9.640625, -9.640625, -9.640625, -9.65625, -9.640625, -9.640625, -9.625, -9.640625, -9.6328125, -9.6171875, -9.6015625, -9.625, -9.6015625, -9.578125, -9.5546875, -9.5546875, -9.5625, -9.5859375, -9.625, -9.6015625, -9.609375, -9.5546875, -9.5625, -9.59375, -9.578125, -9.609375, -9.6171875, -9.59375, -9.6015625, -9.5859375, -9.59375, -9.609375, -9.6171875, -9.65625, -9.625, -9.625, -9.5859375, -9.5859375, -9.59375, -9.578125, -9.578125, -9.6328125, -9.578125, -9.53125, -9.5390625, -9.546875, -9.59375, -9.6328125, -9.6171875, -9.6015625, -9.5546875, -9.5625, -9.578125, -9.640625, -9.6328125, -9.6640625, -9.640625, -9.671875, -9.6484375, -9.6640625, -9.6484375, -9.6484375, -9.6640625, -9.6484375, -9.6328125, -9.6484375, -9.6328125, -9.609375, -9.65625, -9.65625, -9.6328125, -9.609375, -9.625, -9.6328125, -9.640625, -9.671875, -9.671875, -9.6796875, -9.640625, -9.671875, -9.625, -9.6328125, -9.6328125, -9.6796875, -9.65625, -9.640625, -9.6484375, -9.671875, -9.6796875, -9.671875, -9.6484375, -9.7578125, -9.6953125, -9.6796875, -9.65625, -9.640625, -9.6328125, -9.6484375, -9.6328125, -9.65625, -9.640625, -9.5859375, -9.5859375, -9.5859375, -9.59375, -9.609375, -9.6484375, -9.640625, -9.625, -9.6328125, -9.6328125, -9.609375, -9.6015625, -9.6171875, -9.6015625, -9.609375, -9.5859375, -9.65625, -9.625, -9.640625, -9.578125, -9.6171875, -9.6015625, -9.59375, -9.6015625, -9.59375, -9.5234375, -3.556640625, -2.12890625]} |
{"context": "Paleoclimatologists measure the ratio of oxygen-18 and oxygen-16 in the shells and skeletons of marine organisms to determine what the climate was like millions of years ago (see oxygen isotope ratio cycle). Seawater molecules that contain the lighter isotope, oxygen-16, evaporate at a slightly faster rate than water molecules containing the 12% heavier oxygen-18; this disparity increases at lower temperatures. During periods of lower global temperatures, snow and rain from that evaporated water tends to be higher in oxygen-16, and the seawater left behind tends to be higher in oxygen-18. Marine organisms then incorporate more oxygen-18 into their skeletons and shells than they would in a warmer climate. Paleoclimatologists also directly measure this ratio in the water molecules of ice core samples that are up to several hundreds of thousands of years old.", "question": "How much heavier is oxygen 18 than oxygen 16?", "answers.text": ["12%", "12%", "12%", "12%", "12%"], "answers.answer_start": [344, 344, 344, 344, 344], "feat_id": ["571cb27fdd7acb1400e4c134", "571cb27fdd7acb1400e4c134", "571cb27fdd7acb1400e4c134", "571cb27fdd7acb1400e4c134", "571cb27fdd7acb1400e4c134"], "feat_title": ["Oxygen", "Oxygen", "Oxygen", "Oxygen", "Oxygen"], "start_logits": [-5.64453125, -2.966796875, -6.2109375, -6.4609375, -7.8046875, -7.421875, -8.4296875, -8.0234375, -7.41015625, -7.80859375, -9.3671875, -5.64453125, -5.90625, -8.3828125, -8.109375, -8.3828125, -7.87890625, -6.734375, -7.0390625, -4.625, -8.3046875, -3.849609375, -6.98046875, -5.51171875, -7.66796875, -4.5390625, -7.18359375, -4.94921875, -7.2890625, -7.51953125, -5.66015625, -8.75, -5.984375, -8.515625, -6.390625, -6.86328125, -7.07421875, -6.31640625, -6.9140625, -7.05078125, -6.33203125, -8.140625, -7.7265625, -7.0546875, -8.703125, -8.3828125, -7.69921875, -7.76171875, -6.390625, -5.19140625, -5.73828125, -6.53515625, -7.35546875, -7.38671875, -5.5078125, -4.203125, -6.1796875, -6.00390625, -7.94140625, -7.0625, -5.37109375, -2.77734375, -4.9609375, -7.53125, -4.05859375, -7.21484375, -5.4609375, -7.76171875, -5.03125, -7.31640625, -7.96484375, -7.37109375, -6.828125, -4.86328125, -6.15234375, -7.0859375, -5.2890625, -2.185546875, -4.74609375, -4.296875, 0.11724853515625, 6.59765625, -1.7099609375, -1.568359375, -3.158203125, -6.61328125, -4.99609375, -6.23046875, -6.3125, -6.7265625, -7.3828125, -7.9609375, -6.3984375, -7.75, -6.67578125, -6.88671875, -6.2421875, -5.83984375, -6.703125, -8.4453125, -6.390625, -7.24609375, -6.5390625, -8.109375, -5.2109375, -8.3359375, -6.046875, -8.1796875, -7.55078125, -5.62890625, -7.4375, -7.94140625, -6.01953125, -6.58203125, -8.09375, -7.96484375, -4.80078125, -7.0625, -4.515625, -7.56640625, -5.38671875, -7.63671875, -6.8359375, -6.16796875, -4.8984375, -7.26171875, -7.6953125, -8.0703125, -6.3828125, -8.2265625, -8.046875, -4.96875, -7.33203125, -3.802734375, -7.60546875, -5.984375, -6.9765625, -5.55078125, -7.76953125, -8.0546875, -6.5703125, -5.40234375, -4.2265625, -7.64453125, -6.6328125, -8.3203125, -8.2109375, -6.78515625, -9.0859375, -6.66015625, -8.234375, -7.984375, -8.140625, -7.8671875, -7.7421875, -6.234375, -6.9296875, -7.8671875, -6.46875, -8.703125, -8.59375, -8.78125, -8.296875, -8.1328125, -7.58984375, -7.421875, -6.73046875, -5.61328125, -7.62890625, -7.83984375, -6.3828125, -7.6328125, -8.7890625, -6.48046875, -7.9453125, -6.84765625, -8.6328125, -8.453125, -6.390625, -8.28125, -5.046875, -5.00390625, -8.578125, -7.7734375, -8.9921875, -8.5234375, -7.52734375, -8.34375, -5.64453125, -10.3359375, -10.4453125, -10.4140625, -10.4453125, -10.4765625, -10.4765625, -10.421875, -10.453125, -10.4296875, -10.4375, -10.4609375, -10.46875, -10.4609375, -10.46875, -10.4765625, -10.46875, -10.4609375, -10.4609375, -10.46875, -10.4609375, -10.46875, -10.46875, -10.484375, -10.484375, -10.453125, -10.4765625, -10.4375, -10.4453125, -10.4453125, -10.46875, -10.453125, -10.4609375, -10.4765625, -10.4609375, -10.46875, -10.46875, -10.4765625, -10.4453125, -10.46875, -10.46875, -10.4765625, -10.453125, -10.4765625, -10.46875, -10.4609375, -10.4765625, -10.4609375, -10.4765625, -10.4296875, -10.484375, -10.4921875, -10.4921875, -10.4453125, -10.484375, -10.484375, -10.484375, -10.484375, -10.4765625, -10.4765625, -10.484375, -10.4765625, -10.46875, -10.46875, -10.46875, -10.4765625, -10.484375, -10.4765625, -10.46875, -10.46875, -10.46875, -10.4765625, -10.4609375, -10.4609375, -10.4609375, -10.4609375, -10.46875, -10.4765625, -10.484375, -10.484375, -10.46875, -10.4609375, -10.46875, -10.4609375, -10.4765625, -10.484375, -10.4765625, -10.4765625, -10.4765625, -10.4765625, -10.4765625, -10.4609375, -10.3828125, -10.46875, -10.46875, -10.4609375, -10.4609375, -10.4765625, -10.46875, -10.46875, -10.453125, -10.453125, -10.4609375, -10.453125, -10.4609375, -10.453125, -10.46875, -10.46875, -10.4765625, -10.4609375, -10.4609375, -10.4140625, -10.4609375, -10.46875, -10.3984375, -10.453125, -10.484375, -10.4921875, -10.328125, -10.421875, -10.421875, -10.4375, -10.453125, -10.46875, -10.4375, -10.4453125, -10.4609375, -10.453125, -10.453125, -10.4609375, -10.4609375, -10.4609375, -10.453125, -10.4296875, -10.46875, -10.4609375, -10.46875, -10.453125, -10.4375, -10.4609375, -10.4609375, -10.46875, -10.4375, -10.4765625, -10.484375, -10.453125, -10.4453125, -10.4453125, -10.4765625, -10.4765625, -10.4765625, -10.484375, -10.484375, -10.484375, -10.4765625, -10.4609375, -10.46875, -10.4765625, -10.46875, -10.46875, -10.4765625, -10.46875, -10.46875, -10.4765625, -10.4765625, -10.46875, -10.4765625, -10.46875, -10.4765625, -10.4765625, -10.4765625, -10.46875, -10.4765625, -10.46875, -10.4765625, -10.4765625, -10.484375, -10.484375, -10.4921875, -10.484375, -10.484375, -10.484375, -10.484375, -10.484375, -10.484375, -10.4765625, -10.46875, -10.46875, -10.4765625, -10.4765625, -10.4765625, -10.4765625, -10.46875, -10.4765625, -10.4765625, -10.46875, -10.46875, -10.46875, -10.4609375, -10.46875, -10.4765625, -10.484375, -10.484375, -10.4765625, -10.484375, -10.4765625, -10.4765625, -10.484375, -10.484375, -10.484375, -10.484375, -10.4765625, -10.4375, -10.4765625, -10.46875, -10.46875, -10.46875, -10.4765625, -10.46875, -10.4609375, -10.4609375, -10.4140625, -10.46875, -10.4609375, -10.46875, -10.4609375, -10.4609375, -10.4609375, -10.4609375, -10.453125, -10.46875, -10.4921875, -10.3828125, -10.4765625, -10.4609375, -10.46875, -10.4609375, -10.4765625, -10.46875, -10.4765625, -10.4609375, -10.453125, -10.4609375, -10.453125, -10.46875, -10.4609375, -10.4609375, -10.4609375, -10.4609375, -10.453125, -10.4609375, -10.453125, -10.4609375, -10.46875, -10.453125, -10.453125, -10.453125, -10.4609375, -10.4609375, -10.46875, -10.46875, -10.4375, -10.46875, -10.4765625, -10.4765625, -10.46875, -10.4609375, -10.4765625, -10.484375, -10.46875, -10.46875, -10.46875, -10.4765625, -10.46875, -10.46875, -10.46875, -10.4765625, -10.4765625, -10.4609375, -10.46875, -10.46875, -10.4609375, -10.46875, -10.4765625, -10.46875, -10.4609375, -10.46875, -10.4765625, -10.4765625, -10.4765625, -10.4921875, -10.4921875, -10.484375, -10.5, -10.5, -10.484375, -10.46875, -10.46875, -10.453125, -10.453125, -10.3359375, -10.4765625, -10.4765625, -10.46875, -10.46875, -10.4453125, -10.4609375, -10.453125, -10.453125, -10.453125, -10.4453125, -10.453125, -10.453125, -10.453125, -10.4609375, -10.46875, -10.46875, -10.4609375, -10.453125, -10.46875, -10.4765625, -10.4609375, -5.16796875, -5.64453125], "end_logits": [-2.830078125, -5.04296875, -5.50390625, -5.234375, -7.27734375, -8.0234375, -4.96484375, -6.74609375, -7.77734375, -5.99609375, -7.0390625, -2.830078125, -6.8203125, -6.6328125, -6.515625, -6.921875, -6.2265625, -6.96875, -7.80859375, -3.86328125, -7.33984375, -5.59375, -6.94921875, -1.966796875, -6.859375, -5.9765625, -7.13671875, -2.046875, -7.62109375, -7.4609375, -4.734375, -7.265625, -4.40625, -7.046875, -6.19140625, -4.0390625, -7.06640625, -6.70703125, -7.609375, -8.0546875, -6.28515625, -7.46484375, -6.78125, -7.07421875, -7.4765625, -7.01953125, -4.86328125, -7.16015625, -7.625, -5.8359375, -4.1796875, -4.7265625, -4.63671875, -4.67578125, -3.701171875, -6.7109375, -4.4375, -4.64453125, -6.7578125, -7.10546875, -7.52734375, -3.029296875, -1.873046875, -5.07421875, -5.7109375, -7.14453125, -1.859375, -4.58203125, -6.4921875, -6.09765625, -5.12109375, -7.47265625, -7.6640625, -5.66796875, -4.89453125, -3.67578125, -7.69140625, -5.5234375, -4.4140625, -6.3984375, -5.984375, 1.109375, 5.890625, 4.01953125, -5.76953125, -7.0859375, 0.78125, -0.693359375, -7.046875, -7.6640625, -6.51953125, -5.7578125, -6.6875, -8.140625, -6.59765625, -3.5234375, -3.181640625, -7.71484375, -6.97265625, -7.75, -6.734375, -7.10546875, -4.3828125, -5.8203125, -5.72265625, -7.34765625, -5.765625, -7.40625, -7.81640625, -6.74609375, -6.73046875, -6.55859375, -5.2109375, -7.453125, -7.8671875, -7.8671875, -4.94921875, -6.9765625, -6.14453125, -7.17578125, -1.623046875, -3.7890625, -7.1875, -8.234375, -7.34375, -5.62109375, -7.1875, -5.84375, -7.80859375, -8.03125, -8.15625, -5.0546875, -7.265625, -6.72265625, -7.33203125, -1.826171875, -2.904296875, -7.37109375, -5.63671875, -7.19921875, -7.58984375, -5.74609375, -6.86328125, -7.58984375, -2.337890625, -7.9765625, -7.58203125, -5.0078125, -7.64453125, -4.32421875, -7.26171875, -7.32421875, -5.59765625, -8.3984375, -8.390625, -5.76953125, -3.759765625, -4.3203125, -7.4140625, -7.37890625, -7.5078125, -7.78515625, -6.96875, -7.57421875, -7.66796875, -7.7578125, -7.375, -5.046875, -8.2265625, -8.046875, -5.97265625, -5.56640625, -7.84765625, -6.01171875, -5.6015625, -5.1953125, -7.6484375, -8.046875, -7.73046875, -8.1171875, -7.07421875, -5.4375, -7.46875, -6.17578125, -7.2578125, -6.51953125, -4.65234375, -4.6875, -2.830078125, -9.9140625, -9.890625, -9.90625, -9.8984375, -9.8671875, -9.859375, -9.9140625, -9.890625, -9.90625, -9.90625, -9.8828125, -9.875, -9.890625, -9.8828125, -9.875, -9.8828125, -9.890625, -9.8828125, -9.8828125, -9.8828125, -9.875, -9.8828125, -9.8671875, -9.859375, -9.890625, -9.8671875, -9.8984375, -9.8984375, -9.8984375, -9.875, -9.8984375, -9.8828125, -9.8671875, -9.890625, -9.890625, -9.8828125, -9.8828125, -9.90625, -9.875, -9.8828125, -9.859375, -9.8984375, -9.859375, -9.890625, -9.890625, -9.8671875, -9.890625, -9.8828125, -9.9140625, -9.859375, -9.8515625, -9.84375, -9.890625, -9.875, -9.859375, -9.859375, -9.8671875, -9.875, -9.8515625, -9.84375, -9.875, -9.8828125, -9.8828125, -9.8828125, -9.8671875, -9.8515625, -9.875, -9.859375, -9.8515625, -9.8671875, -9.8515625, -9.890625, -9.890625, -9.8515625, -9.859375, -9.890625, -9.8671875, -9.84375, -9.8359375, -9.875, -9.8828125, -9.8828125, -9.8828125, -9.859375, -9.8515625, -9.8671875, -9.8515625, -9.84375, -9.84375, -9.8359375, -9.875, -9.9140625, -9.859375, -9.875, -9.875, -9.875, -9.8515625, -9.8515625, -9.875, -9.875, -9.890625, -9.875, -9.8828125, -9.875, -9.8828125, -9.875, -9.8671875, -9.8671875, -9.890625, -9.890625, -9.9140625, -9.8828125, -9.875, -9.9140625, -9.890625, -9.859375, -9.8359375, -9.9140625, -9.8984375, -9.90625, -9.90625, -9.890625, -9.8671875, -9.90625, -9.8984375, -9.8828125, -9.8984375, -9.890625, -9.8828125, -9.890625, -9.890625, -9.890625, -9.9140625, -9.875, -9.890625, -9.8671875, -9.90625, -9.9140625, -9.875, -9.890625, -9.890625, -9.9140625, -9.875, -9.859375, -9.890625, -9.890625, -9.8984375, -9.8671875, -9.875, -9.859375, -9.859375, -9.859375, -9.859375, -9.875, -9.8984375, -9.875, -9.8671875, -9.8671875, -9.875, -9.8515625, -9.875, -9.875, -9.8671875, -9.859375, -9.8828125, -9.875, -9.859375, -9.8515625, -9.8515625, -9.8828125, -9.875, -9.875, -9.8671875, -9.859375, -9.859375, -9.8515625, -9.8359375, -9.859375, -9.859375, -9.875, -9.84375, -9.84375, -9.8671875, -9.8515625, -9.8359375, -9.8671875, -9.859375, -9.859375, -9.8515625, -9.8515625, -9.8515625, -9.8515625, -9.8515625, -9.859375, -9.8515625, -9.8828125, -9.859375, -9.8515625, -9.8828125, -9.8515625, -9.8359375, -9.859375, -9.8515625, -9.8671875, -9.8671875, -9.8671875, -9.859375, -9.84375, -9.84375, -9.8359375, -9.828125, -9.8984375, -9.8515625, -9.8671875, -9.8671875, -9.8515625, -9.8671875, -9.859375, -9.8828125, -9.875, -9.921875, -9.875, -9.8828125, -9.890625, -9.890625, -9.890625, -9.8828125, -9.8828125, -9.8984375, -9.875, -9.8515625, -9.9296875, -9.875, -9.8828125, -9.875, -9.875, -9.859375, -9.8671875, -9.8671875, -9.875, -9.890625, -9.875, -9.8828125, -9.8671875, -9.875, -9.875, -9.875, -9.8671875, -9.8984375, -9.8671875, -9.890625, -9.875, -9.859375, -9.8984375, -9.8828125, -9.859375, -9.875, -9.859375, -9.8515625, -9.859375, -9.9140625, -9.8515625, -9.8515625, -9.8359375, -9.84375, -9.84375, -9.828125, -9.84375, -9.8671875, -9.859375, -9.84375, -9.8359375, -9.8359375, -9.859375, -9.8359375, -9.8203125, -9.859375, -9.8515625, -9.8515625, -9.84375, -9.8359375, -9.8515625, -9.84375, -9.859375, -9.84375, -9.8515625, -9.8515625, -9.8359375, -9.8203125, -9.859375, -9.8515625, -9.859375, -9.8125, -9.8125, -9.859375, -9.828125, -9.8125, -9.8125, -9.8203125, -9.921875, -9.8515625, -9.8359375, -9.8359375, -9.84375, -9.84375, -9.8515625, -9.84375, -9.8828125, -9.859375, -9.859375, -9.859375, -9.859375, -9.8515625, -9.8359375, -9.84375, -9.8671875, -9.8828125, -9.8671875, -9.859375, -9.8515625, -9.8671875, -3.4765625, -2.833984375]} |
{"context": "Some of the oldest schools in South Africa are private church schools that were established by missionaries in the early nineteenth century. The private sector has grown ever since. After the abolition of apartheid, the laws governing private education in South Africa changed significantly. The South African Schools Act of 1996 recognises two categories of schools: \"public\" (state-controlled) and \"independent\" (which includes traditional private schools and schools which are privately governed[clarification needed].)", "question": "What has happened to the public education sector when managed by the government?", "answers.text": [""], "answers.answer_start": [-1], "feat_id": ["5a67aa48f038b7001ab0c402"], "feat_title": ["Private_school"], "start_logits": [-5.9765625, -6.22265625, -7.5, -6.8359375, -7.65234375, -7.77734375, -8.703125, -8.921875, -9.3984375, -7.40625, -7.9296875, -8.4765625, -8.3203125, -8.796875, -9.71875, -5.9765625, -5.03515625, -7.5234375, -5.7734375, -6.57421875, -6.3671875, -7.9296875, -5.5234375, -6.5703125, -7.328125, -4.4375, -6.796875, -6.67578125, -7.80078125, -7.40625, -5.91015625, -7.6796875, -5.484375, -7.5, -7.31640625, -6.76953125, -6.24609375, -7.40625, -5.9765625, -1.400390625, -1.365234375, -5.109375, -3.39453125, -1.400390625, -6.421875, -6.86328125, -5.43359375, -1.072265625, -1.9482421875, -0.912109375, -6.2421875, -3.09375, -5.7109375, -1.830078125, -1.716796875, -5.89453125, -1.1689453125, -5.05859375, -6.66015625, -4.6875, -5.91015625, -2.26171875, -4.00390625, -5.87109375, -0.87255859375, -1.439453125, -6.42578125, -4.07421875, -4.5078125, -7.0625, -3.0078125, -2.615234375, -5.95703125, -2.353515625, -4.00390625, -6.55859375, -3.21484375, -5.62890625, -1.8486328125, -1.04296875, -7.40625, -1.6181640625, 1.2197265625, -7.39453125, -3.650390625, -6.6953125, -7.24609375, -5.30859375, -5.078125, -8.6328125, -7.26171875, -6.98828125, -7.88671875, -5.73046875, -5.60546875, -7.71484375, -8.625, -6.0078125, -8.265625, -7.68359375, -3.763671875, -7.8046875, -7.6953125, -7.48046875, -8.1328125, -8.5546875, -8.703125, -9.09375, -6.0, -7.23046875, -5.9765625, -10.2109375, -10.453125, -10.5, -10.46875, -10.4765625, -10.4765625, -10.453125, -10.46875, -10.4765625, -10.484375, -10.5, -10.4921875, -10.5078125, -10.4921875, -10.5078125, -10.4921875, -10.4609375, -10.4765625, -10.4296875, -10.4765625, -10.5078125, -10.4921875, -10.5078125, -10.46875, -10.46875, -10.4609375, -10.4609375, -10.4609375, -10.46875, -10.4375, -10.4921875, -10.53125, -10.5234375, -10.53125, -10.53125, -10.546875, -10.546875, -10.546875, -10.5, -10.5546875, -10.5390625, -10.5703125, -10.546875, -10.5625, -10.546875, -10.5625, -10.5546875, -10.5546875, -10.5546875, -10.546875, -10.5390625, -10.5390625, -10.5078125, -10.53125, -10.5390625, -10.5234375, -10.515625, -10.5234375, -10.53125, -10.5390625, -10.53125, -10.53125, -10.53125, -10.53125, -10.5234375, -10.5390625, -10.5546875, -10.5546875, -10.5546875, -10.5546875, -10.53125, -10.5234375, -10.5078125, -10.5234375, -10.515625, -10.5234375, -10.53125, -10.53125, -10.5234375, -10.5234375, -10.515625, -10.515625, -10.5078125, -10.4765625, -10.5, -10.5234375, -10.5, -10.5390625, -10.5, -10.5234375, -10.5, -10.5078125, -10.515625, -10.53125, -10.546875, -10.5546875, -10.5546875, -10.5234375, -10.53125, -10.546875, -10.5078125, -10.5078125, -10.5234375, -10.5234375, -10.53125, -10.5234375, -10.515625, -10.53125, -10.515625, -10.5, -10.5078125, -10.515625, -10.5390625, -10.5390625, -10.5234375, -10.53125, -10.546875, -10.515625, -10.53125, -10.5390625, -10.5234375, -10.5234375, -10.53125, -10.5625, -10.53125, -10.5546875, -10.5546875, -10.546875, -10.5390625, -10.5703125, -10.5625, -10.5625, -10.5703125, -10.484375, -10.5546875, -10.5390625, -10.53125, -10.53125, -10.5390625, -10.546875, -10.546875, -10.546875, -10.53125, -10.5625, -10.5546875, -10.546875, -10.546875, -10.546875, -10.5390625, -10.5390625, -10.53125, -10.5390625, -10.5546875, -10.5390625, -10.546875, -10.5390625, -10.53125, -10.5390625, -10.5546875, -10.5625, -10.5703125, -10.53125, -10.546875, -10.546875, -10.5390625, -10.5234375, -10.53125, -10.5078125, -10.546875, -10.5546875, -10.5390625, -10.5390625, -10.53125, -10.515625, -10.53125, -10.515625, -10.5234375, -10.5234375, -10.53125, -10.5234375, -10.5234375, -10.5078125, -10.4921875, -10.5078125, -10.5078125, -10.5, -10.5234375, -10.546875, -10.546875, -10.546875, -10.53125, -10.53125, -10.53125, -10.5234375, -10.53125, -10.5546875, -10.546875, -10.53125, -10.5546875, -10.5078125, -10.5234375, -10.5, -10.5078125, -10.4921875, -10.5, -10.5390625, -10.5390625, -10.53125, -10.5078125, -10.5234375, -10.515625, -10.5078125, -10.5078125, -10.515625, -10.515625, -10.515625, -10.515625, -10.515625, -10.5390625, -10.5390625, -10.53125, -10.53125, -10.5546875, -10.546875, -10.546875, -10.5625, -10.453125, -10.5234375, -10.515625, -10.53125, -10.5390625, -10.53125, -10.5234375, -10.5234375, -10.546875, -10.5546875, -10.53125, -10.5390625, -10.5546875, -10.5546875, -10.5390625, -10.53125, -10.5390625, -10.5546875, -10.546875, -10.546875, -10.546875, -10.5546875, -10.5625, -10.5703125, -10.5546875, -10.5546875, -10.5546875, -10.5546875, -10.5546875, -10.5390625, -10.546875, -10.546875, -10.546875, -10.5625, -10.5546875, -10.53125, -10.5390625, -10.5390625, -10.5546875, -10.546875, -10.53125, -10.5390625, -10.53125, -10.53125, -10.515625, -10.5234375, -10.53125, -10.53125, -10.53125, -10.53125, -10.53125, -10.53125, -10.5234375, -10.53125, -10.546875, -10.5546875, -10.5625, -10.453125, -10.5390625, -10.515625, -10.515625, -10.5078125, -10.5234375, -10.5390625, -10.5390625, -10.5234375, -10.5078125, -10.5, -10.5078125, -10.5234375, -10.515625, -10.5078125, -10.5078125, -10.5078125, -10.5, -10.5, -10.5, -10.5234375, -10.53125, -10.515625, -10.5234375, -10.5234375, -10.5078125, -10.5390625, -10.546875, -10.546875, -10.5546875, -10.421875, -10.5078125, -10.5078125, -10.53125, -10.515625, -10.5234375, -10.5078125, -10.5234375, -10.5, -10.4921875, -10.515625, -10.5234375, -10.53125, -10.5234375, -10.53125, -10.5078125, -10.53125, -10.515625, -10.5078125, -10.515625, -10.5390625, -10.5390625, -10.546875, -10.5390625, -10.5390625, -10.5625, -10.5625, -10.5625, -10.5625, -10.53125, -10.5390625, -10.546875, -10.5546875, -10.53125, -10.5390625, -10.5625, -10.5546875, -10.5625, -10.5703125, -10.578125, -10.40625, -10.5390625, -10.546875, -10.5234375, -10.5625, -10.5, -10.5234375, -10.546875, -10.5390625, -10.5546875, -10.5390625, -10.546875, -10.5546875, -10.546875, -10.53125, -10.5703125, -10.5703125, -10.5703125, -10.5390625, -10.5390625, -10.53125, -10.5234375, -10.5234375, -10.53125, -10.5234375, -10.53125, -10.53125, -10.515625, -10.5078125, -10.515625, -10.5, -10.5078125, -10.5078125, -10.5078125, -10.5078125, -10.4375, -10.5, -10.5078125, -10.5, -10.484375, -10.53125, -10.5390625, -10.53125, -10.5234375, -10.53125, -10.546875, -4.1015625, -5.98828125], "end_logits": [-2.390625, -6.46875, -7.15234375, -7.17578125, -7.359375, -8.09375, -8.1640625, -7.55078125, -7.203125, -7.9296875, -7.61328125, -7.7734375, -8.2109375, -7.3125, -7.56640625, -2.390625, -6.546875, -7.23046875, -7.17578125, -6.55078125, -5.26953125, -7.24609375, -6.57421875, -3.13671875, -7.12890625, -4.77734375, -5.63671875, -4.90625, -6.57421875, -7.03125, -5.56640625, -7.18359375, -4.31640625, -7.3203125, -7.46875, -7.29296875, -6.53125, -4.875, -2.390625, -6.96484375, -4.12890625, -4.3203125, -6.7890625, -0.63671875, -4.9765625, -1.1357421875, -0.685546875, -5.24609375, -6.06640625, -3.1640625, -5.9453125, -0.412841796875, -2.650390625, -6.53515625, -3.3203125, -6.46484375, -4.19921875, -3.734375, -7.0390625, -6.42578125, -3.12109375, -3.45703125, -0.31640625, -0.02587890625, -5.953125, -6.12890625, -4.85546875, -4.3203125, -3.138671875, -6.6640625, -1.9892578125, -5.15625, -4.92578125, -4.28515625, -3.263671875, -6.80859375, -1.83203125, -5.15625, -5.9765625, -1.75390625, -3.095703125, -6.1953125, -2.57421875, -7.375, 2.326171875, -1.421875, -6.8515625, -7.375, -3.62109375, -2.78125, -7.11328125, -8.2265625, -7.359375, -7.17578125, -6.12109375, -4.19921875, -8.0078125, -7.125, -8.265625, -8.125, -4.296875, -2.962890625, -7.36328125, -8.1484375, -7.921875, -7.4453125, -6.41015625, -5.1484375, -2.337890625, -3.81640625, -2.390625, -9.90625, -9.8671875, -9.84375, -9.859375, -9.859375, -9.8515625, -9.8515625, -9.859375, -9.8515625, -9.859375, -9.84375, -9.8515625, -9.84375, -9.84375, -9.8359375, -9.8359375, -9.84375, -9.84375, -9.875, -9.8515625, -9.8515625, -9.859375, -9.8515625, -9.8515625, -9.859375, -9.8515625, -9.859375, -9.859375, -9.859375, -9.8828125, -9.875, -9.8359375, -9.84375, -9.8359375, -9.8125, -9.8046875, -9.8125, -9.8203125, -9.84375, -9.8203125, -9.828125, -9.8046875, -9.8125, -9.8046875, -9.8125, -9.796875, -9.8203125, -9.8203125, -9.8046875, -9.8203125, -9.8359375, -9.8125, -9.84375, -9.8203125, -9.8125, -9.8203125, -9.8359375, -9.8203125, -9.828125, -9.8203125, -9.8046875, -9.8046875, -9.796875, -9.7890625, -9.796875, -9.796875, -9.765625, -9.7734375, -9.7734375, -9.7421875, -9.78125, -9.7890625, -9.796875, -9.7890625, -9.8203125, -9.8125, -9.8046875, -9.7890625, -9.8125, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.828125, -9.828125, -9.8203125, -9.828125, -9.8046875, -9.8203125, -9.8125, -9.8203125, -9.828125, -9.828125, -9.8203125, -9.8125, -9.8046875, -9.8046875, -9.8125, -9.8046875, -9.796875, -9.8125, -9.8125, -9.8125, -9.8203125, -9.8125, -9.8125, -9.8203125, -9.8203125, -9.828125, -9.828125, -9.828125, -9.828125, -9.8203125, -9.8203125, -9.828125, -9.828125, -9.8125, -9.828125, -9.8203125, -9.8203125, -9.828125, -9.828125, -9.828125, -9.8125, -9.828125, -9.8125, -9.8046875, -9.796875, -9.8125, -9.8046875, -9.8046875, -9.8046875, -9.7890625, -9.8125, -9.8046875, -9.8125, -9.8125, -9.828125, -9.828125, -9.8203125, -9.8203125, -9.8203125, -9.828125, -9.8203125, -9.8203125, -9.8203125, -9.828125, -9.828125, -9.828125, -9.8359375, -9.8359375, -9.828125, -9.828125, -9.8359375, -9.8203125, -9.828125, -9.8359375, -9.828125, -9.8203125, -9.8125, -9.7890625, -9.8125, -9.8125, -9.8046875, -9.8046875, -9.8125, -9.8203125, -9.828125, -9.8203125, -9.8046875, -9.8125, -9.8046875, -9.8203125, -9.8203125, -9.8046875, -9.828125, -9.8203125, -9.8125, -9.8125, -9.8046875, -9.8046875, -9.8125, -9.8203125, -9.8125, -9.8203125, -9.8359375, -9.8203125, -9.8046875, -9.796875, -9.796875, -9.8046875, -9.796875, -9.7890625, -9.796875, -9.796875, -9.7890625, -9.7890625, -9.8046875, -9.7734375, -9.8046875, -9.8046875, -9.8125, -9.8203125, -9.828125, -9.828125, -9.8046875, -9.8046875, -9.8125, -9.8203125, -9.8125, -9.8125, -9.8125, -9.828125, -9.828125, -9.828125, -9.8203125, -9.8203125, -9.8203125, -9.8125, -9.8046875, -9.8046875, -9.8203125, -9.8046875, -9.8046875, -9.8046875, -9.7890625, -9.8125, -9.8125, -9.8125, -9.8203125, -9.8203125, -9.8203125, -9.8203125, -9.8203125, -9.8203125, -9.8125, -9.8125, -9.8125, -9.8125, -9.8125, -9.8203125, -9.8203125, -9.8203125, -9.8125, -9.8203125, -9.828125, -9.8203125, -9.828125, -9.8203125, -9.8125, -9.8125, -9.8125, -9.8125, -9.796875, -9.8125, -9.828125, -9.8203125, -9.8125, -9.8125, -9.8203125, -9.8125, -9.828125, -9.828125, -9.8359375, -9.8203125, -9.828125, -9.828125, -9.8203125, -9.8203125, -9.8125, -9.8359375, -9.8359375, -9.828125, -9.828125, -9.8203125, -9.8203125, -9.8046875, -9.796875, -9.8125, -9.8125, -9.7890625, -9.78125, -9.75, -9.8125, -9.7734375, -9.7890625, -9.8046875, -9.8125, -9.8125, -9.796875, -9.796875, -9.796875, -9.8046875, -9.8046875, -9.8203125, -9.796875, -9.8046875, -9.8125, -9.8046875, -9.8046875, -9.8125, -9.8203125, -9.828125, -9.8203125, -9.8125, -9.8203125, -9.8046875, -9.796875, -9.8203125, -9.8046875, -9.7890625, -9.7890625, -9.78125, -9.8125, -9.8046875, -9.8125, -9.8046875, -9.8203125, -9.8125, -9.8203125, -9.8125, -9.8203125, -9.828125, -9.828125, -9.8203125, -9.8203125, -9.8359375, -9.8203125, -9.8203125, -9.828125, -9.8359375, -9.84375, -9.8359375, -9.8203125, -9.828125, -9.8125, -9.8203125, -9.8203125, -9.8046875, -9.796875, -9.796875, -9.796875, -9.8125, -9.8203125, -9.8203125, -9.8125, -9.828125, -9.828125, -9.828125, -9.8203125, -9.8203125, -9.8125, -9.796875, -9.84375, -9.8359375, -9.8359375, -9.84375, -9.8203125, -9.859375, -9.8515625, -9.8359375, -9.8515625, -9.8203125, -9.8359375, -9.8203125, -9.796875, -9.8125, -9.8359375, -9.796875, -9.7890625, -9.78125, -9.7890625, -9.8046875, -9.796875, -9.8125, -9.8203125, -9.8046875, -9.8203125, -9.8125, -9.8046875, -9.8125, -9.8203125, -9.796875, -9.8203125, -9.8203125, -9.8125, -9.8125, -9.8125, -9.8359375, -9.8203125, -9.8046875, -9.8046875, -9.8203125, -9.796875, -9.7890625, -9.765625, -9.796875, -9.78125, -9.765625, -3.0703125, -2.404296875]} |
{"context": "The normal force is due to repulsive forces of interaction between atoms at close contact. When their electron clouds overlap, Pauli repulsion (due to fermionic nature of electrons) follows resulting in the force that acts in a direction normal to the surface interface between two objects.:93 The normal force, for example, is responsible for the structural integrity of tables and floors as well as being the force that responds whenever an external force pushes on a solid object. An example of the normal force in action is the impact force on an object crashing into an immobile surface.", "question": "What is the force that causes rigid strength in structures?", "answers.text": ["normal force", "normal", "normal force", "normal force"], "answers.answer_start": [298, 298, 298, 298], "feat_id": ["57379a4b1c456719005744d0", "57379a4b1c456719005744d0", "57379a4b1c456719005744d0", "57379a4b1c456719005744d0"], "feat_title": ["Force", "Force", "Force", "Force"], "start_logits": [-5.98828125, -3.904296875, -8.984375, -7.5625, -8.03125, -8.8984375, -8.6484375, -8.34375, -8.890625, -9.1171875, -9.34375, -10.1015625, -5.98828125, 3.123046875, 4.70703125, -2.115234375, -5.6640625, -3.875, -6.578125, -1.9892578125, -5.390625, -4.66796875, -7.48828125, -4.52734375, -6.70703125, -4.734375, -7.69921875, -6.5703125, -5.4375, -6.55078125, -4.1015625, -5.4140625, -2.87109375, -6.421875, -6.31640625, -7.08984375, -1.21484375, -6.078125, -3.861328125, -4.9375, -6.6484375, -5.25, -7.765625, -3.9140625, -6.6875, -7.390625, -6.828125, -8.2265625, -4.84375, -7.8203125, -6.53125, -5.29296875, -7.4765625, -4.53515625, -2.072265625, -7.8359375, -6.16015625, -7.16796875, -7.40234375, -6.40234375, -5.28515625, -8.3125, -7.4453125, -5.68359375, -6.81640625, -7.5625, -6.93359375, -6.0625, -6.0625, -4.37109375, -3.041015625, 4.51171875, 4.953125, -1.7861328125, -5.703125, -4.60546875, -5.93359375, -7.015625, -4.08984375, -2.8828125, -6.55859375, -4.06640625, -0.84033203125, -1.6796875, -7.6796875, -4.36328125, -7.99609375, -4.09765625, -5.6875, -6.0859375, -5.86328125, -2.75, -0.428466796875, -0.52734375, -4.82421875, -1.4658203125, -2.291015625, 0.72265625, 0.9140625, -2.6484375, -1.82421875, -5.58203125, -5.703125, -3.490234375, -4.69921875, -4.8046875, -4.77734375, -4.6796875, -6.765625, 0.9130859375, 1.6650390625, -3.94921875, -7.62890625, -6.37890625, -6.90234375, -4.65234375, -1.6904296875, -5.01171875, -7.38671875, -6.671875, -6.63671875, -5.5078125, -7.97265625, -7.42578125, -6.625, -7.02734375, -5.890625, -7.6171875, -5.98828125, -10.2890625, -10.4453125, -10.4609375, -10.46875, -10.453125, -10.4296875, -10.4375, -10.3984375, -10.359375, -10.453125, -10.46875, -10.390625, -10.375, -10.484375, -10.4609375, -10.46875, -10.46875, -10.4609375, -10.46875, -10.515625, -10.515625, -10.5234375, -10.53125, -10.5234375, -10.515625, -10.515625, -10.5234375, -10.515625, -10.5078125, -10.515625, -10.515625, -10.5234375, -10.5234375, -10.5234375, -10.5234375, -10.5234375, -10.515625, -10.5234375, -10.515625, -10.515625, -10.5234375, -10.5234375, -10.5234375, -10.53125, -10.53125, -10.5234375, -10.53125, -10.53125, -10.53125, -10.4453125, -10.546875, -10.5390625, -10.53125, -10.5390625, -10.5390625, -10.5390625, -10.53125, -10.5390625, -10.5234375, -10.5234375, -10.5, -10.515625, -10.515625, -10.5234375, -10.5234375, -10.5234375, -10.5234375, -10.5234375, -10.5234375, -10.5234375, -10.5234375, -10.5234375, -10.53125, -10.5390625, -10.53125, -10.5390625, -10.53125, -10.5390625, -10.5390625, -10.5234375, -10.53125, -10.5390625, -10.546875, -10.546875, -10.546875, -10.5390625, -10.53125, -10.5234375, -10.53125, -10.53125, -10.5234375, -10.53125, -10.5390625, -10.5234375, -10.53125, -10.5234375, -10.5234375, -10.515625, -10.5234375, -10.515625, -10.5234375, -10.5390625, -10.5234375, -10.515625, -10.5234375, -10.53125, -10.5234375, -10.515625, -10.515625, -10.5234375, -10.53125, -10.53125, -10.515625, -10.5390625, -10.5390625, -10.5390625, -10.5390625, -10.546875, -10.53125, -10.53125, -10.5390625, -10.5234375, -10.5234375, -10.5390625, -10.53125, -10.53125, -10.5234375, -10.53125, -10.5390625, -10.53125, -10.5390625, -10.53125, -10.5390625, -10.5390625, -10.53125, -10.53125, -10.5390625, -10.5390625, -10.53125, -10.53125, -10.53125, -10.5390625, -10.5390625, -10.5390625, -10.546875, -10.5390625, -10.546875, -10.5390625, -10.546875, -10.5390625, -10.546875, -10.5390625, -10.5234375, -10.53125, -10.4921875, -10.5234375, -10.53125, -10.53125, -10.5390625, -10.5234375, -10.5234375, -10.5390625, -10.515625, -10.5390625, -10.53125, -10.546875, -10.5390625, -10.5390625, -10.546875, -10.5390625, -10.5390625, -10.515625, -10.5234375, -10.5234375, -10.546875, -10.546875, -10.546875, -10.5546875, -10.34375, -10.515625, -10.5390625, -10.4921875, -10.5390625, -10.53125, -10.5390625, -10.53125, -10.53125, -10.5234375, -10.515625, -10.5390625, -10.5234375, -10.5390625, -10.53125, -10.546875, -10.5390625, -10.5390625, -10.546875, -10.546875, -10.5234375, -10.5390625, -10.515625, -10.5390625, -10.5390625, -10.5390625, -10.546875, -10.5234375, -10.53125, -10.5390625, -10.5390625, -10.5390625, -10.5390625, -10.53125, -10.5390625, -10.5390625, -10.53125, -10.53125, -10.5234375, -10.53125, -10.5234375, -10.53125, -10.5390625, -10.5390625, -10.53125, -10.5390625, -10.5390625, -10.5390625, -10.53125, -10.53125, -10.53125, -10.53125, -10.5390625, -10.5390625, -10.53125, -10.53125, -10.5390625, -10.546875, -10.546875, -10.546875, -10.5546875, -10.546875, -10.5546875, -10.546875, -10.5390625, -10.5390625, -10.53125, -10.53125, -10.546875, -10.53125, -10.53125, -10.53125, -10.53125, -10.5390625, -10.5390625, -10.5390625, -10.53125, -10.5390625, -10.5390625, -10.53125, -10.5390625, -10.53125, -10.53125, -10.53125, -10.53125, -10.5390625, -10.53125, -10.53125, -10.5390625, -10.546875, -10.5390625, -10.5390625, -10.546875, -10.53125, -10.53125, -10.4921875, -10.5234375, -10.5234375, -10.515625, -10.5234375, -10.4765625, -10.5234375, -10.53125, -10.53125, -10.5234375, -10.53125, -10.53125, -10.53125, -10.5390625, -10.5390625, -10.5234375, -10.53125, -10.5390625, -10.53125, -10.4609375, -10.53125, -10.5078125, -10.5234375, -10.53125, -10.5390625, -10.5390625, -10.53125, -10.5234375, -10.53125, -10.5234375, -10.515625, -10.53125, -10.515625, -10.5234375, -10.5234375, -10.5078125, -10.515625, -10.5078125, -10.515625, -10.5234375, -10.5078125, -10.515625, -10.5234375, -10.5234375, -10.5234375, -10.5234375, -10.5234375, -10.5234375, -10.515625, -10.53125, -10.53125, -10.53125, -10.5390625, -10.5390625, -10.5390625, -10.53125, -10.5390625, -10.515625, -10.53125, -10.5390625, -10.53125, -10.5390625, -10.5234375, -10.5390625, -10.53125, -10.53125, -10.53125, -10.5234375, -10.515625, -10.515625, -10.5234375, -10.53125, -10.5234375, -10.5234375, -10.5234375, -10.5234375, -10.53125, -10.546875, -10.5546875, -10.546875, -10.546875, -10.5390625, -10.5390625, -10.53125, -10.5234375, -10.53125, -10.5234375, -10.515625, -10.5234375, -10.4609375, -10.5234375, -10.5234375, -10.5234375, -10.5234375, -10.5, -10.515625, -10.5234375, -10.53125, -10.5234375, -10.53125, -10.515625, -10.515625, -10.53125, -10.53125, -10.546875, -10.5234375, -10.5390625, -10.5390625, -6.62109375, -5.98828125], "end_logits": [-1.650390625, -3.162109375, -6.703125, -8.21875, -7.1484375, -8.21875, -8.4921875, -7.91796875, -5.703125, -8.0234375, -6.5703125, -6.6484375, -1.650390625, -2.8671875, 4.14453125, 5.19921875, -4.71484375, -5.6875, -6.40234375, -5.01953125, -2.35546875, -1.443359375, -5.703125, -2.12109375, -5.3046875, -1.7109375, -5.80859375, -5.25390625, -1.1728515625, -2.453125, -6.51171875, -6.02734375, -3.712890625, -3.125, -3.494140625, -5.30859375, -4.2421875, -3.865234375, -4.390625, -0.552734375, -6.06640625, -7.00390625, -7.72265625, -6.03515625, -5.7265625, -5.1796875, -4.8125, -7.0625, -2.291015625, -4.234375, -3.7421875, -6.25390625, -7.17578125, -6.7421875, -2.20703125, -7.53515625, -6.71875, -7.515625, -7.48828125, -5.35546875, -4.5078125, -7.2890625, -6.90625, -4.328125, -3.85546875, -6.75390625, -5.99609375, -2.265625, -3.265625, -6.1171875, -3.640625, -1.861328125, 4.03515625, 6.53125, 1.1025390625, -6.4296875, -3.798828125, -1.890625, -5.74609375, -3.9296875, -5.2734375, -6.15234375, -2.30859375, 1.09375, -5.92578125, -2.1015625, -6.86328125, -0.25, -5.8203125, -4.59375, -5.15625, -5.84375, -5.4921875, -2.255859375, -6.64453125, -3.841796875, -5.5, -4.80859375, -1.259765625, 1.509765625, 1.7939453125, -2.330078125, -3.318359375, -0.873046875, 2.279296875, 0.7294921875, -6.46484375, -5.796875, -7.45703125, -4.328125, 0.6220703125, 2.416015625, -6.8359375, -4.23828125, -6.703125, -6.55078125, -1.841796875, -1.4208984375, -6.45703125, -6.37890625, -3.84375, -4.4296875, -6.49609375, -6.9296875, -7.33203125, -4.2734375, -2.201171875, -2.734375, -1.6513671875, -9.796875, -9.7421875, -9.75, -9.7421875, -9.71875, -9.6953125, -9.765625, -9.671875, -9.625, -9.796875, -9.7890625, -9.7109375, -9.6796875, -9.7890625, -9.7578125, -9.78125, -9.7578125, -9.7265625, -9.75, -9.765625, -9.7734375, -9.734375, -9.796875, -9.7578125, -9.75, -9.8359375, -9.7890625, -9.796875, -9.8359375, -9.8515625, -9.8125, -9.7890625, -9.828125, -9.8203125, -9.8203125, -9.828125, -9.8203125, -9.828125, -9.8359375, -9.8125, -9.8125, -9.8203125, -9.828125, -9.8359375, -9.828125, -9.78125, -9.75, -9.7578125, -9.7421875, -9.859375, -9.8125, -9.828125, -9.828125, -9.8046875, -9.8046875, -9.78125, -9.8125, -9.8359375, -9.859375, -9.84375, -9.8828125, -9.859375, -9.8515625, -9.8359375, -9.8125, -9.828125, -9.8203125, -9.8515625, -9.859375, -9.859375, -9.8515625, -9.84375, -9.84375, -9.8203125, -9.8125, -9.8046875, -9.8359375, -9.8359375, -9.828125, -9.84375, -9.8359375, -9.8046875, -9.78125, -9.765625, -9.78125, -9.8046875, -9.828125, -9.8359375, -9.8359375, -9.8203125, -9.8515625, -9.828125, -9.8203125, -9.8359375, -9.8359375, -9.84375, -9.84375, -9.8515625, -9.828125, -9.8515625, -9.8125, -9.8125, -9.8203125, -9.8203125, -9.8359375, -9.84375, -9.8515625, -9.8515625, -9.8203125, -9.8046875, -9.8046875, -9.78125, -9.84375, -9.8046875, -9.828125, -9.796875, -9.8046875, -9.8046875, -9.75, -9.8359375, -9.84375, -9.8671875, -9.859375, -9.8359375, -9.859375, -9.828125, -9.84375, -9.8515625, -9.8359375, -9.828125, -9.828125, -9.8515625, -9.8515625, -9.859375, -9.859375, -9.84375, -9.8359375, -9.8125, -9.8203125, -9.8125, -9.84375, -9.828125, -9.84375, -9.84375, -9.8125, -9.8125, -9.78125, -9.8125, -9.765625, -9.796875, -9.7890625, -9.84375, -9.8515625, -9.8515625, -9.890625, -9.8515625, -9.828125, -9.8359375, -9.8203125, -9.828125, -9.859375, -9.84375, -9.859375, -9.8359375, -9.8359375, -9.8203125, -9.8125, -9.8203125, -9.8359375, -9.84375, -9.8359375, -9.859375, -9.8515625, -9.84375, -9.7890625, -9.7578125, -9.765625, -9.7265625, -9.828125, -9.8359375, -9.8203125, -9.84375, -9.828125, -9.84375, -9.828125, -9.8203125, -9.8125, -9.859375, -9.8671875, -9.84375, -9.8515625, -9.828125, -9.84375, -9.8046875, -9.8125, -9.8046875, -9.796875, -9.8203125, -9.84375, -9.8359375, -9.8515625, -9.828125, -9.796875, -9.8046875, -9.78125, -9.828125, -9.8359375, -9.828125, -9.8046875, -9.796875, -9.7578125, -9.78125, -9.796875, -9.8046875, -9.8359375, -9.828125, -9.84375, -9.8203125, -9.828125, -9.8203125, -9.8125, -9.8203125, -9.828125, -9.8203125, -9.8125, -9.8203125, -9.796875, -9.8046875, -9.8203125, -9.8046875, -9.8203125, -9.828125, -9.859375, -9.84375, -9.8125, -9.7734375, -9.796875, -9.765625, -9.7734375, -9.828125, -9.8046875, -9.8046875, -9.84375, -9.8359375, -9.828125, -9.84375, -9.8125, -9.8359375, -9.84375, -9.84375, -9.8359375, -9.8125, -9.8203125, -9.8125, -9.8125, -9.84375, -9.84375, -9.8515625, -9.8515625, -9.796875, -9.78125, -9.7890625, -9.78125, -9.796875, -9.828125, -9.828125, -9.7890625, -9.75, -9.7890625, -9.75, -9.7578125, -9.84375, -9.8359375, -9.875, -9.84375, -9.8203125, -9.8203125, -9.8125, -9.890625, -9.8515625, -9.828125, -9.8203125, -9.8125, -9.8203125, -9.8203125, -9.796875, -9.828125, -9.828125, -9.84375, -9.796875, -9.7890625, -9.7734375, -9.859375, -9.8046875, -9.828125, -9.8046875, -9.796875, -9.7734375, -9.78125, -9.7890625, -9.828125, -9.8203125, -9.8203125, -9.8359375, -9.8125, -9.828125, -9.8203125, -9.8203125, -9.84375, -9.8203125, -9.8359375, -9.8046875, -9.8046875, -9.8125, -9.8125, -9.8125, -9.828125, -9.8046875, -9.796875, -9.8046875, -9.7890625, -9.7734375, -9.7734375, -9.78125, -9.7734375, -9.7578125, -9.796875, -9.796875, -9.84375, -9.8125, -9.8515625, -9.84375, -9.828125, -9.828125, -9.8046875, -9.796875, -9.796875, -9.8203125, -9.828125, -9.8125, -9.828125, -9.828125, -9.8203125, -9.828125, -9.828125, -9.84375, -9.828125, -9.796875, -9.7890625, -9.7734375, -9.75, -9.78125, -9.796875, -9.78125, -9.8203125, -9.7890625, -9.8125, -9.8046875, -9.8125, -9.8515625, -9.859375, -9.859375, -9.90625, -9.8515625, -9.8359375, -9.828125, -9.8203125, -9.8828125, -9.8671875, -9.84375, -9.84375, -9.8515625, -9.796875, -9.8203125, -9.8203125, -9.78125, -9.796875, -9.7890625, -9.84375, -9.8046875, -9.7734375, -3.79296875, -1.650390625]} |
{"context": "Some of the oldest schools in South Africa are private church schools that were established by missionaries in the early nineteenth century. The private sector has grown ever since. After the abolition of apartheid, the laws governing private education in South Africa changed significantly. The South African Schools Act of 1996 recognises two categories of schools: \"public\" (state-controlled) and \"independent\" (which includes traditional private schools and schools which are privately governed[clarification needed].)", "question": "In what year was the South African Schools Act passed?", "answers.text": ["1996", "1996", "1996"], "answers.answer_start": [325, 325, 325], "feat_id": ["5727515f708984140094dc12", "5727515f708984140094dc12", "5727515f708984140094dc12"], "feat_title": ["Private_school", "Private_school", "Private_school"], "start_logits": [-6.5625, -2.748046875, -2.85546875, -6.73046875, -7.8359375, -7.60546875, -7.81640625, -8.1171875, -8.1640625, -8.2109375, -6.98828125, -8.7265625, -6.5625, -6.09375, -7.7265625, -5.8046875, -7.03125, -7.15234375, -8.0234375, -6.23046875, -6.7265625, -7.66015625, -6.30859375, -7.1640625, -7.12890625, -7.85546875, -7.4453125, -6.99609375, -7.640625, -5.7578125, -6.01171875, -5.0859375, -5.12109375, -3.625, -6.796875, -7.4921875, -6.63671875, -6.37109375, -7.98046875, -7.515625, -7.17578125, -7.578125, -7.4765625, -6.90625, -5.15234375, -5.76953125, -5.3359375, -7.1953125, -4.83203125, -7.5078125, -5.9921875, -4.98828125, -7.39453125, -5.8828125, -6.921875, -7.5078125, -6.43359375, -6.6875, -6.3515625, -6.41796875, -6.5625, -0.2783203125, -1.400390625, -5.453125, -3.556640625, -3.46484375, -1.267578125, 8.2890625, -5.50390625, -7.59375, -6.58203125, -7.21484375, -8.4921875, -6.78125, -8.453125, -6.88671875, -6.5234375, -8.5703125, -7.42578125, -5.91796875, -7.796875, -7.9140625, -8.3125, -8.9296875, -7.57421875, -6.7421875, -8.3125, -8.125, -8.109375, -8.1875, -8.046875, -7.98046875, -8.21875, -9.09375, -7.7265625, -9.0546875, -8.84375, -7.5859375, -8.34375, -7.6015625, -7.97265625, -8.234375, -8.4296875, -8.4140625, -8.703125, -6.140625, -7.9453125, -6.5625, -10.546875, -10.5859375, -10.5859375, -10.546875, -10.5703125, -10.5625, -10.546875, -10.5390625, -10.59375, -10.609375, -10.6015625, -10.6015625, -10.5859375, -10.6015625, -10.6015625, -10.5859375, -10.59375, -10.609375, -10.6171875, -10.6171875, -10.5859375, -10.6015625, -10.59375, -10.5703125, -10.578125, -10.5703125, -10.578125, -10.578125, -10.5859375, -10.59375, -10.609375, -10.6171875, -10.5859375, -10.6171875, -10.625, -10.6328125, -10.625, -10.6171875, -10.6328125, -10.625, -10.625, -10.6328125, -10.6328125, -10.6328125, -10.6328125, -10.640625, -10.65625, -10.640625, -10.640625, -10.625, -10.6171875, -10.6328125, -10.6328125, -10.625, -10.6328125, -10.6328125, -10.6171875, -10.625, -10.6171875, -10.625, -10.609375, -10.609375, -10.609375, -10.609375, -10.609375, -10.609375, -10.609375, -10.609375, -10.609375, -10.609375, -10.4609375, -10.5859375, -10.6015625, -10.59375, -10.5859375, -10.609375, -10.609375, -10.609375, -10.609375, -10.59375, -10.5859375, -10.5546875, -10.5703125, -10.5703125, -10.59375, -10.609375, -10.609375, -10.6015625, -10.5859375, -10.5703125, -10.5703125, -10.5859375, -10.578125, -10.5859375, -10.6015625, -10.609375, -10.609375, -10.59375, -10.59375, -10.5703125, -10.5859375, -10.5859375, -10.59375, -10.6015625, -10.6171875, -10.609375, -10.5703125, -10.5859375, -10.5859375, -10.59375, -10.578125, -10.578125, -10.609375, -10.6171875, -10.609375, -10.609375, -10.6015625, -10.5859375, -10.6015625, -10.6015625, -10.609375, -10.6015625, -10.609375, -10.6171875, -10.59375, -10.6171875, -10.6171875, -10.59375, -10.609375, -10.609375, -10.625, -10.609375, -10.6171875, -10.53125, -10.59375, -10.59375, -10.6171875, -10.6171875, -10.625, -10.6328125, -10.6171875, -10.6015625, -10.609375, -10.609375, -10.6171875, -10.6015625, -10.625, -10.6171875, -10.6171875, -10.609375, -10.6171875, -10.609375, -10.609375, -10.6015625, -10.6015625, -10.6015625, -10.6015625, -10.6171875, -10.6171875, -10.6171875, -10.609375, -10.6015625, -10.5859375, -10.59375, -10.6015625, -10.609375, -10.6015625, -10.609375, -10.609375, -10.6171875, -10.6015625, -10.6015625, -10.6015625, -10.5859375, -10.6015625, -10.6015625, -10.609375, -10.625, -10.6015625, -10.6171875, -10.59375, -10.5859375, -10.578125, -10.5703125, -10.5859375, -10.5859375, -10.6015625, -10.6015625, -10.6015625, -10.5859375, -10.5859375, -10.5625, -10.5703125, -10.5859375, -10.5859375, -10.59375, -10.59375, -10.6015625, -10.59375, -10.46875, -10.5625, -10.5703125, -10.5703125, -10.5703125, -10.578125, -10.609375, -10.609375, -10.59375, -10.59375, -10.5859375, -10.578125, -10.5625, -10.5625, -10.578125, -10.609375, -10.59375, -10.6015625, -10.5859375, -10.5859375, -10.578125, -10.578125, -10.59375, -10.609375, -10.609375, -10.609375, -10.6015625, -10.5, -10.578125, -10.578125, -10.6015625, -10.6015625, -10.609375, -10.609375, -10.6171875, -10.6015625, -10.6015625, -10.5859375, -10.6015625, -10.609375, -10.625, -10.6171875, -10.6171875, -10.609375, -10.609375, -10.6015625, -10.6171875, -10.6171875, -10.625, -10.6171875, -10.625, -10.6171875, -10.609375, -10.6171875, -10.609375, -10.6171875, -10.609375, -10.6171875, -10.6171875, -10.625, -10.6171875, -10.6171875, -10.625, -10.6328125, -10.640625, -10.6328125, -10.625, -10.609375, -10.6171875, -10.6171875, -10.6015625, -10.625, -10.6171875, -10.6171875, -10.609375, -10.6171875, -10.609375, -10.6015625, -10.6015625, -10.6015625, -10.609375, -10.6171875, -10.609375, -10.6171875, -10.609375, -10.5859375, -10.59375, -10.609375, -10.609375, -10.609375, -10.609375, -10.6171875, -10.6015625, -10.6015625, -10.6015625, -10.59375, -10.6015625, -10.6015625, -10.609375, -10.6015625, -10.546875, -10.546875, -10.5703125, -10.578125, -10.6015625, -10.59375, -10.6015625, -10.59375, -10.578125, -10.578125, -10.59375, -10.6015625, -10.609375, -10.6015625, -10.5234375, -10.578125, -10.5859375, -10.578125, -10.609375, -10.609375, -10.609375, -10.59375, -10.59375, -10.578125, -10.5703125, -10.59375, -10.609375, -10.609375, -10.6015625, -10.59375, -10.59375, -10.59375, -10.609375, -10.6015625, -10.609375, -10.5859375, -10.609375, -10.6015625, -10.609375, -10.6171875, -10.6171875, -10.6015625, -10.6015625, -10.609375, -10.6015625, -10.609375, -10.625, -10.6171875, -10.609375, -10.625, -10.625, -10.6171875, -10.6171875, -10.625, -10.59375, -10.609375, -10.609375, -10.609375, -10.5859375, -10.578125, -10.6015625, -10.625, -10.6171875, -10.6171875, -10.6171875, -10.609375, -10.625, -10.6171875, -10.609375, -10.6171875, -10.609375, -10.609375, -10.609375, -10.609375, -10.609375, -10.625, -10.609375, -10.625, -10.609375, -10.6015625, -10.6015625, -10.59375, -10.59375, -10.59375, -10.59375, -10.59375, -10.59375, -10.59375, -10.6015625, -10.5234375, -10.5703125, -10.5703125, -10.5859375, -10.578125, -10.578125, -10.578125, -10.5859375, -10.578125, -10.5703125, -10.5859375, -10.5703125, -10.546875, -10.59375, -4.33203125, -5.734375], "end_logits": [-2.53125, -3.232421875, -1.6552734375, -3.7890625, -5.48828125, -6.68359375, -6.44140625, -4.9921875, -5.95703125, -5.35546875, -6.34375, -4.1875, -2.53125, -6.3046875, -6.67578125, -5.77734375, -6.046875, -5.3828125, -6.70703125, -5.8984375, -2.962890625, -6.46875, -5.859375, -5.546875, -5.13671875, -6.11328125, -6.47265625, -6.06640625, -6.52734375, -4.61328125, -6.25, -6.03125, -6.24609375, -3.439453125, -3.990234375, -4.59375, -6.94921875, -6.40625, -5.86328125, -6.5546875, -6.09375, -6.73828125, -4.69921875, -4.359375, -5.9921875, -5.86328125, -4.87890625, -6.0625, -3.421875, -4.4921875, -6.6953125, -5.19140625, -7.234375, -6.16796875, -4.7734375, -6.8515625, -6.44140625, -3.59765625, -5.515625, -4.3125, -2.53125, -5.21875, -5.3828125, -3.880859375, -4.92578125, -3.814453125, -1.939453125, 8.8515625, -2.818359375, -4.18359375, -5.21484375, -5.24609375, -6.625, -3.861328125, -5.3046875, -6.85546875, -5.625, -5.34765625, -7.3984375, -5.671875, -5.93359375, -5.0703125, -4.58203125, -7.08984375, -7.1953125, -4.7734375, -4.23828125, -7.26953125, -7.875, -7.48046875, -7.4375, -6.9609375, -5.7734375, -7.79296875, -6.86328125, -7.37109375, -7.4296875, -6.828125, -4.52734375, -6.80078125, -7.11328125, -6.77734375, -6.625, -5.73828125, -4.796875, -3.3671875, -4.62109375, -2.53125, -9.640625, -9.6484375, -9.6484375, -9.6484375, -9.6484375, -9.6484375, -9.65625, -9.65625, -9.65625, -9.6484375, -9.6484375, -9.640625, -9.6484375, -9.6484375, -9.640625, -9.6484375, -9.6171875, -9.609375, -9.609375, -9.6484375, -9.6640625, -9.6640625, -9.640625, -9.609375, -9.625, -9.640625, -9.65625, -9.640625, -9.640625, -9.6484375, -9.6640625, -9.6640625, -9.6640625, -9.65625, -9.6484375, -9.6484375, -9.6484375, -9.6640625, -9.6328125, -9.640625, -9.640625, -9.6484375, -9.640625, -9.6328125, -9.6484375, -9.6328125, -9.6171875, -9.6171875, -9.640625, -9.6640625, -9.65625, -9.6484375, -9.640625, -9.6328125, -9.640625, -9.6328125, -9.65625, -9.640625, -9.640625, -9.640625, -9.6328125, -9.6328125, -9.640625, -9.6328125, -9.6328125, -9.640625, -9.625, -9.609375, -9.609375, -9.5859375, -9.6015625, -9.6171875, -9.6015625, -9.609375, -9.609375, -9.6015625, -9.6015625, -9.625, -9.6171875, -9.6328125, -9.6171875, -9.625, -9.609375, -9.6328125, -9.6328125, -9.625, -9.6171875, -9.625, -9.6484375, -9.6484375, -9.640625, -9.6328125, -9.6328125, -9.640625, -9.640625, -9.6484375, -9.640625, -9.65625, -9.6484375, -9.640625, -9.640625, -9.6328125, -9.6484375, -9.6328125, -9.625, -9.625, -9.640625, -9.6328125, -9.625, -9.640625, -9.640625, -9.65625, -9.6484375, -9.6484375, -9.65625, -9.6640625, -9.640625, -9.6484375, -9.6484375, -9.65625, -9.6484375, -9.65625, -9.6484375, -9.6484375, -9.6484375, -9.640625, -9.6484375, -9.65625, -9.65625, -9.65625, -9.640625, -9.6484375, -9.640625, -9.65625, -9.6484375, -9.6484375, -9.640625, -9.6484375, -9.640625, -9.6328125, -9.640625, -9.671875, -9.671875, -9.6640625, -9.6484375, -9.6484375, -9.65625, -9.6640625, -9.65625, -9.65625, -9.65625, -9.671875, -9.671875, -9.65625, -9.65625, -9.6640625, -9.671875, -9.6640625, -9.6484375, -9.6640625, -9.65625, -9.6640625, -9.6640625, -9.65625, -9.6484375, -9.640625, -9.6484375, -9.640625, -9.640625, -9.6328125, -9.6484375, -9.6484375, -9.640625, -9.640625, -9.640625, -9.640625, -9.640625, -9.6328125, -9.640625, -9.6171875, -9.6484375, -9.6328125, -9.6328125, -9.6328125, -9.6328125, -9.6328125, -9.640625, -9.6328125, -9.6484375, -9.65625, -9.65625, -9.640625, -9.640625, -9.65625, -9.65625, -9.6484375, -9.640625, -9.6171875, -9.6171875, -9.6171875, -9.640625, -9.6328125, -9.6328125, -9.625, -9.6328125, -9.6328125, -9.640625, -9.6484375, -9.65625, -9.640625, -9.6328125, -9.6171875, -9.625, -9.6484375, -9.640625, -9.6640625, -9.640625, -9.65625, -9.6484375, -9.6484375, -9.6484375, -9.65625, -9.65625, -9.65625, -9.640625, -9.640625, -9.640625, -9.6484375, -9.640625, -9.6484375, -9.640625, -9.640625, -9.6484375, -9.6484375, -9.6640625, -9.6484375, -9.6484375, -9.65625, -9.6484375, -9.6484375, -9.65625, -9.6484375, -9.6640625, -9.65625, -9.6484375, -9.6484375, -9.6640625, -9.65625, -9.65625, -9.6640625, -9.6640625, -9.6640625, -9.65625, -9.65625, -9.65625, -9.6640625, -9.6484375, -9.640625, -9.6328125, -9.6640625, -9.6484375, -9.6484375, -9.6484375, -9.640625, -9.6484375, -9.65625, -9.6796875, -9.6640625, -9.6640625, -9.6640625, -9.65625, -9.6640625, -9.65625, -9.6640625, -9.6484375, -9.65625, -9.6640625, -9.65625, -9.65625, -9.65625, -9.640625, -9.640625, -9.609375, -9.6015625, -9.625, -9.609375, -9.6015625, -9.6171875, -9.609375, -9.625, -9.59375, -9.625, -9.625, -9.625, -9.625, -9.6328125, -9.6328125, -9.6171875, -9.6328125, -9.625, -9.625, -9.625, -9.625, -9.6328125, -9.6484375, -9.6328125, -9.640625, -9.6484375, -9.640625, -9.6484375, -9.640625, -9.625, -9.6171875, -9.625, -9.609375, -9.6171875, -9.6328125, -9.6171875, -9.625, -9.609375, -9.6328125, -9.625, -9.6328125, -9.6484375, -9.6328125, -9.6484375, -9.6484375, -9.65625, -9.640625, -9.6484375, -9.6640625, -9.6484375, -9.65625, -9.65625, -9.6640625, -9.65625, -9.6484375, -9.6640625, -9.65625, -9.6484375, -9.6484375, -9.6484375, -9.640625, -9.640625, -9.6484375, -9.6328125, -9.640625, -9.65625, -9.65625, -9.6484375, -9.640625, -9.6484375, -9.65625, -9.65625, -9.671875, -9.6640625, -9.6796875, -9.6640625, -9.671875, -9.671875, -9.671875, -9.6640625, -9.6796875, -9.6640625, -9.671875, -9.65625, -9.6640625, -9.6640625, -9.6640625, -9.6640625, -9.65625, -9.65625, -9.65625, -9.6484375, -9.6328125, -9.640625, -9.6328125, -9.65625, -9.640625, -9.6484375, -9.640625, -9.6484375, -9.6171875, -9.6328125, -9.640625, -9.6328125, -9.6328125, -9.625, -9.6015625, -9.625, -9.640625, -9.6328125, -9.6328125, -9.6484375, -9.65625, -9.609375, -9.6171875, -9.625, -9.609375, -9.609375, -9.6171875, -9.6015625, -3.302734375, -3.7109375]} |
{"context": "The 2007 Lisbon Treaty explicitly recognised fundamental rights by providing in Article 6(1) that \"The Union recognises the rights, freedoms and principles set out in the Charter of Fundamental Rights of the European Union of 7 December 2000, as adopted at Strasbourg on 12 December 2007, which shall have the same legal value as the Treaties.\" Therefore, the Charter of Fundamental Rights of the European Union has become an integral part of European Union law, codifying the fundamental rights which were previously considered general principles of European Union law. In effect, after the Lisbon Treaty, the Charter and the Convention now co-exist under European Union law, though the former is enforced by the European Court of Justice in relation to European Union measures, and the latter by the European Court of Human Rights in relation to measures by member states.", "question": "What charter has become an important aspect of EU law?", "answers.text": ["the Charter of Fundamental Rights of the European Union", "the Charter of Fundamental Rights of the European Union of 7", "the Charter of Fundamental Rights of the European Union"], "answers.answer_start": [356, 167, 167], "feat_id": ["5726a34bf1498d1400e8e59f", "5726a34bf1498d1400e8e59f", "5726a34bf1498d1400e8e59f"], "feat_title": ["European_Union_law", "European_Union_law", "European_Union_law"], "start_logits": [-6.37109375, -4.40625, -7.8984375, -9.015625, -8.9296875, -8.9296875, -8.7109375, -9.15625, -8.9375, -8.078125, -9.59375, -9.7265625, -6.37109375, -3.779296875, -4.08984375, -3.36328125, -4.99609375, -5.87890625, -5.72265625, -2.427734375, -5.71875, -6.31640625, -5.33203125, -5.95703125, -3.962890625, -5.47265625, -6.52734375, -5.78515625, -6.88671875, -6.02734375, -4.34375, -3.755859375, -5.40234375, -5.49609375, -7.1796875, -4.046875, -3.634765625, -7.37109375, -5.46484375, -7.0, -4.0078125, -5.41015625, -7.359375, -3.560546875, 4.35546875, 5.78125, -0.1729736328125, 1.7138671875, -1.4150390625, -2.6796875, -0.88818359375, -0.09454345703125, -2.9140625, -5.0859375, -4.28125, -5.6484375, -3.09765625, -6.390625, -6.21875, -5.265625, -7.49609375, -5.203125, -7.75390625, -6.5546875, -7.36328125, -4.14453125, -6.84375, -5.26171875, -5.49609375, -6.39453125, -6.4375, -6.12890625, -5.625, -6.5390625, -7.7265625, -6.16015625, -4.53515625, -6.65234375, -6.23046875, -4.15625, -4.6953125, 5.7734375, 6.33203125, 0.444580078125, 2.876953125, -0.91845703125, -2.599609375, -0.29833984375, 0.26513671875, -2.57421875, -5.6015625, -5.98046875, -6.05859375, -5.734375, -6.41015625, -7.0546875, -4.0234375, -7.49609375, -5.23046875, -6.046875, -2.361328125, -6.93359375, -6.7890625, -4.69921875, -6.21875, -8.140625, -7.96484375, -6.98046875, -7.1875, -4.890625, -6.06640625, -7.640625, -3.927734375, -7.55078125, -6.09765625, -6.17578125, -6.98828125, -7.23046875, -8.265625, -5.70703125, -6.3671875, -4.6796875, -6.765625, -8.234375, -1.4072265625, -3.427734375, -7.7578125, -2.8984375, -3.21484375, -8.3515625, -7.72265625, -7.66015625, -8.7734375, -8.15625, -4.15625, -8.625, -7.40234375, -8.546875, -7.62890625, -6.0703125, -6.98828125, -8.1640625, -7.296875, -8.65625, -7.49609375, -4.20703125, -7.96484375, -8.6328125, -8.125, -8.578125, -8.3125, -8.625, -5.7578125, -8.8359375, -7.80078125, -8.8984375, -8.484375, -7.0234375, -7.24609375, -7.9140625, -6.9453125, -3.779296875, -7.5625, -8.3125, -6.9765625, -7.296875, -8.359375, -8.0625, -8.7265625, -7.453125, -8.6796875, -6.88671875, -7.9453125, -8.671875, -6.37109375, -10.3671875, -10.5, -10.5078125, -10.1171875, -10.3515625, -10.359375, -10.453125, -10.484375, -10.4609375, -10.4296875, -10.484375, -10.5, -10.4609375, -10.40625, -10.4140625, -10.484375, -10.484375, -10.484375, -10.4453125, -10.484375, -10.484375, -10.4453125, -10.3984375, -10.390625, -10.4453125, -10.484375, -10.5, -10.453125, -10.4296875, -10.5078125, -10.5, -10.4296875, -10.390625, -10.46875, -10.46875, -10.453125, -10.4375, -10.4296875, -10.484375, -10.4765625, -10.3828125, -10.3828125, -10.390625, -10.484375, -10.4453125, -10.453125, -10.46875, -10.4921875, -10.4921875, -10.484375, -10.4296875, -10.453125, -10.4296875, -10.5, -10.5078125, -10.421875, -10.5078125, -10.4765625, -10.421875, -10.40625, -10.4453125, -10.484375, -10.4765625, -10.4453125, -10.4921875, -10.5, -10.4453125, -10.3828125, -10.40625, -10.484375, -10.4921875, -10.484375, -10.421875, -10.4296875, -10.5, -10.4921875, -10.421875, -10.4296875, -10.484375, -10.5078125, -10.4140625, -10.4921875, -10.5, -10.4609375, -10.4921875, -10.421875, -10.4921875, -10.4140625, -10.5, -10.5, -10.421875, -10.4453125, -10.4609375, -10.5, -10.4609375, -10.3984375, -10.3671875, -10.453125, -10.46875, -10.3984375, -10.4453125, -10.4765625, -10.484375, -10.484375, -10.4140625, -10.3984375, -10.3984375, -10.4921875, -10.5, -10.4140625, -10.453125, -10.4921875, -10.4921875, -10.4453125, -10.3984375, -10.3984375, -10.484375, -10.4609375, -10.46875, -10.4765625, -10.453125, -10.5, -10.5078125, -10.421875, -10.3984375, -10.421875, -10.46875, -10.46875, -10.453125, -10.4296875, -10.5, -10.4921875, -10.1171875, -10.3671875, -10.421875, -10.4375, -10.484375, -10.4765625, -10.4921875, -10.484375, -10.4921875, -10.484375, -10.453125, -10.40625, -10.4765625, -10.46875, -10.453125, -10.484375, -10.4140625, -10.484375, -10.484375, -10.390625, -10.390625, -10.4609375, -10.4765625, -10.4921875, -10.4453125, -10.484375, -10.4921875, -10.265625, -10.3671875, -10.3671875, -10.4609375, -10.4765625, -10.4921875, -10.3984375, -10.4921875, -10.484375, -10.3984375, -10.40625, -10.4765625, -10.4921875, -10.484375, -10.484375, -10.4765625, -10.484375, -10.4609375, -10.4765625, -10.4921875, -10.4453125, -10.5, -10.5, -10.46875, -10.5078125, -10.46875, -10.4765625, -10.40625, -10.484375, -10.4921875, -10.46875, -10.4765625, -10.4921875, -10.3828125, -10.4765625, -10.4140625, -10.484375, -10.4921875, -10.4921875, -10.4921875, -10.4921875, -10.484375, -10.4375, -10.4765625, -10.5, -10.5078125, -10.484375, -10.5, -10.4921875, -10.4921875, -10.453125, -10.46875, -10.484375, -10.5, -10.4140625, -10.5078125, -10.5, -10.4921875, -10.3828125, -10.3828125, -10.4609375, -10.46875, -10.4453125, -10.4609375, -10.4921875, -10.46875, -10.390625, -10.390625, -10.4375, -10.4765625, -10.4765625, -10.484375, -10.4765625, -10.40625, -10.46875, -10.484375, -10.2890625, -10.4765625, -10.453125, -10.4921875, -10.4921875, -10.390625, -10.46875, -10.46875, -10.484375, -10.4921875, -10.484375, -10.2578125, -10.3203125, -10.4140625, -10.4453125, -10.4609375, -10.453125, -10.46875, -10.4609375, -10.3671875, -10.34375, -10.4375, -10.4609375, -10.4765625, -10.46875, -10.4765625, -10.46875, -10.4453125, -10.3828125, -10.484375, -10.4609375, -10.484375, -10.46875, -10.390625, -10.3515625, -10.4765625, -10.484375, -10.421875, -10.4765625, -10.4765625, -10.4765625, -10.453125, -10.4765625, -10.4375, -10.4609375, -10.4765625, -10.4375, -10.4765625, -10.421875, -10.484375, -10.5, -10.484375, -10.484375, -10.484375, -10.484375, -10.5078125, -10.515625, -10.5234375, -10.5234375, -10.515625, -10.4921875, -10.5078125, -10.5078125, -10.4921875, -10.515625, -10.5078125, -10.515625, -10.5, -10.5, -10.5078125, -10.515625, -10.40625, -10.5234375, -10.515625, -10.5078125, -10.421875, -10.421875, -10.4921875, -10.390625, -10.5078125, -10.515625, -10.5078125, -10.4921875, -10.5, -10.4921875, -10.4921875, -10.4296875, -10.5, -10.484375, -10.4140625, -10.3515625, -10.421875, -10.4140625, -10.4921875, -10.4765625, -10.3828125, -10.4609375, -10.4609375, -10.3515625, -10.375, -4.5859375, -6.37109375], "end_logits": [-2.03515625, -5.61328125, -7.49609375, -7.75, -7.984375, -8.0078125, -7.8515625, -7.44140625, -8.0, -7.16796875, -6.03125, -7.00390625, -2.03515625, -6.0859375, -4.671875, -4.51171875, -2.560546875, -5.98828125, -6.30859375, -5.80078125, -1.7548828125, -6.421875, -5.8515625, -6.9921875, -5.46875, -3.55859375, -6.94921875, -3.734375, -3.314453125, -5.71875, -6.10546875, -6.98828125, -4.6640625, -6.65625, -6.56640625, -7.1953125, -5.65625, -7.33984375, -5.6953125, -7.70703125, -4.3046875, -7.4765625, -6.6640625, -6.59375, -2.732421875, -1.294921875, -3.31640625, -1.79296875, 4.80859375, -1.5244140625, -2.619140625, -1.2861328125, 5.9921875, -2.26171875, -3.521484375, -3.134765625, 2.63671875, 0.6171875, -5.4765625, -4.37890625, -6.86328125, -3.171875, -6.3984375, -5.890625, -5.6953125, -1.095703125, -1.9619140625, -5.81640625, -6.10546875, -7.265625, -7.1875, -6.515625, -6.171875, -5.19921875, -7.12890625, -7.28125, -2.5703125, -3.681640625, -2.82421875, -5.44140625, -4.703125, -1.9677734375, -0.76806640625, -3.080078125, -1.3818359375, 5.6796875, -0.72607421875, -1.97265625, -0.06597900390625, 7.9765625, -3.23828125, -4.6171875, -5.34375, -4.625, -2.501953125, -5.7421875, -6.203125, -3.5546875, 1.1123046875, -1.9443359375, -6.17578125, -5.9375, -7.65234375, -6.828125, -3.0, -7.1640625, -7.3671875, -6.5703125, -6.7578125, -7.02734375, -4.1171875, -7.6875, -6.36328125, -4.2421875, -1.2841796875, -1.2041015625, -7.72265625, -5.52734375, -5.73828125, -6.9453125, -7.80859375, -6.30859375, -4.0078125, -6.40625, -6.03515625, -2.5, -7.27734375, -5.77734375, -2.232421875, -6.7265625, -7.18359375, -6.546875, -6.23046875, -7.72265625, -6.875, -4.91015625, -3.3984375, -4.6953125, -7.11328125, -8.640625, -6.66015625, -8.03125, -7.15234375, -7.8203125, -8.078125, -5.62890625, -6.19140625, -7.85546875, -4.99609375, -8.3671875, -8.0390625, -8.3125, -7.7890625, -6.17578125, -5.0703125, -5.45703125, -8.046875, -8.390625, -6.2265625, -8.171875, -8.2109375, -6.01953125, -6.70703125, -7.78125, -6.9296875, -3.357421875, -8.1640625, -8.0859375, -8.21875, -7.15234375, -8.203125, -7.73046875, -4.5234375, -4.8359375, -2.03515625, -9.7890625, -9.8515625, -9.84375, -9.53125, -9.7734375, -9.7890625, -9.8203125, -9.828125, -9.828125, -9.8359375, -9.875, -9.8671875, -9.8515625, -9.828125, -9.828125, -9.84375, -9.84375, -9.8515625, -9.859375, -9.8671875, -9.8671875, -9.8515625, -9.8203125, -9.8046875, -9.828125, -9.8359375, -9.84375, -9.84375, -9.8515625, -9.859375, -9.859375, -9.828125, -9.8125, -9.828125, -9.8203125, -9.828125, -9.8203125, -9.828125, -9.84375, -9.84375, -9.7890625, -9.78125, -9.8046875, -9.8359375, -9.8359375, -9.84375, -9.859375, -9.8671875, -9.8671875, -9.859375, -9.8125, -9.84375, -9.8359375, -9.8515625, -9.8515625, -9.84375, -9.8671875, -9.8515625, -9.828125, -9.8203125, -9.84375, -9.84375, -9.8515625, -9.8515625, -9.8671875, -9.859375, -9.8359375, -9.796875, -9.8125, -9.8359375, -9.8359375, -9.828125, -9.8125, -9.84375, -9.8671875, -9.8671875, -9.8203125, -9.8203125, -9.84375, -9.8515625, -9.8046875, -9.859375, -9.859375, -9.8515625, -9.875, -9.828125, -9.8359375, -9.8125, -9.84375, -9.8359375, -9.8125, -9.84375, -9.8671875, -9.859375, -9.84375, -9.8046875, -9.796875, -9.8203125, -9.828125, -9.796875, -9.8203125, -9.859375, -9.8671875, -9.8671875, -9.8203125, -9.8046875, -9.8125, -9.84375, -9.84375, -9.828125, -9.8515625, -9.875, -9.8671875, -9.8515625, -9.8125, -9.8046875, -9.8359375, -9.8359375, -9.8359375, -9.8359375, -9.8515625, -9.8671875, -9.859375, -9.84375, -9.828125, -9.828125, -9.84375, -9.8359375, -9.84375, -9.8359375, -9.8515625, -9.8515625, -9.5390625, -9.796875, -9.8203125, -9.8203125, -9.8359375, -9.84375, -9.8515625, -9.8671875, -9.8671875, -9.8671875, -9.8515625, -9.8203125, -9.8359375, -9.8359375, -9.8359375, -9.8515625, -9.8515625, -9.8671875, -9.859375, -9.8046875, -9.8125, -9.828125, -9.828125, -9.8515625, -9.859375, -9.875, -9.8515625, -9.7265625, -9.796875, -9.796875, -9.8359375, -9.8359375, -9.8515625, -9.8359375, -9.8671875, -9.8671875, -9.8203125, -9.828125, -9.8515625, -9.84375, -9.8671875, -9.8828125, -9.875, -9.8828125, -9.8515625, -9.84375, -9.8515625, -9.8359375, -9.8515625, -9.875, -9.875, -9.8671875, -9.8515625, -9.8359375, -9.8125, -9.8515625, -9.8515625, -9.8515625, -9.8515625, -9.859375, -9.78125, -9.8203125, -9.8046875, -9.84375, -9.84375, -9.8671875, -9.875, -9.875, -9.875, -9.8359375, -9.8359375, -9.8515625, -9.8515625, -9.84375, -9.8515625, -9.859375, -9.875, -9.8359375, -9.828125, -9.84375, -9.8515625, -9.8359375, -9.859375, -9.859375, -9.8515625, -9.796875, -9.7890625, -9.8203125, -9.8359375, -9.828125, -9.8515625, -9.859375, -9.8515625, -9.8046875, -9.8125, -9.8359375, -9.859375, -9.875, -9.875, -9.875, -9.84375, -9.8359375, -9.84375, -9.71875, -9.859375, -9.8515625, -9.8671875, -9.8671875, -9.8203125, -9.84375, -9.84375, -9.859375, -9.8671875, -9.8671875, -9.7109375, -9.765625, -9.8203125, -9.8203125, -9.828125, -9.859375, -9.859375, -9.8515625, -9.796875, -9.796875, -9.8359375, -9.84375, -9.875, -9.8828125, -9.875, -9.859375, -9.859375, -9.84375, -9.8671875, -9.8828125, -9.8828125, -9.875, -9.8359375, -9.8125, -9.8515625, -9.875, -9.8671875, -9.8828125, -9.8828125, -9.8515625, -9.84375, -9.8515625, -9.859375, -9.8828125, -9.890625, -9.8515625, -9.859375, -9.828125, -9.8671875, -9.8828125, -9.8828125, -9.890625, -9.8984375, -9.8984375, -9.875, -9.8671875, -9.8515625, -9.859375, -9.8671875, -9.8828125, -9.890625, -9.8828125, -9.859375, -9.8828125, -9.875, -9.875, -9.875, -9.859375, -9.859375, -9.859375, -9.8203125, -9.859375, -9.84375, -9.84375, -9.828125, -9.84375, -9.875, -9.8125, -9.859375, -9.84375, -9.8515625, -9.859375, -9.8515625, -9.875, -9.875, -9.8359375, -9.859375, -9.84375, -9.8046875, -9.7890625, -9.8359375, -9.8515625, -9.875, -9.875, -9.8203125, -9.8359375, -9.8359375, -9.7890625, -9.8046875, -3.388671875, -2.037109375]} |
{"context": "A job where there are many workers willing to work a large amount of time (high supply) competing for a job that few require (low demand) will result in a low wage for that job. This is because competition between workers drives down the wage. An example of this would be jobs such as dish-washing or customer service. Competition amongst workers tends to drive down wages due to the expendable nature of the worker in relation to his or her particular job. A job where there are few able or willing workers (low supply), but a large need for the positions (high demand), will result in high wages for that job. This is because competition between employers for employees will drive up the wage. Examples of this would include jobs that require highly developed skills, rare abilities, or a high level of risk. Competition amongst employers tends to drive up wages due to the nature of the job, since there is a relative shortage of workers for the particular position. Professional and labor organizations may limit the supply of workers which results in higher demand and greater incomes for members. Members may also receive higher wages through collective bargaining, political influence, or corruption.", "question": "What can lead to lower wages for members of labor organizations?", "answers.text": [""], "answers.answer_start": [-1], "feat_id": ["5ad2467ad7d075001a428af9"], "feat_title": ["Economic_inequality"], "start_logits": [-4.21875, -3.0, -8.03125, -7.72265625, -8.2578125, -7.984375, -8.546875, -8.9375, -8.9609375, -9.28125, -8.4765625, -9.5234375, -9.890625, -4.21875, -3.98828125, -4.734375, -7.37109375, -6.02734375, -8.015625, -5.9375, -6.11328125, -6.72265625, -8.4765625, -7.36328125, -7.91796875, -6.4453125, -8.2265625, -8.640625, -7.0, -5.875, -3.822265625, -5.7734375, -7.3359375, -4.34765625, -8.34375, -7.421875, -6.38671875, -8.3125, -6.26171875, -7.39453125, -6.44140625, -3.533203125, -5.3359375, -7.6640625, -7.01171875, -7.26171875, -8.546875, -8.359375, -6.00390625, -7.0703125, -9.1484375, -8.65625, -7.13671875, -7.90625, -5.72265625, -8.03125, -5.796875, -0.77734375, -6.8203125, -5.92578125, -6.6328125, -7.91796875, -8.515625, -6.3671875, -8.6328125, -6.8828125, -7.3203125, -8.7109375, -7.81640625, -8.0390625, -8.4765625, -6.9375, -8.4921875, -8.5078125, -6.8671875, -8.4296875, -8.3203125, -8.6640625, -7.16796875, -7.88671875, -5.8359375, -1.4326171875, -7.24609375, -6.3203125, -6.46484375, -8.0859375, -6.99609375, -7.59375, -6.2578125, -4.97265625, -7.921875, -6.48046875, -5.09765625, -7.953125, -8.0859375, -7.203125, -9.0703125, -8.78125, -7.07421875, -8.765625, -8.3984375, -9.09375, -8.046875, -9.0859375, -8.4921875, -8.03125, -6.66015625, -6.5078125, -3.478515625, -4.79296875, -6.58203125, -5.53515625, -7.38671875, -4.71875, -7.1484375, -8.59375, -6.78125, -6.60546875, -5.4140625, -3.9296875, -6.58984375, -7.7890625, -8.015625, -5.87109375, -4.44921875, -4.08984375, -4.91796875, -8.765625, -8.765625, -6.453125, -5.44921875, -2.478515625, -4.4765625, -7.4453125, -7.67578125, -5.85546875, -6.81640625, -8.234375, -5.078125, -6.625, -8.71875, -8.359375, -6.87109375, -7.16796875, -5.7578125, -8.328125, -5.83984375, -1.4130859375, -6.35546875, -5.20703125, -8.078125, -6.7421875, -7.18359375, -6.8671875, -8.0546875, -8.671875, -6.6875, -7.35546875, -5.8828125, -8.8359375, -7.7734375, -7.9375, -7.828125, -6.58203125, -8.296875, -7.71484375, -6.48828125, -7.70703125, -7.5078125, -8.984375, -7.51171875, -8.0703125, -9.0078125, -8.5, -7.58984375, -6.390625, -8.3203125, -8.8125, -6.9296875, -6.6875, -2.4140625, -7.7890625, -5.9296875, -7.46484375, -8.7421875, -7.484375, -8.078125, -7.37890625, -6.89453125, -8.6328125, -7.96484375, -7.6640625, -9.203125, -8.859375, -7.91015625, -8.40625, -6.83203125, -5.984375, -8.4921875, -7.203125, -6.23046875, -4.79296875, -8.953125, -7.59375, -9.0390625, -8.8671875, -8.5234375, -7.578125, -4.14453125, -0.1868896484375, -4.78515625, 1.80078125, 0.9541015625, 2.935546875, 5.0546875, -1.212890625, -0.63525390625, -5.171875, -1.9208984375, -5.6875, -3.998046875, -5.74609375, 0.755859375, -2.033203125, -7.10546875, -2.48828125, -4.43359375, -7.6953125, -4.54296875, -5.81640625, -0.3466796875, -2.328125, -3.677734375, -3.869140625, -2.171875, -4.546875, 0.463623046875, 4.0703125, -1.1591796875, -5.15234375, 1.568359375, -3.58984375, -7.03515625, -5.41015625, 0.55029296875, -5.51953125, -4.21875, -10.53125, -10.6015625, -10.609375, -10.609375, -10.59375, -10.6015625, -10.609375, -10.6015625, -10.5859375, -10.5859375, -10.59375, -10.59375, -10.59375, -10.59375, -10.6015625, -10.609375, -10.59375, -10.6015625, -10.578125, -10.609375, -10.6171875, -10.6171875, -10.6328125, -10.6171875, -10.625, -10.6328125, -10.640625, -10.53125, -10.609375, -10.609375, -10.59375, -10.6015625, -10.5859375, -10.59375, -10.6015625, -10.6015625, -10.59375, -10.578125, -10.5859375, -10.5703125, -10.5703125, -10.578125, -10.578125, -10.5859375, -10.59375, -10.5859375, -10.5859375, -10.578125, -10.5859375, -10.578125, -10.59375, -10.59375, -10.59375, -10.59375, -10.59375, -10.59375, -10.5859375, -10.59375, -10.6015625, -10.59375, -10.59375, -10.5703125, -10.625, -10.625, -10.6015625, -10.5546875, -10.5625, -10.5, -10.5859375, -10.5859375, -10.5859375, -10.6015625, -10.5703125, -10.5, -10.5078125, -10.359375, -10.453125, -10.515625, -10.59375, -10.6015625, -10.59375, -10.578125, -10.5703125, -10.5703125, -10.6015625, -10.6171875, -10.6171875, -10.6328125, -10.640625, -10.640625, -10.6171875, -10.53125, -10.5546875, -10.5546875, -10.546875, -10.5859375, -10.5703125, -10.546875, -10.5390625, -10.5234375, -10.5390625, -10.515625, -10.59375, -10.609375, -10.5859375, -10.6015625, -10.5625, -10.578125, -10.5546875, -10.5703125, -10.6015625, -10.6171875, -10.6171875, -10.625, -10.640625, -10.6328125, -10.6328125, -10.6328125, -10.6328125, -10.6328125, -10.6328125, -10.6328125, -10.640625, -10.609375, -10.515625, -10.59375, -10.59375, -10.6015625, -10.609375, -10.5859375, -10.5859375, -10.59375, -10.5859375, -10.578125, -10.578125, -10.5859375, -10.5859375, -10.5859375, -10.59375, -10.578125, -10.5859375, -10.5859375, -10.6015625, -10.59375, -10.5859375, -10.59375, -10.609375, -10.6015625, -10.6015625, -10.5859375, -10.5859375, -10.5859375, -10.5859375, -10.5859375, -10.6015625, -10.5859375, -10.5859375, -10.5625, -10.5625, -10.5703125, -10.578125, -10.578125, -10.578125, -10.578125, -10.5625, -10.5703125, -10.5703125, -10.578125, -10.5859375, -10.59375, -10.5859375, -10.5859375, -10.5859375, -10.5859375, -10.5859375, -10.59375, -10.59375, -10.5625, -10.4921875, -10.515625, -10.53125, -10.53125, -10.4921875, -10.421875, -10.34375, -10.2578125, -10.2734375, -10.375, -10.421875, -10.3125, -10.28125, -10.203125, -10.2734375, -10.25, -10.296875, -10.421875, -10.4140625, -10.390625, -10.375, -10.421875, -10.46875, -10.546875, -10.5625, -10.5, -10.4921875, -10.40625, -10.46875, -10.4609375, -10.4609375, -10.5390625, -10.5625, -10.5625, -10.5625, -10.4921875, -10.5, -10.5546875, -10.5703125, -10.5703125, -10.59375, -10.5625, -10.5546875, -10.546875, -10.515625, -10.5546875, -10.5, -10.546875, -10.5234375, -10.5546875, -10.5703125, -10.5859375, -10.5546875, -10.6171875, -10.6171875, -10.6171875, -10.546875, -10.609375, -10.625, -10.6171875, -10.59375, -10.5859375, -10.5703125, -10.5703125, -10.59375, -10.5546875, -10.546875, -10.5546875, -10.515625, -10.5390625, -10.546875, -10.5390625, -10.5703125, -10.578125, -10.5390625, -10.5546875, -10.5625, -10.5234375, -10.5234375, -10.5, -10.5390625, -10.5625, -10.5859375, -10.59375, -10.5859375, -5.25390625, -4.21875], "end_logits": [-1.876953125, -3.666015625, -8.15625, -8.1953125, -8.25, -7.87890625, -6.33203125, -8.03125, -7.671875, -7.69140625, -8.0390625, -6.52734375, -7.296875, -1.876953125, -6.96875, -6.09375, -7.9375, -7.73828125, -7.98828125, -7.34375, -5.46484375, -6.7265625, -7.59375, -6.3828125, -8.0703125, -7.17578125, -7.06640625, -7.984375, -4.35546875, -7.91796875, -6.4609375, -3.01171875, -4.3046875, -5.609375, -7.66796875, -7.98828125, -5.74609375, -8.1953125, -6.203125, -4.51171875, -7.8046875, -5.79296875, -2.501953125, -3.421875, -7.1953125, -6.96484375, -7.70703125, -8.0625, -5.73046875, -4.56640625, -7.98046875, -7.421875, -4.3046875, -4.15625, -7.0078125, -7.33203125, -7.8359375, -2.53515625, -6.609375, -1.90234375, -6.8359375, -6.1171875, -7.5703125, -3.470703125, -5.29296875, -8.234375, -7.828125, -8.5703125, -8.1015625, -8.2578125, -8.59375, -7.4921875, -8.2734375, -8.4296875, -7.81640625, -7.98828125, -6.9296875, -8.5078125, -7.90234375, -5.61328125, -5.078125, -3.474609375, -6.76171875, -2.748046875, -6.796875, -7.78515625, -7.43359375, -6.5546875, -4.3984375, -7.015625, -8.0, -8.03125, -7.26953125, -7.703125, -6.76171875, -5.28125, -7.92578125, -7.92578125, -4.16015625, -8.03125, -7.24609375, -7.95703125, -7.5, -8.296875, -7.296875, -7.328125, -3.9765625, -3.888671875, -7.30078125, -6.0859375, -7.94140625, -7.78515625, -8.1328125, -5.94140625, -7.32421875, -8.46875, -6.71484375, -3.75390625, -7.53515625, -5.828125, -3.66015625, -4.24609375, -5.72265625, -7.95703125, -7.59765625, -6.984375, -4.39453125, -7.8046875, -7.57421875, -3.470703125, -7.625, -5.6328125, -1.8857421875, -3.5078125, -4.7421875, -7.4375, -7.36328125, -8.046875, -6.04296875, -4.3125, -7.86328125, -7.36328125, -3.927734375, -3.630859375, -7.1171875, -7.16796875, -7.296875, -3.35546875, -6.6875, -2.267578125, -7.32421875, -2.62109375, -7.1640625, -6.875, -6.64453125, -7.765625, -3.88671875, -3.76953125, -7.30859375, -8.625, -7.53515625, -7.98046875, -8.625, -7.6875, -8.4765625, -8.3984375, -8.1640625, -7.7265625, -5.8203125, -7.6484375, -8.1015625, -6.109375, -6.484375, -8.5703125, -8.7109375, -7.98828125, -7.88671875, -8.3203125, -4.3203125, -4.26171875, -4.10546875, -7.29296875, -3.595703125, -7.35546875, -8.078125, -7.5859375, -7.296875, -5.875, -7.765625, -8.484375, -8.3671875, -7.44921875, -8.1328125, -7.98828125, -5.5078125, -5.7421875, -7.8125, -8.1015625, -8.4375, -8.640625, -8.0546875, -4.953125, -8.3125, -5.17578125, -7.93359375, -7.94140625, -7.609375, -5.01171875, -4.3828125, -2.00390625, -5.71875, -4.16796875, -0.404541015625, -4.50390625, -0.89453125, -4.33984375, 1.16015625, -2.705078125, 6.078125, -3.5625, -5.36328125, -6.40234375, -4.55859375, 0.89599609375, -6.92578125, -4.484375, -0.9306640625, -5.57421875, 0.367431640625, -0.93359375, -4.75390625, -6.75390625, -7.26171875, -7.1171875, -5.73046875, -3.048828125, -5.28125, -3.166015625, 1.7802734375, -2.86328125, -3.388671875, 0.58349609375, -2.916015625, -5.9453125, 4.203125, 2.861328125, -1.876953125, -9.7734375, -9.6953125, -9.75, -9.78125, -9.796875, -9.78125, -9.734375, -9.7890625, -9.7578125, -9.7578125, -9.7421875, -9.78125, -9.8125, -9.7890625, -9.8046875, -9.75, -9.7578125, -9.7578125, -9.765625, -9.6875, -9.671875, -9.734375, -9.703125, -9.7734375, -9.7109375, -9.7109375, -9.6640625, -9.8125, -9.78125, -9.765625, -9.7890625, -9.8046875, -9.8046875, -9.796875, -9.8046875, -9.828125, -9.8203125, -9.8125, -9.8203125, -9.8359375, -9.828125, -9.8359375, -9.828125, -9.859375, -9.8203125, -9.84375, -9.8359375, -9.7890625, -9.8046875, -9.78125, -9.796875, -9.7890625, -9.8046875, -9.8046875, -9.796875, -9.796875, -9.8125, -9.7578125, -9.734375, -9.7578125, -9.7578125, -9.8359375, -9.75, -9.7265625, -9.7734375, -9.59375, -9.6640625, -9.46875, -9.71875, -9.6875, -9.59375, -9.703125, -9.609375, -9.453125, -9.5703125, -9.21875, -9.4140625, -9.53125, -9.671875, -9.6953125, -9.6484375, -9.6328125, -9.609375, -9.6796875, -9.6328125, -9.6171875, -9.6953125, -9.640625, -9.6015625, -9.5703125, -9.3125, -9.6953125, -9.453125, -9.40625, -9.5078125, -9.6015625, -9.53125, -9.4765625, -9.5, -9.484375, -9.5234375, -9.4453125, -9.6328125, -9.671875, -9.6171875, -9.59375, -9.5, -9.609375, -9.6484375, -9.59375, -9.671875, -9.703125, -9.7265625, -9.734375, -9.6171875, -9.546875, -9.5390625, -9.578125, -9.578125, -9.640625, -9.6640625, -9.6640625, -9.515625, -9.6796875, -9.765625, -9.6953125, -9.75, -9.75, -9.78125, -9.8203125, -9.8203125, -9.8125, -9.828125, -9.8046875, -9.8125, -9.8203125, -9.8203125, -9.8125, -9.8125, -9.7890625, -9.78125, -9.7734375, -9.75, -9.7578125, -9.734375, -9.7578125, -9.75, -9.7578125, -9.765625, -9.765625, -9.796875, -9.78125, -9.796875, -9.796875, -9.8046875, -9.8046875, -9.8125, -9.8203125, -9.828125, -9.8359375, -9.828125, -9.84375, -9.8046875, -9.8046875, -9.78125, -9.828125, -9.8046875, -9.8046875, -9.78125, -9.7421875, -9.7265625, -9.7109375, -9.71875, -9.7265625, -9.7109375, -9.7265625, -9.640625, -9.53125, -9.40625, -9.4296875, -9.4375, -9.421875, -9.3125, -9.171875, -9.09375, -8.9296875, -8.9296875, -9.234375, -9.2109375, -8.9453125, -8.859375, -8.703125, -8.9375, -8.9296875, -9.0859375, -9.25, -9.28125, -9.21875, -9.171875, -9.2109375, -8.875, -9.2421875, -8.625, -8.4765625, -8.234375, -7.61328125, -8.296875, -8.7421875, -8.8359375, -8.9296875, -8.921875, -8.8515625, -9.234375, -8.9140625, -9.1484375, -9.3671875, -9.40625, -9.609375, -9.5625, -9.4375, -9.59375, -9.515625, -9.4296875, -9.53125, -9.21875, -9.546875, -9.2578125, -9.4140625, -9.2734375, -9.1875, -8.921875, -9.34375, -9.34375, -9.0625, -8.2421875, -8.890625, -9.375, -9.546875, -9.5859375, -9.78125, -9.78125, -9.765625, -9.765625, -9.8046875, -9.7578125, -9.78125, -9.8203125, -9.8125, -9.8203125, -9.7421875, -9.78125, -9.7734375, -9.8203125, -9.7890625, -9.7578125, -9.7734375, -9.75, -9.8828125, -9.7421875, -9.7109375, -9.7265625, -9.734375, -9.703125, -3.15625, -1.876953125]} |
{"Category": "Transmission - Donated Blood", "Question ID": 107, "Question": "is it possible for donated blood to spread covid", "Source": "Author Generated", "Answers": "in general, respiratory viruses are not known to be transmitted by blood transfusion, and there have been no reported cases of transfusion transmitted covid. ", "cate_str": "Transmission", "cate_id": 0} |
{"Category": "Transmission - Demographics: General", "Question ID": 92, "Question": "is my child with an underlying medical condition or special healthcare need at higher risk for severe illness from covid", "Source": "Center for Disease Control", "Answers": "older adults and people of any age who have serious underlying medical conditions may be at higher risk for more serious complications from covid., based on available evidence, children do not appear to be at higher risk for covid than adults. , the risk depends on where you are and more specifically, whether there is a covid outbreak unfolding there. , we do not have information from published scientific reports about the susceptibility of pregnant women to covid. pregnant women experience immunologic and physiologic changes, which might make them more susceptible to viral respiratory infections, including covid. , smoking cigarettes can leave you more vulnerable to respiratory illnesses such as covid. smoking cigarettes is known to cause heart and lung disease and people with underlying heart and lung problems may have increased risk for serious complications from covid., e cigarette use can expose the lungs to toxic chemicals, but whether those exposures increase the risk of covid or the severity of covid outcomes is not known., this is not a good time to be vaping or smoking anything. , younger people seem to be insulated to some extent to protect them from getting particularly sick., researchers do not have information from published scientific reports about susceptibility of pregnant women to this covid., based on available evidence, children do not appear to be at higher risk for covid than adults. , based on currently available information and clinical expertise, older adults and people of any age who have serious underlying medical conditions might be at higher risk for severe illness from covid. , its not known yet whether all of these children are at higher risk for severe illness from covid., most people with disabilities are not inherently at higher risk for becoming infected with or having severe illness from covid., those in complex humanitarian crises, which lack the infrastructure, support, and health systems to mount a comprehensive response. , patients with underlying medical conditions and the elderly, smokers were 1.4 times more likely (rr1.4, 95% ci 0.98 2.00) to have severe symptoms of covid and approximately 2.4 times more likely to be admitted to an icu, need mechanical ventilation or die compared to non smokers (rr2.4, 95% ci 1.43 4.04), the risk depends on where you live or where you have travelled recently. the risk of infection is higher in areas where a number people have been diagnosed with covid. , while we are still learning about how covid 2019 affects people, older persons and persons with pre existing medical conditions (such as high blood pressure, heart disease, or diabetes) appear to develop serious illness more often than others.", "cate_str": "Transmission", "cate_id": 0} |
{"Category": "Origin - Country", "Question ID": 18, "Question": "where did covid come from", "Source": "Quora", "Answers": "early on, many of the patients at the epicenter of the covid outbreak in china had some link to a large seafood and live animal market, suggesting animal to person spread., wuhan city, china", "cate_str": "Origin", "cate_id": 5} |
{"Category": "Transmission - Demographics: General", "Question ID": 92, "Question": "is covid especially harmful for pregnant women", "Source": "Cable News Network", "Answers": "older adults and people of any age who have serious underlying medical conditions may be at higher risk for more serious complications from covid., based on available evidence, children do not appear to be at higher risk for covid than adults. , the risk depends on where you are and more specifically, whether there is a covid outbreak unfolding there. , we do not have information from published scientific reports about the susceptibility of pregnant women to covid. pregnant women experience immunologic and physiologic changes, which might make them more susceptible to viral respiratory infections, including covid. , smoking cigarettes can leave you more vulnerable to respiratory illnesses such as covid. smoking cigarettes is known to cause heart and lung disease and people with underlying heart and lung problems may have increased risk for serious complications from covid., e cigarette use can expose the lungs to toxic chemicals, but whether those exposures increase the risk of covid or the severity of covid outcomes is not known., this is not a good time to be vaping or smoking anything. , younger people seem to be insulated to some extent to protect them from getting particularly sick., researchers do not have information from published scientific reports about susceptibility of pregnant women to this covid., based on available evidence, children do not appear to be at higher risk for covid than adults. , based on currently available information and clinical expertise, older adults and people of any age who have serious underlying medical conditions might be at higher risk for severe illness from covid. , its not known yet whether all of these children are at higher risk for severe illness from covid., most people with disabilities are not inherently at higher risk for becoming infected with or having severe illness from covid., those in complex humanitarian crises, which lack the infrastructure, support, and health systems to mount a comprehensive response. , patients with underlying medical conditions and the elderly, smokers were 1.4 times more likely (rr1.4, 95% ci 0.98 2.00) to have severe symptoms of covid and approximately 2.4 times more likely to be admitted to an icu, need mechanical ventilation or die compared to non smokers (rr2.4, 95% ci 1.43 4.04), the risk depends on where you live or where you have travelled recently. the risk of infection is higher in areas where a number people have been diagnosed with covid. , while we are still learning about how covid 2019 affects people, older persons and persons with pre existing medical conditions (such as high blood pressure, heart disease, or diabetes) appear to develop serious illness more often than others.", "cate_str": "Transmission", "cate_id": 0} |
{"Category": "Societal Effects - Continuing Learning During COVID", "Question ID": 180, "Question": "how can i prepare in case my childs school child care facility or university is dismissed", "Source": "Center for Disease Control", "Answers": "stay in touch with your childs school., talk to the school or facility about their emergency operations plan.", "cate_str": "Societal Effects", "cate_id": 2} |
{"Category": "Societal Response - Reason for Reopening Too Soon", "Question ID": 553, "Question": "why is america ready to reopen before a vaccine is made for covid", "Source": "Quora", "Answers": null, "cate_str": "Societal Response", "cate_id": 3} |
{"Category": "Transmission - Airborne", "Question ID": 27, "Question": "who covid airborne", "Source": "Google Search", "Answers": "studies to date suggest that the virus that causes covid is mainly transmitted through contact with respiratory droplets rather than through the air., covid cannot travel very far in the air, the world health organization says. , studies to date suggest that the virus that causes covid is mainly transmitted through contact with respiratory droplets rather than through the air.", "cate_str": "Transmission", "cate_id": 0} |
{"Category": "Societal Effects - Democracy in China", "Question ID": 624, "Question": "will covid lead to the demand for democracy in china", "Source": "Quora", "Answers": null, "cate_str": "Societal Effects", "cate_id": 2} |
{"translation": {"en": "Rope and its Usage", "xh": "Intambo nomsebenzi ewenzayo."}} |
{"translation": {"en": "In this chapter are described the various types of rope with which a seaman works, and the manner in which he uses them.", "xh": "Kwesi sahluko sixelelwa ngendindi zeentambo athi amadoda aselwandle azisebenzise, nangendlela azisebenzisa ngayo."}} |
{"translation": {"en": "The chapter has been divided into seven sections, headed as follows:", "xh": "Esi sahluko sahlulwa - hlulwe kasixhenxe, zicalulwe ngokulandelayo."}} |
{"translation": {"en": "Construction and characteristics of vegetable fibre cordage.", "xh": "Ulwakhiwo neempawu zentsinga zemifuno."}} |
{"translation": {"en": "Construction and characteristics of man-made fibre cordage.", "xh": "Ulwakhiwo neempawu zentsinga ezenziwe ngabantu."}} |
{"translation": {"en": "Construction and characteristics of wire rope.", "xh": "Ulwakhiwo neempawu zentambo yocingo."}} |
{"translation": {"en": "Handling of vegetable fibre cordage.", "xh": "Ukuphatheka kwentsinga zemifuno"}} |
{"translation": {"en": "Handling of man-made fibre cordage.", "xh": "Ukuphatheka kwentambo yocingo."}} |
{"translation": {"en": "Handling of wire rope.", "xh": "Ukuphatheka kwentsinga ezenziwe ngabantu."}} |
{"context": "Jochi died in 1226, during his father's lifetime. Some scholars, notably Ratchnevsky, have commented on the possibility that Jochi was secretly poisoned by an order from Genghis Khan. Rashid al-Din reports that the great Khan sent for his sons in the spring of 1223, and while his brothers heeded the order, Jochi remained in Khorasan. Juzjani suggests that the disagreement arose from a quarrel between Jochi and his brothers in the siege of Urgench. Jochi had attempted to protect Urgench from destruction, as it belonged to territory allocated to him as a fief. He concludes his story with the clearly apocryphal statement by Jochi: \"Genghis Khan is mad to have massacred so many people and laid waste so many lands. I would be doing a service if I killed my father when he is hunting, made an alliance with Sultan Muhammad, brought this land to life and gave assistance and support to the Muslims.\" Juzjani claims that it was in response to hearing of these plans that Genghis Khan ordered his son secretly poisoned; however, as Sultan Muhammad was already dead in 1223, the accuracy of this story is questionable.", "question": "Why did Jochi supposedly doubt his father's character?", "answers.text": ["massacred so many people and laid waste so many lands"], "answers.answer_start": [665], "feat_id": ["554ce020640d5ac2cc443ce3f4fa8f9c358aa6f5"], "feat_title": ["Genghis_Khan"], "feat_metadata.split": ["validation"], "feat_metadata.model_in_the_loop": ["Combined"], "start_logits": [2.669921875, -8.34375, -8.390625, -6.95703125, -8.8828125, -7.109375, -9.21875, -8.1875, -8.484375, -9.140625, -9.46875, -9.5078125, -9.140625, -9.25, -10.125, -9.203125, -8.09375, -9.078125, -7.77734375, -9.859375, -8.1640625, -7.453125, -8.3125, -8.984375, -7.59765625, -7.984375, -8.2265625, -9.078125, -9.625, -8.015625, -9.328125, -8.421875, -8.1796875, -8.0703125, -10.21875, -9.578125, -8.234375, -9.4765625, -6.42578125, -8.6875, -8.71875, -9.1171875, -9.2265625, -8.9140625, -7.84375, -9.65625, -8.828125, -7.17578125, -7.9453125, -8.453125, -6.3515625, -8.59375, -9.09375, -7.80859375, -9.7109375, -6.72265625, -9.375, -9.7734375, -8.546875, -8.234375, -8.390625, -8.7265625, -5.4453125, -8.5546875, -9.3046875, -7.828125, -8.1171875, -6.37890625, -7.73828125, -9.125, -9.0234375, -8.5, -8.5859375, -7.4375, -8.2421875, -8.6640625, -8.0234375, -8.4375, -7.83203125, -8.625, -9.8125, -8.0390625, -7.83203125, -7.91015625, -9.2265625, -6.97265625, -7.48046875, -8.8984375, -9.1328125, -8.0078125, -7.4921875, -8.125, -9.8671875, -10.4609375, -7.75, -9.5234375, -8.046875, -8.4375, -8.8515625, -5.75, -8.8359375, -7.796875, -9.46875, -8.3828125, -6.76171875, -9.0703125, -9.4375, -6.88671875, -3.01171875, -8.3828125, -8.359375, -6.234375, -8.640625, -5.95703125, -5.0, -5.078125, -8.5390625, -5.484375, -7.8828125, -5.41796875, -2.34375, -2.14453125, -7.4140625, -7.51171875, -5.66796875, -3.732421875, -7.34375, -5.58203125, -4.62109375, -3.9375, -7.17578125, -3.9609375, -3.796875, -3.091796875, -7.19140625, -7.5390625, -4.61328125, -7.98828125, -7.48828125, -6.23828125, -2.2109375, -7.73828125, -5.35546875, -3.560546875, -7.421875, -4.62109375, -4.7578125, -5.7578125, -8.4296875, -9.1796875, -7.25, -6.11328125, -7.5390625, -5.53125, -5.33203125, -4.66015625, -8.046875, -8.015625, -7.875, -4.7734375, -8.984375, -6.26171875, -8.9296875, -9.1484375, -8.265625, -7.2109375, -7.484375, -7.04296875, -7.390625, -8.765625, -6.703125, -7.96875, -8.2734375, -9.8125, -8.328125, -8.8515625, -8.53125, -7.73046875, -7.02734375, -4.59375, -8.703125, -9.0859375, -8.9921875, -6.953125, -8.84375, -6.13671875, -8.1484375, -7.3515625, -3.97265625, -4.046875, -8.1953125, -9.171875, -7.81640625, -8.28125, -6.69140625, -7.1015625, -7.23046875, -7.16796875, -8.9609375, -7.01953125, -8.9609375, -8.5390625, -8.5703125, -6.94921875, -9.140625, -7.9296875, -9.25, -7.703125, -9.0625, -7.76953125, -6.59765625, -5.59375, -7.87890625, -8.8125, -8.421875, -8.015625, -8.25, -8.0078125, -7.40625, -6.97265625, -7.21875, -7.15625, -8.0390625, -7.73828125, -9.09375, -7.234375, -9.0390625, -9.015625, -6.9140625, -7.63671875, -6.5625, -9.1328125, -8.0625, -5.94921875, -7.515625, -9.171875, -7.62890625, -8.2421875, -9.171875, -8.84375, -9.4453125, -8.96875, -7.28125, -7.88671875, -9.328125, -8.734375, -8.3359375, -7.72265625, -7.66796875, -9.2421875, -6.5859375, -5.95703125, -8.8046875, -9.3125, -7.62109375, -8.390625, -7.875, -8.9375, -7.265625, -7.19921875, -8.5546875, -6.95703125, -8.2109375, -8.0390625, -8.7578125, -8.4453125, -5.62890625, -8.3671875, -9.421875, -8.6640625, -8.171875, -9.21875, -7.62109375, -8.7109375, -7.5078125, -9.5234375, -7.40625, -9.109375, -9.3125, -7.33203125, -7.984375, -8.7109375, -7.53125, -5.52734375, -8.21875, -9.015625, -8.4609375, -8.2734375, -8.0390625, -6.64453125, -7.44921875, -8.7265625, -7.375, -7.2109375, -8.65625, -9.9453125, -8.2421875, -8.3046875, -8.6328125, -8.8515625, -6.90234375, -8.8515625, -10.140625, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125, -10.125], "end_logits": [0.81396484375, -10.765625, -11.5390625, -12.140625, -9.9921875, -12.0703125, -11.15625, -11.5078125, -12.015625, -11.3515625, -11.34375, -11.1015625, -10.65625, -10.53125, -11.828125, -10.59375, -11.3671875, -9.078125, -11.3671875, -10.1015625, -11.2265625, -11.6796875, -8.703125, -9.7109375, -11.4140625, -11.875, -10.1171875, -10.9609375, -10.5234375, -10.90625, -8.890625, -9.359375, -11.03125, -11.296875, -9.890625, -10.34375, -11.9453125, -11.0546875, -11.1875, -10.5625, -10.7421875, -9.03125, -9.8046875, -11.703125, -11.5703125, -10.4296875, -11.2421875, -11.7265625, -9.7890625, -11.2578125, -11.0078125, -8.65625, -11.390625, -11.53125, -10.46875, -11.46875, -10.765625, -9.8828125, -11.4375, -11.890625, -10.5234375, -10.90625, -11.2109375, -10.4140625, -9.859375, -8.2265625, -9.171875, -9.3359375, -10.140625, -11.0078125, -8.4453125, -10.671875, -11.40625, -11.6796875, -11.2265625, -9.9765625, -10.609375, -10.7265625, -11.5078125, -11.3828125, -8.9375, -11.5546875, -11.71875, -10.2265625, -11.4375, -11.625, -7.54296875, -9.453125, -11.0078125, -11.34375, -11.65625, -11.0703125, -9.7265625, -9.3046875, -10.8046875, -10.0390625, -11.578125, -9.6796875, -10.0390625, -11.15625, -9.09375, -11.296875, -10.359375, -10.5625, -11.234375, -10.359375, -7.11328125, -6.7421875, -10.6640625, -9.953125, -7.59375, -10.71875, -9.3046875, -10.3671875, -11.6953125, -10.5859375, -7.5, -11.6328125, -9.1015625, -9.9140625, -10.4375, -9.71875, -9.7734375, -4.59375, -8.6953125, -9.96875, -5.3984375, -9.828125, -9.6328125, -8.796875, -2.630859375, -9.03125, -10.078125, -10.0546875, -5.91796875, -9.96875, -9.328125, -8.9453125, -2.24609375, -4.51171875, -10.4609375, -7.80859375, -10.7421875, -10.515625, -9.0703125, -10.609375, -8.75, -10.9921875, -10.3828125, -8.03125, -10.25, -4.56640625, -6.93359375, -9.8515625, -10.765625, -11.1015625, -10.3984375, -9.0703125, -9.1171875, -10.5078125, -7.359375, -10.953125, -10.2734375, -9.0234375, -10.09375, -4.96875, -10.734375, -10.6640625, -10.6328125, -4.94140625, -5.17578125, -11.03125, -11.0546875, -10.6328125, -11.0234375, -10.0390625, -11.5625, -11.6015625, -10.3046875, -10.6015625, -10.203125, -9.859375, -6.81640625, -8.1796875, -11.015625, -10.8046875, -7.08984375, -9.5078125, -9.5859375, -10.6640625, -9.8359375, -9.3828125, -8.9921875, -10.2421875, -8.5390625, -10.3125, -10.8515625, -10.84375, -9.421875, -11.40625, -9.8828125, -7.83203125, -11.0, -11.6796875, -10.3203125, -10.890625, -9.6796875, -11.4140625, -10.1875, -6.4921875, -6.671875, -9.7109375, -10.65625, -10.9453125, -10.578125, -11.03125, -8.7265625, -11.1171875, -10.1171875, -9.6015625, -11.3359375, -7.9296875, -10.890625, -11.7109375, -10.9140625, -11.015625, -7.0625, -9.0703125, -11.5078125, -11.015625, -11.0390625, -8.9375, -10.3984375, -10.0390625, -6.73046875, -8.953125, -10.9453125, -10.6953125, -10.0546875, -11.0390625, -9.2890625, -10.9453125, -11.234375, -9.40625, -11.1640625, -9.7109375, -10.890625, -11.5703125, -10.390625, -6.84765625, -5.9609375, -10.90625, -9.6015625, -8.625, -9.84375, -11.1640625, -11.3125, -11.0703125, -11.296875, -8.2578125, -10.4296875, -9.7421875, -10.34375, -9.7734375, -8.0703125, -10.9375, -11.3203125, -9.7421875, -9.4375, -8.9921875, -11.4296875, -10.46875, -11.171875, -9.1484375, -11.0390625, -10.0625, -10.984375, -10.09375, -8.09375, -7.21484375, -8.53125, -9.59375, -10.1796875, -10.1171875, -8.875, -10.6640625, -9.9921875, -9.3359375, -10.4453125, -10.984375, -6.49609375, -8.984375, -11.3046875, -11.3203125, -9.96875, -9.015625, -10.3515625, -10.71875, -9.734375, -10.765625, -10.6015625, -7.4921875, -7.4296875, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125, -11.8203125]} |
{"context": "The historical measure of a steam engine's energy efficiency was its \"duty\". The concept of duty was first introduced by Watt in order to illustrate how much more efficient his engines were over the earlier Newcomen designs. Duty is the number of foot-pounds of work delivered by burning one bushel (94 pounds) of coal. The best examples of Newcomen designs had a duty of about 7 million, but most were closer to 5 million. Watt's original low-pressure designs were able to deliver duty as high as 25 million, but averaged about 17. This was a three-fold improvement over the average Newcomen design. Early Watt engines equipped with high-pressure steam improved this to 65 million.", "question": "What was the secret to producing the best results?", "answers.text": ["high-pressure steam"], "answers.answer_start": [634], "feat_id": ["54ee7e48f9d31464b95d7c4f2aef7eaf0e4c652e"], "feat_title": ["Steam_engine"], "feat_metadata.split": ["validation"], "feat_metadata.model_in_the_loop": ["Combined"], "start_logits": [0.53515625, -8.84375, -9.0546875, -8.609375, -8.9921875, -9.2421875, -8.4453125, -9.3359375, -8.609375, -8.4453125, -9.1328125, -9.515625, -9.8125, -8.3125, -7.21875, -3.9765625, -4.80078125, -8.390625, -5.63671875, -4.390625, -8.0390625, -5.80859375, -8.3046875, -8.6328125, -2.283203125, -3.775390625, -6.4140625, -3.3359375, -2.291015625, -2.30859375, -6.4296875, -6.23828125, -5.58984375, -7.140625, -8.6484375, -4.23046875, -8.3984375, -7.8359375, -7.5, -7.2578125, -9.0859375, -8.3671875, -6.31640625, -7.00390625, -8.34375, -7.19921875, -7.00390625, -8.9296875, -7.65234375, -7.36328125, -5.7265625, -4.90625, -7.34765625, -7.046875, -9.671875, -8.625, -6.92578125, -7.25, -6.9609375, -6.45703125, -8.671875, -9.125, -8.125, -9.09375, -7.30859375, -4.4453125, -7.9765625, -6.25390625, -6.42578125, -7.625, -6.28515625, -8.265625, -7.09375, -9.0703125, -9.5859375, -7.875, -7.4765625, -7.1953125, -8.859375, -6.37890625, -4.39453125, -8.09375, -4.45703125, -6.5, -8.796875, -6.03515625, -4.796875, -7.04296875, -7.5625, -8.2890625, -6.69921875, -8.59375, -6.69140625, -3.0859375, -4.18359375, -6.8046875, -8.8125, -8.140625, -5.5390625, -8.6015625, -9.0703125, -7.734375, -9.0546875, -6.171875, -6.734375, -5.296875, -8.6484375, -8.0859375, -5.7265625, -3.982421875, -6.78125, -7.21875, -6.22265625, -4.4140625, -7.17578125, -5.73046875, -8.7265625, -7.83984375, -3.982421875, -5.98828125, -4.98828125, -0.2264404296875, -6.77734375, -6.6875, -1.7939453125, 1.734375, -6.1875, -3.546875, -6.44921875, -5.19921875, -6.97265625, -4.796875, -5.0234375, -6.04296875, -3.7890625, -2.802734375, -7.625, -4.39453125, -5.69140625, -7.7578125, -2.62109375, -5.734375, -6.9765625, -4.74609375, -2.134765625, -7.3515625, -5.03125, -3.1953125, -2.794921875, -6.5625, -3.810546875, -2.193359375, -6.79296875, -7.3203125, -4.8515625, -5.40625, -5.09375, -4.30859375, -5.06640625, -8.1640625, -8.5078125, -6.39453125, -5.3359375, -1.54296875, -6.37890625, -7.796875, -4.44921875, -3.6796875, -8.1640625, -4.33203125, -7.8515625, -6.03125, 2.71484375, -5.20703125, -2.720703125, -5.87109375, -4.54296875, -5.81640625, -5.03125, -8.2890625, -7.640625, -7.08984375, -3.095703125, -6.40625, -7.58984375, -9.8125, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875, -9.8046875], "end_logits": [-1.0048828125, -10.2734375, -10.296875, -11.203125, -10.390625, -11.03125, -11.1953125, -10.53125, -11.53125, -11.125, -9.1640625, -9.6171875, -11.234375, -10.0390625, -11.0390625, -8.828125, -8.1171875, -10.4453125, -10.4765625, -10.359375, -8.7890625, -8.84375, -9.6640625, -8.8046875, -7.88671875, -3.263671875, -9.21875, -10.296875, -8.9921875, -8.40625, -4.109375, -4.41015625, -10.59375, -10.2421875, -11.3515625, -9.8046875, -7.484375, -11.03125, -10.25, -10.640625, -9.8203125, -10.4609375, -7.90234375, -11.03125, -10.1640625, -11.0390625, -11.1640625, -10.1640625, -11.3828125, -10.7109375, -9.9140625, -6.02734375, -10.671875, -10.4609375, -7.83984375, -9.7421875, -9.671875, -10.890625, -9.9375, -11.0703125, -10.6171875, -9.109375, -10.390625, -6.88671875, -8.2578125, -6.28125, -10.125, -10.828125, -10.1171875, -9.4921875, -9.5625, -10.8359375, -10.078125, -9.890625, -8.875, -9.1875, -8.9765625, -10.65625, -9.4453125, -10.46875, -9.8671875, -8.2578125, -8.265625, -10.46875, -7.40625, -10.125, -7.50390625, -7.64453125, -7.5546875, -10.625, -10.9609375, -6.4765625, -7.40625, -10.453125, -8.4609375, -10.3125, -7.6171875, -11.0703125, -10.890625, -10.09375, -8.484375, -9.9140625, -6.75390625, -10.578125, -10.640625, -10.453125, -7.70703125, -10.5703125, -9.953125, -7.64453125, -5.43359375, -7.56640625, -9.484375, -9.8515625, -10.9921875, -11.109375, -9.9453125, -10.578125, -8.46875, -4.359375, -4.5703125, -8.3359375, -9.015625, -8.0078125, -8.8515625, -7.8671875, -9.171875, -7.4140625, -1.81640625, -7.33203125, -2.55078125, -10.140625, -10.0546875, -10.4453125, -9.359375, -9.765625, -6.7265625, -10.4375, -9.890625, -9.9609375, -8.015625, -4.203125, -6.51171875, -9.640625, -8.609375, -8.828125, -9.4609375, -2.0390625, -7.9375, -9.546875, -10.109375, -8.3203125, -9.7265625, -6.6953125, -6.4609375, -9.3046875, -10.453125, -7.12109375, -10.1796875, -9.546875, -7.28125, -3.0703125, -4.5, -10.40625, -9.9140625, -8.9921875, -8.2109375, -9.6640625, -7.01171875, -11.03125, -9.7265625, -10.2578125, -7.7578125, -8.84375, -7.7109375, -2.607421875, -8.390625, 0.6044921875, -9.703125, -9.6171875, -9.0234375, -9.3125, -8.3203125, -4.515625, -4.16015625, -11.234375, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625, -11.2265625]} |
{"context": "It is a common misconception to ascribe the stiffness and rigidity of solid matter to the repulsion of like charges under the influence of the electromagnetic force. However, these characteristics actually result from the Pauli exclusion principle.[citation needed] Since electrons are fermions, they cannot occupy the same quantum mechanical state as other electrons. When the electrons in a material are densely packed together, there are not enough lower energy quantum mechanical states for them all, so some of them must be in higher energy states. This means that it takes energy to pack them together. While this effect is manifested macroscopically as a structural force, it is technically only the result of the existence of a finite set of electron states.", "question": "How rare is the misconception that solid matter is rigid because of like charges?", "answers.text": ["common"], "answers.answer_start": [8], "feat_id": ["9ed7642d485d2a7db5922fb8a1ccb4d8484c03e7"], "feat_title": ["Force"], "feat_metadata.split": ["validation"], "feat_metadata.model_in_the_loop": ["Combined"], "start_logits": [0.44970703125, -8.6875, -7.77734375, -9.1171875, -8.6328125, -8.40625, -9.09375, -9.5234375, -8.921875, -8.828125, -9.5703125, -9.1953125, -7.80859375, -9.2109375, -9.1484375, -9.0859375, -9.8046875, -9.25, -10.1484375, -6.44921875, -5.265625, -3.146484375, -0.20458984375, 4.33984375, -5.62109375, -7.6015625, -6.78515625, -5.98046875, -5.57421875, -7.8828125, -6.43359375, -3.798828125, -8.5390625, -8.6328125, -8.71875, -4.0859375, -8.1796875, -7.69140625, -4.390625, -6.45703125, -7.08203125, -6.8984375, -5.74609375, -8.3671875, -9.0390625, -7.984375, -5.78125, -6.29296875, -6.5546875, -6.5546875, -6.9765625, -7.59375, -6.69140625, -4.76171875, -7.3359375, -9.015625, -7.73046875, -6.48046875, -5.453125, -7.78515625, -6.62109375, -5.421875, -9.0, -9.7265625, -7.21484375, -7.625, -7.75390625, -6.6875, -5.80078125, -7.5546875, -9.4921875, -8.15625, -9.515625, -8.2265625, -6.3125, -7.65625, -8.9921875, -7.55859375, -8.8984375, -7.37109375, -6.8984375, -9.625, -8.1875, -6.83203125, -8.546875, -9.5390625, -9.15625, -7.640625, -7.984375, -7.55078125, -8.71875, -9.7734375, -7.5078125, -8.2421875, -7.33984375, -8.234375, -10.15625, -8.1484375, -9.0546875, -7.734375, -7.62890625, -9.796875, -8.4296875, -7.1484375, -7.58984375, -7.3671875, -10.046875, -8.2421875, -8.2109375, -8.4765625, -8.765625, -7.96484375, -9.15625, -10.234375, -7.375, -9.890625, -8.421875, -8.859375, -7.0234375, -8.7734375, -7.41796875, -8.28125, -7.46875, -7.96875, -7.4140625, -8.4375, -9.984375, -8.3125, -8.5859375, -9.1171875, -9.40625, -9.140625, -8.59375, -7.80859375, -7.9765625, -9.4140625, -8.1796875, -8.7578125, -8.1953125, -7.62890625, -7.90625, -8.3203125, -8.671875, -7.875, -8.546875, -8.734375, -7.8671875, -7.69140625, -7.55078125, -8.4140625, -8.2265625, -9.5546875, -8.6328125, -8.578125, -8.046875, -7.79296875, -8.859375, -8.6484375, -7.7265625, -9.7890625, -7.2734375, -8.734375, -9.359375, -9.8046875, -8.5625, -7.71484375, -7.34375, -8.4140625, -9.0390625, -9.0234375, -7.55078125, -8.9609375, -7.95703125, -9.75, -7.1484375, -7.69140625, -7.75, -7.88671875, -7.60546875, -7.953125, -7.6015625, -7.9296875, -7.3359375, -5.375, -9.1953125, -8.9609375, -8.1328125, -7.30859375, -10.0859375, -8.578125, -9.6328125, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375, -10.1484375], "end_logits": [-1.6513671875, -11.1953125, -10.390625, -11.5859375, -12.09375, -11.875, -11.734375, -11.0390625, -11.796875, -12.1171875, -11.2734375, -11.8125, -9.8203125, -11.421875, -11.984375, -11.7890625, -10.6875, -10.7578125, -11.859375, -11.28125, -10.78125, -8.8515625, -8.0703125, 2.974609375, -7.48046875, -8.40625, -0.72900390625, -9.4765625, -9.9296875, -8.0, -10.46875, -8.5625, -7.82421875, -6.5546875, -10.0390625, -7.64453125, -6.234375, -10.5390625, -9.5234375, -4.453125, -9.71875, -10.7421875, -10.5546875, -9.6875, -7.7890625, -10.1015625, -9.375, -6.49609375, -10.1171875, -11.1328125, -9.484375, -10.7265625, -10.84375, -9.6015625, -9.546875, -9.1640625, -6.5546875, -6.2421875, -7.390625, -8.90625, -10.40625, -10.34375, -10.28125, -8.8515625, -9.7109375, -9.5234375, -10.0859375, -10.796875, -7.44140625, -10.828125, -8.4375, -10.7734375, -7.48828125, -7.39453125, -8.90625, -10.21875, -9.5703125, -8.671875, -9.5, -10.71875, -10.625, -8.4296875, -10.7578125, -10.5859375, -9.9453125, -8.2265625, -10.0859375, -11.40625, -10.484375, -11.921875, -11.375, -9.671875, -11.28125, -10.671875, -9.7265625, -10.9375, -9.140625, -8.7578125, -10.4921875, -10.8515625, -10.8984375, -8.2734375, -9.4921875, -10.7890625, -11.7578125, -10.84375, -8.796875, -10.9921875, -11.3515625, -9.5390625, -11.15625, -11.515625, -10.6640625, -9.015625, -10.5234375, -9.0859375, -8.375, -9.8828125, -11.4765625, -11.453125, -10.8203125, -10.3828125, -10.5625, -9.265625, -9.578125, -10.9609375, -9.328125, -7.89453125, -10.484375, -11.046875, -8.7890625, -9.84375, -11.03125, -10.984375, -10.3984375, -10.7578125, -10.6953125, -10.6875, -10.796875, -10.28125, -9.4296875, -7.69140625, -9.4609375, -10.375, -10.59375, -11.171875, -10.75, -10.6875, -9.2421875, -10.9765625, -10.421875, -9.890625, -8.71875, -9.5390625, -10.6328125, -10.8984375, -10.140625, -11.046875, -11.1171875, -9.9296875, -10.546875, -10.3515625, -10.109375, -8.9140625, -10.9765625, -11.03125, -10.5703125, -8.734375, -8.9140625, -10.2421875, -11.703125, -11.3828125, -11.296875, -10.203125, -10.4296875, -11.6875, -10.390625, -10.34375, -11.578125, -9.8515625, -10.34375, -10.3671875, -11.1796875, -9.890625, -9.0234375, -10.203125, -10.2734375, -10.7734375, -9.234375, -8.109375, -7.17578125, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375, -11.859375]} |
{"context": "Tea, coffee, sisal, pyrethrum, corn, and wheat are grown in the fertile highlands, one of the most successful agricultural production regions in Africa. Livestock predominates in the semi-arid savanna to the north and east. Coconuts, pineapples, cashew nuts, cotton, sugarcane, sisal, and corn are grown in the lower-lying areas. Unfortunately, the country has not attained the level of investment and efficiency in agriculture that can guarantee food security and coupled with resulting poverty (53% of the population lives below the poverty line), a significant portion of the population regularly starves and is heavily dependent on food aid. Poor roads, an inadequate railway network, under-used water transport and expensive air transport have isolated mostly arid and semi-arid areas and farmers in other regions often leave food to rot in the fields because they cannot access markets. This was last seen in August and September 2011 prompting the Kenyans for Kenya initiative by the Red Cross.", "question": "One of the most successful agricultural production region is located where?", "answers.text": ["Africa"], "answers.answer_start": [145], "feat_id": ["cff9e5122593c2431a9de52b34e8705d20a456b0"], "feat_title": ["Kenya"], "feat_metadata.split": ["validation"], "feat_metadata.model_in_the_loop": ["Combined"], "start_logits": [-0.27099609375, -8.515625, -9.34375, -8.4140625, -8.625, -8.6875, -8.109375, -9.828125, -9.4609375, -9.3828125, -9.140625, -9.0546875, -8.5625, -9.1015625, -10.1640625, -8.4140625, -8.6953125, -8.7421875, -6.04296875, -9.0703125, -6.1953125, -9.3046875, -8.8203125, -4.78125, -8.640625, -8.171875, -9.59375, -8.90625, -5.6171875, -9.3359375, -7.61328125, -3.69921875, -7.54296875, -4.859375, -5.734375, -8.3515625, 1.58984375, 4.9375, 5.1640625, -3.302734375, 3.90625, -3.470703125, -5.7578125, -1.8564453125, -7.22265625, -5.2265625, -4.71484375, -4.7421875, -2.8046875, -8.0, -4.6875, -3.923828125, -6.11328125, -1.4638671875, 1.158203125, -5.54296875, -5.22265625, -9.4921875, -7.40234375, -9.765625, -6.46875, -5.51171875, -5.01171875, -7.5625, -6.28515625, -8.859375, -5.125, -8.15625, -7.52734375, -7.21484375, -6.765625, -9.1484375, -7.8359375, -9.140625, -7.69140625, -6.1796875, -9.546875, -10.1953125, -9.6875, -7.90234375, -9.203125, -9.109375, -10.3359375, -9.828125, -8.2578125, -9.6484375, -8.7421875, -10.203125, -9.8359375, -8.96875, -9.7890625, -8.3125, -10.0390625, -9.9140625, -8.6484375, -9.9609375, -9.6875, -9.6640625, -9.4453125, -9.2734375, -8.578125, -10.0859375, -8.0546875, -6.9453125, -7.69140625, -8.5546875, -8.5625, -9.765625, -8.109375, -8.171875, -8.2109375, -8.875, -6.8671875, -8.6796875, -8.84375, -8.234375, -7.72265625, -9.5625, -8.0234375, -8.796875, -8.078125, -8.015625, -9.40625, -8.1875, -8.7578125, -8.28125, -7.57421875, -9.1953125, -8.65625, -8.28125, -7.5234375, -8.71875, -9.46875, -7.84375, -10.2890625, -9.125, -8.171875, -9.8828125, -7.69140625, -4.84765625, -8.2734375, -8.140625, -9.0078125, -8.953125, -9.46875, -8.671875, -8.796875, -8.71875, -9.359375, -9.0234375, -7.35546875, -7.7109375, -9.5078125, -8.09375, -8.421875, -8.875, -8.875, -7.875, -10.234375, -9.6953125, -9.0859375, -7.8125, -9.6640625, -10.2890625, -8.3515625, -8.484375, -7.7890625, -8.984375, -8.6953125, -7.06640625, -8.25, -10.0859375, -9.625, -8.3984375, -7.734375, -8.890625, -10.2734375, -8.234375, -7.19921875, -10.0703125, -9.265625, -9.609375, -7.859375, -8.3984375, -9.2578125, -8.5703125, -8.75, -9.609375, -8.1953125, -8.703125, -8.7578125, -8.3125, -7.03125, -9.90625, -8.046875, -7.15625, -9.2734375, -9.6015625, -7.578125, -8.3125, -7.96484375, -9.453125, -8.5703125, -8.9140625, -6.68359375, -10.140625, -9.1640625, -9.078125, -8.3203125, -10.1875, -8.4921875, -7.2734375, -7.90625, -8.9609375, -8.3515625, -8.28125, -8.21875, -7.6328125, -10.0390625, -8.6796875, -8.5703125, -7.953125, -8.171875, -8.3671875, -9.9140625, -8.765625, -8.21875, -8.9453125, -8.203125, -9.2578125, -8.0, -7.45703125, -9.6875, -7.94140625, -6.703125, -7.93359375, -9.890625, -7.3359375, -1.984375, -9.6484375, -8.90625, -5.09765625, -8.3984375, -9.21875, -7.265625, -6.203125, -8.2421875, -9.71875, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625], "end_logits": [-2.19921875, -11.5078125, -11.1328125, -11.8671875, -11.5078125, -10.4765625, -11.015625, -10.65625, -10.2578125, -9.953125, -10.984375, -10.328125, -10.7109375, -10.1953125, -12.0078125, -9.53125, -9.2890625, -10.1953125, -7.69921875, -10.515625, -10.1953125, -9.109375, -10.6171875, -9.734375, -10.28125, -9.6015625, -8.4765625, -10.6015625, -7.97265625, -10.4921875, -10.5390625, -10.3671875, -8.71875, -10.09375, -10.8828125, -9.921875, -8.015625, -7.59765625, -7.3984375, -8.0234375, -5.984375, 2.638671875, -1.830078125, -8.78125, -10.1171875, -9.90625, -9.4453125, -7.75390625, -9.2734375, -8.984375, -7.92578125, -8.4765625, -7.55078125, -8.484375, -0.149658203125, -2.236328125, -10.0546875, -8.78125, -10.8359375, -9.5859375, -10.0390625, -9.8671875, -9.6796875, -10.6953125, -10.28125, -9.0390625, -9.703125, -6.953125, -10.6484375, -11.328125, -8.03125, -10.96875, -11.5078125, -7.22265625, -7.9609375, -10.4296875, -10.515625, -9.5234375, -10.484375, -11.453125, -11.171875, -11.0390625, -9.609375, -10.4140625, -11.609375, -9.953125, -11.1640625, -9.3359375, -10.5078125, -10.3046875, -10.5078125, -10.9296875, -9.7421875, -10.515625, -11.2265625, -9.640625, -10.8984375, -11.2578125, -9.5078125, -11.09375, -11.15625, -9.671875, -10.515625, -10.421875, -10.453125, -11.0546875, -10.859375, -9.2734375, -7.3984375, -8.703125, -8.8359375, -9.734375, -11.53125, -9.6171875, -11.1328125, -10.5078125, -11.765625, -10.078125, -11.6328125, -10.8515625, -10.2890625, -9.015625, -11.234375, -8.5625, -10.234375, -10.7265625, -8.125, -10.828125, -11.234375, -10.46875, -8.9296875, -7.9453125, -10.25, -11.3359375, -10.078125, -11.2109375, -11.4765625, -10.171875, -8.1953125, -9.1015625, -7.953125, -10.34375, -11.4921875, -9.1171875, -10.375, -10.78125, -11.265625, -10.1015625, -8.0390625, -9.6328125, -11.3828125, -10.1328125, -10.3203125, -10.3046875, -11.6171875, -9.40625, -10.0546875, -10.984375, -8.703125, -11.109375, -11.46875, -11.6328125, -10.5859375, -9.9296875, -9.765625, -10.1171875, -9.7890625, -7.8671875, -9.328125, -10.265625, -10.609375, -9.6484375, -10.546875, -11.28125, -11.765625, -10.8984375, -9.65625, -10.703125, -9.8671875, -9.796875, -9.21875, -10.421875, -11.375, -11.140625, -10.3359375, -9.8046875, -8.8359375, -11.1953125, -10.1328125, -10.125, -8.28125, -10.6796875, -10.5859375, -8.9765625, -9.3671875, -11.1171875, -9.2265625, -11.1015625, -10.7109375, -11.03125, -10.71875, -9.2265625, -7.99609375, -10.53125, -10.7890625, -9.453125, -11.0625, -11.0078125, -10.90625, -9.5625, -10.609375, -10.7421875, -9.5625, -10.984375, -9.421875, -10.4140625, -11.3984375, -10.2421875, -8.234375, -10.7578125, -11.5078125, -10.328125, -10.6484375, -10.796875, -7.71875, -8.25, -9.796875, -11.328125, -10.140625, -9.9453125, -10.546875, -9.2578125, -10.7890625, -9.25, -6.8515625, -10.5703125, -9.953125, -10.7109375, -5.65625, -8.171875, -10.265625, -6.53515625, -8.1015625, -10.0546875, -10.1640625, -8.890625, -7.58984375, -6.95703125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125, -12.0078125]} |
{"context": "Korean economist Hoesung Lee is the chair of the IPCC since October 8, 2015, following the election of the new IPCC Bureau. Before this election, the IPCC was led by his vice-Chair Ismail El Gizouli, who was designated acting Chair after the resignation of Rajendra K. Pachauri in February 2015. The previous chairs were Rajendra K. Pachauri, elected in May 2002; Robert Watson in 1997; and Bert Bolin in 1988. The chair is assisted by an elected bureau including vice-chairs, working group co-chairs, and a secretariat.", "question": "Who was elected later, Rajendra K. Pachauri or Robert Watson?", "answers.text": ["Rajendra K. Pachauri"], "answers.answer_start": [321], "feat_id": ["e6d28d5766a27b32708abb5f5602b7f6fbaea334"], "feat_title": ["Intergovernmental_Panel_on_Climate_Change"], "feat_metadata.split": ["validation"], "feat_metadata.model_in_the_loop": ["Combined"], "start_logits": [3.3671875, -8.640625, -8.75, -8.0546875, -9.4296875, -9.4375, -8.78125, -7.2109375, -8.984375, -8.4765625, -9.578125, -8.078125, -8.859375, -9.3984375, -8.9765625, -7.72265625, -9.3828125, -9.2265625, -10.0390625, -9.28125, -8.5234375, -7.66796875, -9.2890625, -5.58203125, -8.5234375, -7.875, -8.75, -8.1328125, -6.44140625, -9.453125, -8.0703125, -7.14453125, -9.53125, -7.02734375, -6.640625, -6.64453125, -9.4609375, -4.109375, -7.3515625, -6.98046875, -7.765625, -7.89453125, -6.59375, -6.90625, -6.765625, -9.15625, -7.5859375, -8.5234375, -6.34375, -7.953125, -8.6640625, -8.5859375, -7.50390625, -7.546875, -9.6640625, -8.296875, -8.359375, -8.5546875, -7.484375, -6.625, -8.6875, -6.50390625, -9.5859375, -4.375, -6.30859375, -6.90234375, -7.91796875, -7.7578125, -8.765625, -8.9765625, -8.4921875, -7.3828125, -9.3828125, -7.45703125, -9.2578125, -6.8203125, -9.34375, -6.3046875, -6.6484375, -7.03515625, -8.6640625, -8.3828125, -3.34765625, -7.10546875, -6.71875, -8.78125, -5.296875, -7.953125, -7.5625, -7.51171875, -7.265625, -5.34375, -4.4140625, -6.2890625, -6.203125, -8.7109375, -7.8359375, 0.420654296875, -5.79296875, -5.5234375, -7.4296875, -2.986328125, -6.77734375, -6.6953125, -7.703125, -6.23046875, -8.9609375, -6.58984375, -6.515625, -4.36328125, -5.953125, 1.396484375, -5.51171875, -4.34765625, -1.5625, -7.83984375, -7.8203125, -2.439453125, -7.16796875, -7.6171875, -7.875, -6.39453125, -7.84765625, -6.125, -7.38671875, -8.59375, -8.0078125, -9.3671875, -8.8671875, -7.89453125, -6.453125, -9.4140625, -6.94921875, -9.1328125, -7.69140625, -8.78125, -7.3984375, -10.3359375, -9.8828125, -7.953125, -9.46875, -8.96875, -9.21875, -9.234375, -10.53125, -9.765625, -9.3046875, -8.078125, -7.71875, -10.296875, -9.8984375, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875, -10.046875], "end_logits": [1.462890625, -10.3671875, -11.34375, -11.4453125, -10.71875, -10.4453125, -10.390625, -11.90625, -10.859375, -10.3515625, -10.8203125, -10.9375, -10.953125, -9.234375, -10.8671875, -11.3984375, -8.421875, -10.890625, -12.2734375, -10.984375, -10.6953125, -11.3203125, -9.6484375, -10.7109375, -9.2890625, -8.3671875, -11.5234375, -12.0859375, -8.4375, -11.3125, -11.6015625, -11.3828125, -8.25, -10.5703125, -10.171875, -9.4609375, -10.25, -5.83203125, -10.21875, -11.6484375, -10.6171875, -10.2421875, -11.4921875, -11.0, -11.7578125, -10.3125, -6.92578125, -9.4453125, -10.5234375, -11.0546875, -10.296875, -10.59375, -12.0859375, -11.71875, -10.1796875, -11.578125, -11.078125, -11.203125, -11.5234375, -11.21875, -11.1796875, -10.96875, -8.640625, -8.6796875, -10.46875, -10.6328125, -9.8125, -4.92578125, -8.1875, -10.8125, -11.6015625, -11.9296875, -10.5625, -11.7734375, -11.0390625, -11.7265625, -8.1796875, -10.3515625, -11.6171875, -11.0, -9.6171875, -10.6328125, -10.46875, -9.546875, -9.6640625, -9.0625, -10.3984375, -9.9296875, -5.36328125, -10.0390625, -9.8828125, -6.2265625, -11.34375, -10.1796875, -10.2734375, -7.07421875, -10.109375, -8.8359375, -8.4296875, -8.6484375, -8.671875, -8.90625, -8.296875, -3.025390625, -7.1953125, -10.28125, -9.2578125, -9.9296875, -10.1796875, -5.2890625, -7.046875, -7.57421875, -1.8876953125, -9.421875, -1.826171875, -6.9140625, -10.5625, -8.7578125, -10.3046875, -5.140625, -10.8671875, -6.0546875, -7.73828125, -11.40625, -8.5078125, -10.796875, -10.96875, -10.078125, -11.21875, -11.2734375, -11.7421875, -9.9140625, -6.94140625, -10.5859375, -11.7578125, -11.296875, -10.21875, -8.5, -10.65625, -11.3671875, -10.1015625, -11.4609375, -11.125, -10.8515625, -9.1953125, -10.7890625, -11.25, -11.7734375, -11.046875, -8.390625, -6.89453125, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375, -12.2734375]} |
{"context": "Sanctifying Grace is that grace of God which sustains the believers in the journey toward Christian Perfection: a genuine love of God with heart, soul, mind, and strength, and a genuine love of our neighbors as ourselves. Sanctifying grace enables us to respond to God by leading a Spirit-filled and Christ-like life aimed toward love. Wesley never claimed this state of perfection for himself but instead insisted the attainment of perfection was possible for all Christians. Here the English Reformer parted company with both Luther and Calvin, who denied that a man would ever reach a state in this life in which he could not fall into sin. Such a man can lose all inclination to evil and can gain perfection in this life.", "question": "Who thought perfection was possible?", "answers.text": ["Wesley"], "answers.answer_start": [336], "feat_id": ["4fc6c0ebbb74109e7452ed1a78cea8eff9739ca7"], "feat_title": ["United_Methodist_Church"], "feat_metadata.split": ["validation"], "feat_metadata.model_in_the_loop": ["Combined"], "start_logits": [1.8603515625, -8.5625, -8.4375, -8.015625, -9.1875, -8.34375, -8.8671875, -9.7578125, -8.4609375, -7.30859375, -8.9375, -9.84375, -7.59375, -8.765625, -7.88671875, -7.63671875, -9.6328125, -8.921875, -7.51953125, -9.2265625, -8.0234375, -9.890625, -7.68359375, -6.56640625, -9.6796875, -8.609375, -7.6015625, -8.75, -8.2578125, -4.7890625, -5.734375, -8.859375, -7.84765625, -7.2578125, -7.3984375, -9.3359375, -6.4375, -7.87109375, -6.1484375, -8.1953125, -7.3984375, -8.6171875, -8.046875, -9.203125, -8.4609375, -8.9921875, -9.046875, -7.4140625, -8.78125, -8.9921875, -7.77734375, -7.69140625, -7.92578125, -7.26171875, -7.91796875, -8.578125, -7.6328125, -9.6484375, -9.1640625, -8.3046875, -7.640625, -5.16796875, -8.6796875, -9.6875, -7.83984375, -9.765625, -7.671875, -9.1796875, -8.3203125, -8.3125, -7.8125, -9.046875, -6.7265625, -7.9765625, -7.2890625, -7.578125, -6.25390625, -8.40625, -8.09375, -9.359375, -8.8125, -5.2890625, -8.328125, -8.484375, -7.76953125, -7.4609375, -9.2734375, -7.9921875, -7.30859375, -2.73046875, 5.42578125, -4.51171875, -3.6640625, -3.23046875, -5.0390625, -6.98828125, -5.875, -7.44140625, -7.69140625, -4.98046875, -7.58984375, -5.59375, -4.7265625, -6.01953125, -3.970703125, -7.1640625, -4.52734375, -6.015625, -8.09375, -8.7421875, -8.3984375, -5.26171875, -6.78125, -5.87890625, -6.57421875, -4.09375, -4.52734375, -7.8046875, -5.80859375, -5.44921875, -2.869140625, -2.4375, -4.453125, -7.046875, -5.71484375, -8.8125, -7.77734375, -7.13671875, -4.37109375, -2.53125, -8.1484375, -4.421875, -7.52734375, -7.70703125, -4.18359375, -7.47265625, -9.2890625, -7.4765625, -6.0859375, -8.1171875, -7.98828125, -8.0625, -7.98046875, -7.3359375, -8.546875, -8.0234375, -8.3125, -8.9453125, -8.3359375, -9.203125, -7.8125, -7.77734375, -8.21875, -8.1171875, -8.828125, -7.44921875, -7.4921875, -6.76171875, -7.84765625, -8.53125, -7.55078125, -7.15625, -8.96875, -8.3671875, -7.9765625, -9.765625, -8.796875, -7.73046875, -8.890625, -9.421875, -8.3046875, -8.8515625, -6.6796875, -8.6171875, -8.59375, -8.9765625, -8.3515625, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125, -9.7578125], "end_logits": [-0.07720947265625, -11.40625, -11.109375, -10.2890625, -11.1640625, -9.8203125, -10.2265625, -11.3671875, -10.078125, -10.6171875, -10.6015625, -9.953125, -8.21875, -10.75, -10.796875, -11.5234375, -10.3125, -11.796875, -9.1328125, -11.0234375, -11.15625, -10.34375, -11.328125, -10.1953125, -8.546875, -11.1328125, -11.296875, -10.34375, -10.53125, -7.8046875, -9.1015625, -7.63671875, -9.3125, -10.8671875, -11.15625, -10.6484375, -8.734375, -10.109375, -7.76953125, -10.65625, -9.3046875, -10.5703125, -10.15625, -10.7109375, -10.2421875, -11.03125, -11.2421875, -8.1015625, -10.234375, -11.1171875, -11.2109375, -11.40625, -9.2890625, -9.2265625, -10.125, -11.4765625, -10.2578125, -8.7578125, -11.2109375, -9.1640625, -9.2890625, -9.8125, -10.34375, -9.9296875, -10.9921875, -9.1484375, -11.6171875, -10.1953125, -9.9453125, -11.0078125, -9.53125, -10.7109375, -8.296875, -10.9609375, -9.8515625, -10.640625, -8.7578125, -10.8359375, -10.7578125, -9.484375, -10.5078125, -8.2109375, -11.0390625, -8.9609375, -8.0625, -11.3359375, -9.8828125, -10.2109375, -7.68359375, -8.2421875, -6.66796875, -6.15234375, 2.9609375, -6.90234375, -9.8203125, -6.9453125, -9.1875, -9.5703125, -11.015625, -5.515625, -10.4296875, -4.796875, -8.5, -7.37890625, -9.4453125, -6.81640625, -10.953125, -11.03125, -9.6796875, -8.3203125, -10.921875, -5.75, -10.015625, -6.80078125, -10.0078125, -8.5859375, -8.1171875, -3.62890625, -4.4609375, -8.4296875, -10.4765625, -8.96875, -9.3984375, -2.81640625, -10.3671875, -8.5859375, -7.23828125, -9.5625, -9.5078125, -5.18359375, -10.21875, -4.390625, -5.671875, -10.7265625, -10.5390625, -10.140625, -7.921875, -10.546875, -11.5859375, -10.3515625, -10.2578125, -10.421875, -11.4609375, -11.375, -10.15625, -11.375, -11.140625, -8.6796875, -11.6328125, -11.0078125, -11.6796875, -11.4140625, -11.0234375, -10.21875, -10.8125, -5.08203125, -8.0078125, -10.8984375, -11.4921875, -9.53125, -11.0859375, -11.59375, -10.3984375, -10.3671875, -10.7578125, -9.109375, -10.7265625, -11.4765625, -8.3046875, -11.28125, -11.484375, -10.734375, -8.109375, -11.15625, -11.1484375, -8.3984375, -5.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875, -11.3671875]} |
{"context": "On 17 December 1941, seven Protestant regional church confederations issued a statement agreeing with the policy of forcing Jews to wear the yellow badge, \"since after his bitter experience Luther had already suggested preventive measures against the Jews and their expulsion from German territory.\" According to Daniel Goldhagen, Bishop Martin Sasse, a leading Protestant churchman, published a compendium of Luther's writings shortly after Kristallnacht, for which Diarmaid MacCulloch, Professor of the History of the Church in the University of Oxford argued that Luther's writing was a \"blueprint.\" Sasse applauded the burning of the synagogues and the coincidence of the day, writing in the introduction, \"On 10 November 1938, on Luther's birthday, the synagogues are burning in Germany.\" The German people, he urged, ought to heed these words \"of the greatest antisemite of his time, the warner of his people against the Jews.\"", "question": "To which ethnic group did Martin Luther belong?", "answers.text": ["The German people"], "answers.answer_start": [794], "feat_id": ["4a6c8d147f7789efa8e50ae7cc4cd2183a6ab4ef"], "feat_title": ["Martin_Luther"], "feat_metadata.split": ["validation"], "feat_metadata.model_in_the_loop": ["Combined"], "start_logits": [3.0546875, -8.296875, -8.765625, -6.78515625, -7.39453125, -8.9375, -8.6875, -8.6796875, -7.84375, -8.3671875, -8.296875, -8.9453125, -8.734375, -10.1640625, -8.8125, -8.921875, -4.5, -7.9765625, -6.7421875, -8.9296875, -6.04296875, -1.9365234375, -7.67578125, -7.08203125, -7.84375, -7.734375, -8.390625, -9.5390625, -7.6953125, -9.703125, -7.79296875, -8.28125, -7.64453125, -9.53125, -8.84375, -6.8359375, -7.3046875, -8.8203125, -6.56640625, -8.421875, 0.916015625, -6.78125, -8.59375, -8.40625, -7.33984375, -5.35546875, -8.1484375, -9.484375, -8.7890625, -5.4375, -7.16796875, -9.203125, -7.83203125, -7.734375, -7.78125, -8.1640625, -5.92578125, -8.484375, -8.8984375, -7.515625, -9.2890625, -6.88671875, -9.203125, -7.8359375, -9.65625, -7.09765625, -1.041015625, 1.2607421875, -6.13671875, -9.4375, -7.40234375, -6.27734375, -8.6328125, -9.671875, -8.375, -3.744140625, -8.171875, -9.7109375, -7.20703125, -8.5234375, -9.296875, -7.95703125, -7.6640625, -8.9765625, -9.15625, -6.23046875, -9.1640625, -7.59765625, -7.3203125, -8.53125, -9.2421875, -7.67578125, -8.453125, -2.7109375, -7.0859375, -8.234375, -10.078125, -9.3046875, -7.63671875, -7.75, -7.88671875, -8.5234375, -9.890625, -8.9609375, -5.62890625, -9.015625, -10.203125, -8.3359375, -10.1875, -8.0625, -9.8203125, -9.078125, -6.8515625, -9.0546875, -9.234375, -9.3359375, -8.5234375, -9.3046875, -6.55859375, -8.734375, -9.203125, -7.0390625, -8.390625, -8.8203125, -9.765625, -9.4453125, -7.66015625, -8.7578125, -7.515625, -7.16015625, -8.0546875, -7.8984375, -8.828125, -8.3359375, -7.47265625, -7.05078125, -7.9765625, -7.66015625, -7.546875, -9.59375, -8.5390625, -5.65234375, -8.890625, -9.90625, -8.9609375, -8.8671875, -7.57421875, -5.953125, -7.46875, -9.1796875, -7.55859375, -7.21484375, -9.28125, -7.15625, -9.203125, -9.6875, -7.3671875, -7.99609375, -9.4296875, -8.890625, -7.58203125, -7.38671875, -9.0859375, -9.765625, -9.25, -7.2890625, -8.1640625, -9.96875, -8.15625, -7.93359375, -9.234375, -9.1875, -8.2734375, -7.57421875, -8.078125, -8.71875, -9.828125, -8.65625, -6.03125, -8.03125, -3.333984375, -6.9375, -4.88671875, -8.9609375, -7.56640625, -4.91015625, -8.7421875, -10.046875, -7.9609375, -8.859375, -7.4921875, -7.2265625, -9.109375, -9.953125, -8.859375, -8.3359375, -9.7890625, -8.109375, -4.703125, -7.81640625, -6.65234375, -3.07421875, -8.9296875, -9.0859375, -8.03125, -8.65625, -9.90625, -9.1171875, -7.3828125, -9.359375, -8.28125, -10.703125, -8.0859375, -8.3125, -8.9375, -5.73046875, -8.234375, -6.97265625, -7.4375, -1.556640625, -9.1484375, -8.9765625, -8.6640625, -9.3671875, -8.8125, -6.84765625, -7.69921875, -9.171875, -9.0703125, -7.3671875, -7.66796875, -6.4921875, -2.3984375, -0.74365234375, -7.08203125, -7.0625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625, -10.1640625], "end_logits": [1.4677734375, -11.59375, -11.1484375, -11.3984375, -10.21875, -10.578125, -10.421875, -11.3515625, -11.59375, -10.6796875, -11.953125, -11.1796875, -11.1171875, -12.3828125, -11.0703125, -11.5703125, -8.609375, -10.5859375, -8.6328125, -10.3984375, -9.59375, -8.4375, -4.0625, -10.234375, -10.4296875, -11.6171875, -10.796875, -7.90234375, -11.6171875, -10.7734375, -11.703125, -9.296875, -11.3046875, -10.8359375, -11.359375, -11.734375, -10.2109375, -11.6953125, -11.59375, -10.4375, -6.6953125, -0.693359375, -10.4296875, -10.8359375, -11.2734375, -7.83203125, -10.8515625, -7.52734375, -8.734375, -9.2734375, -11.6015625, -10.03125, -11.1875, -11.203125, -9.8046875, -9.5078125, -8.6015625, -11.25, -10.703125, -11.3671875, -10.7421875, -11.3125, -10.8828125, -10.59375, -8.984375, -10.453125, -10.03125, -6.90234375, 0.37939453125, -9.8046875, -11.2265625, -11.234375, -10.3671875, -7.77734375, -10.234375, -6.27734375, -10.53125, -7.0078125, -7.6171875, -11.4609375, -11.4375, -10.890625, -10.921875, -8.4609375, -9.90625, -11.296875, -9.0078125, -9.8046875, -11.0234375, -7.5078125, -9.4296875, -11.671875, -11.1171875, -8.3203125, -3.80859375, -10.5625, -9.8046875, -9.5625, -10.6328125, -11.2890625, -11.671875, -10.6875, -9.0859375, -11.75, -9.3359375, -10.5625, -9.4765625, -10.984375, -8.7109375, -11.609375, -10.5234375, -11.0078125, -11.03125, -10.1953125, -7.77734375, -9.4921875, -11.53125, -10.7890625, -11.484375, -10.875, -10.0703125, -10.9453125, -10.9140625, -10.5859375, -9.125, -9.78125, -10.90625, -11.84375, -11.7265625, -9.6640625, -10.59375, -11.6640625, -10.0234375, -10.8671875, -11.6953125, -10.2109375, -11.390625, -8.984375, -11.625, -11.09375, -11.3046875, -9.8515625, -10.921875, -10.21875, -9.921875, -11.609375, -11.6953125, -10.40625, -10.6328125, -8.734375, -8.671875, -11.671875, -9.171875, -11.5390625, -10.828125, -10.859375, -11.4296875, -11.28125, -8.890625, -11.359375, -11.4375, -11.03125, -10.7109375, -8.6875, -11.1171875, -11.5390625, -11.1015625, -9.390625, -10.7109375, -11.8203125, -9.5078125, -10.03125, -10.53125, -11.21875, -11.859375, -11.484375, -10.46875, -10.25, -10.203125, -11.21875, -7.0703125, -8.578125, -7.1953125, -9.609375, -11.3046875, -8.2265625, -10.4453125, -8.9453125, -9.171875, -10.359375, -11.8828125, -10.890625, -10.5, -9.5234375, -11.3125, -11.0, -9.265625, -11.25, -6.375, -8.4921875, -11.7265625, -5.6484375, -8.6953125, -10.703125, -11.09375, -11.109375, -10.34375, -10.671875, -11.984375, -10.4296875, -11.6484375, -9.34375, -10.359375, -10.921875, -9.734375, -10.0859375, -11.6171875, -12.0078125, -10.28125, -6.69921875, -5.41796875, -10.78125, -11.171875, -8.734375, -8.9609375, -11.8671875, -11.375, -10.9375, -11.3359375, -11.3359375, -7.9140625, -10.5, -10.578125, -7.79296875, -2.07421875, -7.1171875, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125, -12.3828125]} |
{"event_date": "18-December-2019", "source": "Vanguard (Nigeria)", "fatalities": 0, "event_type": "Protests", "sub_event_type": "Peaceful protest", "actor1": "Protesters (Nigeria)", "inter1": "Protesters", "actor2": "N/A", "inter2": "N/A", "location": "Iwhreka", "notes": "On 18 December 2019, tens of women demonstrated over the recent violence between Edjophe and Iwhreka communities. [size=tens]"} |
{"event_date": "19-December-2019", "source": "Daily Trust (Nigeria); Nigeria Punch", "fatalities": 0, "event_type": "Protests", "sub_event_type": "Peaceful protest", "actor1": "Protesters (Nigeria)", "inter1": "Protesters", "actor2": "N/A", "inter2": "N/A", "location": "Abuja", "notes": "On 19 December 2019, employees of NIPOST in Abuja demonstrated over the plan to outsource the stamp duty to the Federal Inland Revenue Service. [size=no report]"} |
{"event_date": "03-September-2019", "source": "Legit", "fatalities": 0, "event_type": "Battles", "sub_event_type": "Armed clash", "actor1": "Unidentified Armed Group (Nigeria)", "inter1": "Political Militias", "actor2": "Police Forces of Nigeria (2015-)", "inter2": "State Forces", "location": "Ijaw", "notes": "03 September. Unidentified gunmen attacked the PDP governor primary election in Ijaw and engaged Police forces in a gun battle."} |
{"event_date": "16-October-2019", "source": "Nigeria Punch", "fatalities": 0, "event_type": "Violence against civilians", "sub_event_type": "Abduction/forced disappearance", "actor1": "Unidentified Armed Group (Nigeria)", "inter1": "Political Militias", "actor2": "Civilians (Nigeria)", "inter2": "Civilians", "location": "Sofo-Birnin-Gwari", "notes": "16 October 2019. Unidentified gunmen opened fire on a car in Polwaya, 10km away from Birnin Gwari (no location found, coded as Birnin Gwari) and abducted one person."} |
{"event_date": "01-May-2021", "source": "News24 (South Africa)", "fatalities": 0, "event_type": "Protests", "sub_event_type": "Peaceful protest", "actor1": "Protesters (South Africa)", "inter1": "Protesters", "actor2": "N/A", "inter2": "N/A", "location": "Oudtshoorn", "notes": "Around 1 May 2021 (weekend of), PARCSA supporters took to the streets in Oudtshoorn (Eden, Western Cape) in a demonstration to highlight the group's concerns about race classification and to garner support for their campaign. [size=no report]"} |
{"event_date": "29-June-2019", "source": "Twitter", "fatalities": 1, "event_type": "Violence against civilians", "sub_event_type": "Attack", "actor1": "Islamist Militia (Mozambique)", "inter1": "Political Militias", "actor2": "Civilians (Mozambique)", "inter2": "Civilians", "location": "Simbalongo", "notes": "On Jun 29th, the village of Simbalongo was attacked by ASWJ. 1 person was killed."} |
{"event_date": "04-December-2018", "source": "Journal du Cameroun", "fatalities": 0, "event_type": "Strategic developments", "sub_event_type": "Change to group/activity", "actor1": "Government of Cameroon (1982-)", "inter1": "State Forces", "actor2": "N/A", "inter2": "N/A", "location": "Yaounde", "notes": "04 December (on or before). The Government of Cameroon established a committee for the DDR of Boko Haram and Ambazonian Separatists."} |
{"event_date": "30-December-2018", "source": "Actualite", "fatalities": 0, "event_type": "Riots", "sub_event_type": "Violent demonstration", "actor1": "Rioters (Democratic Republic of Congo)", "inter1": "Rioters", "actor2": "Police Forces of the Democratic Republic of Congo (2001-2019)", "inter2": "State Forces", "location": "Kinshasa", "notes": "30 December. Voters at Tshiteku in Kinshasa clashed with police who would not allow them to vote after the polling station had closed. The voters were angry as they were late after receiving the incorrect polling station information from CENI."} |
{"event_date": "25-July-2021", "source": "Premium Times (Nigeria); HumAngle", "fatalities": 0, "event_type": "Violence against civilians", "sub_event_type": "Abduction/forced disappearance", "actor1": "Niger Communal Militia (Nigeria)", "inter1": "Identity Militias", "actor2": "Civilians (Nigeria)", "inter2": "Civilians", "location": "Tegina", "notes": "On 25 July 2021, a militia group in Tegina (Rafi LGA, Niger state) kidnapped one of the messengers sent to deliver ransom for the school children abducted at an Islamic school in May 2021. He was reported to have been released on 27 July 2021."} |
{"event_date": "24-August-2021", "source": "ESAT", "fatalities": 0, "event_type": "Battles", "sub_event_type": "Armed clash", "actor1": "TPLF: Tigray People's Liberation Front", "inter1": "Rebel Groups", "actor2": "Military Forces of Ethiopia (2018-)", "inter2": "State Forces", "location": "Dessie", "notes": "On 24 August 2021, the Tigray People's Liberation Front (TPLF) clashed with the Ethiopian National Defense Force (ENDF) in Dessie (Dessie town, South Wello, Amhara). No fatalities and/or injuries reported."} |
{"text": "Question: Musician and satirist Allie Goertz wrote a song about the \"The Simpsons\" character Milhouse, who Matt Groening named after who?\nContext: is said to have an IQ of 159, and in \"They Saved Lisa's Brain\" (season ten, 1999) she becomes a member of the Springfield chapter of Mensa. When unable to attend school due to a teachers' strike in \"The PTA Disbands\", (season six, 1995) she suffers withdrawal symptoms because of the sudden lack of praise. She even demands that her mother grade her for no obvious reason. In Planet Simpson, Chris Turner writes that these traits make Lisa more realistic because \"No character can aspire to realism without a few all-too-human flaws.\"Although she is wise beyond her years, Lisa has typical childhood issues, sometimes requiring adult intervention. One episode to show this is \"See Homer Run\" (season seventeen, 2005) where she goes through a developmental condition which causes her to get into trouble at school. In \"Lost Our Lisa\" (season nine, 1998), she tricks Homer into allowing her to ride the bus alone, only to become hopelessly lost and in need of aid from her father. Chris Turner writes in Planet Simpson that incidents like this illustrate that \"Even when Lisa's lecturing like a college professor or mounting yet another protest, she never becomes a full-grown adult trapped in a child's body.\" In The Simpsons and Philosophy: The D'oh! of Homer, Aeon J. Skoble states that although Lisa is an intellectual, she is still portrayed as a character who enjoys normal childhood and girl activities, plays with Malibu Stacy dolls, loves ponies, obsesses over teenage heartthrobs such as Corey, and watches The Itchy & Scratchy Show along with Bart. He writes, \"One might argue that this is typical childhood behavior, but since in so many cases Lisa is presented not simply as a prodigy but as preternaturally wise, the fondness for Itchy & Scratchy and Corey seem to be highlighted, taking on greater significance. Lisa is portrayed as the avatar of logic and wisdom, but then she also worships Corey so she's 'no better [than the rest of us]'.\" When she became depressed over being unable to pursue her dream as a musician due to inheriting her father's fingers and having to spend her time with Marge in being a homemaker, Lisa gives up on school and becomes a juvenile delinquent in Separate Vocations. She is stopped by Bart who encourages her to keep proving people wrong and pursue her dreams as a musician. Lisa occasionally worries that her family's\nFacts: \nAnswer: President Richard Nixon\n\n"} |
{"text": "Question: Musician and satirist Allie Goertz wrote a song about the \"The Simpsons\" character Milhouse, who Matt Groening named after who?\nContext: she states that she and actor Randy Quaid share the same birthdate (October 1). Marge has been nonworking for most of the series, choosing to be a homemaker and take care of her family. However, she has held several one-episode jobs in the course of the series. These include working as a nuclear technician alongside Homer at Springfield Nuclear Power Plant in \"Marge Gets a Job\" (season four, 1992); selling houses in \"Realty Bites\" (season nine, 1997); owning her own pretzel business in \"The Twisted World of Marge Simpson\" (season eight, 1997), and working at an erotic bakery in \"Sex, Pies and Idiot Scrapes\" (season 20, 2008). While Marge has never expressed discontent with her role as a homemaker, she has become bored with it. In \"The Springfield Connection\" (season six, 1995), Marge decided that she needed more excitement in her life and became a police officer. However, by the end of the episode, she became upset with the corruption in the force and quit. == Character == === Creation === Matt Groening first conceived Marge and the rest of the Simpson family in 1987 in the lobby of producer James L. Brooks' office. Groening had been called to pitch a series of animated shorts for The Tracey Ullman Show, and had intended to present an adaptation of his Life in Hell comic strip. When he realized that animating Life in Hell would require him to rescind publication rights, Groening decided to go in another direction and hurriedly sketched out his version of a dysfunctional family, naming the characters after members of his own family. Marge was named after Groening's mother Margaret \"Marge\" Groening, who has said she bears little similarity to the character, stating, \"It's really weird to have people think you're a cartoon.\" Marge's beehive hairstyle was inspired by the titular Bride in Bride of Frankenstein and the style that Margaret Groening wore during the 1960s, although her hair was never blue.Marge debuted with the rest of the Simpson family on April 19, 1987, in The Tracey Ullman Show short \"Good Night\". In 1989, the shorts were adapted into The Simpsons, a half-hour series airing on the Fox Network. Marge and the Simpson family remained the main characters on this new show.Matt Groening believes that episodes featuring Marge are among the most difficult episodes to write. Bill Oakley believes that the \"junior\" writers are usually given Marge episodes\nFacts: \nAnswer: President Richard Nixon\n\n"} |
{"text": "Question: Musician and satirist Allie Goertz wrote a song about the \"The Simpsons\" character Milhouse, who Matt Groening named after who?\nContext: Simpsons Movie, Kavner was nominated for \"Best Voice Acting in an Animated Feature\" at the 2007 Annie Awards, but lost to Ian Holm from Ratatouille. Kavner's emotional performance in the movie got positive reviews and one critic said she \"gave what must be the most heartfelt performance ever.\" Various episodes in which Marge is prominently featured have been nominated for Emmy Awards for Outstanding Animated Program, including \"The Way We Weren't\" in 2004 and \"Life on the Fast Lane\", which won the award in 1990. In 2000, Marge and the rest of the Simpson family were awarded a star on the Hollywood Walk of Fame located at 7021 Hollywood Boulevard.Marge has been ranked highly in lists of the top television mothers of all time. She was ranked first on Entertainment Weekly's list in 1994; first on Fox News' list in 2005; eighth on CityNews' list in 2008; and was included in Time's list of the \"10 Best Moms Ever\". In a 2004 poll in the United Kingdom, Marge was named the \"most respected mother\" by respondents. Still in 2004, Marge was ranked third in a poll conducted by the Opinion Research Company. In May 2012, Marge was one of the 12 moms chosen by users of iVillage on their list of \"Mommy Dearest: The TV Moms You Love\". AOL has named Marge the 24th \"Most Memorable Female TV Character\". Her relationship with Homer was included in TV Guide's list of \"The Best TV Couples of All Time\".Religious writer Kenneth Briggs has written that \"Marge is my candidate for sainthood ... She lives in the real world, she lives with crises, with flawed people. She forgives and she makes her own mistakes. She is a forgiving, loving person ... absolutely saintly.\" == Cultural influence == The edition of October 1, 1990 of People included an interview with then-First Lady of the United States Barbara Bush. The article included the following passage: \"She loves America's Funniest Home Videos but remains baffled after sampling The Simpsons. \"It was the dumbest thing I had ever seen,\" she says, \"but it's a family thing, and I guess it's clean.\" The writers decided to respond by privately sending a polite letter on September 28 to Bush where they posed as Marge Simpson. On October 9, Bush sent a reply: \"Dear Marge, How kind of you to write. I'm glad you spoke your mind ... I foolishly\nFacts: \nAnswer: President Richard Nixon\n\n"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.