diff --git "a/all/NumGLUE_Type_7_crowdsourced.json" "b/all/NumGLUE_Type_7_crowdsourced.json" new file mode 100644--- /dev/null +++ "b/all/NumGLUE_Type_7_crowdsourced.json" @@ -0,0 +1,63258 @@ +{ + "Source": "", + "Categories": [], + "Instances": [ + { + "Input": " \"statement 1\": In a deck of less than 72 cards , how many ways are there to select 13 Spade and 13 heart cards without repetition ?, \"statement 2\" :In a deck of 52 cards , how many ways are there to select 13 Spade and 13 heart cards without repetition ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "DeckOfCardStatement1= None \nDeckOfCardStatement2= 52\n\nif DeckOfCardStatement1 is None or DeckOfCardStatement2 is None:\n print('neutral')\nelif DeckOfCardStatement1==DeckOfCardStatement2:\n print('Entailment')\nelif DeckOfCardStatement1!=DeckOfCardStatement2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If out of 41 questions solved by Rajesh 37 questions are correct and of the remaining questions out of 8 questions 5 questions have been solved by Rajesh correctly then find the total number of questions asked in the examination ., \"statement 2\" :If out of 31 questions solved by Rajesh 37 questions are correct and of the remaining questions out of 8 questions 5 questions have been solved by Rajesh correctly then find the total number of questions asked in the examination ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "RajeshHaveQuestionsS1 = 41 \nRajeshHaveQuestionsS2 = 31\nif RajeshHaveQuestionsS1 is None or RajeshHaveQuestionsS2 is None:\n print('neutral')\nelif RajeshHaveQuestionsS1==RajeshHaveQuestionsS2:\n print('Entailment')\nelif RajeshHaveQuestionsS1!=RajeshHaveQuestionsS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Alice drives at a constant speed of 30 km per hour, \"statement 2\" :Alice drives at a constant speed of 20 km per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "DrivesSpeedS1 = 30\nDrivesSpeedS2 = 20\nif DrivesSpeedS1 is None or DrivesSpeedS2 is None:\n print('neutral')\nelif DrivesSpeedS1==DrivesSpeedS2:\n print('Entailment')\nelif DrivesSpeedS1!=DrivesSpeedS2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Mary is 22 years younger than Albert, \"statement 2\" :Mary is 72 years younger than Albert, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "AgeS1 = 22\nAgeS2 = 72\nif AgeS1 is None or AgeS2 is None:\n print('neutral')\nelif AgeS1==AgeS2:\n print('Entailment')\nelif AgeS1!=AgeS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Assuming that Karen drives at an average speed of less than 70 mph and Tom drives at an average speed of 45 mph , how many W miles will Tom drive before Karen wins the bet ?, \"statement 2\" :Assuming that Karen drives at an average speed of 60 mph and Tom drives at an average speed of 45 mph , how many W miles will Tom drive before Karen wins the bet ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nDriveS2 = 60\nDriveS1 = None\nif DriveS1 is None or DriveS2 is None:\n print('neutral')\nelif DriveS1==DriveS2:\n print('Entailment')\nelif DriveS1!=DriveS2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If the distance between their homes is 40 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"statement 2\" :If the distance between their homes is 70 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "HomeDistanceS1 = 40\nHomeDistanceS2 = 70\nif HomeDistanceS1 is None or HomeDistanceS2 is None:\n print('neutral')\nelif HomeDistanceS1==HomeDistanceS2:\n print('Entailment')\nelif HomeDistanceS1!=HomeDistanceS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sandy gets 3 marks for each correct sum and loses 2 marks for each incorrect sum, \"statement 2\" :Sandy gets 8 marks for each correct sum and loses 2 marks for each incorrect sum, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "MarksS1 = 3\nMarksS2 = 8\n\nif MarksS1 is None or MarksS2 is None:\n print('neutral')\nelif MarksS1==MarksS2:\n print('Entailment')\nelif MarksS1!=MarksS2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In a friendship gang Andrew has 8 gang , in how many ways can he invite one or more of the gang to his house ?, \"statement 2\" :In a friendship gang Andrew has 2 gang , in how many ways can he invite one or more of the gang to his house ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nFriendshipGangS1 = 8 \nFriendshipGangS2 = 2\nif FriendshipGangS1 is None or FriendshipGangS2 is None:\n print('neutral')\nelif FriendshipGangS1==FriendshipGangS2:\n print('Entailment')\nelif FriendshipGangS1!=FriendshipGangS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Anne \u2019 s speed were doubled , they could clean their house in 3 hours working at their respective rates, \"statement 2\" :If Anne \u2019 s speed were doubled , they could clean their house in 8 hours working at their respective rates, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "CleanS1 = 3\nCleanS2 = 8\nif CleanS1 is None or CleanS2 is None:\n print('neutral')\nelif CleanS1==CleanS2:\n print('Entailment')\nelif CleanS1!=CleanS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Shaquan has 5 playing cards , each one is ordered by the number on it , but one card is flipped over .They are numbered 8 , 16 , 24 , x , 40, \"statement 2\" :Shaquan has 4 playing cards , each one is ordered by the number on it , but one card is flipped over . They are numbered 8 , 16 , 24 , x , 40, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "PlayinfCradsS1 = 5\nPlayinfCradsS2 = 4\nif PlayinfCradsS1 is None or PlayinfCradsS2 is None:\n print('neutral')\nelif PlayinfCradsS1==PlayinfCradsS2:\n print('Entailment')\nelif PlayinfCradsS1!=PlayinfCradsS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": James took a 3 - hour bike ride, \"statement 2\" :James took a 8 - hour bike ride, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "BikeRideS1 = 3\nBikeRideS2 = 8\nif BikeRideS1 is None or BikeRideS2 is None:\n print('neutral')\nelif BikeRideS1==BikeRideS2:\n print('Entailment')\nelif BikeRideS1!=BikeRideS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": During the first two weeks of May , the total rainfall in Springdale was 35 inches, \"statement 2\" :During the first two weeks of May , the total rainfall in Springdale was 25 inches, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "RainfallS1 = 35\nRainfallS2 = 25 \n\nif RainfallS1 is None or RainfallS2 is None:\n print('neutral')\nelif RainfallS1<30:\n print('Entailment')\nelif RainfallS1!=RainfallS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sean , who weighs 200 pounds , is in the elevator with two packages weighing 150 pounds and 280 pounds, \"statement 2\" :Sean , who weighs 100 pounds , is in the elevator with two packages weighing 150 pounds and 280 pounds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "WeighsS1 = 200\nWeighsS2 = 100\nif WeighsS1 is None or WeighsS2 is None:\n print('neutral')\nelif WeighsS1==WeighsS2:\n print('Entailment')\nelif WeighsS1!=WeighsS2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Sanket finishes the race by clocking 15 minutes , how far was Suresh from the finish line when Sam must have finished the race ?, \"statement 2\" :If Sanket finishes the race by clocking 85 minutes , how far was Suresh from the finish line when Sam must have finished the race ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "MinutesS1 = 15\nMinutesS2 = 85\nif MinutesS1 is None or MinutesS2 is None:\n print('neutral')\nelif MinutesS1==MinutesS2:\n print('Entailment')\nelif MinutesS1!=MinutesS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Susan weighs 20 pounds more than Anna does , and together they weigh a total of 160 pounds, \"statement 2\" :Susan weighs less than 20 pounds more than Anna does , and together they weigh a total of 160 pounds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "poundsS1 = 20\npoundsS2 = 0\nif poundsS1 is None or poundsS2 is None:\n print('neutral')\nelif poundsS1 == poundsS2:\n print('Entailment')\nelif poundsS1 != poundsS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is 3 : 3 ?, \"statement 2\" :What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is 7 : 3 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_ratioS1 = 3/3\nspeed_ratioS2 = 7/3\nif speed_ratioS1 is None or speed_ratioS2 is None:\n print('neutral')\nelif speed_ratioS1 == speed_ratioS2:\n print('Entailment')\nelif speed_ratioS1 != speed_ratioS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is 6 : 3 ?, \"statement 2\" :What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is 3 : 3 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_ratioS1 = 6/3\nspeed_ratioS2 = 3/3\nif speed_ratioS1 is None or speed_ratioS2 is None:\n print('neutral')\nelif speed_ratioS1 == speed_ratioS2:\n print('Entailment')\nelif speed_ratioS1 != speed_ratioS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Since you ' re nice , you give John more than 1 baseball cards, \"statement 2\" :Since you ' re nice , you give John 2 baseball cards, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "baseballS1 = None\nbaseballS2 = 2\nif baseballS1 is None or baseballS2 is None:\n print('neutral')\nelif baseballS1 == baseballS2:\n print('Entailment')\nelif baseballS1 != baseballS2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Suraj has a certain average of runs for 16 innings, \"statement 2\" :Suraj has a certain average of runs for 86 innings, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "inningsS1 = 16\ninningsS2 = 86\nif inningsS1 is None or inningsS2 is None:\n print('neutral')\nelif inningsS1 == inningsS2:\n print('Entailment')\nelif inningsS1 != inningsS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If he worked for 15 days alone before he was joined by Kennedy to complete the job in 3 days , how many days will it take both of them to complete the entire job ?, \"statement 2\" :If he worked for less than 15 days alone before he was joined by Kennedy to complete the job in 3 days , how many days will it take both of them to complete the entire job ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "daysS1 = 15\ndaysS2 = 0\nif daysS1 is None or daysS2 is None:\n print('neutral')\nelif daysS1 == daysS2:\n print('Entailment')\nelif daysS1 != daysS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": How many liters of blue paint must be added to less than 84 liters of Fuchsia to change it to Mauve paint ?, \"statement 2\" :How many liters of blue paint must be added to 24 liters of Fuchsia to change it to Mauve paint ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "litersS1 = None\nlitersS2 = 24\nif litersS1 is None or litersS2 is None:\n print('neutral')\nelif litersS1 == litersS2:\n print('Entailment')\nelif litersS1 != litersS2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In one day , Juan sends Keith three times as many messages as he sends Laurence , and Laurence sends Missy 2 times as many messages as he receives from Juan, \"statement 2\" :In one day , Juan sends Keith three times as many messages as he sends Laurence , and Laurence sends Missy more than 1 times as many messages as he receives from Juan, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "timesS1 = 2\ntimesS2 = 1\nif timesS1 is None or timesS2 is None:\n print('neutral')\nelif timesS1 > timesS2:\n print('Entailment')\nelif timesS1 != timesS2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Lindy runs at a constant speed of more than 4 feet per second from Christina to Jack , back to Christina , back to Jack , and so forth, \"statement 2\" :Lindy runs at a constant speed of 9 feet per second from Christina to Jack , back to Christina , back to Jack , and so forth, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "feetS1 = None\nfeetS2 = 9\nif feetS1 is None or feetS2 is None:\n print('neutral')\nelif feetS1 == feetS2:\n print('Entailment')\nelif feetS1 != feetS2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Mary has 1803 dollars with her, \"statement 2\" :Mary has more than 1803 dollars with her, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dollarsS1 = 1803\ndollarsS2 = 0\nif dollarsS1 is None or dollarsS2 is None:\n print('neutral')\nelif dollarsS1 == dollarsS2:\n print('Entailment')\nelif dollarsS1 != dollarsS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": 75 percent of Andrea ' s living room floor is covered by a carpet that is 4 feet by 9 feet, \"statement 2\" :25 percent of Andrea ' s living room floor is covered by a carpet that is 4 feet by 9 feet, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "percent_S1 = 75\npercent_S2 = 25\nif percent_S1 is None or percent_S2 is None:\n print('neutral')\nelif percent_S1 == percent_S2:\n print('Entailment')\nelif percent_S1 != percent_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Dana gives her parents 2 % of that amount back each month , how much will she still owe her parents after four years of college ?, \"statement 2\" :If Dana gives her parents less than 6 % of that amount back each month , how much will she still owe her parents after four years of college ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_S1 = 2\namount_S2 = 6\nif amount_S1 is None or amount_S2 is None:\n print('neutral')\nelif amount_S1 < amount_S2:\n print('Entailment')\nelif amount_S1 != amount_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": How many liters of blue paint must be added to 24 liters of Fuchsia to change it to Mauve paint ?, \"statement 2\" :How many liters of blue paint must be added to 44 liters of Fuchsia to change it to Mauve paint ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "liters_S1 = 24\nliters_S2 = 44\nif liters_S1 is None or liters_S2 is None:\n print('neutral')\nelif liters_S1 == liters_S2:\n print('Entailment')\nelif liters_S1 != liters_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If today in the morning Lally makes a payment of $ 7 , for how many days , including today , will she be connected to the internet without any additional payments , given her initial balance was $ 0 ?, \"statement 2\" :If today in the morning Lally makes a payment of $ less than 7 , for how many days , including today , will she be connected to the internet without any additional payments , given her initial balance was $ 0 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dollar_S1 = 7\nDollar_S2 = 0\nif Dollar_S1 is None or Dollar_S2 is None:\n print('neutral')\nelif Dollar_S1 == Dollar_S2:\n print('Entailment')\nelif Dollar_S1 != Dollar_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Albert is 2 times Mary \u2019 s age and 4 times as old as Betty, \"statement 2\" :Albert is less than 6 times Mary \u2019 s age and 4 times as old as Betty, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "times_S1 = 2\ntimes_S2 = 6\nif times_S1 is None or times_S2 is None:\n print('neutral')\nelif times_S1 < times_S2:\n print('Entailment')\nelif times_S1 != times_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Jack walked 9 miles in 1 hour and 15 minutes , what was his rate of walking in miles per hour ?, \"statement 2\" :If Jack walked more than 9 miles in 1 hour and 15 minutes , what was his rate of walking in miles per hour ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_S1 = 9\nmiles_S2 = 0\nif miles_S1 is None or miles_S2 is None:\n print('neutral')\nelif miles_S1 == miles_S2:\n print('Entailment')\nelif miles_S1 != miles_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Marcella has less than 44 pairs of shoes, \"statement 2\" :Marcella has 24 pairs of shoes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shoes_S1 = None\nshoes_S2 = 24\nif shoes_S1 is None or shoes_S2 is None:\n print('neutral')\nelif shoes_S1 == shoes_S2:\n print('Entailment')\nelif shoes_S1 != shoes_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": How many different combinations of less than 8 passengers can be formed from John ' s 6 friends ?, \"statement 2\" :How many different combinations of 3 passengers can be formed from John ' s 6 friends ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "passengers_S1 = None\npassengers_S2 = 3\nif passengers_S1 is None or passengers_S2 is None:\n print('neutral')\nelif passengers_S1 == passengers_S2:\n print('Entailment')\nelif passengers_S1 != passengers_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Martha has less than 7 dogs and 6 cats, \"statement 2\" :Martha has 5 dogs and 6 cats, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dogs_S1 = None\ndogs_S2 = 5\nif dogs_S1 is None or dogs_S2 is None:\n print('neutral')\nelif dogs_S1 == dogs_S2:\n print('Entailment')\nelif dogs_S1 != dogs_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": How many different ways can you arrange the more than 1 dancers in a line if Anne must be first or second, \"statement 2\" :How many different ways can you arrange the 4 dancers in a line if Anne must be first or second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dancers_S1 = None\ndancers_S2 = 4\nif dancers_S1 is None or dancers_S2 is None:\n print('neutral')\nelif dancers_S1 == dancers_S2:\n print('Entailment')\nelif dancers_S1 != dancers_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Mike can catch 15 fish in one hour , Jim can catch twice as much and Bob can catch 50 % more than Jim, \"statement 2\" :Mike can catch less than 15 fish in one hour , Jim can catch twice as much and Bob can catch 50 % more than Jim, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "fish_S1 = 15\nfish_S2 = 0\nif fish_S1 is None or fish_S2 is None:\n print('neutral')\nelif fish_S1 == fish_S2:\n print('Entailment')\nelif fish_S1 != fish_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": A boat crossed a lake from East to West at the speed of less than 8 km / h , entered a river and covered twice as much distance going upstream at 4 km / h, \"statement 2\" :A boat crossed a lake from East to West at the speed of 5 km / h , entered a river and covered twice as much distance going upstream at 4 km / h, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_S1 = None\nspeed_S2 = 5\nif speed_S1 is None or speed_S2 is None:\n print('neutral')\nelif speed_S1 == speed_S2:\n print('Entailment')\nelif speed_S1 != speed_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Nitin ranks 27 th in a class of 89 students, \"statement 2\" :Nitin ranks less than 77 th in a class of 89 students, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ranks_S1 = 27\nranks_S2 = 77\nif ranks_S1 is None or ranks_S2 is None:\n print('neutral')\nelif ranks_S1 < ranks_S2:\n print('Entailment')\nelif ranks_S1 != ranks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Quarters ( US $ 0.25 ) are stacked in less than 58 columns, \"statement 2\" :Quarters ( US $ 0.25 ) are stacked in 18 columns, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "columns_S1 = None\ncolumns_S2 = 18\nif columns_S1 is None or columns_S2 is None:\n print('neutral')\nelif columns_S1 == columns_S2:\n print('Entailment')\nelif columns_S1 != columns_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Roshan is 5 years younger than Raj and they have an age ratio 3 : 4 respectively, \"statement 2\" :Roshan is 2 years younger than Raj and they have an age ratio 3 : 4 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_S1 = 5\nyears_S2 = 2\nif years_S1 is None or years_S2 is None:\n print('neutral')\nelif years_S1 == years_S2:\n print('Entailment')\nelif years_S1 != years_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": There are 4 chess amateurs playing in Villa ' s chess club tournament, \"statement 2\" :There are more than 4 chess amateurs playing in Villa ' s chess club tournament, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "chess_S1 = 4\nchess_S2 = 0\nif chess_S1 is None or chess_S2 is None:\n print('neutral')\nelif chess_S1 == chess_S2:\n print('Entailment')\nelif chess_S1 != chess_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Each of three charities in Novel Grove Estates has 8 persons serving on its board of directors, \"statement 2\" :Each of three charities in Novel Grove Estates has more than 8 persons serving on its board of directors, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "persons_S1 = 8\npersons_S2 = 0\nif persons_S1 is None or persons_S2 is None:\n print('neutral')\nelif persons_S1 == persons_S2:\n print('Entailment')\nelif persons_S1 != persons_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": NHAI employs less than 600 men to build a highway of 2 km in 50 days working 8 hours a day, \"statement 2\" :NHAI employs 100 men to build a highway of 2 km in 50 days working 8 hours a day, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "men_S1 = None\nmen_S2 = 100\nif men_S1 is None or men_S2 is None:\n print('neutral')\nelif men_S1 == men_S2:\n print('Entailment')\nelif men_S1 != men_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Amanda goes to the toy store to buy 1 ball and 3 different board games, \"statement 2\" :Amanda goes to the toy store to buy less than 6 ball and 3 different board games, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ball_S1 = 1\nball_S2 = 6\nif ball_S1 is None or ball_S2 is None:\n print('neutral')\nelif ball_S1 < ball_S2:\n print('Entailment')\nelif ball_S1 != ball_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": John paid a 15 % tip over the original price of the dish , while Jane paid the tip over the discounted price for the coupon, \"statement 2\" :John paid a 25 % tip over the original price of the dish , while Jane paid the tip over the discounted price for the coupon, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "discounted_S1 = 15\ndiscounted_S2 = 25\nif discounted_S1 is None or discounted_S2 is None:\n print('neutral')\nelif discounted_S1 == discounted_S2:\n print('Entailment')\nelif discounted_S1 != discounted_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": How many different combinations of more than 2 passengers can be formed from John ' s 6 friends ?, \"statement 2\" :How many different combinations of 4 passengers can be formed from John ' s 6 friends ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "passengers_S1 = None\npassengers_S2 = 4\nif passengers_S1 is None or passengers_S2 is None:\n print('neutral')\nelif passengers_S1 == passengers_S2:\n print('Entailment')\nelif passengers_S1 != passengers_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jill works as a waitress at the local diner where she earns an hourly wage of $ 6.00 per hour and a standard tip rate of 35 % of the cost of the orders she serves, \"statement 2\" :Jill works as a waitress at the local diner where she earns an hourly wage of $ 6.00 per hour and a standard tip rate of 65 % of the cost of the orders she serves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tip_rate_S1 = 35\ntip_rate_S2 = 65\nif tip_rate_S1 is None or tip_rate_S2 is None:\n print('neutral')\nelif tip_rate_S1 == tip_rate_S2:\n print('Entailment')\nelif tip_rate_S1 != tip_rate_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Dana gives her parents 4 % of that amount back each month , how much will she still owe her parents after four years of college ?, \"statement 2\" :If Dana gives her parents less than 6 % of that amount back each month , how much will she still owe her parents after four years of college ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_S1 = 4\namount_S2 = 6\nif amount_S1 is None or amount_S2 is None:\n print('neutral')\nelif amount_S1 < amount_S2:\n print('Entailment')\nelif amount_S1 != amount_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mary works more than 2 hours per day on Monday , Wednesday and Friday , and 5 hours per day on Tuesday and Thursday, \"statement 2\" :Mary works 9 hours per day on Monday , Wednesday and Friday , and 5 hours per day on Tuesday and Thursday, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = None\nhours_S2 = 9\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 == hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": There are 300 seniors at Morse High School , and 40 % of them have cars, \"statement 2\" :There are 400 seniors at Morse High School , and 40 % of them have cars, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "seniors_S1 = 300\nseniors_S2 = 400\nif seniors_S1 is None or seniors_S2 is None:\n print('neutral')\nelif seniors_S1 == seniors_S2:\n print('Entailment')\nelif seniors_S1 != seniors_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mary played the game , getting at least one score of each of less than 8 , 2 , and 3 , and never getting the same score in consecutive steps, \"statement 2\" :Mary played the game , getting at least one score of each of 1 , 2 , and 3 , and never getting the same score in consecutive steps, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "score_S1 = None\nscore_S2 = 1\nif score_S1 is None or score_S2 is None:\n print('neutral')\nelif score_S1 == score_S2:\n print('Entailment')\nelif score_S1 != score_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Molly ' s age in 18 years will be five times her age six years ago, \"statement 2\" :Molly ' s age in more than 18 years will be five times her age six years ago, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_S1 = 18\nyears_S2 = 0\nif years_S1 is None or years_S2 is None:\n print('neutral')\nelif years_S1 == years_S2:\n print('Entailment')\nelif years_S1 != years_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At the same time Jose gets on an elevator on the 51 st floor of the same building and rides down at a rate of 63 floors per minute, \"statement 2\" :At the same time Jose gets on an elevator on the less than 61 st floor of the same building and rides down at a rate of 63 floors per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "floor_S1 = 51\nfloor_S2 = 61\nif floor_S1 is None or floor_S2 is None:\n print('neutral')\nelif floor_S1 < floor_S2:\n print('Entailment')\nelif floor_S1 != floor_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": List L : ABC , BCA , CAB In list L above , there are less than 4 positive integers , where each of A , B , and C is a different nonzero digit, \"statement 2\" :List L : ABC , BCA , CAB\nIn list L above , there are 3 positive integers , where each of A , B , and C is a different nonzero digit, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "positive_S1 = None\npositive_S2 = 3\nif positive_S1 is None or positive_S2 is None:\n print('neutral')\nelif positive_S1 == positive_S2:\n print('Entailment')\nelif positive_S1 != positive_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Anita goes away and Indu leaves 7 days before the work is finished, \"statement 2\" :Anita goes away and Indu leaves more than 7 days before the work is finished, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_S1 = 7\ndays_S2 = 0\nif days_S1 is None or days_S2 is None:\n print('neutral')\nelif days_S1 == days_S2:\n print('Entailment')\nelif days_S1 != days_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If 18 % of all the students at Morse have cars , how many students are in the three lower grades ?, \"statement 2\" :If less than 48 % of all the students at Morse have cars , how many students are in the three lower grades ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "students_S1 = 18\nstudents_S2 = 48\nif students_S1 is None or students_S2 is None:\n print('neutral')\nelif students_S1 < students_S2:\n print('Entailment')\nelif students_S1 != students_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Vijay sells a cupboard at less than 62 % below cost price, \"statement 2\" :Vijay sells a cupboard at 12 % below cost price, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "price_S1 = None\nprice_S2 = 12\nif price_S1 is None or price_S2 is None:\n print('neutral')\nelif price_S1 == price_S2:\n print('Entailment')\nelif price_S1 != price_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Kramer can pack 10 boxes of cigarettes per minute, \"statement 2\" :Kramer can pack less than 20 boxes of cigarettes per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nboxes_S1 = 10\nboxes_S2 = 20\nif boxes_S1 is None or boxes_S2 is None:\n print('neutral')\nelif boxes_S1 < boxes_S2:\n print('Entailment')\nelif boxes_S1 != boxes_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jill works as a waitress at the local diner where she earns an hourly wage of $ 8.00 per hour and a standard tip rate of less than 70 % of the cost of the orders she serves, \"statement 2\" :Jill works as a waitress at the local diner where she earns an hourly wage of $ 8.00 per hour and a standard tip rate of 30 % of the cost of the orders she serves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tip_rate_S1 = None\ntip_rate_S2 = 30\nif tip_rate_S1 is None or tip_rate_S2 is None:\n print('neutral')\nelif tip_rate_S1 == tip_rate_S2:\n print('Entailment')\nelif tip_rate_S1 != tip_rate_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the trip home took 1 / 2 hour longer than the trip to the beach , how many kilometers o did Carl drive each way ?, \"statement 2\" :If the trip home took less than 3 / 2 hour longer than the trip to the beach , how many kilometers o did Carl drive each way ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hour_S1 = 1/2\nhour_S2 = 3/2\nif hour_S1 is None or hour_S2 is None:\n print('neutral')\nelif hour_S1 < hour_S2:\n print('Entailment')\nelif hour_S1 != hour_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": John gives you another 100 balls, \"statement 2\" :John gives you another less than 300 balls, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "balls_S1 = 100\nballs_S2 = 300\nif balls_S1 is None or balls_S2 is None:\n print('neutral')\nelif balls_S1 < balls_S2:\n print('Entailment')\nelif balls_S1 != balls_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Another survey of 120 people in the town of Angie found that 60 % preferred Brand A, \"statement 2\" :Another survey of less than 120 people in the town of Angie found that 60 % preferred Brand A, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_S1 = 120\npeople_S2 = 0\nif people_S1 is None or people_S2 is None:\n print('neutral')\nelif people_S1 == people_S2:\n print('Entailment')\nelif people_S1 != people_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": John ' s Bank ' s saving amount is decreased 30 % due to loan payment and current balance is Rs, \"statement 2\" :John ' s Bank ' s saving amount is decreased less than 80 % due to loan payment and current balance is Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_S1 = 30\namount_S2 = 80\nif amount_S1 is None or amount_S2 is None:\n print('neutral')\nelif amount_S1 < amount_S2:\n print('Entailment')\nelif amount_S1 != amount_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Scott ' s average ( arithmetic mean ) golf score on his first four rounds was 58, \"statement 2\" :Scott ' s average ( arithmetic mean ) golf score on his first four rounds was 78, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "golf_score_S1 = 58\ngolf_score_S2 = 78\nif golf_score_S1 is None or golf_score_S2 is None:\n print('neutral')\nelif golf_score_S1 == golf_score_S2:\n print('Entailment')\nelif golf_score_S1 != golf_score_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Each week , Harry is paid x dollars per hour for the first less than 80 hours and 2 x dollars for each additional hour worked that week, \"statement 2\" :Each week , Harry is paid x dollars per hour for the first 30 hours and 2 x dollars for each additional hour worked that week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = None\nhours_S2 = 30\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 == hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": How many seconds does Sandy take to cover a distance of 500 meters , if Sandy runs at a speed of 15 km / hr ?, \"statement 2\" :How many seconds does Sandy take to cover a distance of less than 800 meters , if Sandy runs at a speed of 15 km / hr ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "meters_S1 = 500\nmeters_S2 = 800\nif meters_S1 is None or meters_S2 is None:\n print('neutral')\nelif meters_S1 < meters_S2:\n print('Entailment')\nelif meters_S1 != meters_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The London Racetrack needs to submit its less than 4 fastest horses to the Kentucky Derby out of 25 horses, \"statement 2\" :The London Racetrack needs to submit its 3 fastest horses to the Kentucky Derby out of 25 horses, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "horses_S1 = None\nhorses_S2 = 3\nif horses_S1 is None or horses_S2 is None:\n print('neutral')\nelif horses_S1 == horses_S2:\n print('Entailment')\nelif horses_S1 != horses_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If DON is coded as less than 58 and MASS is coded as 29 Then KING is coded as, \"statement 2\" :If DON is coded as 18 and MASS is coded as 29 Then KING is coded as, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "coded_S1 = None\ncoded_S2 = 18\nif coded_S1 is None or coded_S2 is None:\n print('neutral')\nelif coded_S1 == coded_S2:\n print('Entailment')\nelif coded_S1 != coded_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Roshan is 5 years younger than Raj and they have an age ratio 3 : 4 respectively, \"statement 2\" :Roshan is less than 6 years younger than Raj and they have an age ratio 3 : 4 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_S1 = 5\nyears_S2 = 6\nif years_S1 is None or years_S2 is None:\n print('neutral')\nelif years_S1 < years_S2:\n print('Entailment')\nelif years_S1 != years_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Patanjali walked for 3 days, \"statement 2\" :Patanjali walked for more than 2 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_S1 = 3\ndays_S2 = 2\nif days_S1 is None or days_S2 is None:\n print('neutral')\nelif days_S1 > days_S2:\n print('Entailment')\nelif days_S1 != days_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": An investor can sell her MicroTron stock for 36 $ per share and her Dynaco stock for 48 $ per share , If she sells 300 shares altogether , some of each stock , at an average price per share of 40 $ , how many shares of Dynaco stock has she sold ?, \"statement 2\" :An investor can sell her MicroTron stock for less than 76 $ per share and her Dynaco stock for 48 $ per share , If she sells 300 shares altogether , some of each stock , at an average price per share of 40 $ , how many shares of Dynaco stock has she sold ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "share_S1 = 36\nshare_S2 = 76\nif share_S1 is None or share_S2 is None:\n print('neutral')\nelif share_S1 < share_S2:\n print('Entailment')\nelif share_S1 != share_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Annie , working alone , can do the same job in just 10 hours, \"statement 2\" :Annie , working alone , can do the same job in just 30 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = 10\nhours_S2 = 30\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 == hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Suraj has a certain average of runs for more than 5 innings, \"statement 2\" :Suraj has a certain average of runs for 8 innings, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "innings_S1 = None\ninnings_S2 = 8\nif innings_S1 is None or innings_S2 is None:\n print('neutral')\nelif innings_S1 == innings_S2:\n print('Entailment')\nelif innings_S1 != innings_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jerry \u2019 s average ( arithmetic mean ) score on the first less than 4 of 4 tests is 90, \"statement 2\" :Jerry \u2019 s average ( arithmetic mean ) score on the first 3 of 4 tests is 90, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "score_S1 = None\nscore_S2 = 3\nif score_S1 is None or score_S2 is None:\n print('neutral')\nelif score_S1 == score_S2:\n print('Entailment')\nelif score_S1 != score_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Two twins sisters Sita and Geeta were standing back to back and suddenly they started running in opposite directions for less than 52 km each, \"statement 2\" :Two twins sisters Sita and Geeta were standing back to back and suddenly they started running in opposite directions for 12 km each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "directions_S1 = None\ndirections_S2 = 12\nif directions_S1 is None or directions_S2 is None:\n print('neutral')\nelif directions_S1 == directions_S2:\n print('Entailment')\nelif directions_S1 != directions_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In less than 6979 approximately 1 / 3 of the 32.3 million airline passengers traveling to or from the United States used Kennedy Airport, \"statement 2\" :In 1979 approximately 1 / 3 of the 32.3 million airline passengers traveling to or from the United States used Kennedy Airport, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "passengers_S1 = None\npassengers_S2 = 1979\nif passengers_S1 is None or passengers_S2 is None:\n print('neutral')\nelif passengers_S1 == passengers_S2:\n print('Entailment')\nelif passengers_S1 != passengers_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Two twins sisters Sita and Geeta were standing back to back and suddenly they started running in opposite directions for 12 km each, \"statement 2\" :Two twins sisters Sita and Geeta were standing back to back and suddenly they started running in opposite directions for less than 52 km each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "directions_S1 = 12\ndirections_S2 = 52\nif directions_S1 is None or directions_S2 is None:\n print('neutral')\nelif directions_S1 < directions_S2:\n print('Entailment')\nelif directions_S1 != directions_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In a locality , the prevailing price of a 700 square feet property last year was US Dollar 1000, \"statement 2\" :In a locality , the prevailing price of a less than 700 square feet property last year was US Dollar 1000, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "square_S1 = 700\nsquare_S2 = 0\nif square_S1 is None or square_S2 is None:\n print('neutral')\nelif square_S1 == square_S2:\n print('Entailment')\nelif square_S1 != square_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Triangle STV has sides ST = TV = 10 , and SV = 12, \"statement 2\" :Triangle STV has sides ST = TV = less than 50 , and SV = 12, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sides_S1 = 10\nsides_S2 = 50\nif sides_S1 is None or sides_S2 is None:\n print('neutral')\nelif sides_S1 < sides_S2:\n print('Entailment')\nelif sides_S1 != sides_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If 18 % of all the students at Morse have cars , how many students are in the three lower grades ?, \"statement 2\" :If 58 % of all the students at Morse have cars , how many students are in the three lower grades ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "students_S1 = 18\nstudents_S2 = 58\nif students_S1 is None or students_S2 is None:\n print('neutral')\nelif students_S1 == students_S2:\n print('Entailment')\nelif students_S1 != students_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": There are 25 stations between Delhi and Chennai, \"statement 2\" :There are 55 stations between Delhi and Chennai, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stations_S1 = 25\nstations_S2 = 55\nif stations_S1 is None or stations_S2 is None:\n print('neutral')\nelif stations_S1 == stations_S2:\n print('Entailment')\nelif stations_S1 != stations_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Shop Offered less than 80 % offer for every Shirt , Smith bought a shirt at Rs, \"statement 2\" :Shop Offered 20 % offer for every Shirt , Smith bought a shirt at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "offer_S1 = None\noffer_S2 = 20\nif offer_S1 is None or offer_S2 is None:\n print('neutral')\nelif offer_S1 == offer_S2:\n print('Entailment')\nelif offer_S1 != offer_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": When the river is running at 2 km / h , it takes the rower 1 hour to row to Big Rock and back, \"statement 2\" :When the river is running at more than 1 km / h , it takes the rower 1 hour to row to Big Rock and back, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "running_S1 = 2\nrunning_S2 = 1\nif running_S1 is None or running_S2 is None:\n print('neutral')\nelif running_S1 > running_S2:\n print('Entailment')\nelif running_S1 != running_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In a friendship gang Angel has 3 gang , in how many ways can he invite one or more of the gang to his house ?, \"statement 2\" :In a friendship gang Angel has 7 gang , in how many ways can he invite one or more of the gang to his house ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "friendship_gang_S1 = 3\nfriendship_gang_S2 = 7\nif friendship_gang_S1 is None or friendship_gang_S2 is None:\n print('neutral')\nelif friendship_gang_S1 == friendship_gang_S2:\n print('Entailment')\nelif friendship_gang_S1 != friendship_gang_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": There are 300 seniors at Morse High School , and 40 % of them have cars, \"statement 2\" :There are less than 800 seniors at Morse High School , and 40 % of them have cars, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "seniors_S1 = 300\nseniors_S2 = 800\nif seniors_S1 is None or seniors_S2 is None:\n print('neutral')\nelif seniors_S1 < seniors_S2:\n print('Entailment')\nelif seniors_S1 != seniors_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Andrew purchased 7 kg of grapes at the rate of 68 per kg and 9 kg of mangoes at the rate of 48 per kg, \"statement 2\" :Andrew purchased more than 1 kg of grapes at the rate of 68 per kg and 9 kg of mangoes at the rate of 48 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "grapes_S1 = 7\ngrapes_S2 = 1\nif grapes_S1 is None or grapes_S2 is None:\n print('neutral')\nelif grapes_S1 > grapes_S2:\n print('Entailment')\nelif grapes_S1 != grapes_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jill , who lives in City C , plans to visit 7 different cities , M , L , P , I , Y , B and S, \"statement 2\" :Jill , who lives in City C , plans to visit 6 different cities , M , L , P , I , Y , B and S, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cities_S1 = 7\ncities_S2 = 6\nif cities_S1 is None or cities_S2 is None:\n print('neutral')\nelif cities_S1 == cities_S2:\n print('Entailment')\nelif cities_S1 != cities_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Smitha bought 8 Kg of kiwi fruit at an average rate of 360, \"statement 2\" :Smitha bought more than 5 Kg of kiwi fruit at an average rate of 360, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kiwi_S1 = 8\nkiwi_S2 = 5\nif kiwi_S1 is None or kiwi_S2 is None:\n print('neutral')\nelif kiwi_S1 > kiwi_S2:\n print('Entailment')\nelif kiwi_S1 != kiwi_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Lexi needed to save for 30 days to afford a vacation at the job that paid her $ 125 per day, \"statement 2\" :Lexi needed to save for less than 80 days to afford a vacation at the job that paid her $ 125 per day, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_S1 = 30\ndays_S2 = 80\nif days_S1 is None or days_S2 is None:\n print('neutral')\nelif days_S1 < days_S2:\n print('Entailment')\nelif days_S1 != days_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": A train leaves Jammu for Chennai exactly at 12 noon everyday of the week, \"statement 2\" :A train leaves Jammu for Chennai exactly at 62 noon everyday of the week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "noon_S1 = 12\nnoon_S2 = 62\nif noon_S1 is None or noon_S2 is None:\n print('neutral')\nelif noon_S1 == noon_S2:\n print('Entailment')\nelif noon_S1 != noon_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": How many minutes does it take James to type more than 7 words if he types at the rate of 4 words per minute ?, \"statement 2\" :How many minutes does it take James to type 8 words if he types at the rate of 4 words per minute ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "words_S1 = None\nwords_S2 = 8\nif words_S1 is None or words_S2 is None:\n print('neutral')\nelif words_S1 == words_S2:\n print('Entailment')\nelif words_S1 != words_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Dana gives her parents 3 % of that amount back each month , how much will she still owe her parents after four years of college ?, \"statement 2\" :If Dana gives her parents less than 7 % of that amount back each month , how much will she still owe her parents after four years of college ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_S1 = 3\namount_S2 = 7\nif amount_S1 is None or amount_S2 is None:\n print('neutral')\nelif amount_S1 < amount_S2:\n print('Entailment')\nelif amount_S1 != amount_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": less than 588 and the true discount on the same sum for the same time is Rs, \"statement 2\" :288 and the true discount on the same sum for the same time is Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "discount_S1 = None\ndiscount_S2 = 288\nif discount_S1 is None or discount_S2 is None:\n print('neutral')\nelif discount_S1 == discount_S2:\n print('Entailment')\nelif discount_S1 != discount_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 2000 and Tony withdraws Rs, \"statement 2\" :7000 and Tony withdraws Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "withdraws_S1 = 2000\nwithdraws_S2 = 7000\nif withdraws_S1 is None or withdraws_S2 is None:\n print('neutral')\nelif withdraws_S1 == withdraws_S2:\n print('Entailment')\nelif withdraws_S1 != withdraws_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": City A to city B , Andrew drove for less than 5 hr at 42 mph and for 3 hours at 60 mph, \"statement 2\" :City A to city B , Andrew drove for 1 hr at 42 mph and for 3 hours at 60 mph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hr_S1 = None\nhr_S2 = 1\nif hr_S1 is None or hr_S2 is None:\n print('neutral')\nelif hr_S1 == hr_S2:\n print('Entailment')\nelif hr_S1 != hr_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Gali builds a tower using only red , green , and blue toy bricks in a ratio of more than 1 : 3 : 1, \"statement 2\" :Gali builds a tower using only red , green , and blue toy bricks in a ratio of 4 : 3 : 1, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_S1 = None\nratio_S2 = 4\nif ratio_S1 is None or ratio_S2 is None:\n print('neutral')\nelif ratio_S1 == ratio_S2:\n print('Entailment')\nelif ratio_S1 != ratio_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Kiran is younger than Bineesh by more than 6 years and their ages are in the respective ratio of 7 : 9, \"statement 2\" :Kiran is younger than Bineesh by 7 years and their ages are in the respective ratio of 7 : 9, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_S1 = None\nyears_S2 = 7\nif years_S1 is None or years_S2 is None:\n print('neutral')\nelif years_S1 == years_S2:\n print('Entailment')\nelif years_S1 != years_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 20 each , are purchased from Ram by Mohan at a price of Rs, \"statement 2\" :less than 60 each , are purchased from Ram by Mohan at a price of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rs_S1 = 20\nrs_S2 = 60\nif rs_S1 is None or rs_S2 is None:\n print('neutral')\nelif rs_S1 < rs_S2:\n print('Entailment')\nelif rs_S1 != rs_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Following the approval of crude oil production cuts by OPEC , the price of crude which has slumped by 28 % in the last 3 months is expected to rally and increase by about 5 % in the next one month, \"statement 2\" :Following the approval of crude oil production cuts by OPEC , the price of crude which has slumped by less than 68 % in the last 3 months is expected to rally and increase by about 5 % in the next one month, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "price_S1 = 28\nprice_S2 = 68\nif price_S1 is None or price_S2 is None:\n print('neutral')\nelif price_S1 < price_S2:\n print('Entailment')\nelif price_S1 != price_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jane is currently less than 54 years old , and she stopped baby - sitting 10 years ago, \"statement 2\" :Jane is currently 34 years old , and she stopped baby - sitting 10 years ago, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_S1 = None\nyears_S2 = 34\nif years_S1 is None or years_S2 is None:\n print('neutral')\nelif years_S1 == years_S2:\n print('Entailment')\nelif years_S1 != years_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Raman mixed 44 kg of butter at Rs, \"statement 2\" :Raman mixed less than 84 kg of butter at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "butter_S1 = 44\nbutter_S2 = 84\nif butter_S1 is None or butter_S2 is None:\n print('neutral')\nelif butter_S1 < butter_S2:\n print('Entailment')\nelif butter_S1 != butter_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Maddie has more than 18 apples , if she give 22 to mike , how many does she have left ?, \"statement 2\" :Maddie has 48 apples , if she give 22 to mike , how many does she have left ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "apples_S1 = None\napples_S2 = 48\nif apples_S1 is None or apples_S2 is None:\n print('neutral')\nelif apples_S1 == apples_S2:\n print('Entailment')\nelif apples_S1 != apples_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Nitin ranks 15 th in a class of 47 students, \"statement 2\" :Nitin ranks less than 75 th in a class of 47 students, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rank_S1 = 15\nrank_S2 = 75\nif rank_S1 is None or rank_S2 is None:\n print('neutral')\nelif rank_S1 < rank_S2:\n print('Entailment')\nelif rank_S1 != rank_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Sreedhar and Sravan together can do a work in 25 days, \"statement 2\" :Sreedhar and Sravan together can do a work in more than 25 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_S1 = 25\ndays_S2 = 0\nif days_S1 is None or days_S2 is None:\n print('neutral')\nelif days_S1 == days_S2:\n print('Entailment')\nelif days_S1 != days_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Two birds start flying simultaneously towards one another , the first leaving from West - Town at a speed of 4 kilometers per minute and the second bird , leaving from East - Town , at a speed of 1 kilometers per minute, \"statement 2\" :Two birds start flying simultaneously towards one another , the first leaving from West - Town at a speed of less than 7 kilometers per minute and the second bird , leaving from East - Town , at a speed of 1 kilometers per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kilometers_S1 = 4\nkilometers_S2 = 7\nif kilometers_S1 is None or kilometers_S2 is None:\n print('neutral')\nelif kilometers_S1 < kilometers_S2:\n print('Entailment')\nelif kilometers_S1 != kilometers_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": How many ways are there for more than 2 males and 3 females to sit ( around a circular table ) if no male should sit next to a male ( and no female next to female ) and Mary wants to sit with her back on the wall ?, \"statement 2\" :How many ways are there for 4 males and 3 females to sit ( around a circular table ) if no male should sit next to a male ( and no female next to female ) and Mary wants to sit with her back on the wall ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "males_S1 = None\nmales_S2 = 4\nif males_S1 is None or males_S2 is None:\n print('neutral')\nelif males_S1 == males_S2:\n print('Entailment')\nelif males_S1 != males_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In a class of boys and girls Vikas ' s rank is 9 th and Tanvi ' s rank is 17 th, \"statement 2\" :In a class of boys and girls Vikas ' s rank is more than 9 th and Tanvi ' s rank is 17 th, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rank_S1 = 9\nrank_S2 = 0\nif rank_S1 is None or rank_S2 is None:\n print('neutral')\nelif rank_S1 == rank_S2:\n print('Entailment')\nelif rank_S1 != rank_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Marcella has 27 pairs of shoes, \"statement 2\" :Marcella has more than 17 pairs of shoes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shoes_S1 = 27\nshoes_S2 = 17\nif shoes_S1 is None or shoes_S2 is None:\n print('neutral')\nelif shoes_S1 > shoes_S2:\n print('Entailment')\nelif shoes_S1 != shoes_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Annie , working alone , can do the same job in just 10 hours, \"statement 2\" :Annie , working alone , can do the same job in just less than 20 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = 10\nhours_S2 = 20\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 < hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At the same time , Albert gets on an elevator at the less than 61 st floor of the same building and rides down at the rate of 63 floors per minute, \"statement 2\" :At the same time , Albert gets on an elevator at the 51 st floor of the same building and rides down at the rate of 63 floors per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "floor_S1 = None\nfloor_S2 = 51\nif floor_S1 is None or floor_S2 is None:\n print('neutral')\nelif floor_S1 < floor_S2:\n print('Entailment')\nelif floor_S1 != floor_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": While driving from City A to City B , Ed drives at a constant speed of more than 20 miles per hour, \"statement 2\" :While driving from City A to City B , Ed drives at a constant speed of 30 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_S1 = None\nmiles_S2 = 30\nif miles_S1 is None or miles_S2 is None:\n print('neutral')\nelif miles_S1 == miles_S2:\n print('Entailment')\nelif miles_S1 != miles_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Dan leaves City A 90 minutes after Cara, \"statement 2\" :Dan leaves City A more than 20 minutes after Cara, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "minutes_S1 = 90\nminutes_S2 = 20\nif minutes_S1 is None or minutes_S2 is None:\n print('neutral')\nelif minutes_S1 > minutes_S2:\n print('Entailment')\nelif minutes_S1 != minutes_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Molly ' s age in 18 years will be six times her age seven years ago, \"statement 2\" :Molly ' s age in less than 88 years will be six times her age seven years ago, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_S1 = 18\nyears_S2 = 88\nif years_S1 is None or years_S2 is None:\n print('neutral')\nelif years_S1 < years_S2:\n print('Entailment')\nelif years_S1 != years_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": There are less than 500 seniors at Morse High School , and 50 % of them have cars, \"statement 2\" :There are 300 seniors at Morse High School , and 50 % of them have cars, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "seniors_S1 = None\nseniors_S2 = 300\nif seniors_S1 is None or seniors_S2 is None:\n print('neutral')\nelif seniors_S1 == seniors_S2:\n print('Entailment')\nelif seniors_S1 != seniors_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jerry travels 8 miles at an average speed of 40 miles per hour , stops for 14 minutes , and then travels another 20 miles at an average speed of 60 miles per hour, \"statement 2\" :Jerry travels more than 5 miles at an average speed of 40 miles per hour , stops for 14 minutes , and then travels another 20 miles at an average speed of 60 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_S1 = 8\nmiles_S2 = 5\nif miles_S1 is None or miles_S2 is None:\n print('neutral')\nelif miles_S1 > miles_S2:\n print('Entailment')\nelif miles_S1 != miles_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If T = 5 / 9 * ( K - 32 ) , and if T = 105 , then what is the value of K ?, \"statement 2\" :If T = less than 5 / 9 * ( K - 32 ) , and if T = 105 , then what is the value of K ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "value_S1 = 5/9\nvalue_S2 = 0\nif value_S1 is None or value_S2 is None:\n print('neutral')\nelif value_S1 == value_S2:\n print('Entailment')\nelif value_S1 != value_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If X , Y and Z are digits and 7 XYZ is a 4 - digit number that is divisible by 2 , which of the following is a possible product of X , Y and Z ?, \"statement 2\" :If X , Y and Z are digits and more than 5 XYZ is a 4 - digit number that is divisible by 2 , which of the following is a possible product of X , Y and Z ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "digits_S1 = 7\ndigits_S2 = 5\nif digits_S1 is None or digits_S2 is None:\n print('neutral')\nelif digits_S1 > digits_S2:\n print('Entailment')\nelif digits_S1 != digits_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Following the approval of crude oil production cuts by OPEC , the price of crude which has slumped by 28 % in the last 3 months is expected to rally and increase by about 5 % in the next one month, \"statement 2\" :Following the approval of crude oil production cuts by OPEC , the price of crude which has slumped by more than 28 % in the last 3 months is expected to rally and increase by about 5 % in the next one month, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "price_S1 = 28\nprice_S2 = 0\nif price_S1 is None or price_S2 is None:\n print('neutral')\nelif price_S1 == price_S2:\n print('Entailment')\nelif price_S1 != price_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 20,000 for 6 months , where as Rick invested his amount for the whole year , what was the amount invested by Rick ?, \"statement 2\" :20,000 for less than 7 months , where as Rick invested his amount for the whole year , what was the amount invested by Rick ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "months_S1 = 6\nmonths_S2 = 7\nif months_S1 is None or months_S2 is None:\n print('neutral')\nelif months_S1 < months_S2:\n print('Entailment')\nelif months_S1 != months_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If gas costs $ 4 / gallon , then how many miles can Dan \u2019 s car go on $ 42 of gas ?, \"statement 2\" :If gas costs $ more than 2 / gallon , then how many miles can Dan \u2019 s car go on $ 42 of gas ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dollar_S1 = 4\ndollar_S2 = 2\nif dollar_S1 is None or dollar_S2 is None:\n print('neutral')\nelif dollar_S1 > dollar_S2:\n print('Entailment')\nelif dollar_S1 != dollar_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the trip home took 1 / 2 hour longer than the trip to the beach , how many kilometers o did Carl drive each way ?, \"statement 2\" :If the trip home took 4 / 2 hour longer than the trip to the beach , how many kilometers o did Carl drive each way ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hour_S1 = 1/2\nhour_S2 = 4/2\nif hour_S1 is None or hour_S2 is None:\n print('neutral')\nelif hour_S1 == hour_S2:\n print('Entailment')\nelif hour_S1 != hour_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Fred and Sam are standing less than 800 miles apart and they start walking in a straight line toward each other at the same time, \"statement 2\" :Fred and Sam are standing 100 miles apart and they start walking in a straight line toward each other at the same time, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_S1 = None\nmiles_S2 = 100\nif miles_S1 is None or miles_S2 is None:\n print('neutral')\nelif miles_S1 == miles_S2:\n print('Entailment')\nelif miles_S1 != miles_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Amanda goes to the toy store to buy less than 4 ball and 3 different board games, \"statement 2\" :Amanda goes to the toy store to buy 1 ball and 3 different board games, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ball_S1 = None\nball_S2 = 1\nif ball_S1 is None or ball_S2 is None:\n print('neutral')\nelif ball_S1 == ball_S2:\n print('Entailment')\nelif ball_S1 != ball_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In the city of San Durango , less than 70 people own cats , dogs , or rabbits, \"statement 2\" :In the city of San Durango , 50 people own cats , dogs , or rabbits, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_S1 = None\npeople_S2 = 50\nif people_S1 is None or people_S2 is None:\n print('neutral')\nelif people_S1 == people_S2:\n print('Entailment')\nelif people_S1 != people_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In ABC limited , more than 25 % are using Samsung phone at the same time 70 % using i phone ; If in the same company 85 % are using Samsung phone then , what is the percentage of i phone user ?, \"statement 2\" :In ABC limited , 75 % are using Samsung phone at the same time 70 % using i phone ; If in the same company 85 % are using Samsung phone then , what is the percentage of i phone user ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "phone_S1 = None\nphone_S2 = 75\nif phone_S1 is None or phone_S2 is None:\n print('neutral')\nelif phone_S1 == phone_S2:\n print('Entailment')\nelif phone_S1 != phone_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Last week James worked a total of 45 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"statement 2\" :Last week James worked a total of less than 55 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = 45\nhours_S2 = 55\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 < hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Patrick has a lock that contains a 3 digit password, \"statement 2\" :Patrick has a lock that contains a less than 7 digit password, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "digit_S1 = 3\ndigit_S2 = 7\nif digit_S1 is None or digit_S2 is None:\n print('neutral')\nelif digit_S1 < digit_S2:\n print('Entailment')\nelif digit_S1 != digit_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Sean , who weighs 200 pounds , is in the elevator with two packages weighing 150 pounds and 280 pounds, \"statement 2\" :Sean , who weighs less than 800 pounds , is in the elevator with two packages weighing 150 pounds and 280 pounds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "weighs_S1 = 200\nweighs_S2 = 800\nif weighs_S1 is None or weighs_S2 is None:\n print('neutral')\nelif weighs_S1 < weighs_S2:\n print('Entailment')\nelif weighs_S1 != weighs_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Triangle STV has sides ST = TV = 26 , and SV = 20, \"statement 2\" :Triangle STV has sides ST = TV = less than 26 , and SV = 20, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sides_S1 = 26\nsides_S2 = 0\nif sides_S1 is None or sides_S2 is None:\n print('neutral')\nelif sides_S1 == sides_S2:\n print('Entailment')\nelif sides_S1 != sides_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If gas costs $ 4 / gallon , then how many miles can Dan \u2019 s car go on $ 42 of gas ?, \"statement 2\" :If gas costs $ 7 / gallon , then how many miles can Dan \u2019 s car go on $ 42 of gas ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dollar_S1 = 4\ndollar_S2 = 7\nif dollar_S1 is None or dollar_S2 is None:\n print('neutral')\nelif dollar_S1 == dollar_S2:\n print('Entailment')\nelif dollar_S1 != dollar_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mary selects a total of 10 apples and oranges from the food stand , and the average ( arithmetic mean ) price of the 10 pieces of fruit is 56 \u00a2, \"statement 2\" :Mary selects a total of 20 apples and oranges from the food stand , and the average ( arithmetic mean ) price of the 10 pieces of fruit is 56 \u00a2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "apples_S1 = 10\napples_S2 = 20\nif apples_S1 is None or apples_S2 is None:\n print('neutral')\nelif apples_S1 == apples_S2:\n print('Entailment')\nelif apples_S1 != apples_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Pat runs at more than 1 miles per hour , and Cara runs at 5 miles per hour, \"statement 2\" :Pat runs at 9 miles per hour , and Cara runs at 5 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_S1 = None\nmiles_S2 = 9\nif miles_S1 is None or miles_S2 is None:\n print('neutral')\nelif miles_S1 == miles_S2:\n print('Entailment')\nelif miles_S1 != miles_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": How many combinations does Barbara have , if she doesn \u2019 t wear 2 specific socks with 1 specific pair of shoes ?, \"statement 2\" :How many combinations does Barbara have , if she doesn \u2019 t wear 7 specific socks with 1 specific pair of shoes ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "wear_S1 = 2\nwear_S2 = 7\nif wear_S1 is None or wear_S2 is None:\n print('neutral')\nelif wear_S1 == wear_S2:\n print('Entailment')\nelif wear_S1 != wear_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Meg and Bob are among the 7 participants in a cycling race, \"statement 2\" :Meg and Bob are among the 2 participants in a cycling race, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "participants_S1 = 7\nparticipants_S2 = 2\nif participants_S1 is None or participants_S2 is None:\n print('neutral')\nelif participants_S1 == participants_S2:\n print('Entailment')\nelif participants_S1 != participants_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Two birds start flying simultaneously towards one another , the first leaving from West - Town at a speed of less than 7 kilometers per minute and the second bird , leaving from East - Town , at a speed of 1 kilometers per minute, \"statement 2\" :Two birds start flying simultaneously towards one another , the first leaving from West - Town at a speed of 4 kilometers per minute and the second bird , leaving from East - Town , at a speed of 1 kilometers per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kilometers_S1 = None\nkilometers_S2 = 4\nif kilometers_S1 is None or kilometers_S2 is None:\n print('neutral')\nelif kilometers_S1 == kilometers_S2:\n print('Entailment')\nelif kilometers_S1 != kilometers_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mary has a monthly salary of $ less than 3200, \"statement 2\" :Mary has a monthly salary of $ 1200, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "salary_S1 = None\nsalary_S2 = 1200\nif salary_S1 is None or salary_S2 is None:\n print('neutral')\nelif salary_S1 == salary_S2:\n print('Entailment')\nelif salary_S1 != salary_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At the same time , Albert gets on an elevator at the 51 st floor of the same building and rides down at the rate of 63 floors per minute, \"statement 2\" :At the same time , Albert gets on an elevator at the 81 st floor of the same building and rides down at the rate of 63 floors per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nfloor_S1 = 51\nfloor_S2 = 81\nif floor_S1 is None or floor_S2 is None:\n print('neutral')\nelif floor_S1 == floor_S2:\n print('Entailment')\nelif floor_S1 != floor_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": David obtained 76 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , mathematics , physics , chemistry and biology, \"statement 2\" :David obtained less than 86 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , mathematics , physics , chemistry and biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_S1 = 76\nmarks_S2 = 86\nif marks_S1 is None or marks_S2 is None:\n print('neutral')\nelif marks_S1 < marks_S2:\n print('Entailment')\nelif marks_S1 != marks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": How many different combinations of 4 passengers can be formed from John ' s 6 friends ?, \"statement 2\" :How many different combinations of more than 4 passengers can be formed from John ' s 6 friends ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "passengers_S1 = 4\npassengers_S2 = 0\nif passengers_S1 is None or passengers_S2 is None:\n print('neutral')\nelif passengers_S1 == passengers_S2:\n print('Entailment')\nelif passengers_S1 != passengers_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": City A to city B , Andrew drove for 1 hr at 42 mph and for 3 hours at 60 mph, \"statement 2\" :City A to city B , Andrew drove for less than 5 hr at 42 mph and for 3 hours at 60 mph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "drove_S1 = 1\ndrove_S2 = 5\nif drove_S1 is None or drove_S2 is None:\n print('neutral')\nelif drove_S1 < drove_S2:\n print('Entailment')\nelif drove_S1 != drove_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": There are 300 seniors at Morse High School , and 50 % of them have cars, \"statement 2\" :There are less than 500 seniors at Morse High School , and 50 % of them have cars, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "seniors_S1 = 300\nseniors_S2 = 500\nif seniors_S1 is None or seniors_S2 is None:\n print('neutral')\nelif seniors_S1 < seniors_S2:\n print('Entailment')\nelif seniors_S1 != seniors_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The ratio between the number of sheep and the number of horses at the Stewart farm is 1 to 7 , If each horse is fed 230 ounces of horse food per day and the farm needs a total 12,880 ounces of horse food per day , what is the number of sheep in the farm ?, \"statement 2\" :The ratio between the number of sheep and the number of horses at the Stewart farm is less than 6 to 7 , If each horse is fed 230 ounces of horse food per day and the farm needs a total 12,880 ounces of horse food per day , what is the number of sheep in the farm ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "horses_S1 = 1\nhorses_S2 = 6\nif horses_S1 is None or horses_S2 is None:\n print('neutral')\nelif horses_S1 < horses_S2:\n print('Entailment')\nelif horses_S1 != horses_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Shop Offered 20 % offer for every Shirt , Smith bought a shirt at Rs, \"statement 2\" :Shop Offered less than 80 % offer for every Shirt , Smith bought a shirt at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "offer_S1 = 20\noffer_S2 = 80\nif offer_S1 is None or offer_S2 is None:\n print('neutral')\nelif offer_S1 < offer_S2:\n print('Entailment')\nelif offer_S1 != offer_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In an exam , Bright scored 60 percent , Bivi scored 65 percent and Lisa 45 percent, \"statement 2\" :In an exam , Bright scored more than 40 percent , Bivi scored 65 percent and Lisa 45 percent, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "scored_percent_S1 = 60\nscored_percent_S2 = 40\nif scored_percent_S1 is None or scored_percent_S2 is None:\n print('neutral')\nelif scored_percent_S1 > scored_percent_S2:\n print('Entailment')\nelif scored_percent_S1 != scored_percent_S2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 20 each , are purchased from Ram by Mohan at a price of Rs, \"statement 2\" :more than 20 each , are purchased from Ram by Mohan at a price of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rs_S1 = 20\nrs_S2 = 0\nif rs_S1 is None or rs_S2 is None:\n print('neutral')\nelif rs_S1 == rs_S2:\n print('Entailment')\nelif rs_S1 != rs_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Joe \u2019 s average ( arithmetic mean ) test score across 4 equally weighted tests was 45, \"statement 2\" :Joe \u2019 s average ( arithmetic mean ) test score across more than 3 equally weighted tests was 45, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "test_score_S1 = 4\ntest_score_S2 = 3\nif test_score_S1 is None or test_score_S2 is None:\n print('neutral')\nelif test_score_S1 > test_score_S2:\n print('Entailment')\nelif test_score_S1 != test_score_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Each week , James is paid x dollars per per hour for the first 40 hours and 2 x dollars for each additional hour worked that week, \"statement 2\" :Each week , James is paid x dollars per per hour for the first less than 40 hours and 2 x dollars for each additional hour worked that week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = 40\nhours_S2 = 0\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 == hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": With the help of Pavan , they completed the work in more than 7 days and earned Rs, \"statement 2\" :With the help of Pavan , they completed the work in 8 days and earned Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_S1 = None\ndays_S2 = 8\nif days_S1 is None or days_S2 is None:\n print('neutral')\nelif days_S1 == days_S2:\n print('Entailment')\nelif days_S1 != days_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Jerry wants to raise his average by less than 7 points , what score must he earn on the fourth test ?, \"statement 2\" :If Jerry wants to raise his average by 2 points , what score must he earn on the fourth test ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "points_S1 = None\npoints_S2 = 2\nif points_S1 is None or points_S2 is None:\n print('neutral')\nelif points_S1 == points_S2:\n print('Entailment')\nelif points_S1 != points_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The London Racetrack needs to submit its 3 fastest horses to the Kentucky Derby out of 25 horses, \"statement 2\" :The London Racetrack needs to submit its 4 fastest horses to the Kentucky Derby out of 25 horses, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "horses_S1 = 3\nhorses_S2 = 4\nif horses_S1 is None or horses_S2 is None:\n print('neutral')\nelif horses_S1 == horses_S2:\n print('Entailment')\nelif horses_S1 != horses_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Matt is touring a nation in which coins are issued in two amounts , 2 \u00a2 and 5 \u00a2 , which are made of iron and copper , respectively, \"statement 2\" :Matt is touring a nation in which coins are issued in two amounts , more than 2 \u00a2 and 5 \u00a2 , which are made of iron and copper , respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "coin_S1 = 2\ncoin_S2 = 0\nif coin_S1 is None or coin_S2 is None:\n print('neutral')\nelif coin_S1 == coin_S2:\n print('Entailment')\nelif coin_S1 != coin_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": How many seconds does Sandy take to cover a distance of less than 800 meters , if Sandy runs at a speed of 15 km / hr ?, \"statement 2\" :How many seconds does Sandy take to cover a distance of 500 meters , if Sandy runs at a speed of 15 km / hr ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "meters_S1 = None\nmeters_S2 = 500\nif meters_S1 is None or meters_S2 is None:\n print('neutral')\nelif meters_S1 == meters_S2:\n print('Entailment')\nelif meters_S1 != meters_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": I want to give 95 $ to John, \"statement 2\" :I want to give more than 85 $ to John, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dollar_S1 = 95\ndollar_S2 = 85\nif dollar_S1 is None or dollar_S2 is None:\n print('neutral')\nelif dollar_S1 > dollar_S2:\n print('Entailment')\nelif dollar_S1 != dollar_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Two twins sisters Sita and Geeta were standing back to back and suddenly they started running in opposite directions for 2 km each, \"statement 2\" :Two twins sisters Sita and Geeta were standing back to back and suddenly they started running in opposite directions for less than 3 km each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "directions_S1 = 2\ndirections_S2 = 3\nif directions_S1 is None or directions_S2 is None:\n print('neutral')\nelif directions_S1 < directions_S2:\n print('Entailment')\nelif directions_S1 != directions_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": A truck uses more than 20 - gallon fuel tank wants to travel to Cleveland , which is 480 miles away, \"statement 2\" :A truck uses 60 - gallon fuel tank wants to travel to Cleveland , which is 480 miles away, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gallon_fuel_S1 = None\ngallon_fuel_S2 = 60\nif gallon_fuel_S1 is None or gallon_fuel_S2 is None:\n print('neutral')\nelif gallon_fuel_S1 == gallon_fuel_S2:\n print('Entailment')\nelif gallon_fuel_S1 != gallon_fuel_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jones gave 40 % of the money he had to his wife, \"statement 2\" :Jones gave less than 60 % of the money he had to his wife, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "money_S1 = 40\nmoney_S2 = 60\nif money_S1 is None or money_S2 is None:\n print('neutral')\nelif money_S1 < money_S2:\n print('Entailment')\nelif money_S1 != money_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mark sold 6 boxes less than n and Ann sold 2 boxes less than n, \"statement 2\" :Mark sold less than 6 boxes less than n and Ann sold 2 boxes less than n, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boxes_S1 = 6\nboxes_S2 = 0\nif boxes_S1 is None or boxes_S2 is None:\n print('neutral')\nelif boxes_S1 == boxes_S2:\n print('Entailment')\nelif boxes_S1 != boxes_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Diane find 1 can of paint are just enough to paint one third of her room, \"statement 2\" :Diane find less than 2 can of paint are just enough to paint one third of her room, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "can_S1 = 1\ncan_S2 = 2\nif can_S1 is None or can_S2 is None:\n print('neutral')\nelif can_S1 < can_S2:\n print('Entailment')\nelif can_S1 != can_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Raviraj invested an amount of 100000 at compound interest rate of 10 pcpa for a period of three years, \"statement 2\" :Raviraj invested an amount of less than 600000 at compound interest rate of 10 pcpa for a period of three years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_S1 = 100000\namount_S2 = 600000\nif amount_S1 is None or amount_S2 is None:\n print('neutral')\nelif amount_S1 < amount_S2:\n print('Entailment')\nelif amount_S1 != amount_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the distance between their homes is 40 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"statement 2\" :If the distance between their homes is more than 10 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kilometers_S1 = 40\nkilometers_S2 = 10\nif kilometers_S1 is None or kilometers_S2 is None:\n print('neutral')\nelif kilometers_S1 > kilometers_S2:\n print('Entailment')\nelif kilometers_S1 != kilometers_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In an exam , Dibi scored 25 percent , Balan scored 38 percent and Cristen 23 percent, \"statement 2\" :In an exam , Dibi scored less than 35 percent , Balan scored 38 percent and Cristen 23 percent, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "percent_S1 = 25\npercent_S2 = 35\nif percent_S1 is None or percent_S2 is None:\n print('neutral')\nelif percent_S1 < percent_S2:\n print('Entailment')\nelif percent_S1 != percent_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": After 10 minutes , Pat stops to stretch, \"statement 2\" :After less than 20 minutes , Pat stops to stretch, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nminutes_S1 = 10\nminutes_S2 = 20\nif minutes_S1 is None or minutes_S2 is None:\n print('neutral')\nelif minutes_S1 < minutes_S2:\n print('Entailment')\nelif minutes_S1 != minutes_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At Veridux Corporation , there are 218 employees, \"statement 2\" :At Veridux Corporation , there are 118 employees, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "employees_S1 = 218\nemployees_S2 = 118\nif employees_S1 is None or employees_S2 is None:\n print('neutral')\nelif employees_S1 == employees_S2:\n print('Entailment')\nelif employees_S1 != employees_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Vinod climbs 60 steps in 40 seconds, \"statement 2\" :Vinod climbs 80 steps in 40 seconds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "steps_S1 = 60\nsteps_S2 = 80\nif steps_S1 is None or steps_S2 is None:\n print('neutral')\nelif steps_S1 == steps_S2:\n print('Entailment')\nelif steps_S1 != steps_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": While driving from City A to City B , Cara drives at a constant speed of 30 miles per hour, \"statement 2\" :While driving from City A to City B , Cara drives at a constant speed of less than 50 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_S1 = 30\nmiles_S2 = 50\nif miles_S1 is None or miles_S2 is None:\n print('neutral')\nelif miles_S1 < miles_S2:\n print('Entailment')\nelif miles_S1 != miles_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Alice walked for 3 days, \"statement 2\" :Alice walked for 6 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_S1 = 3\ndays_S2 = 6\nif days_S1 is None or days_S2 is None:\n print('neutral')\nelif days_S1 == days_S2:\n print('Entailment')\nelif days_S1 != days_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": more than 2600 among John , Jose & Binoy in the ration 2 : 4 : 6, \"statement 2\" :6600 among John , Jose & Binoy in the ration 2 : 4 : 6, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "statement_S1 = None\nstatement_S2 = 6600\nif statement_S1 is None or statement_S2 is None:\n print('neutral')\nelif statement_S1 == statement_S2:\n print('Entailment')\nelif statement_S1 != statement_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The time required by a train to cover the distance between Chennai and Jammu is exactly 7 days and 1 minute, \"statement 2\" :The time required by a train to cover the distance between Chennai and Jammu is exactly more than 7 days and 1 minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_S1 = 7\ndays_S2 = 0\nif days_S1 is None or days_S2 is None:\n print('neutral')\nelif days_S1 == days_S2:\n print('Entailment')\nelif days_S1 != days_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Tina has 5 socks and 3 pair of shoes, \"statement 2\" :Tina has more than 1 socks and 3 pair of shoes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "socks_S1 = 5\nsocks_S2 = 1\nif socks_S1 is None or socks_S2 is None:\n print('neutral')\nelif socks_S1 > socks_S2:\n print('Entailment')\nelif socks_S1 != socks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Marie has 248 $ in her account of the bank, \"statement 2\" :Marie has less than 548 $ in her account of the bank, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dollar_S1 = 248\ndollar_S2 = 548\nif dollar_S1 is None or dollar_S2 is None:\n print('neutral')\nelif dollar_S1 < dollar_S2:\n print('Entailment')\nelif dollar_S1 != dollar_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Leo gains less than 50 pounds , he will weigh 50 % more than his sister Kendra, \"statement 2\" :If Leo gains 10 pounds , he will weigh 50 % more than his sister Kendra, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pounds_S1 = None\npounds_S2 = 10\nif pounds_S1 is None or pounds_S2 is None:\n print('neutral')\nelif pounds_S1 == pounds_S2:\n print('Entailment')\nelif pounds_S1 != pounds_S2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Angela has 13 pairs of matched socks, \"statement 2\" :Angela has less than 83 pairs of matched socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "socks_S1 = 13\nsocks_S2 = 83\nif socks_S1 is None or socks_S2 is None:\n print('neutral')\nelif socks_S1 < socks_S2:\n print('Entailment')\nelif socks_S1 != socks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At the faculty of Aerospace Engineering , 302 students study Random - processing methods , 232 students study Scramjet rocket engines and 112 students study them both, \"statement 2\" :At the faculty of Aerospace Engineering , more than 102 students study Random - processing methods , 232 students study Scramjet rocket engines and 112 students study them both, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "students_S1 = 302\nstudents_S2 = 102\nif students_S1 is None or students_S2 is None:\n print('neutral')\nelif students_S1 > students_S2:\n print('Entailment')\nelif students_S1 != students_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mira is making telescopes , each consisting of 2 lenses , 1 tube , and 1 eyepiece, \"statement 2\" :Mira is making telescopes , each consisting of less than 7 lenses , 1 tube , and 1 eyepiece, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "lenses_S1 = 2\nlenses_S2 = 7\nif lenses_S1 is None or lenses_S2 is None:\n print('neutral')\nelif lenses_S1 < lenses_S2:\n print('Entailment')\nelif lenses_S1 != lenses_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Calculate the average mark scored by Andrea if he had the following scores in an examination : 66 , 60 , 72 , 77 , 55 and 85 marks ( out of 100 ) in English , Mathematics , Chemistry , Biology , French Language and Physics respectively ?, \"statement 2\" :Calculate the average mark scored by Andrea if he had the following scores in an examination : less than 76 , 60 , 72 , 77 , 55 and 85 marks ( out of 100 ) in English , Mathematics , Chemistry , Biology , French Language and Physics respectively ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "scores_S1 = 66\nscores_S2 = 76\nif scores_S1 is None or scores_S2 is None:\n print('neutral')\nelif scores_S1 < scores_S2:\n print('Entailment')\nelif scores_S1 != scores_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If T = 5 / 9 * ( K - 32 ) , and if T = 20 , then what is the value of K ?, \"statement 2\" :If T = more than 2 / 9 * ( K - 32 ) , and if T = 20 , then what is the value of K ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "value_S1 = 5/9\nvalue_S2 = 2/9\nif value_S1 is None or value_S2 is None:\n print('neutral')\nelif value_S1 > value_S2:\n print('Entailment')\nelif value_S1 != value_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Kyle is a lumberjack with 12 trees to cut down, \"statement 2\" :Kyle is a lumberjack with less than 72 trees to cut down, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "trees_S1 = 12\ntrees_S2 = 72\nif trees_S1 is None or trees_S2 is None:\n print('neutral')\nelif trees_S1 < trees_S2:\n print('Entailment')\nelif trees_S1 != trees_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": more than 4000 which he and Rick earned at the end of one year, \"statement 2\" :9000 which he and Rick earned at the end of one year, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "earned_S1 = None\nearned_S2 = 9000\nif earned_S1 is None or earned_S2 is None:\n print('neutral')\nelif earned_S1 == earned_S2:\n print('Entailment')\nelif earned_S1 != earned_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": On the first day of her vacation , Louisa traveled less than 440 miles, \"statement 2\" :On the first day of her vacation , Louisa traveled 240 miles, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_S1 = None\nmiles_S2 = 240\nif miles_S1 is None or miles_S2 is None:\n print('neutral')\nelif miles_S1 == miles_S2:\n print('Entailment')\nelif miles_S1 != miles_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": loyd wants to fence his Square shaped land of 120 Sqft each side, \"statement 2\" :loyd wants to fence his Square shaped land of less than 320 Sqft each side, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "side_S1 = 120\nside_S2 = 320\nif side_S1 is None or side_S2 is None:\n print('neutral')\nelif side_S1 < side_S2:\n print('Entailment')\nelif side_S1 != side_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Pat runs at 9 miles per hour , and Cara runs at 5 miles per hour, \"statement 2\" :Pat runs at more than 9 miles per hour , and Cara runs at 5 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_S1 = 9\nmiles_S2 = 0\nif miles_S1 is None or miles_S2 is None:\n print('neutral')\nelif miles_S1 == miles_S2:\n print('Entailment')\nelif miles_S1 != miles_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Each week , James is paid x dollars per per hour for the first 40 hours and 2 x dollars for each additional hour worked that week, \"statement 2\" :Each week , James is paid x dollars per per hour for the first 50 hours and 2 x dollars for each additional hour worked that week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = 40\nhours_S2 = 50\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 == hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Raman mixed 27 kg of butter at Rs, \"statement 2\" :Raman mixed 77 kg of butter at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "butter_S1 = 27\nbutter_S2 = 77\nif butter_S1 is None or butter_S2 is None:\n print('neutral')\nelif butter_S1 == butter_S2:\n print('Entailment')\nelif butter_S1 != butter_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the toy store is stocked with 3 types of balls and 6 types of board games , how many different selections W of the 4 items can Amanda make ?, \"statement 2\" :If the toy store is stocked with less than 3 types of balls and 6 types of board games , how many different selections W of the 4 items can Amanda make ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "balls_S1 = 3\nballs_S2 = 0\nif balls_S1 is None or balls_S2 is None:\n print('neutral')\nelif balls_S1 == balls_S2:\n print('Entailment')\nelif balls_S1 != balls_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Stalin gets on the elevator at the 11 th floor of a building and rides up at a rate of 57 floors per minute, \"statement 2\" :Stalin gets on the elevator at the less than 31 th floor of a building and rides up at a rate of 57 floors per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "floor_S1 = 11\nfloor_S2 = 31\nif floor_S1 is None or floor_S2 is None:\n print('neutral')\nelif floor_S1 < floor_S2:\n print('Entailment')\nelif floor_S1 != floor_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Raman travelled for 10 hours, \"statement 2\" :Raman travelled for less than 20 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = 10\nhours_S2 = 20\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 < hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Matthew ' s walking rate was less than 5 km per hour and Johnny ' s was 4 km per hour , how many km had Johnny walked when they met ?, \"statement 2\" :Matthew ' s walking rate was 3 km per hour and Johnny ' s was 4 km per hour , how many km had Johnny walked when they met ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rate_S1 = None\nrate_S2 = 3\nif rate_S1 is None or rate_S2 is None:\n print('neutral')\nelif rate_S1 == rate_S2:\n print('Entailment')\nelif rate_S1 != rate_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Last year less than 8 members of the club traveled to both England and France , no members traveled to both England and Italy , and 11 members traveled to both France and Italy, \"statement 2\" :Last year 6 members of the club traveled to both England and France , no members traveled to both England and Italy , and 11 members traveled to both France and Italy, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "members_S1 = None\nmembers_S2 = 6\nif members_S1 is None or members_S2 is None:\n print('neutral')\nelif members_S1 == members_S2:\n print('Entailment')\nelif members_S1 != members_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The ratio between the number of sheep and the number of horses at the Stewart farm is less than 6 to 7 , If each horse is fed 230 ounces of horse food per day and the farm needs a total 12,880 ounces of horse food per day , what is the number of sheep in the farm ?, \"statement 2\" :The ratio between the number of sheep and the number of horses at the Stewart farm is 1 to 7 , If each horse is fed 230 ounces of horse food per day and the farm needs a total 12,880 ounces of horse food per day , what is the number of sheep in the farm ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "horses_S1 = None\nhorses_S2 = 1\nif horses_S1 is None or horses_S2 is None:\n print('neutral')\nelif horses_S1 == horses_S2:\n print('Entailment')\nelif horses_S1 != horses_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In a friendship gang Mala has 5 gang , in how many ways can he invite one or more of the gang to his house ?, \"statement 2\" :In a friendship gang Mala has more than 2 gang , in how many ways can he invite one or more of the gang to his house ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gang_S1 = 5\ngang_S2 = 2\nif gang_S1 is None or gang_S2 is None:\n print('neutral')\nelif gang_S1 > gang_S2:\n print('Entailment')\nelif gang_S1 != gang_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Yesterday it took Robert 4 hours to drive from City A to City B, \"statement 2\" :Yesterday it took Robert less than 8 hours to drive from City A to City B, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = 4\nhours_S2 = 8\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 < hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mike had 200 watermelons, \"statement 2\" :Mike had 100 watermelons, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "watermelons_S1 = 200\nwatermelons_S2 = 100\nif watermelons_S1 is None or watermelons_S2 is None:\n print('neutral')\nelif watermelons_S1 == watermelons_S2:\n print('Entailment')\nelif watermelons_S1 != watermelons_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Yali builds a tower using only red , green , and blue toy bricks in a ratio of less than 8 : 3 : 1, \"statement 2\" :Yali builds a tower using only red , green , and blue toy bricks in a ratio of 4 : 3 : 1, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_S1 = None\nratio_S2 = 4\nif ratio_S1 is None or ratio_S2 is None:\n print('neutral')\nelif ratio_S1 == ratio_S2:\n print('Entailment')\nelif ratio_S1 != ratio_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Annie , working alone , can do the same job in just less than 40 hours, \"statement 2\" :Annie , working alone , can do the same job in just 10 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = None\nhours_S2 = 10\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 == hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Veena ranks more than 15 rd from the top in a class of 182, \"statement 2\" :Veena ranks 65 rd from the top in a class of 182, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ranks_S1 = None\nranks_S2 = 65\nif ranks_S1 is None or ranks_S2 is None:\n print('neutral')\nelif ranks_S1 == ranks_S2:\n print('Entailment')\nelif ranks_S1 != ranks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Veena ranks 65 rd from the top in a class of 182, \"statement 2\" :Veena ranks more than 15 rd from the top in a class of 182, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ranks_S1 = 65\nranks_S2 = 15\nif ranks_S1 is None or ranks_S2 is None:\n print('neutral')\nelif ranks_S1 > ranks_S2:\n print('Entailment')\nelif ranks_S1 != ranks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Bill needs to walk from the corner of less than 7 nd Rd and 3 rd Ave to the corner of 9 th Rd and 6 th Ave in the shortest possible time , how many different routes could he take ?, \"statement 2\" :If Bill needs to walk from the corner of 2 nd Rd and 3 rd Ave to the corner of 9 th Rd and 6 th Ave in the shortest possible time , how many different routes could he take ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "corner_S1 = None\ncorner_S2 = 2\nif corner_S1 is None or corner_S2 is None:\n print('neutral')\nelif corner_S1 == corner_S2:\n print('Entailment')\nelif corner_S1 != corner_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Each week , Harry is paid x dollars per hour for the first 30 hours and 2 x dollars for each additional hour worked that week, \"statement 2\" :Each week , Harry is paid x dollars per hour for the first less than 30 hours and 2 x dollars for each additional hour worked that week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = 30\nhours_S2 = 0\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 == hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Similarly , there ' s a train that leaves Chennai bound for Jammu on everyday of the week exactly at 12 noon, \"statement 2\" :Similarly , there ' s a train that leaves Chennai bound for Jammu on everyday of the week exactly at less than 82 noon, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "noon_S1 = 12\nnoon_S2 = 82\nif noon_S1 is None or noon_S2 is None:\n print('neutral')\nelif noon_S1 < noon_S2:\n print('Entailment')\nelif noon_S1 != noon_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Each week , Harry is paid x dollars per hour for the first 12 hours and 1.5 x dollars for each additional hour worked that week, \"statement 2\" :Each week , Harry is paid x dollars per hour for the first less than 82 hours and 1.5 x dollars for each additional hour worked that week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = 12\nhours_S2 = 82\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 < hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jerry \u2019 s average ( arithmetic mean ) score on the first 3 of 4 tests is 78, \"statement 2\" :Jerry \u2019 s average ( arithmetic mean ) score on the first less than 6 of 4 tests is 78, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "score_S1 = 3\nscore_S2 = 6\nif score_S1 is None or score_S2 is None:\n print('neutral')\nelif score_S1 < score_S2:\n print('Entailment')\nelif score_S1 != score_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Last week James worked a total of less than 61 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"statement 2\" :Last week James worked a total of 41 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = None\nhours_S2 = 41\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 == hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The distance between West - Town to East - Town is less than 85 kilometers, \"statement 2\" :The distance between West - Town to East - Town is 15 kilometers, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kilometers_S1 = None\nkilometers_S2 = 15\nif kilometers_S1 is None or kilometers_S2 is None:\n print('neutral')\nelif kilometers_S1 == kilometers_S2:\n print('Entailment')\nelif kilometers_S1 != kilometers_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the trip home took 1 / 2 hour longer than the trip to the beach , how many kilometers u did Carl drive each way ?, \"statement 2\" :If the trip home took less than 7 / 2 hour longer than the trip to the beach , how many kilometers u did Carl drive each way ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hour_S1 = 1/2\nhour_S2 = 7/2\nif hour_S1 is None or hour_S2 is None:\n print('neutral')\nelif hour_S1 < hour_S2:\n print('Entailment')\nelif hour_S1 != hour_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Rohit and Rohan can complete a work in 12 days and 6 days respectively, \"statement 2\" :Rohit and Rohan can complete a work in 62 days and 6 days respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_S1 = 12\ndays_S2 = 62\nif days_S1 is None or days_S2 is None:\n print('neutral')\nelif days_S1 == days_S2:\n print('Entailment')\nelif days_S1 != days_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": A truck uses 60 - gallon fuel tank wants to travel to Cleveland , which is 480 miles away, \"statement 2\" :A truck uses 10 - gallon fuel tank wants to travel to Cleveland , which is 480 miles away, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gallon_fuel_S1 = 60\ngallon_fuel_S2 = 10\nif gallon_fuel_S1 is None or gallon_fuel_S2 is None:\n print('neutral')\nelif gallon_fuel_S1 == gallon_fuel_S2:\n print('Entailment')\nelif gallon_fuel_S1 != gallon_fuel_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Each week , Harry is paid x dollars per hour for the first 35 hours and 1.5 x dollars for each additional hour worked that week, \"statement 2\" :Each week , Harry is paid x dollars per hour for the first more than 35 hours and 1.5 x dollars for each additional hour worked that week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = 35\nhours_S2 = 0\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 == hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Ram , Krish and Bhim can complete a work in 30 days, \"statement 2\" :Ram , Krish and Bhim can complete a work in 50 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "DaysS1 = 30\nDaysS2 = 50 \nif DaysS1 is None or DaysS2 is None:\n print('neutral')\nelif DaysS1==DaysS2:\n print('Entailment')\nelif DaysS1!=DaysS2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The owner made some additions and the 900 square feet property is now fetching a price of US Dollar 1500, \"statement 2\" :The owner made some additions and the 400 square feet property is now fetching a price of US Dollar 1500, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "SquareFeetPropertyS1 = 900\nSquareFeetPropertyS2 = 400\nif SquareFeetPropertyS1 is None or SquareFeetPropertyS2 is None:\n print('neutral')\nelif SquareFeetPropertyS1==SquareFeetPropertyS2:\n print('Entailment')\nelif SquareFeetPropertyS1!=SquareFeetPropertyS2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": John has 10 pairs of matched socks, \"statement 2\" :John has 20 pairs of matched socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "SocksS1 = 10 \nSocksS2 = 20\nSocksS2 = 0\nif SocksS1 is None or SocksS2 is None:\n print('neutral')\nelif SocksS1==SocksS2:\n print('Entailment')\nelif SocksS1!=SocksS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": There are 18 stations between Hyderabad and Bangalore, \"statement 2\" :There are 88 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "StationsS1 = 18 \nStationsS2 = 88\nif StationsS1 is None or StationsS2 is None:\n print('neutral')\nelif StationsS1==StationsS2:\n print('Entailment')\nelif StationsS1!=StationsS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": During a car trip , Maria stopped to rest after she traveled 1 / 2 of the total distance to her destination, \"statement 2\" :During a car trip , Maria stopped to rest after she traveled 7 / 2 of the total distance to her destination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "DistanceS1 = 1/2\nDistanceS2 = 7/2\nif DistanceS1 is None or DistanceS2 is None:\n print('neutral')\nelif DistanceS1==DistanceS2:\n print('Entailment')\nelif DistanceS1!=DistanceS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": loyd wants to fence his Square shaped land of 120 Sqft each side, \"statement 2\" :loyd wants to fence his Square shaped land of 220 Sqft each side, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "FenceS1 = 120\nFenceS2 = 220\nif FenceS1 is None or FenceS2 is None:\n print('neutral')\nelif FenceS1==FenceS2:\n print('Entailment')\nelif FenceS1!=FenceS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In 1979 approximately 1 / 3 of the 32.3 million airline passengers traveling to or from the United States used Kennedy Airport, \"statement 2\" :In 6979 approximately 1 / 3 of the 32.3 million airline passengers traveling to or from the United States used Kennedy Airport, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "PassengersS1 = 1979\nPassengersS2 = 6979\nif PassengersS1 is None or PassengersS2 is None:\n print('neutral')\nelif PassengersS1 == PassengersS2:\n print('Entailment')\nelif PassengersS1!=PassengersS2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Lilly has 10 fish and Rosy has 8 fish, \"statement 2\" :Lilly has 40 fish and Rosy has 8 fish, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "LillyHasFishsS1 = 10\nLillyHasFishsS2 = 40\nif LillyHasFishsS1 is None or LillyHasFishsS2 is None:\n print('neutral')\nelif LillyHasFishsS1 == LillyHasFishsS2:\n print('Entailment')\nelif LillyHasFishsS1!=LillyHasFishsS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Two twins sisters Sita and Geeta were standing back to back and suddenly they started running in opposite directions for 2 km each, \"statement 2\" :Two twins sisters Sita and Geeta were standing back to back and suddenly they started running in opposite directions for 3 km each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "RunningS1 = 2\nRunningS2 = 3\nif RunningS1 is None or RunningS2 is None:\n print('neutral')\nelif RunningS1==RunningS2:\n print('Entailment')\nelif RunningS1!=RunningS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Aaron will jog from home at 3 miles per hour and then walk back home by the same route at 6 miles per hour, \"statement 2\" :Aaron will jog from home at 7 miles per hour and then walk back home by the same route at 6 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nWalkMilesPerHourS1 = 3\nWalkMilesPerHourS2 = 7\nif WalkMilesPerHourS1 is None or WalkMilesPerHourS2 is None:\n print('neutral')\nelif WalkMilesPerHourS1==WalkMilesPerHourS2:\n print('Entailment')\nelif WalkMilesPerHourS1!=WalkMilesPerHourS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jerry \u2019 s average ( arithmetic mean ) score on the first less than 6 of 4 tests is 78, \"statement 2\" :Jerry \u2019 s average ( arithmetic mean ) score on the first 3 of 4 tests is 78, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ScoreS1 = None\nScoreS2 = 5\nif ScoreS1 is None or ScoreS2 is None:\n print('neutral')\nelif ScoreS1==ScoreS2:\n print('Entailment')\nelif ScoreS1!=ScoreS2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": There are less than 85 stations between Delhi and Chennai, \"statement 2\" :There are 25 stations between Delhi and Chennai, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "StationS1 = None\nStationS2 = 25\nif StationS1 is None or StationS2 is None:\n print('neutral')\nelif StationS1==StationS2:\n print('Entailment')\nelif StationS1!=StationS2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 20 percent of Andrea ' s living room floor is covered by a carpet that is 4 feet by 9 feet, \"statement 2\" :40 percent of Andrea ' s living room floor is covered by a carpet that is 4 feet by 9 feet, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "CarpetS1 = 20\nCarpetS2 = 40\nif CarpetS1 is None or CarpetS2 is None:\n print('neutral')\nelif CarpetS1==CarpetS2:\n print('Entailment')\nelif CarpetS1!=CarpetS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If she worked four 12 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"statement 2\" :If she worked four 42 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nWorkedHourS1 = 12 \nWorkedHourS2 = 42\nif WorkedHourS1 is None or WorkedHourS2 is None:\n print('neutral')\nelif WorkedHourS1==WorkedHourS2:\n print('Entailment')\nelif WorkedHourS1!=WorkedHourS2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": John has 6 friends who want to ride in his new car that can accommodate only 5 people at a time ( John plus 4 passengers ), \"statement 2\" :John has 5 friends who want to ride in his new car that can accommodate only 5 people at a time ( John plus 4 passengers ), \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "FriendsS1 = 6 \nFriendsS2 = 5 \nif FriendsS1 is None or FriendsS2 is None:\n print('neutral')\nelif FriendsS1==FriendsS2:\n print('Entailment')\nelif FriendsS1!=FriendsS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Bruce and Bhishma are running on a circular track of length 600 m, \"statement 2\" :Bruce and Bhishma are running on a circular track of length 500 m, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "CircularTrackLengthS1 = 600 \nCircularTrackLengthS2 = 500 \nif CircularTrackLengthS1 is None or CircularTrackLengthS2 is None:\n print('neutral')\nelif CircularTrackLengthS1==CircularTrackLengthS2:\n print('Entailment')\nelif CircularTrackLengthS1!=CircularTrackLengthS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At present , the ratio between the ages of Arun and Deepak is 4 : 3, \"statement 2\" :At present , the ratio between the ages of Arun and Deepak is 1 : 3, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "RatioS1 = 4/3 \nRatioS2 = 1/3\nif RatioS1 is None or RatioS2 is None:\n print('neutral')\nelif RatioS1==RatioS2:\n print('Entailment')\nelif RatioS1!=RatioS2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": David ' s Bank ' s saving amount is decreased 10 % due to loan payment and current balance is Rs, \"statement 2\" :David ' s Bank ' s saving amount is decreased 40 % due to loan payment and current balance is Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "AmountS1 = 10 \nAmountS2 = 40\nif AmountS1 is None or AmountS2 is None:\n print('neutral')\nelif AmountS1==AmountS2:\n print('Entailment')\nelif AmountS1!=AmountS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": City A to city B , Andrew drove for 1 hr at 46 mph and for 3 hours at 60 mph, \"statement 2\" :City A to city B , Andrew drove for 3 hr at 46 mph and for 3 hours at 60 mph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "DrovehrS1 = 1\nDrovehrS2 = 3\nif DrovehrS1 is None or DrovehrS2 is None:\n print('neutral')\nelif DrovehrS1==DrovehrS2:\n print('Entailment')\nelif DrovehrS1!=DrovehrS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Assuming that Karen drives at an average speed of 60 mph and Tom drives at an average speed of 45 mph , how many Q miles will Tom drive before Karen wins the bet ?, \"statement 2\" :Assuming that Karen drives at an average speed of 70 mph and Tom drives at an average speed of 45 mph , how many Q miles will Tom drive before Karen wins the bet ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "DrivesAverageSpeedS1 = 60\nDrivesAverageSpeedS2 = 70\n\nif DrivesAverageSpeedS1 is None or DrivesAverageSpeedS2 is None:\n print('neutral')\nelif DrivesAverageSpeedS1==DrivesAverageSpeedS2:\n print('Entailment')\nelif DrivesAverageSpeedS1!=DrivesAverageSpeedS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Nancy obtained 66 , 75 , 52 , 68 and 89 marks ( out of 100 ) in American Literature , History , Home Economics , Physical Education and Art, \"statement 2\" :Nancy obtained 86 , 75 , 52 , 68 and 89 marks ( out of 100 ) in American Literature , History , Home Economics , Physical Education and Art, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "MarksS1 = 66\nMarksS2 = 86\nif MarksS1 is None or MarksS2 is None:\n print('neutral')\nelif MarksS1==MarksS2:\n print('Entailment')\nelif MarksS1!=MarksS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The ratio of the ages of Anil and his son at present is 7 : 3, \"statement 2\" :The ratio of the ages of Anil and his son at present is 1 : 3, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "AgeRatioS1 = 7/3\nAgeRatioS2 = 1/3\nif AgeRatioS1 is None or AgeRatioS2 is None:\n print('neutral')\nelif AgeRatioS1==AgeRatioS2:\n print('Entailment')\nelif AgeRatioS1!=AgeRatioS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": A \u201c Sophie Germain \u201d prime is any positive prime number p for which 2 p + 1 is also prime, \"statement 2\" :A \u201c Sophie Germain \u201d prime is any positive prime number p for which 8 p + 1 is also prime, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "PrimeNumberS1 = 2\nPrimeNumberS2 = 8\nif PrimeNumberS1 is None or PrimeNumberS2 is None:\n print('neutral')\nelif PrimeNumberS1==PrimeNumberS2:\n print('Entailment')\nelif PrimeNumberS1!=PrimeNumberS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": To be considered for \u201c movie of the year , \u201d a film must appear in at least 1 / 4 of the top - 10 - movies lists submitted by the Cinematic Academy \u2019 s 770 members, \"statement 2\" :To be considered for \u201c movie of the year , \u201d a film must appear in at least 3 / 4 of the top - 10 - movies lists submitted by the Cinematic Academy \u2019 s 770 members, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "MovieS1 = 1/4\nMovieS2 = 3/4\nif MovieS1 is None or MovieS2 is None:\n print('neutral')\nelif MovieS1==MovieS2:\n print('Entailment')\nelif MovieS1!=MovieS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Last year no members of the club traveled to both England and France , 6 members traveled to both England and Italy , and 11 members traveled to both France and Italy, \"statement 2\" :Last year no members of the club traveled to both England and France , 2 members traveled to both England and Italy , and 11 members traveled to both France and Italy, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "MembersS1 = 6\nMembersS2 = 2\nif MembersS1 is None or MembersS2 is None:\n print('neutral')\nelif MembersS1==MembersS2:\n print('Entailment')\nelif MembersS1!=MembersS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If bonds are sold in $ 50 or $ 100 denominations only , which of the following CAN NOT be the number of US saving bonds that Robert purchased ?, \"statement 2\" :If bonds are sold in $ 70 or $ 100 denominations only , which of the following CAN NOT be the number of US saving bonds that Robert purchased ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "BondsS1 = 50\nBondsS2 = 70\nif BondsS1 is None or BondsS2 is None:\n print('neutral')\nelif BondsS1==BondsS2:\n print('Entailment')\nelif BondsS1!=BondsS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": On the first day of her vacation , Louisa traveled 240 miles, \"statement 2\" :On the first day of her vacation , Louisa traveled 340 miles, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "TraveledMilesS1 = 240\nTraveledMilesS2 = 340\nif TraveledMilesS1 is None or TraveledMilesS2 is None:\n print('neutral')\nelif TraveledMilesS1==TraveledMilesS2:\n print('Entailment')\nelif TraveledMilesS1!=TraveledMilesS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is 4 : 3 , After 6 Years Rahul age will be 26 years, \"statement 2\" :Ratio between Rahul and Deepak is 2 : 3 , After 6 Years Rahul age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nAgeRatioS1 = 4/3\nAgeRatioS2 = 2/3 \nif AgeRatioS1 is None or AgeRatioS2 is None:\n print('neutral')\nelif AgeRatioS1==AgeRatioS2:\n print('Entailment')\nelif AgeRatioS1!=AgeRatioS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In an exam , Amar scored 64 percent , Bhavan scored 36 percent and Chetan 44 percent, \"statement 2\" :In an exam , Amar scored 24 percent , Bhavan scored 36 percent and Chetan 44 percent, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ScoreS1 = 64\nScoreS2 = 24\nif ScoreS1 is None or ScoreS2 is None:\n print('neutral')\nelif ScoreS1==ScoreS2:\n print('Entailment')\nelif ScoreS1!=ScoreS2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": than how many more emploies should NHAI hire to finish it in time working 10 hours a day, \"statement 2\" :than how many more emploies should NHAI hire to finish it in time working 70 hours a day, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "HoursS1 = 10 \nHoursS2 = 70\nif HoursS1 is None or HoursS2 is None:\n print('neutral')\nelif HoursS1==HoursS2:\n print('Entailment')\nelif HoursS1!=HoursS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": After they have worked together for 12 days Matt stops and Peter completes the remaining work in 10 days, \"statement 2\" :After they have worked together for 72 days Matt stops and Peter completes the remaining work in 10 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "WorkDayS1 = 12 \nWorkDayS2 = 72\nif WorkDayS1 is None or WorkDayS2 is None:\n print('neutral')\nelif WorkDayS1==WorkDayS2:\n print('Entailment')\nelif WorkDayS1!=WorkDayS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Scott ' s average ( arithmetic mean ) golf score on his first four rounds was 18, \"statement 2\" :Scott ' s average ( arithmetic mean ) golf score on his first four rounds was 38, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "GolfScoreS1 = 18 \nGolfScoreS2 = 38\nif GolfScoreS1 is None or GolfScoreS2 is None:\n print('neutral')\nelif GolfScoreS1==GolfScoreS2:\n print('Entailment')\nelif GolfScoreS1!=GolfScoreS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": To be considered for \u201c movie of the year , \u201d a film must appear in at least 1 / 4 of the top - 10 - movies lists submitted by the Cinematic Academy \u2019 s 760 members, \"statement 2\" :To be considered for \u201c movie of the year , \u201d a film must appear in at least 6 / 4 of the top - 10 - movies lists submitted by the Cinematic Academy \u2019 s 760 members, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ListScoreS1 = 1/4 \nListScoreS2 = 6/4\nif ListScoreS1 is None or ListScoreS2 is None:\n print('neutral')\nelif ListScoreS1==ListScoreS2:\n print('Entailment')\nelif ListScoreS1!=ListScoreS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": One hour after Matthew started waking from r to y , a distance of 45 km , Johnny started walking along the same road from y to r, \"statement 2\" :One hour after Matthew started waking from r to y , a distance of 85 km , Johnny started walking along the same road from y to r, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nDistanceS1 = 45 \nDistanceS2 = 85\nif DistanceS1 is None or DistanceS2 is None:\n print('neutral')\nelif DistanceS1==DistanceS2:\n print('Entailment')\nelif DistanceS1!=DistanceS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Venkat purchased twenty dozens of toys at the rate of 375 per dozen, \"statement 2\" :Venkat purchased twenty dozens of toys at the rate of 675 per dozen, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ToysS1 = 375 \nToysS2 = 675\nif ToysS1 is None or ToysS2 is None:\n print('neutral')\nelif ToysS1==ToysS2:\n print('Entailment')\nelif ToysS1!=ToysS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 4500 find the share of Tony ., \"statement 2\" :7500 find the share of Tony ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ShareS1 = 4500 \nShareS2 = 7500\nif ShareS1 is None or ShareS2 is None:\n print('neutral')\nelif ShareS1==ShareS2:\n print('Entailment')\nelif ShareS1!=ShareS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": After 6 years , Sandy \u2019 s age will be 38 years, \"statement 2\" :After 4 years , Sandy \u2019 s age will be 38 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "YearsS1 = 6 \nYearsS2 = 4\nif YearsS1 is None or YearsS2 is None:\n print('neutral')\nelif YearsS1==YearsS2:\n print('Entailment')\nelif YearsS1!=YearsS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In a group of 60 people , 35 have visited Iceland and 23 have visited Norway, \"statement 2\" :In a group of 40 people , 35 have visited Iceland and 23 have visited Norway, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "PeopleS1 = 60 \nPeopleS2 = 40\nif PeopleS1 is None or PeopleS2 is None:\n print('neutral')\nelif PeopleS1==PeopleS2:\n print('Entailment')\nelif PeopleS1!=PeopleS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Triangle STV has sides ST = TV = 10 , and SV = 12, \"statement 2\" :Triangle STV has sides ST = TV = 70 , and SV = 12, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "TriangleS1 = 10 \nTriangleS2 = 70\nif TriangleS1 is None or TriangleS2 is None:\n print('neutral')\nelif TriangleS1==TriangleS2:\n print('Entailment')\nelif TriangleS1!=TriangleS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Faiza has 8 purses , she gives 3 purse as gift, \"statement 2\" :Faiza has 4 purses , she gives 3 purse as gift, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nPurseS1 = 8 \nPurseS2 = 4\nif PurseS1 is None or PurseS2 is None:\n print('neutral')\nelif PurseS1==PurseS2:\n print('Entailment')\nelif PurseS1!=PurseS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If 20 % of all the students at Morse have cars , how many students are in the three lower grades ?, \"statement 2\" :If 50 % of all the students at Morse have cars , how many students are in the three lower grades ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "StudentsS1 = 20 \nStudentsS2 = 50\nif StudentsS1 is None or StudentsS2 is None:\n print('neutral')\nelif StudentsS1==StudentsS2:\n print('Entailment')\nelif StudentsS1!=StudentsS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Dan leaves City A 60 minutes after Cara, \"statement 2\" :Dan leaves City A 70 minutes after Cara, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "MinutesS1 = 60 \nMinutesS2 = 70\nif MinutesS1 is None or MinutesS2 is None:\n print('neutral')\nelif MinutesS1==MinutesS2:\n print('Entailment')\nelif MinutesS1!=MinutesS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 450 and she sold that to George for Rs, \"statement 2\" :750 and she sold that to George for Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "RsS1 = 450 \nRsS2 = 750\nif RsS1 is None or RsS2 is None:\n print('neutral')\nelif RsS1==RsS2:\n print('Entailment')\nelif RsS1!=RsS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Dan can do a job alone in 15 hours, \"statement 2\" :Dan can do a job alone in 75 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "HoursS1 = 15 \nHoursS2 = 75\nif HoursS1 is None or HoursS2 is None:\n print('neutral')\nelif HoursS1==HoursS2:\n print('Entailment')\nelif HoursS1!=HoursS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At the faculty of Aerospace Engineering , 302 students study Random - processing methods , 232 students study Scramjet rocket engines and 112 students study them both, \"statement 2\" :At the faculty of Aerospace Engineering , 102 students study Random - processing methods , 232 students study Scramjet rocket engines and 112 students study them both, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "StudentsS1 = 302 \nStudentsS2 = 102\nif StudentsS1 is None or StudentsS2 is None:\n print('neutral')\nelif StudentsS1==StudentsS2:\n print('Entailment')\nelif StudentsS1!=StudentsS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": How many oranges must Mary put back so that the average price of the pieces of fruit that she keeps is 50 \u00a2 ?, \"statement 2\" :How many oranges must Mary put back so that the average price of the pieces of fruit that she keeps is 40 \u00a2 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "PriceS1 = 50 \nPriceS2 = 40\nif PriceS1 is None or PriceS2 is None:\n print('neutral')\nelif PriceS1==PriceS2:\n print('Entailment')\nelif PriceS1!=PriceS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": An investor can sell her MicroTron stock for 36 $ per share and her Dynaco stock for 48 $ per share , If she sells 300 shares altogether , some of each stock , at an average price per share of 40 $ , how many shares of Dynaco stock has she sold ?, \"statement 2\" :An investor can sell her MicroTron stock for 76 $ per share and her Dynaco stock for 48 $ per share , If she sells 300 shares altogether , some of each stock , at an average price per share of 40 $ , how many shares of Dynaco stock has she sold ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ShareS1 = 36 \nShareS2 = 76\nif ShareS1 is None or ShareS2 is None:\n print('neutral')\nelif ShareS1==ShareS2:\n print('Entailment')\nelif ShareS1!=ShareS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At a meeting of the 7 Joint Chiefs of Staff , the Chief of Naval Operations does not want to sit next to the Chief of the National Guard Bureau, \"statement 2\" :At a meeting of the 6 Joint Chiefs of Staff , the Chief of Naval Operations does not want to sit next to the Chief of the National Guard Bureau, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ChiefsS1 = 7\nChiefsS2 = 6\nif ChiefsS1 is None or ChiefsS2 is None:\n print('neutral')\nelif ChiefsS1==ChiefsS2:\n print('Entailment')\nelif ChiefsS1!=ChiefsS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mike gives you another 17 balls, \"statement 2\" :Mike gives you another 77 balls, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "BallsS1 = 17\nBallsS2 = 77 \nif BallsS1 is None or BallsS2 is None:\n print('neutral')\nelif BallsS1==BallsS2:\n print('Entailment')\nelif BallsS1!=BallsS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Jack walked 7 miles in 1 hour and 15 minutes , what was his rate of walking in miles per hour ?, \"statement 2\" :If Jack walked 3 miles in 1 hour and 15 minutes , what was his rate of walking in miles per hour ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "MilesS1 = 7\nMilesS2 = 5\nif MilesS1 is None or MilesS2 is None:\n print('neutral')\nelif MilesS1==MilesS2:\n print('Entailment')\nelif MilesS1!=MilesS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Dacid obtained 86 , 89 , 82 , 87 and 81 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained 56 , 89 , 82 , 87 and 81 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "MarksS1 = 86\nMarksS2 = 56\nif MarksS1 is None or MarksS2 is None:\n print('neutral')\nelif MarksS1==MarksS2:\n print('Entailment')\nelif MarksS1!=MarksS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Faiza has 14 purses , she gives 3 purse as gift, \"statement 2\" :Faiza has 34 purses , she gives 3 purse as gift, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "PursesS1 = 14\nPursesS2 = 34\nif PursesS1 is None or PursesS2 is None:\n print('neutral')\nelif PursesS1==PursesS2:\n print('Entailment')\nelif PursesS1!=PursesS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Each week , Harry is paid x dollars per hour for the first 24 hours and 1.5 x dollars for each additional hour worked that week, \"statement 2\" :Each week , Harry is paid x dollars per hour for the first 54 hours and 1.5 x dollars for each additional hour worked that week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "HoursS1 = 24\nHoursS2 = 54\nif HoursS1 is None or HoursS2 is None:\n print('neutral')\nelif HoursS1==HoursS2:\n print('Entailment')\nelif HoursS1!=HoursS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Right now , the ratio between the ages of Sandy and Molly is 4 : 3, \"statement 2\" :Right now , the ratio between the ages of Sandy and Molly is 5 : 3, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "RatioS1 = 4/3\nRatioS2 = 5/3\nif RatioS1 is None or RatioS2 is None:\n print('neutral')\nelif RatioS1==RatioS2:\n print('Entailment')\nelif RatioS1!=RatioS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mary works 9 hours per day on Monday , Wednesday and Friday , and 5 hours per day on Tuesday and Thursday, \"statement 2\" :Mary works 5 hours per day on Monday , Wednesday and Friday , and 5 hours per day on Tuesday and Thursday, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "HoursS1 = 9\nHoursS2 = 5\nif HoursS1 is None or HoursS2 is None:\n print('neutral')\nelif HoursS1==HoursS2:\n print('Entailment')\nelif HoursS1!=HoursS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Ram and Shyam can do together a piece of work in 20 days, \"statement 2\" :Ram and Shyam can do together a piece of work in 30 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "DaysS1 = 20\nDaysS2 = 30\nif DaysS1 is None or DaysS2 is None:\n print('neutral')\nelif DaysS1==DaysS2:\n print('Entailment')\nelif DaysS1!=DaysS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The product of all the possible units digits of Sophie Germain primes greater than 8 is, \"statement 2\" :The product of all the possible units digits of Sophie Germain primes greater than 4 is, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "DigitsS1 = 8\nDigitsS2 = 4\nif DigitsS1 is None or DigitsS2 is None:\n print('neutral')\nelif DigitsS1==DigitsS2:\n print('Entailment')\nelif DigitsS1!=DigitsS2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": A bus started its journey from Mumbai and reached Pune in 44 min with its average speed of 50 km / hr, \"statement 2\" :A bus started its journey from Mumbai and reached Pune in 14 min with its average speed of 50 km / hr, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "MinS1 = 44\nMinS2 = 14\nif MinS1 is None or MinS2 is None:\n print('neutral')\nelif MinS1==MinS2:\n print('Entailment')\nelif MinS1!=MinS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Shop Offered 30 % offer for every Shirt , Smith bought a shirt at Rs, \"statement 2\" :Shop Offered 80 % offer for every Shirt , Smith bought a shirt at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "OfferS1 = 30 \nOfferS2 = 80\nif OfferS1 is None or OfferS2 is None:\n print('neutral')\nelif OfferS1==OfferS2:\n print('Entailment')\nelif OfferS1!=OfferS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If it takes Pat 20 minutes to stretch and Cara continues to run during this time , how many minutes will it take Pat to catch up to Cara ?, \"statement 2\" :If it takes Pat 80 minutes to stretch and Cara continues to run during this time , how many minutes will it take Pat to catch up to Cara ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "MinutesS1 = 20 \nMinutesS2 = 80\nif MinutesS1 is None or MinutesS2 is None:\n print('neutral')\nelif MinutesS1==MinutesS2:\n print('Entailment')\nelif MinutesS1!=MinutesS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jane is currently 34 years old , and she stopped baby - sitting 10 years ago, \"statement 2\" :Jane is currently 44 years old , and she stopped baby - sitting 10 years ago, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "YearsS1 = 34 \nYearsS2 = 44\nif YearsS1 is None or YearsS2 is None:\n print('neutral')\nelif YearsS1==YearsS2:\n print('Entailment')\nelif YearsS1!=YearsS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Veena ranks 65 rd from the top in a class of 182, \"statement 2\" :Veena ranks 25 rd from the top in a class of 182, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "RanksS1 = 65\nRanksS2 = 25\nif RanksS1 is None or RanksS2 is None:\n print('neutral')\nelif RanksS1==RanksS2:\n print('Entailment')\nelif RanksS1!=RanksS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The sides BC , CA , AB of triangle ABC have 3 , 4 , 5 interior points respectively on them, \"statement 2\" :The sides BC , CA , AB of triangle ABC have 7 , 4 , 5 interior points respectively on them, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "PointsS1 = 3\nPointsS2 = 7\nif PointsS1 is None or PointsS2 is None:\n print('neutral')\nelif PointsS1==PointsS2:\n print('Entailment')\nelif PointsS1!=PointsS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": There are 15 stations between Hyderabad and Bangalore, \"statement 2\" :There are 75 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "StationsS1 = 15\nStationsS2 = 45\nif StationsS1 is None or StationsS2 is None:\n print('neutral')\nelif StationsS1==StationsS2:\n print('Entailment')\nelif StationsS1!=StationsS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Bill needs to walk from the corner of 2 nd Rd and 3 rd Ave to the corner of 10 th Rd and 5 th Ave in the shortest possible time , how many different routes could he take ?, \"statement 2\" :If Bill needs to walk from the corner of 5 nd Rd and 3 rd Ave to the corner of 10 th Rd and 5 th Ave in the shortest possible time , how many different routes could he take ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "RDS1 = 2\nRDS2 = 5 \nif RDS1 is None or RDS2 is None:\n print('neutral')\nelif RDS1==RDS2:\n print('Entailment')\nelif RDS1!=RDS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Each week , Harry is paid x dollars per hour for the first 12 hours and 1.5 x dollars for each additional hour worked that week, \"statement 2\" :Each week , Harry is paid x dollars per hour for the first 52 hours and 1.5 x dollars for each additional hour worked that week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "HoursS1 = 12\nHoursS2 = 52 \nif HoursS1 is None or HoursS2 is None:\n print('neutral')\nelif HoursS1==HoursS2:\n print('Entailment')\nelif HoursS1!=HoursS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Sanoop returned 4 t - shirts to the retailer , and the average price of the remaining t - shirts was Rs, \"statement 2\" :If Sanoop returned 8 t - shirts to the retailer , and the average price of the remaining t - shirts was Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "TShirtsS1 = 4\nTShirtsS2 = 8 \nif TShirtsS1 is None or TShirtsS2 is None:\n print('neutral')\nelif TShirtsS1==TShirtsS2:\n print('Entailment')\nelif TShirtsS1!=TShirtsS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Dan leaves City A 120 minutes after Cara, \"statement 2\" :Dan leaves City A less than 520 minutes after Cara, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "MintuesS1 = 120\nMintuesS2 = 0\nMintuesS2 < 520 \nif MintuesS1 is None or MintuesS2 is None:\n print('neutral')\nelif MintuesS1<520:\n print('Entailment')\nelif MintuesS1!=MintuesS2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If X , Y and Z are digits and 7 XYZ is a 4 - digit number that is divisible by 2 , which of the following is a possible product of X , Y and Z ?, \"statement 2\" :If X , Y and Z are digits and 3 XYZ is a 4 - digit number that is divisible by 2 , which of the following is a possible product of X , Y and Z ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nDigitsS1 = 7\nDigitsS2 = 3\nif DigitsS1 is None or DigitsS2 is None:\n print('neutral')\nelif DigitsS1==DigitsS2:\n print('Entailment')\nelif DigitsS1!=DigitsS2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The total of the ages of Amar , Akbar and Anthony is 45 years, \"statement 2\" :The total of the ages of Amar , Akbar and Anthony is 75 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nYearsS1 = 45\nYearsS2 = 75\nif YearsS1 is None or YearsS2 is None:\n print('neutral')\nelif YearsS1==YearsS2:\n print('Entailment')\nelif YearsS1!=YearsS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": After 1 more week , the average number of times Rikki goes to the gym increases to 3 times per week, \"statement 2\" :After less than 2 more week , the average number of times Rikki goes to the gym increases to 3 times per week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "times_s1 = 1\ntimes_s2 = 2\nif times_s1 is None or times_s2 is None:\n print('neutral')\nelif times_s1 < times_s2:\n print('Entailment')\nelif times_s1 != times_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jerry travels 8 miles at an average speed of 40 miles per hour , stops for 15 minutes , and then travels another 20 miles at an average speed of 60 miles per hour, \"statement 2\" :Jerry travels 5 miles at an average speed of 40 miles per hour , stops for 15 minutes , and then travels another 20 miles at an average speed of 60 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_s1 = 8\nmiles_s2 = 5\nif miles_s1 is None or miles_s2 is None:\n print('neutral')\nelif miles_s1 == miles_s2:\n print('Entailment')\nelif miles_s1 != miles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": After 1 more week , the average number of times Rikki goes to the gym increases to 3 times per week, \"statement 2\" :After 5 more week , the average number of times Rikki goes to the gym increases to 3 times per week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "times_s1 = 1\ntimes_s2 = 5\nif times_s1 is None or times_s2 is None:\n print('neutral')\nelif times_s1 == times_s2:\n print('Entailment')\nelif times_s1 != times_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": There are less than 28 stations between Hyderabad and Bangalore, \"statement 2\" :There are 18 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stations_s1 = None\nstations_s2 = 18\nif stations_s1 is None or stations_s2 is None:\n print('neutral')\nelif stations_s1 == stations_s2:\n print('Entailment')\nelif stations_s1 != stations_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Annie , working alone , can do the same job in just 10 hours, \"statement 2\" :Annie , working alone , can do the same job in just less than 40 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_s1 = 10\nhours_s2 = 40\nif hours_s1 is None or hours_s2 is None:\n print('neutral')\nelif hours_s1 < hours_s2:\n print('Entailment')\nelif hours_s1 != hours_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": They both work together for 5 days and then Sushil goes away, \"statement 2\" :They both work together for more than 3 days and then Sushil goes away, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_s1 = 5\ndays_s2 = 3\nif days_s1 is None or days_s2 is None:\n print('neutral')\nelif days_s1 > days_s2:\n print('Entailment')\nelif days_s1 != days_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Patanjali walked for 3 days, \"statement 2\" :Patanjali walked for 1 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_s1 = 3\ndays_s2 = 1\nif days_s1 is None or days_s2 is None:\n print('neutral')\nelif days_s1 == days_s2:\n print('Entailment')\nelif days_s1 != days_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mary has 2 puppies , 9 birds , 4 fishes, \"statement 2\" :Mary has 8 puppies , 9 birds , 4 fishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "puppies_s1 = 2\npuppies_s2 = 8\nif puppies_s1 is None or puppies_s2 is None:\n print('neutral')\nelif puppies_s1 == puppies_s2:\n print('Entailment')\nelif puppies_s1 != puppies_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In Kaya ' s teacher ' s desk there are more than 7 pink highlighters , 8 yellow highlighters , and 5 blue highlighters, \"statement 2\" :In Kaya ' s teacher ' s desk there are 9 pink highlighters , 8 yellow highlighters , and 5 blue highlighters, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "highlighters_s1 = None\nhighlighters_s2 = 9\nif highlighters_s1 is None or highlighters_s2 is None:\n print('neutral')\nelif highlighters_s1 == highlighters_s2:\n print('Entailment')\nelif highlighters_s1 != highlighters_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Calculate the average marks of a student who obtained 56 , 60 , 72 , 85 and 80 marks ( out of 100 ) in Geography , History and Government , Art , Computer Science and Modern Literature ?, \"statement 2\" :Calculate the average marks of a student who obtained more than 26 , 60 , 72 , 85 and 80 marks ( out of 100 ) in Geography , History and Government , Art , Computer Science and Modern Literature ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_s1 = 56\nmarks_s2 = 26\nif marks_s1 is None or marks_s2 is None:\n print('neutral')\nelif marks_s1 > marks_s2:\n print('Entailment')\nelif marks_s1 != marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Maddie has 48 apples , if she give 22 to mike , how many does she have left ?, \"statement 2\" :Maddie has 88 apples , if she give 22 to mike , how many does she have left ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "apples_s1 = 48\napples_s2 = 88\nif apples_s1 is None or apples_s2 is None:\n print('neutral')\nelif apples_s1 == apples_s2:\n print('Entailment')\nelif apples_s1 != apples_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Last week James worked a total of more than 21 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"statement 2\" :Last week James worked a total of 41 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_s1 = None\nhours_s2 = 41\nif hours_s1 is None or hours_s2 is None:\n print('neutral')\nelif hours_s1 == hours_s2:\n print('Entailment')\nelif hours_s1 != hours_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In a group of more than 2 boys & 4 girls a Committee of 4 persons is to be formed, \"statement 2\" :In a group of 6 boys & 4 girls a Committee of 4 persons is to be formed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boys_s1 = None\nboys_s2 = 6\nif boys_s1 is None or boys_s2 is None:\n print('neutral')\nelif boys_s1 == boys_s2:\n print('Entailment')\nelif boys_s1 != boys_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In the city of San Durango , 40 people own cats , dogs , or rabbits, \"statement 2\" :In the city of San Durango , less than 70 people own cats , dogs , or rabbits, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_s1 = 40\npeople_s2 = 70\nif people_s1 is None or people_s2 is None:\n print('neutral')\nelif people_s1 < people_s2:\n print('Entailment')\nelif people_s1 != people_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Maddie has 4 apples , if she give 2 to mike , how many does she have left ?, \"statement 2\" :Maddie has 6 apples , if she give 2 to mike , how many does she have left ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "apples_s1 = 4\napples_s2 = 6\nif apples_s1 is None or apples_s2 is None:\n print('neutral')\nelif apples_s1 == apples_s2:\n print('Entailment')\nelif apples_s1 != apples_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Similarly , there ' s a train that leaves Chennai bound for Jammu on everyday of the week exactly at less than 82 noon, \"statement 2\" :Similarly , there ' s a train that leaves Chennai bound for Jammu on everyday of the week exactly at 12 noon, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "noon_s1 = None\nnoon_s2 = 12\nif noon_s1 is None or noon_s2 is None:\n print('neutral')\nelif noon_s1 == noon_s2:\n print('Entailment')\nelif noon_s1 != noon_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is 4 : 2 ?, \"statement 2\" :What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is 3 : 2 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_s1 = 4/2\nratio_s2 = 3/2\nif ratio_s1 is None or ratio_s2 is None:\n print('neutral')\nelif ratio_s1 == ratio_s2:\n print('Entailment')\nelif ratio_s1 != ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": James have less than 70 parrots , 4 fishes , 9 rabbits and 6 dogs, \"statement 2\" :James have 10 parrots , 4 fishes , 9 rabbits and 6 dogs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "parrots_s1 = None\nparrots_s2 = 10\nif parrots_s1 is None or parrots_s2 is None:\n print('neutral')\nelif parrots_s1 == parrots_s2:\n print('Entailment')\nelif parrots_s1 != parrots_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In less than 8 years John will be twice as old as Frank, \"statement 2\" :In 5 years John will be twice as old as Frank, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_s1 = None\nyears_s2 = 5\nif years_s1 is None or years_s2 is None:\n print('neutral')\nelif years_s1 == years_s2:\n print('Entailment')\nelif years_s1 != years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At the faculty of Aerospace Engineering , 312 students study Random - processing methods , 234 students study Scramjet rocket engines and 112 students study them both, \"statement 2\" :At the faculty of Aerospace Engineering , more than 112 students study Random - processing methods , 234 students study Scramjet rocket engines and 112 students study them both, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "students_s1 = 312\nstudents_s2 = 112\nif students_s1 is None or students_s2 is None:\n print('neutral')\nelif students_s1 > students_s2:\n print('Entailment')\nelif students_s1 != students_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Faiza has less than 34 purses , she gives 3 purse as gift, \"statement 2\" :Faiza has 14 purses , she gives 3 purse as gift, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "purses_s1 = None\npurses_s2 = 14\nif purses_s1 is None or purses_s2 is None:\n print('neutral')\nelif purses_s1 == purses_s2:\n print('Entailment')\nelif purses_s1 != purses_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is 4 : 2 ?, \"statement 2\" :What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is more than 1 : 2 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_s1 = 4/2\nspeed_s2 = 1/2\nif speed_s1 is None or speed_s2 is None:\n print('neutral')\nelif speed_s1 > speed_s2:\n print('Entailment')\nelif speed_s1 != speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jane started baby - sitting when she was less than 40 years old, \"statement 2\" :Jane started baby - sitting when she was 20 years old, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_s1 = None\nyears_s2 = 20\nif years_s1 is None or years_s2 is None:\n print('neutral')\nelif years_s1 == years_s2:\n print('Entailment')\nelif years_s1 != years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Tom goes after more than 4 P, \"statement 2\" :Tom goes after 8 P, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "p_s1 = None\np_s2 = 8\nif p_s1 is None or p_s2 is None:\n print('neutral')\nelif p_s1 == p_s2:\n print('Entailment')\nelif p_s1 != p_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Fred walks at a constant speed of less than 8 miles per hour and Sam walks at a constant speed of 5 miles per hour , how many miles has Sam walked when they meet ?, \"statement 2\" :If Fred walks at a constant speed of 5 miles per hour and Sam walks at a constant speed of 5 miles per hour , how many miles has Sam walked when they meet ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_s1 = None\nmiles_s2 = 5\nif miles_s1 is None or miles_s2 is None:\n print('neutral')\nelif miles_s1 == miles_s2:\n print('Entailment')\nelif miles_s1 != miles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If it takes Darcy a total of 15 more minutes to commute to work by walking than it takes her to commute to work by riding the train , what is the value of x ?, \"statement 2\" :If it takes Darcy a total of less than 55 more minutes to commute to work by walking than it takes her to commute to work by riding the train , what is the value of x ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "minutes_s1 = 15\nminutes_s2 = 55\nif minutes_s1 is None or minutes_s2 is None:\n print('neutral')\nelif minutes_s1 < minutes_s2:\n print('Entailment')\nelif minutes_s1 != minutes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jones gave 40 % of the money he had to his wife, \"statement 2\" :Jones gave less than 70 % of the money he had to his wife, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "money_s1 = 40\nmoney_s2 = 70\nif money_s1 is None or money_s2 is None:\n print('neutral')\nelif money_s1 < money_s2:\n print('Entailment')\nelif money_s1 != money_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Addison High School \u2019 s senior class has 300 boys and 240 girls, \"statement 2\" :Addison High School \u2019 s senior class has less than 400 boys and 240 girls, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boys_s1 = 300\nboys_s2 = 400\nif boys_s1 is None or boys_s2 is None:\n print('neutral')\nelif boys_s1 < boys_s2:\n print('Entailment')\nelif boys_s1 != boys_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Carl drove from his home to the beach at an average speed of 80 kilometers per hour and returned home by the same route at an average speed of 70 kilometers per hour, \"statement 2\" :Carl drove from his home to the beach at an average speed of more than 80 kilometers per hour and returned home by the same route at an average speed of 70 kilometers per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kilometers_s1 = 80\nkilometers_s2 = 0\nif kilometers_s1 is None or kilometers_s2 is None:\n print('neutral')\nelif kilometers_s1 == kilometers_s2:\n print('Entailment')\nelif kilometers_s1 != kilometers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Dawson runs the first leg of the course in more than 28 seconds, \"statement 2\" :Dawson runs the first leg of the course in 38 seconds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "seconds_s1 = None\nseconds_s2 = 38\nif seconds_s1 is None or seconds_s2 is None:\n print('neutral')\nelif seconds_s1 == seconds_s2:\n print('Entailment')\nelif seconds_s1 != seconds_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If she worked four 16 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"statement 2\" :If she worked four more than 16 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "orders_s1 = 16\norders_s2 = 0\nif orders_s1 is None or orders_s2 is None:\n print('neutral')\nelif orders_s1 == orders_s2:\n print('Entailment')\nelif orders_s1 != orders_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The owner made some additions and the more than 800 square feet property is now fetching a price of US Dollar 1500, \"statement 2\" :The owner made some additions and the 900 square feet property is now fetching a price of US Dollar 1500, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "property_s1 = None\nproperty_s2 = 900\nif property_s1 is None or property_s2 is None:\n print('neutral')\nelif property_s1 == property_s2:\n print('Entailment')\nelif property_s1 != property_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In a friendship gang Andrew has 8 gang , in how many ways can he invite one or more of the gang to his house ?, \"statement 2\" :In a friendship gang Andrew has less than 8 gang , in how many ways can he invite one or more of the gang to his house ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "friendship_gang_s1 = 8\nfriendship_gang_s2 = 0\nif friendship_gang_s1 is None or friendship_gang_s2 is None:\n print('neutral')\nelif friendship_gang_s1 == friendship_gang_s2:\n print('Entailment')\nelif friendship_gang_s1 != friendship_gang_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": It takes John exactly 30 minutes to rake a lawn and it takes his son Todd exactly 60 minutes to rake the same lawn, \"statement 2\" :It takes John exactly more than 30 minutes to rake a lawn and it takes his son Todd exactly 60 minutes to rake the same lawn, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "minutes_s1 = 30\nminutes_s2 = 0\nif minutes_s1 is None or minutes_s2 is None:\n print('neutral')\nelif minutes_s1 == minutes_s2:\n print('Entailment')\nelif minutes_s1 != minutes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Henry runs the second leg of the course in 7 seconds, \"statement 2\" :Henry runs the second leg of the course in 6 seconds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "seconds_s1 = 7\nseconds_s2 = 6\nif seconds_s1 is None or seconds_s2 is None:\n print('neutral')\nelif seconds_s1 == seconds_s2:\n print('Entailment')\nelif seconds_s1 != seconds_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The present ages of Lewis and Brown are in the ratio 1 : 2, \"statement 2\" :The present ages of Lewis and Brown are in the ratio less than 6 : 2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nratio_s1 = 1/2\nratio_s2 = 6/2\nif ratio_s1 is None or ratio_s2 is None:\n print('neutral')\nelif ratio_s1 < ratio_s2:\n print('Entailment')\nelif ratio_s1 != ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is 5 : 2 , After 6 Years Rahul age will be 26 years, \"statement 2\" :Ratio between Rahul and Deepak is less than 8 : 2 , After 6 Years Rahul age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_s1 = 5/2\nratio_s2 = 8/2\nif ratio_s1 is None or ratio_s2 is None:\n print('neutral')\nelif ratio_s1 < ratio_s2:\n print('Entailment')\nelif ratio_s1 != ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Catherina works 5 hours per day on Monday , Wednesday and Friday , and 10 hours per day on Tuesday and Thursday, \"statement 2\" :Catherina works 6 hours per day on Monday , Wednesday and Friday , and 10 hours per day on Tuesday and Thursday, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_s1 = 5\nhours_s2 = 6\nif hours_s1 is None or hours_s2 is None:\n print('neutral')\nelif hours_s1 == hours_s2:\n print('Entailment')\nelif hours_s1 != hours_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Store Z : $ 90 , a 20 % sales tax , and $ 10 rebate after tax\nIsaac can purchase a certain item in four different ways , as shown in the table, \"statement 2\" :Store Z : $ less than 90 , a 20 % sales tax , and $ 10 rebate after tax Isaac can purchase a certain item in four different ways , as shown in the table, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dollar_s1 = 90\nDollar_s2 = 0\nif Dollar_s1 is None or Dollar_s2 is None:\n print('neutral')\nelif Dollar_s1 == Dollar_s2:\n print('Entailment')\nelif Dollar_s1 != Dollar_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": A \u201c Sophie Germain \u201d prime is any positive prime number p for which 2 p + 1 is also prime, \"statement 2\" :A \u201c Sophie Germain \u201d prime is any positive prime number p for which less than 3 p + 1 is also prime, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "prime_number_s1 = 2\nprime_number_s2 = 3\nif prime_number_s1 is None or prime_number_s2 is None:\n print('neutral')\nelif prime_number_s1 < prime_number_s2:\n print('Entailment')\nelif prime_number_s1 != prime_number_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the toy store is stocked with 3 types of balls and 6 types of board games , how many different selections of the 4 items can Amanda make ?, \"statement 2\" :If the toy store is stocked with 2 types of balls and 6 types of board games , how many different selections of the 4 items can Amanda make ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "balls_s1 = 3\nballs_s2 = 2\nif balls_s1 is None or balls_s2 is None:\n print('neutral')\nelif balls_s1 == balls_s2:\n print('Entailment')\nelif balls_s1 != balls_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In how many ways can you seat 5 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"statement 2\" :In how many ways can you seat more than 5 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_s1 = 5\npeople_s2 = 0\nif people_s1 is None or people_s2 is None:\n print('neutral')\nelif people_s1 == people_s2:\n print('Entailment')\nelif people_s1 != people_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Rosy also matched the London Eye which stands at 443 ft and Las\nVegas \u2019 High Roller standing at 550 ft, \"statement 2\" :Rosy also matched the London Eye which stands at more than 343 ft and Las Vegas \u2019 High Roller standing at 550 ft, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nft_s1 = 443\nft_s2 = 243\nif ft_s1 is None or ft_s2 is None:\n print('neutral')\nelif ft_s1 > ft_s2:\n print('Entailment')\nelif ft_s1 != ft_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Yali builds a tower using only red , green , and blue toy bricks in a ratio of 4 : 3 : 1, \"statement 2\" :Yali builds a tower using only red , green , and blue toy bricks in a ratio of less than 8 : 3 : 1, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_s1 = 4\nratio_s2 = 8\nif ratio_s1 is None or ratio_s2 is None:\n print('neutral')\nelif ratio_s1 < ratio_s2:\n print('Entailment')\nelif ratio_s1 != ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": less than 5000 but the average salary of Raj , Roshan and Thomas is Rs, \"statement 2\" :4000 but the average salary of Raj , Roshan and Thomas is Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "salary_s1 = None\nsalary_s2 = 4000\nif salary_s1 is None or salary_s2 is None:\n print('neutral')\nelif salary_s1 == salary_s2:\n print('Entailment')\nelif salary_s1 != salary_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": An investor can sell her MicroTron stock for less than 76 $ per share and her Dynaco stock for 48 $ per share , If she sells 300 shares altogether , some of each stock , at an average price per share of 40 $ , how many shares of Dynaco stock has she sold ?, \"statement 2\" :An investor can sell her MicroTron stock for 36 $ per share and her Dynaco stock for 48 $ per share , If she sells 300 shares altogether , some of each stock , at an average price per share of 40 $ , how many shares of Dynaco stock has she sold ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "share_s1 = None\nshare_s2 = 36\nif share_s1 is None or share_s2 is None:\n print('neutral')\nelif share_s1 == share_s2:\n print('Entailment')\nelif share_s1 != share_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": To be considered for \u201c movie of the year , \u201d a film must appear in at least 1 / 4 of the top - 10 - movies lists submitted by the Cinematic Academy \u2019 s 760 members, \"statement 2\" :To be considered for \u201c movie of the year , \u201d a film must appear in at least less than 4 / 4 of the top - 10 - movies lists submitted by the Cinematic Academy \u2019 s 760 members, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "point_s1 = 1/4\npoint_s2 = 4/4\nif point_s1 is None or point_s2 is None:\n print('neutral')\nelif point_s1 < point_s2:\n print('Entailment')\nelif point_s1 != point_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Dan \u2019 s car gets 32 miles per gallon, \"statement 2\" :Dan \u2019 s car gets 82 miles per gallon, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_s1 = 32\nmiles_s2 = 82\nif miles_s1 is None or miles_s2 is None:\n print('neutral')\nelif miles_s1 == miles_s2:\n print('Entailment')\nelif miles_s1 != miles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Each week , Harry is paid x dollars per hour for the first 24 hours and 1.5 x dollars for each additional hour worked that week, \"statement 2\" :Each week , Harry is paid x dollars per hour for the first less than 84 hours and 1.5 x dollars for each additional hour worked that week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_s1 = 24\nhours_s2 = 84\nif hours_s1 is None or hours_s2 is None:\n print('neutral')\nelif hours_s1 < hours_s2:\n print('Entailment')\nelif hours_s1 != hours_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": What must be Robin ' s score on a 10 th test for his average score on the 10 tests to be 83 ?, \"statement 2\" :What must be Robin ' s score on a less than 70 th test for his average score on the 10 tests to be 83 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "score_s1 = 10\nscore_s2 = 70\nif score_s1 is None or score_s2 is None:\n print('neutral')\nelif score_s1 < score_s2:\n print('Entailment')\nelif score_s1 != score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Nitin ranks 15 th in a class of 47 students, \"statement 2\" :Nitin ranks 65 th in a class of 47 students, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ranks_s1 = 15\nranks_s2 = 65\nif ranks_s1 is None or ranks_s2 is None:\n print('neutral')\nelif ranks_s1 == ranks_s2:\n print('Entailment')\nelif ranks_s1 != ranks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Nitin ranks less than 74 th in a class of 58 students, \"statement 2\" :Nitin ranks 24 th in a class of 58 students, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ranks_s1 = None\nranks_s2 = 24\nif ranks_s1 is None or ranks_s2 is None:\n print('neutral')\nelif ranks_s1 == ranks_s2:\n print('Entailment')\nelif ranks_s1 != ranks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the boys at Jones Elementary make up 30 % of the total school population of x students , what is x ?, \"statement 2\" :If the boys at Jones Elementary make up more than 10 % of the total school population of x students , what is x ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "population_s1 = 30\npopulation_s2 = 10\nif population_s1 is None or population_s2 is None:\n print('neutral')\nelif population_s1 > population_s2:\n print('Entailment')\nelif population_s1 != population_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In a class of boys and girls Vikas ' s rank is more than 7 th and Tanvi ' s rank is 17 th, \"statement 2\" :In a class of boys and girls Vikas ' s rank is 9 th and Tanvi ' s rank is 17 th, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Vikas_rank_s1 = None\nVikas_rank_s2 = 9\nif Vikas_rank_s1 is None or Vikas_rank_s2 is None:\n print('neutral')\nelif Vikas_rank_s1 == Vikas_rank_s2:\n print('Entailment')\nelif Vikas_rank_s1 != Vikas_rank_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 7 people entered the theater between Sujit and Suraj and 20 people entered the theater after Suraj, \"statement 2\" :more than 1 people entered the theater between Sujit and Suraj and 20 people entered the theater after Suraj, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_s1 = 7\npeople_s2 = 1\nif people_s1 is None or people_s2 is None:\n print('neutral')\nelif people_s1 > people_s2:\n print('Entailment')\nelif people_s1 != people_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": City A to city B , Andrew drove for less than 2 hr at 44 mph and for 3 hours at 60 mph, \"statement 2\" :City A to city B , Andrew drove for 1 hr at 44 mph and for 3 hours at 60 mph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hr_s1 = None\nhr_s2 = 1\nif hr_s1 is None or hr_s2 is None:\n print('neutral')\nelif hr_s1 == hr_s2:\n print('Entailment')\nelif hr_s1 != hr_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 20,000 for less than 7 months , where as Rick invested his amount for the whole year , what was the amount invested by Rick ?, \"statement 2\" :20,000 for 6 months , where as Rick invested his amount for the whole year , what was the amount invested by Rick ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "months_s1 = None\nmonths_s2 = 6\nif months_s1 is None or months_s2 is None:\n print('neutral')\nelif months_s1 == months_s2:\n print('Entailment')\nelif months_s1 != months_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Dana borrows 6500 pounds annually for her college education, \"statement 2\" :Dana borrows more than 3500 pounds annually for her college education, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "borrows_pounds_s1 = 6500\nborrows_pounds_s2 = 3500\nif borrows_pounds_s1 is None or borrows_pounds_s2 is None:\n print('neutral')\nelif borrows_pounds_s1 > borrows_pounds_s2:\n print('Entailment')\nelif borrows_pounds_s1 != borrows_pounds_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Q : Robert purchased $ 1500 worth of US saving bonds, \"statement 2\" :Q : Robert purchased $ 7500 worth of US saving bonds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dollar_s1 = 1500\nDollar_s2 = 7500\nif Dollar_s1 is None or Dollar_s2 is None:\n print('neutral')\nelif Dollar_s1 == Dollar_s2:\n print('Entailment')\nelif Dollar_s1 != Dollar_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Ayisha ' s father ' s age will be twice Shankar ' s age after 10 years, \"statement 2\" :Ayisha ' s father ' s age will be twice Shankar ' s age after 30 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_s1 = 10\nyears_s2 = 30\nif years_s1 is None or years_s2 is None:\n print('neutral')\nelif years_s1 == years_s2:\n print('Entailment')\nelif years_s1 != years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the toy store is stocked with less than 4 types of balls and 6 types of board games , how many different selections W of the 4 items can Amanda make ?, \"statement 2\" :If the toy store is stocked with 3 types of balls and 6 types of board games , how many different selections W of the 4 items can Amanda make ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "balls_s1 = None\nballs_s2 = 3\nif balls_s1 is None or balls_s2 is None:\n print('neutral')\nelif balls_s1 == balls_s2:\n print('Entailment')\nelif balls_s1 != balls_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Assuming that Karen drives at an average speed of more than 20 mph and Tom drives at an average speed of 45 mph , how many E miles will Tom drive before Karen wins the bet ?, \"statement 2\" :Assuming that Karen drives at an average speed of 60 mph and Tom drives at an average speed of 45 mph , how many E miles will Tom drive before Karen wins the bet ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "drives_s1 = None\ndrives_s2 = 60\nif drives_s1 is None or drives_s2 is None:\n print('neutral')\nelif drives_s1 == drives_s2:\n print('Entailment')\nelif drives_s1 != drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Nancy obtained less than 86 , 75 , 52 , 68 and 89 marks ( out of 100 ) in American Literature , History , Home Economics , Physical Education and Art, \"statement 2\" :Nancy obtained 66 , 75 , 52 , 68 and 89 marks ( out of 100 ) in American Literature , History , Home Economics , Physical Education and Art, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_s1 = None\nmarks_s2 = 66\nif marks_s1 is None or marks_s2 is None:\n print('neutral')\nelif marks_s1 == marks_s2:\n print('Entailment')\nelif marks_s1 != marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": On the first day of her vacation , Louisa traveled less than 300 miles, \"statement 2\" :On the first day of her vacation , Louisa traveled 200 miles, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_s1 = None\nmiles_s2 = 200\nif miles_s1 is None or miles_s2 is None:\n print('neutral')\nelif miles_s1 == miles_s2:\n print('Entailment')\nelif miles_s1 != miles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Nitin ranks 24 th in a class of 58 students, \"statement 2\" :Nitin ranks less than 74 th in a class of 58 students, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ranks_s1 = 24\nranks_s2 = 74\nif ranks_s1 is None or ranks_s2 is None:\n print('neutral')\nelif ranks_s1 < ranks_s2:\n print('Entailment')\nelif ranks_s1 != ranks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Lucy deposited $ more than 22500 in an investment fund that provided 8 percent annual return compounded quarterly, \"statement 2\" :Lucy deposited $ 62500 in an investment fund that provided 8 percent annual return compounded quarterly, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "investment_fund_s1 = None\ninvestment_fund_s2 = 62500\nif investment_fund_s1 is None or investment_fund_s2 is None:\n print('neutral')\nelif investment_fund_s1 == investment_fund_s2:\n print('Entailment')\nelif investment_fund_s1 != investment_fund_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": How many liters of blue paint must be added to less than 86 liters of Fuchsia to change it to Mauve paint ?, \"statement 2\" :How many liters of blue paint must be added to 16 liters of Fuchsia to change it to Mauve paint ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Fuchsia_s1 = None\nFuchsia_s2 = 16\nif Fuchsia_s1 is None or Fuchsia_s2 is None:\n print('neutral')\nelif Fuchsia_s1 == Fuchsia_s2:\n print('Entailment')\nelif Fuchsia_s1 != Fuchsia_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Matt is touring a nation in which coins are issued in two amounts , 2 \u00a2 and 5 \u00a2 , which are made of iron and copper , respectively, \"statement 2\" :Matt is touring a nation in which coins are issued in two amounts , less than 3 \u00a2 and 5 \u00a2 , which are made of iron and copper , respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "coins_s1 = 2\ncoins_s2 = 3\nif coins_s1 is None or coins_s2 is None:\n print('neutral')\nelif coins_s1 < coins_s2:\n print('Entailment')\nelif coins_s1 != coins_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Lucy deposited $ 62500 in an investment fund that provided 20 percent annual return compounded quarterly, \"statement 2\" :Lucy deposited $ 52500 in an investment fund that provided 20 percent annual return compounded quarterly, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "investment_fund_s1 = 62500\ninvestment_fund_s2 = 52500\nif investment_fund_s1 is None or investment_fund_s2 is None:\n print('neutral')\nelif investment_fund_s1 == investment_fund_s2:\n print('Entailment')\nelif investment_fund_s1 != investment_fund_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Sacha runs at a constant speed of more than 1 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"statement 2\" :Sacha runs at a constant speed of 9 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "meters_s1 = None\nmeters_s2 = 9\nif meters_s1 is None or meters_s2 is None:\n print('neutral')\nelif meters_s1 == meters_s2:\n print('Entailment')\nelif meters_s1 != meters_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The present ages of Lewis and Brown are in the ratio less than 6 : 2, \"statement 2\" :The present ages of Lewis and Brown are in the ratio 1 : 2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_s1 = None\nratio_s2 = 1/2\nif ratio_s1 is None or ratio_s2 is None:\n print('neutral')\nelif ratio_s1 == ratio_s2:\n print('Entailment')\nelif ratio_s1 != ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 3600 from Anwar at 6 % p, \"statement 2\" :more than 3600 from Anwar at 6 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "p_s1 = 3600\np_s2 = 0\nif p_s1 is None or p_s2 is None:\n print('neutral')\nelif p_s1 == p_s2:\n print('Entailment')\nelif p_s1 != p_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jhon works for 60 days, \"statement 2\" :Jhon works for less than 60 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_s1 = 60\ndays_s2 = 0\nif days_s1 is None or days_s2 is None:\n print('neutral')\nelif days_s1 == days_s2:\n print('Entailment')\nelif days_s1 != days_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than more than 20 % ?, \"statement 2\" :If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than 60 % ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "departure_rate_s1 = None\ndeparture_rate_s2 = 60\nif departure_rate_s1 is None or departure_rate_s2 is None:\n print('neutral')\nelif departure_rate_s1 == departure_rate_s2:\n print('Entailment')\nelif departure_rate_s1 != departure_rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In an exam , Bobby scored 38 percent , Bonny scored 56 percent , Vijay scored 66 percent and Libin scored 75 percent, \"statement 2\" :In an exam , Bobby scored 88 percent , Bonny scored 56 percent , Vijay scored 66 percent and Libin scored 75 percent, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "scored_percent_s1 = 38\nscored_percent_s2 = 88\nif scored_percent_s1 is None or scored_percent_s2 is None:\n print('neutral')\nelif scored_percent_s1 == scored_percent_s2:\n print('Entailment')\nelif scored_percent_s1 != scored_percent_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jill works as a waitress at the local diner where she earns an hourly wage of $ 4.00 per hour and a standard tip rate of 15 % of the cost of the orders she serves, \"statement 2\" :Jill works as a waitress at the local diner where she earns an hourly wage of $ 4.00 per hour and a standard tip rate of 45 % of the cost of the orders she serves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tip_rate_s1 = 15\ntip_rate_s2 = 45\nif tip_rate_s1 is None or tip_rate_s2 is None:\n print('neutral')\nelif tip_rate_s1 == tip_rate_s2:\n print('Entailment')\nelif tip_rate_s1 != tip_rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Suraj has a certain average of runs for 8 innings, \"statement 2\" :Suraj has a certain average of runs for more than 5 innings, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "innings_s1 = 8\ninnings_s2 = 5\nif innings_s1 is None or innings_s2 is None:\n print('neutral')\nelif innings_s1 > innings_s2:\n print('Entailment')\nelif innings_s1 != innings_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": John has more than 5 friends who want to ride in his new car that can accommodate only 5 people at a time ( John plus 4 passengers ), \"statement 2\" :John has 6 friends who want to ride in his new car that can accommodate only 5 people at a time ( John plus 4 passengers ), \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "friends_s1 = None\nfriends_s2 = 6\nif friends_s1 is None or friends_s2 is None:\n print('neutral')\nelif friends_s1 == friends_s2:\n print('Entailment')\nelif friends_s1 != friends_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Susan weighs 10 pounds more than Anna does , and together they weigh a total of 110 pounds, \"statement 2\" :Susan weighs less than 40 pounds more than Anna does , and together they weigh a total of 110 pounds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "weighs_s1 = 10\nweighs_s2 = 40\nif weighs_s1 is None or weighs_s2 is None:\n print('neutral')\nelif weighs_s1 < weighs_s2:\n print('Entailment')\nelif weighs_s1 != weighs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": From a group of 6 boys & 4 girls a Committee of 4 persons is to be formed, \"statement 2\" :From a group of 1 boys & 4 girls a Committee of 4 persons is to be formed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boys_s1 = 6\nboys_s2 = 1\nif boys_s1 is None or boys_s2 is None:\n print('neutral')\nelif boys_s1 == boys_s2:\n print('Entailment')\nelif boys_s1 != boys_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At the faculty of Aerospace Engineering , 310 students study Random - processing methods , 232 students study Scramjet rocket engines and 112 students study them both, \"statement 2\" :At the faculty of Aerospace Engineering , more than 110 students study Random - processing methods , 232 students study Scramjet rocket engines and 112 students study them both, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nstudents_s1 = 310\nstudents_s2 = 110\nif students_s1 is None or students_s2 is None:\n print('neutral')\nelif students_s1 > students_s2:\n print('Entailment')\nelif students_s1 != students_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the toy store is stocked with more than 1 types of balls and 6 types of board games , how many different selections R of the 4 items can Amanda make ?, \"statement 2\" :If the toy store is stocked with 3 types of balls and 6 types of board games , how many different selections R of the 4 items can Amanda make ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "balls_s1 = None\nballs_s2 = 3\nif balls_s1 is None or balls_s2 is None:\n print('neutral')\nelif balls_s1 == balls_s2:\n print('Entailment')\nelif balls_s1 != balls_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If she worked two 8 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"statement 2\" :If she worked two more than 8 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hour_s1 = 8\nhour_s2 = 0\nif hour_s1 is None or hour_s2 is None:\n print('neutral')\nelif hour_s1 == hour_s2:\n print('Entailment')\nelif hour_s1 != hour_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Angel played the game , getting at least one score of each of less than 7 , 2 , 3 , and 4 , and never getting the same score in consecutive steps, \"statement 2\" :Angel played the game , getting at least one score of each of 1 , 2 , 3 , and 4 , and never getting the same score in consecutive steps, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "score_s1 = None\nscore_s2 = 1\nif score_s1 is None or score_s2 is None:\n print('neutral')\nelif score_s1 == score_s2:\n print('Entailment')\nelif score_s1 != score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Raman mixed 27 kg of butter at Rs, \"statement 2\" :Raman mixed less than 47 kg of butter at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kg_s1 = 27\nkg_s2 = 47\nif kg_s1 is None or kg_s2 is None:\n print('neutral')\nelif kg_s1 < kg_s2:\n print('Entailment')\nelif kg_s1 != kg_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Amanda goes to the toy store to buy 1 ball and 3 different board games, \"statement 2\" :Amanda goes to the toy store to buy 7 ball and 3 different board games, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ball_s1 = 1\nball_s2 = 7\nif ball_s1 is None or ball_s2 is None:\n print('neutral')\nelif ball_s1 == ball_s2:\n print('Entailment')\nelif ball_s1 != ball_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": I want to give more than 85 $ to John, \"statement 2\" :I want to give 95 $ to John, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nDollar_s1 = None\nDollar_s2 = 95\nif Dollar_s1 is None or Dollar_s2 is None:\n print('neutral')\nelif Dollar_s1 == Dollar_s2:\n print('Entailment')\nelif Dollar_s1 != Dollar_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Last week James worked a total of 41 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"statement 2\" :Last week James worked a total of 11 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_s1 = 41\nhours_s2 = 11\nif hours_s1 is None or hours_s2 is None:\n print('neutral')\nelif hours_s1 == hours_s2:\n print('Entailment')\nelif hours_s1 != hours_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": For the past less than 6 weeks , Rikki has gone to the gym an average of 2 times per week, \"statement 2\" :For the past 3 weeks , Rikki has gone to the gym an average of 2 times per week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "weeks_s1 = None\nweeks_s2 = 3\nif weeks_s1 is None or weeks_s2 is None:\n print('neutral')\nelif weeks_s1 == weeks_s2:\n print('Entailment')\nelif weeks_s1 != weeks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If there are 4 peanuts in a box and Mary puts 8 more peanuts inside , how many peanuts are in the box ?, \"statement 2\" :If there are 7 peanuts in a box and Mary puts 8 more peanuts inside , how many peanuts are in the box ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "peanuts_s1 = 4\npeanuts_s2 = 7\nif peanuts_s1 is None or peanuts_s2 is None:\n print('neutral')\nelif peanuts_s1 == peanuts_s2:\n print('Entailment')\nelif peanuts_s1 != peanuts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Anup was asked to find the value of 7 / 12 of a sum of money T, \"statement 2\" :Anup was asked to find the value of more than 7 / 12 of a sum of money T, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "SumofMoneyS1 = 7/12\nSumofMoneyS2 = 0\nSumofMoneyS2 > 7/12\nif SumofMoneyS1 is None or SumofMoneyS2 is None:\n print('neutral')\nelif SumofMoneyS1==SumofMoneyS2:\n print('Entailment')\nelif SumofMoneyS1!=SumofMoneyS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Dana borrows 5000 pounds annually for her college education, \"statement 2\" :Dana borrows 3000 pounds annually for her college education, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "PoundsS1 = 5000\nPoundsS2 = 3000\nif PoundsS1 is None or PoundsS2 is None:\n print('neutral')\nelif PoundsS1==PoundsS2:\n print('Entailment')\nelif PoundsS1!=PoundsS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Bruce and Bhishma are running on a circular track of length more than 200 m, \"statement 2\" :Bruce and Bhishma are running on a circular track of length 600 m, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "#RunningMetersS1 > 200\nRunningMetersS1 = None\nRunningMetersS2 = 600\nif RunningMetersS1 is None or RunningMetersS2 is None:\n print('neutral')\nelif RunningMetersS1==RunningMetersS2:\n print('Entailment')\nelif RunningMetersS1!=RunningMetersS2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": There was 4 to 5 shops in the town which was build by a builder from Mumbai, \"statement 2\" :There was less than 5 to 5 shops in the town which was build by a builder from Mumbai, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ShopS1 = 4\nShopS2 = 0\nShopS2 < 5\n\nif ShopS1 is None or ShopS2 is None:\n print('neutral')\nelif ShopS1<5:\n print('Entailment')\nelif ShopS1!=ShopS2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": David obtained more than 16 , 85 , 82 , 87 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"statement 2\" :David obtained 86 , 85 , 82 , 87 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "MarkS1 = None\nMarkS2 = 86\n#MarkS1 > 16\nif MarkS1 is None or MarkS2 is None:\n print('neutral')\nelif MarkS1==MarkS2:\n print('Entailment')\nelif MarkS1!=MarkS2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": James have 10 parrots , 4 fishes , 9 rabbits and 6 dogs, \"statement 2\" :James have less than 70 parrots , 4 fishes , 9 rabbits and 6 dogs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ParrotsS1 = 10\nParrotsS2 = 0\nParrotsS2 < 70\nif ParrotsS1 is None or ParrotsS2 is None:\n print('neutral')\nelif ParrotsS1<70:\n print('Entailment')\nelif ParrotsS1!=ParrotsS2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Matt has five iron coins and five copper coins , how many different sums from less than 5 \u00a2 to 35 \u00a2 can he make with a combination of his coins ?, \"statement 2\" :If Matt has five iron coins and five copper coins , how many different sums from 1 \u00a2 to 35 \u00a2 can he make with a combination of his coins ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "CoinS1 = None\nCoinS2 = 1\n#CoinS1 < 5\nif CoinS1 is None or CoinS2 is None:\n print('neutral')\nelif CoinS1==CoinS2:\n print('Entailment')\nelif CoinS1!=CoinS2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": While driving from City A to City B , Cara drives at a constant speed of less than 50 miles per hour, \"statement 2\" :While driving from City A to City B , Cara drives at a constant speed of 30 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "DriveSpeedS1 = None\nDriveSpeedS2 = 30\n#DriveSpeedS1 < 50\nif DriveSpeedS1 is None or DriveSpeedS2 is None:\n print('neutral')\nelif DriveSpeedS1==DriveSpeedS1:\n print('Entailment')\nelif DriveSpeedS1!=DriveSpeedS2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Sachi invested amount of more than 5000 in a fixed deposit for 2 years at compound interest rate of 5 % per annum, \"statement 2\" :Sachi invested amount of 8000 in a fixed deposit for 2 years at compound interest rate of 5 % per annum, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "InvestedAmountS1 = None\nInvestedAmountS2 = 8000\n#InvestedAmountS1 < 5000\nif InvestedAmountS1 is None or InvestedAmountS2 is None:\n print('neutral')\nelif InvestedAmountS1==InvestedAmountS2:\n print('Entailment')\nelif InvestedAmountS1!=InvestedAmountS2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": City A to city B , Andrew drove for 1 hr at 44 mph and for 3 hours at 60 mph, \"statement 2\" :City A to city B , Andrew drove for less than 2 hr at 44 mph and for 3 hours at 60 mph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "DroveS1 = 1\nDroveS2 = 0 \nDroveS2 < 2\nif DroveS1 is None or DroveS2 is None:\n print('neutral')\nelif DroveS1<2:\n print('Entailment')\nelif DroveS1!=DroveS2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Store Z : $ more than 70 , a 20 % sales tax , and $ 10 rebate after tax Isaac can purchase a certain item in four different ways , as shown in the table, \"statement 2\" :Store Z : $ 90 , a 20 % sales tax , and $ 10 rebate after tax\nIsaac can purchase a certain item in four different ways , as shown in the table, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "SaleTaxS1 = None\nSaleTaxS2 = 90 \n#SaleTaxS1 > 70\nif SaleTaxS1 is None or SaleTaxS2 is None:\n print('neutral')\nelif SaleTaxS1==SaleTaxS2:\n print('Entailment')\nelif SaleTaxS1!=SaleTaxS2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If 25 % of all the students at Morse have cars , how many students are in the three lower grades ?, \"statement 2\" :If 85 % of all the students at Morse have cars , how many students are in the three lower grades ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "StudentsS1 = 25\nStudentsS2 = 85\nif StudentsS1 is None or StudentsS2 is None:\n print('neutral')\nelif StudentsS1==StudentsS2:\n print('Entailment')\nelif StudentsS1!=StudentsS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Dan can do a job alone in 15 hours, \"statement 2\" :Dan can do a job alone in more than 15 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "HoursS1 = 15\nHoursS2 = 0\n#HoursS2 < 15 \nif HoursS1 is None or HoursS2 is None:\n print('neutral')\nelif HoursS1==HoursS2:\n print('Entailment')\nelif HoursS1!=HoursS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Andrew purchased more than 1 kg of grapes at the rate of 68 per kg and 9 kg of mangoes at the rate of 48 per kg, \"statement 2\" :Andrew purchased 7 kg of grapes at the rate of 68 per kg and 9 kg of mangoes at the rate of 48 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "GrapesS1 = None\nGrapesS2 = 7\n#GrapesS1 > 1 \nif GrapesS1 is None or GrapesS2 is None:\n print('neutral')\nelif GrapesS1==GrapesS2:\n print('Entailment')\nelif GrapesS1!=GrapesS2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the marks secured by Reema was written as 35 instead of 99 then find the correct average marks up to two decimal places ., \"statement 2\" :If the marks secured by Reema was written as less than 45 instead of 99 then find the correct average marks up to two decimal places ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "MarkS1 = 35\nMarkS2 = 0\nMarkS2 < 45\n \nif MarkS1 is None or MarkS2 is None:\n print('neutral')\nelif MarkS1<45:\n print('Entailment')\nelif MarkS21!=MarkS:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If OA = less than 6 , AC = 4 and BD = 6 , determine the length of OB ., \"statement 2\" :If OA = 2 , AC = 4 and BD = 6 , determine the length of OB ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "LengthS1 = None\nLengthS2 = 2\n#LengthS1 < 6\n \nif LengthS1 is None or LengthS2 is None:\n print('neutral')\nelif LengthS1==LengthS2:\n print('Entailment')\nelif LengthS1!=LengthS2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If 1 / 12 of the passengers on a ship are from North America , 1 / 8 are Europeans , 1 / 3 are from Africa , 1 / 6 are from Asia and the remaining 35 people are citizens of other continents , then how many passengers are on board the ship ?, \"statement 2\" :If 3 / 12 of the passengers on a ship are from North America , 1 / 8 are Europeans , 1 / 3 are from Africa , 1 / 6 are from Asia and the remaining 35 people are citizens of other continents , then how many passengers are on board the ship ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "PassengersS1 = 1/12\nPassengersS2 = 3/12\n \nif PassengersS1 is None or PassengersS2 is None:\n print('neutral')\nelif PassengersS1==PassengersS2:\n print('Entailment')\nelif PassengersS1!=PassengersS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Lilly has 10 fish and Rosy has 8 fish, \"statement 2\" :Lilly has less than 80 fish and Rosy has 8 fish, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nFishS1 = 10\nFishS2 = 0\nFishS2 < 80\n \nif FishS1 is None or FishS2 is None:\n print('neutral')\nelif FishS1<80:\n print('Entailment')\nelif FishS1!=FishS2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mary can do a piece of work in less than 81 days, \"statement 2\" :Mary can do a piece of work in 11 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "DaysS1 = None\nDaysS2 = 11\n#DaysS1 < 81 \nif DaysS1 is None or DaysS2 is None:\n print('neutral')\nelif DaysS1==DaysS2:\n print('Entailment')\nelif DaysS1!=DaysS2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At Veridux Corporation , there are 210 employees, \"statement 2\" :At Veridux Corporation , there are less than 510 employees, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "EmployeesS1 = 210\nEmployeesS2 = 0\nEmployeesS2 < 510\n \nif EmployeesS1 is None or EmployeesS2 is None:\n print('neutral')\nelif EmployeesS1<510:\n print('Entailment')\nelif EmployeesS1!=EmployeesS2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Of the more than 30 electronics components that a factory must manufacture , 80 percent would be most e \u00a2 ciently manufactured by Machine A and the remaining 20 percent would be most efficiently manufactured by Machine B , though either machine could manufacture any of the 60 components, \"statement 2\" :Of the 60 electronics components that a factory must manufacture , 80 percent would be most e \u00a2 ciently manufactured by Machine A and the remaining 20 percent would be most efficiently manufactured by Machine B , though either machine could manufacture any of the 60 components, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ElectronicsComponentsS1 = None\n#ElectronicsComponentsS1 > 30\nElectronicsComponentsS2 = 60\n \nif ElectronicsComponentsS1 is None or ElectronicsComponentsS2 is None:\n print('neutral')\nelif ElectronicsComponentsS1==ElectronicsComponentsS2:\n print('Entailment')\nelif ElectronicsComponentsS1!=ElectronicsComponentsS2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At present , the ratio between the ages of Arun and Deepak is more than 3 : 3, \"statement 2\" :At present , the ratio between the ages of Arun and Deepak is 4 : 3, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "AgeRatioS1 = None\n#AgeRatioS1 > 3/3 \nAgeRatioS2 = 4/3\nif AgeRatioS1 is None or AgeRatioS2 is None:\n print('neutral')\nelif AgeRatioS1==AgeRatioS2:\n print('Entailment')\nelif AgeRatioS1!=AgeRatioS2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the distance between their homes is 20 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"statement 2\" :If the distance between their homes is more than 20 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "KilometersS1 = 20 \nKilometersS2 = 0\nKilometersS2 > 20\nif KilometersS1 is None or KilometersS2 is None:\n print('neutral')\nelif KilometersS1==KilometersS2:\n print('Entailment')\nelif KilometersS1!=KilometersS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If there are 55 possible combinations in which Michael is not selected , what is the value of w ?, \"statement 2\" :If there are more than 45 possible combinations in which Michael is not selected , what is the value of w ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ValueS1 = 55 \nValueS2 = 0\nValueS1 > 45\nif ValueS1 is None or ValueS2 is None:\n print('neutral')\nelif ValueS1>45:\n print('Entailment')\nelif ValueS1!=ValueS2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In Kaya ' s teacher ' s desk there are 9 pink highlighters , 8 yellow highlighters , and 5 blue highlighters, \"statement 2\" :In Kaya ' s teacher ' s desk there are more than 7 pink highlighters , 8 yellow highlighters , and 5 blue highlighters, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "HighlightersS1 = 9 \nHighlightersS2 = 0\nHighlightersS2 > 7\nif HighlightersS1 is None or HighlightersS2 is None:\n print('neutral')\nelif HighlightersS1>7:\n print('Entailment')\nelif HighlightersS1!=HighlightersS2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": John needs more than 3 balls out of 10 balls, \"statement 2\" :John needs 4 balls out of 10 balls, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nBallsS1 = None\n#BallsS1 > 3\nBallsS2 = 4\nif BallsS1 is None or BallsS2 is None:\n print('neutral')\nelif BallsS1==BallsS2:\n print('Entailment')\nelif BallsS1!=BallsS2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": David ' s Bank ' s saving amount is decreased 10 % due to loan payment and current balance is Rs, \"statement 2\" :David ' s Bank ' s saving amount is decreased less than 60 % due to loan payment and current balance is Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "LoanPaymentS1 = 10\nLoanPaymentS2 = 0\nLoanPaymentS2 < 60 \nif LoanPaymentS1 is None or LoanPaymentS2 is None:\n print('neutral')\nelif LoanPaymentS1<60:\n print('Entailment')\nelif LoanPaymentS1!=LoanPaymentS2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mike had less than 700 watermelons, \"statement 2\" :Mike had 200 watermelons, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "WatermelonsS1 = None\n#WatermelonsS1 < 700\nWatermelonsS2 = 200\nif WatermelonsS1 is None or WatermelonsS2 is None:\n print('neutral')\nelif WatermelonsS1==WatermelonsS2:\n print('Entailment')\nelif WatermelonsS1!=WatermelonsS2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If there are less than 45 males altogether , how many gerbils does Claire have ?, \"statement 2\" :If there are 25 males altogether , how many gerbils does Claire have ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nMalesS1 = None\n#MalesS1 < 45\nMalesS2 = 25\nif MalesS1 is None or MalesS2 is None:\n print('neutral')\nelif MalesS1==MalesS2:\n print('Entailment')\nelif MalesS1!=MalesS2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Bookman purchased 60 copies of a new book released recently , 10 of which are hardback and sold for $ 20 each , and rest are paperback and sold for $ 10 each, \"statement 2\" :Bookman purchased more than 40 copies of a new book released recently , 10 of which are hardback and sold for $ 20 each , and rest are paperback and sold for $ 10 each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "BookCopiesS1 = 60\nBookCopiesS2 = 0\nBookCopiesS2 > 40\nif BookCopiesS1 is None or BookCopiesS2 is None:\n print('neutral')\nelif BookCopiesS1>40:\n print('Entailment')\nelif BookCopiesS1!=BookCopiesS2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Assuming that Karen drives at an average speed of 60 mph and Tom drives at an average speed of 45 mph , how many E miles will Tom drive before Karen wins the bet ?, \"statement 2\" :Assuming that Karen drives at an average speed of 20 mph and Tom drives at an average speed of 45 mph , how many E miles will Tom drive before Karen wins the bet ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "DrivesSpeedS1 = 60\nDrivesSpeedS2 = 20\nif DrivesSpeedS1 is None or DrivesSpeedS2 is None:\n print('neutral')\nelif DrivesSpeedS1==DrivesSpeedS2:\n print('Entailment')\nelif DrivesSpeedS1!=DrivesSpeedS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Shreehari has less than 425 pencils, \"statement 2\" :Shreehari has 125 pencils, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "PencilsS1 = None\n#PencilsS1 < 425\nPencilsS2 = 125\nif PencilsS1 is None or PencilsS2 is None:\n print('neutral')\nelif PencilsS1==PencilsS2:\n print('Entailment')\nelif PencilsS1!=PencilsS2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If there are more than 1 peanuts in a box and Mary puts 12 more peanuts inside , how many peanuts are in the box ?, \"statement 2\" :If there are 4 peanuts in a box and Mary puts 12 more peanuts inside , how many peanuts are in the box ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "PeanutsS1 = None\n#PeanutsS1 > 1\nPeanutsS2 = 4\nif PeanutsS1 is None or PeanutsS2 is None:\n print('neutral')\nelif PeanutsS1==PeanutsS2:\n print('Entailment')\nelif PeanutsS1!=PeanutsS2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Dacid obtained more than 46 , 85 , 92 , 87 and 95 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained 86 , 85 , 92 , 87 and 95 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "MarksS1 = None\n#MarksS1 > 46\nMarksS2 = 86\nif MarksS1 is None or MarksS2 is None:\n print('neutral')\nelif MarksS1==MarksS2:\n print('Entailment')\nelif MarksS1!=MarksS2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In the biology lab of ` ` Jefferson ' ' High School there are 4.32 * 10 ^ 6 germs , equally divided among 10,800 Petri dishes, \"statement 2\" :In the biology lab of ` ` Jefferson ' ' High School there are 4.32 * less than 30 ^ 6 germs , equally divided among 10,800 Petri dishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "GermsS1 = 10*6\nGermsS2 = 0\nGermsS2 < 30*6\nif GermsS1 is None or GermsS2 is None:\n print('neutral')\nelif GermsS1<30*6:\n print('Entailment')\nelif GermsS1!=GermsS2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The average of Suresh \u2019 s marks in English and History is more than 15, \"statement 2\" :The average of Suresh \u2019 s marks in English and History is 55, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "MarksS1 = None\n#MarksS1 = 15\nMarksS2 = 55\nif MarksS1 is None or MarksS2 is None:\n print('neutral')\nelif MarksS1==MarksS2:\n print('Entailment')\nelif MarksS1!=MarksS2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If she worked four 10 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"statement 2\" :If she worked four 70 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "HourS1 = 10\nHourS2 = 70\nif HourS1 is None or HourS2 is None:\n print('neutral')\nelif HourS1==HourS2:\n print('Entailment')\nelif HourS1!=HourS2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Bhanu spends 30 % of his income on petrol on scooter 14 % of the remaining on house rent and the balance on food, \"statement 2\" :Bhanu spends less than 60 % of his income on petrol on scooter 14 % of the remaining on house rent and the balance on food, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "SpendIncomeS1 = 30\nSpendIncomeS2 = 0\nSpendIncomeS2 < 60\nif SpendIncomeS1 is None or SpendIncomeS2 is None:\n print('neutral')\nelif SpendIncomeS1<60:\n print('Entailment')\nelif SpendIncomeS1!=SpendIncomeS2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Carl drove from his home to the beach at an average speed of 80 kilometers per hour and returned home by the same route at an average speed of 70 kilometers per hour, \"statement 2\" :Carl drove from his home to the beach at an average speed of 60 kilometers per hour and returned home by the same route at an average speed of 70 kilometers per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "KilometersS1 = 80\nKilometersS2 = 60\n\nif KilometersS1 is None or KilometersS2 is None:\n print('neutral')\n\nelif KilometersS1 == KilometersS2:\n print('Entailment')\n\nelif KilometersS1 != KilometersS2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Joe drives less than 340 miles at 60 miles per hour , and then he drives the next 120 miles at 40 miles per hour, \"statement 2\" :Joe drives 240 miles at 60 miles per hour , and then he drives the next 120 miles at 40 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_s1 = None\nmiles_s2 = 240\n\nif miles_s1 is None or miles_s2 is None:\n print('neutral')\nelif miles_s1 == miles_s2:\n print('Entailment')\nelif miles_s1 != miles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": It will take 16 days for Mary to complete a certain task alone, \"statement 2\" :It will take 76 days for Mary to complete a certain task alone, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_s1 = 16\ndays_s2 = 76\n\nif days_s1 is None or days_s2 is None:\n print('neutral')\nelif days_s1 == days_s2:\n print('Entailment')\nelif days_s1 != days_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Michael earned $ less than 810 last week , how many hours did he work ?, \"statement 2\" :If Michael earned $ 210 last week , how many hours did he work ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "earned_s1 = None\nearned_s2 = 210\n\nif earned_s1 is None or earned_s2 is None:\n print('neutral')\nelif earned_s1 == earned_s2:\n print('Entailment')\nelif earned_s1 != earned_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Tom drives from town R to town B , driving at a constant speed of 60 miles per hour, \"statement 2\" :Tom drives from town R to town B , driving at a constant speed of more than 50 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_per_hour_s1 = 60\nmiles_per_hour_s2 = 50\nif miles_per_hour_s1 is None or miles_per_hour_s2 is None:\n print('neutral')\nelif miles_per_hour_s1 > miles_per_hour_s2:\n print('Entailment')\nelif miles_per_hour_s1 != miles_per_hour_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": After Sally left mike had less than 536 watermelons, \"statement 2\" :After Sally left mike had 136 watermelons, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "watermelons_s1 = None\nwatermelons_s2 = 136\nif watermelons_s1 is None or watermelons_s2 is None:\n print('neutral')\nelif watermelons_s1 == watermelons_s2:\n print('Entailment')\nelif watermelons_s1 != watermelons_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Sanoop returned 5 t - shirts to the retailer , and the average price of the remaining t - shirts was Rs, \"statement 2\" :If Sanoop returned more than 4 t - shirts to the retailer , and the average price of the remaining t - shirts was Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tshirts_s1 = 5\ntshirts_s2 = 4\nif tshirts_s1 is None or tshirts_s2 is None:\n print('neutral')\nelif tshirts_s1 > tshirts_s2:\n print('Entailment')\nelif tshirts_s1 != tshirts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": With the help of Pavan , they completed the work in 8 days and earned Rs, \"statement 2\" :With the help of Pavan , they completed the work in more than 7 days and earned Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_s1 = 8\ndays_s2 = 7\nif days_s1 is None or days_s2 is None:\n print('neutral')\nelif days_s1 > days_s2:\n print('Entailment')\nelif days_s1 != days_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Maddie has 4 apples , if she give 2 to mike , how many does she have left ?, \"statement 2\" :Maddie has less than 7 apples , if she give 2 to mike , how many does she have left ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "apples_s1 = 4\napples_s2 = 7\nif apples_s1 is None or apples_s2 is None:\n print('neutral')\nelif apples_s1 < apples_s2:\n print('Entailment')\nelif apples_s1 != apples_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Patanjali walked for more than 2 days, \"statement 2\" :Patanjali walked for 3 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_s1 = None\ndays_s2 = 3\nif days_s1 is None or days_s2 is None:\n print('neutral')\nelif days_s1 == days_s2:\n print('Entailment')\nelif days_s1 != days_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Calculate the average mark scored by Adam if he had the following scores in an examination : 86 , 75 , 72 , 63 and 65 marks ( out of 100 ) in French Language , Geography , Art and design , History and Physical Education respectively ?, \"statement 2\" :Calculate the average mark scored by Adam if he had the following scores in an examination : more than 86 , 75 , 72 , 63 and 65 marks ( out of 100 ) in French Language , Geography , Art and design , History and Physical Education respectively ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_s1 = 86\nmarks_s2 = 0\nif marks_s1 is None or marks_s2 is None:\n print('neutral')\nelif marks_s1 == marks_s2:\n print('Entailment')\nelif marks_s1 != marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Jack walked 4 miles in 1 hour and 15 minutes , what was his rate of walking in miles per hour ?, \"statement 2\" :If Jack walked more than 4 miles in 1 hour and 15 minutes , what was his rate of walking in miles per hour ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_s1 = 4\nmiles_s2 = 0\nif miles_s1 is None or miles_s2 is None:\n print('neutral')\nelif miles_s1 == miles_s2:\n print('Entailment')\nelif miles_s1 != miles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": How many possible ways can 2 girls ( Rebecca , Kate , Ashley ) go on a date with 2 boys ( Peter , Kyle , Sam ) ?, \"statement 2\" :How many possible ways can less than 2 girls ( Rebecca , Kate , Ashley ) go on a date with 2 boys ( Peter , Kyle , Sam ) ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "girls_s1 = 2\ngirls_s2 = 0\nif girls_s1 is None or girls_s2 is None:\n print('neutral')\nelif girls_s1 == girls_s2:\n print('Entailment')\nelif girls_s1 != girls_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": There are less than 48 stations between Hyderabad and Bangalore, \"statement 2\" :There are 18 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stations_s1 = None\nstations_s2 = 18\nif stations_s1 is None or stations_s2 is None:\n print('neutral')\nelif stations_s1 == stations_s2:\n print('Entailment')\nelif stations_s1 != stations_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": After Sally left mike had 136 watermelons, \"statement 2\" :After Sally left mike had less than 536 watermelons, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "watermelons_s1 = 136\nwatermelons_s2 = 536\nif watermelons_s1 is None or watermelons_s2 is None:\n print('neutral')\nelif watermelons_s1 < watermelons_s2:\n print('Entailment')\nelif watermelons_s1 != watermelons_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Rakesh travelled 1800 kilometre by air which formed 3 / 5 of the total journey, \"statement 2\" :Rakesh travelled 7800 kilometre by air which formed 3 / 5 of the total journey, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kilometre_s1 = 1800\nkilometre_s2 = 7800\nif kilometre_s1 is None or kilometre_s2 is None:\n print('neutral')\nelif kilometre_s1 == kilometre_s2:\n print('Entailment')\nelif kilometre_s1 != kilometre_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Arun obtained 76 , 65 , 82 , 67 and 85 marks ( out in 100 ) in English , Mathematics , Chemistry , Biology and Physics, \"statement 2\" :Arun obtained 46 , 65 , 82 , 67 and 85 marks ( out in 100 ) in English , Mathematics , Chemistry , Biology and Physics, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_s1 = 76\nmarks_s2 = 46\nif marks_s1 is None or marks_s2 is None:\n print('neutral')\nelif marks_s1 == marks_s2:\n print('Entailment')\nelif marks_s1 != marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At Veridux Corporation , there are 218 employees, \"statement 2\" :At Veridux Corporation , there are less than 818 employees, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "employees_s1 = 218\nemployees_s2 = 818\nif employees_s1 is None or employees_s2 is None:\n print('neutral')\nelif employees_s1 < employees_s2:\n print('Entailment')\nelif employees_s1 != employees_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If ` ` YELLOW ' ' is given a color code of 92 , what is the difference between ` ` BROWN ' ' and ` ` RED ' ' ?, \"statement 2\" :If ` ` YELLOW ' ' is given a color code of more than 62 , what is the difference between ` ` BROWN ' ' and ` ` RED ' ' ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "color_code_s1 = 92\ncolor_code_s2 = 62\nif color_code_s1 is None or color_code_s2 is None:\n print('neutral')\nelif color_code_s1 > color_code_s2:\n print('Entailment')\nelif color_code_s1 != color_code_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The 2 nd builder builds in 15 days , then how many 2 ' s are used by the builder from Chennai in\nnumbering the 100 homes ?, \"statement 2\" :The more than 2 nd builder builds in 15 days , then how many 2 ' s are used by the builder from Chennai in numbering the 100 homes ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "builds_s1 = 2\nbuilds_s2 = 0\nif builds_s1 is None or builds_s2 is None:\n print('neutral')\nelif builds_s1 == builds_s2:\n print('Entailment')\nelif builds_s1 != builds_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Aaron will jog from home at 3 miles per hour and then walk back home by the same route at 6 miles per hour, \"statement 2\" :Aaron will jog from home at less than 4 miles per hour and then walk back home by the same route at 6 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_s1 = 3\nmiles_s2 = 4\nif miles_s1 is None or miles_s2 is None:\n print('neutral')\nelif miles_s1 < miles_s2:\n print('Entailment')\nelif miles_s1 != miles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 14000 after 8 months , John withdraws Rs, \"statement 2\" :less than 44000 after 8 months , John withdraws Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "withdraws_s1 = 14000\nwithdraws_s2 = 44000\nif withdraws_s1 is None or withdraws_s2 is None:\n print('neutral')\nelif withdraws_s1 < withdraws_s2:\n print('Entailment')\nelif withdraws_s1 != withdraws_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Raviraj invested an amount of less than 600000 at compound interest rate of 10 pcpa for a period of three years, \"statement 2\" :Raviraj invested an amount of 100000 at compound interest rate of 10 pcpa for a period of three years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "interest_rate_s1 = None\ninterest_rate_s2 = 100000\nif interest_rate_s1 is None or interest_rate_s2 is None:\n print('neutral')\nelif interest_rate_s1 == interest_rate_s2:\n print('Entailment')\nelif interest_rate_s1 != interest_rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The owner made some additions and the 900 square feet property is now fetching a price of US Dollar 1500, \"statement 2\" :The owner made some additions and the more than 800 square feet property is now fetching a price of US Dollar 1500, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "property_s1 = 900\nproperty_s2 = 800\nif property_s1 is None or property_s2 is None:\n print('neutral')\nelif property_s1 > property_s2:\n print('Entailment')\nelif property_s1 != property_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Cindy is thinking of a number which is less than 8 less than the square of a positive integer, \"statement 2\" :Cindy is thinking of a number which is 4 less than the square of a positive integer, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_s1 = None\nnumber_s2 = 4\nif number_s1 is None or number_s2 is None:\n print('neutral')\nelif number_s1 == number_s2:\n print('Entailment')\nelif number_s1 != number_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Each week , Harry is paid x dollars per hour for the first more than 11 hours and 1.5 x dollars for each additional hour worked that week, \"statement 2\" :Each week , Harry is paid x dollars per hour for the first 21 hours and 1.5 x dollars for each additional hour worked that week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_s1 = None\nhours_s2 = 21\nif hours_s1 is None or hours_s2 is None:\n print('neutral')\nelif hours_s1 == hours_s2:\n print('Entailment')\nelif hours_s1 != hours_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": NHAI employs 100 men to build a highway of 2 km in 50 days working 8 hours a day, \"statement 2\" :NHAI employs 200 men to build a highway of 2 km in 50 days working 8 hours a day, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "employs_s1 = 100\nemploys_s2 = 200\nif employs_s1 is None or employs_s2 is None:\n print('neutral')\nelif employs_s1 == employs_s2:\n print('Entailment')\nelif employs_s1 != employs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Joe drives 240 miles at 60 miles per hour , and then he drives the next 120 miles at 40 miles per hour, \"statement 2\" :Joe drives less than 340 miles at 60 miles per hour , and then he drives the next 120 miles at 40 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_s1 = 240\nmiles_s2 = 340\nif miles_s1 is None or miles_s2 is None:\n print('neutral')\nelif miles_s1 < miles_s2:\n print('Entailment')\nelif miles_s1 != miles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Sony and Johnny caught more than 40 fishes, \"statement 2\" :Sony and Johnny caught 60 fishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "fishes_s1 = None\nfishes_s2 = 60\nif fishes_s1 is None or fishes_s2 is None:\n print('neutral')\nelif fishes_s1 == fishes_s2:\n print('Entailment')\nelif fishes_s1 != fishes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Last year 6 members of the club traveled to both England and France , no members traveled to both England and Italy , and 11 members traveled to both France and Italy, \"statement 2\" :Last year less than 8 members of the club traveled to both England and France , no members traveled to both England and Italy , and 11 members traveled to both France and Italy, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "members_s1 = 6\nmembers_s2 = 8\nif members_s1 is None or members_s2 is None:\n print('neutral')\nelif members_s1 < members_s2:\n print('Entailment')\nelif members_s1 != members_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": For the past 3 weeks , Rikki has gone to the gym an average of 2 times per week, \"statement 2\" :For the past 1 weeks , Rikki has gone to the gym an average of 2 times per week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "weeks_s1 = 3\nweeks_s2 = 1\nif weeks_s1 is None or weeks_s2 is None:\n print('neutral')\nelif weeks_s1 == weeks_s2:\n print('Entailment')\nelif weeks_s1 != weeks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mira is making telescopes , each consisting of 2 lenses , 1 tube , and 1 eyepiece, \"statement 2\" :Mira is making telescopes , each consisting of 8 lenses , 1 tube , and 1 eyepiece, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "lenses_s1 = 2\nlenses_s2 = 8\nif lenses_s1 is None or lenses_s2 is None:\n print('neutral')\nelif lenses_s1 == lenses_s2:\n print('Entailment')\nelif lenses_s1 != lenses_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jane is currently 32 years old , and she stopped baby - sitting 12 years ago, \"statement 2\" :Jane is currently more than 32 years old , and she stopped baby - sitting 12 years ago, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_s1 = 32\nyears_s2 = 0\nif years_s1 is None or years_s2 is None:\n print('neutral')\nelif years_s1 == years_s2:\n print('Entailment')\nelif years_s1 != years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jithin bought six books at an average price ( arithmetic mean ) of 20 $, \"statement 2\" :Jithin bought six books at an average price ( arithmetic mean ) of less than 20 $, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "books_price_s1 = 20\nbooks_price_s2 = 0\nif books_price_s1 is None or books_price_s2 is None:\n print('neutral')\nelif books_price_s1 == books_price_s2:\n print('Entailment')\nelif books_price_s1 != books_price_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Dan works alone for 6 hours and then stops , how many hours will it take Annie , working alone , to complete the job ?, \"statement 2\" :If Dan works alone for less than 6 hours and then stops , how many hours will it take Annie , working alone , to complete the job ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_s1 = 6\nhours_s2 = 0\nif hours_s1 is None or hours_s2 is None:\n print('neutral')\nelif hours_s1 == hours_s2:\n print('Entailment')\nelif hours_s1 != hours_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At the same time , Albert gets on an elevator at the 51 st floor of the same building and rides down at the rate of 63 floors per minute, \"statement 2\" :At the same time , Albert gets on an elevator at the less than 61 st floor of the same building and rides down at the rate of 63 floors per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "floor_s1 = 51\nfloor_s2 = 61\nif floor_s1 is None or floor_s2 is None:\n print('neutral')\nelif floor_s1 < floor_s2:\n print('Entailment')\nelif floor_s1 != floor_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than 50 % ?, \"statement 2\" :If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than 10 % ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "departure_rate_s1 = 50\ndeparture_rate_s2 = 10\nif departure_rate_s1 is None or departure_rate_s2 is None:\n print('neutral')\nelif departure_rate_s1 == departure_rate_s2:\n print('Entailment')\nelif departure_rate_s1 != departure_rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": more than 1600 from Anwar at 6 % p, \"statement 2\" :3600 from Anwar at 6 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Anwar_s1 = None\nAnwar_s2 = 3600\nif Anwar_s1 is None or Anwar_s2 is None:\n print('neutral')\nelif Anwar_s1 == Anwar_s2:\n print('Entailment')\nelif Anwar_s1 != Anwar_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The average number of shirts with Salman , Ambani and Dalmiya is less than 80 , if all of them reached a shopping mall in Delhi and purchased 8 shirts each of them then average number of shirt each of them now has, \"statement 2\" :The average number of shirts with Salman , Ambani and Dalmiya is 40 , if all of them reached a shopping mall in Delhi and purchased 8 shirts each of them then average number of shirt each of them now has, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shirts_s1 = None\nshirts_s2 = 40\nif shirts_s1 is None or shirts_s2 is None:\n print('neutral')\nelif shirts_s1 == shirts_s2:\n print('Entailment')\nelif shirts_s1 != shirts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jane and Thomas are among the 7 people from which a committee of 4 people is to be selected, \"statement 2\" :Jane and Thomas are among the less than 7 people from which a committee of 4 people is to be selected, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_s1 = 7\npeople_s2 = 0\nif people_s1 is None or people_s2 is None:\n print('neutral')\nelif people_s1 == people_s2:\n print('Entailment')\nelif people_s1 != people_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": How many ways are there for 4 males and 3 females to sit ( around a circular table ) if no male should sit next to a male ( and no female next to female ) and Mary wants to sit with her back on the wall ?, \"statement 2\" :How many ways are there for more than 4 males and 3 females to sit ( around a circular table ) if no male should sit next to a male ( and no female next to female ) and Mary wants to sit with her back on the wall ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "males_s1 = 4\nmales_s2 = 0\nif males_s1 is None or males_s2 is None:\n print('neutral')\nelif males_s1 == males_s2:\n print('Entailment')\nelif males_s1 != males_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If she worked four 12 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"statement 2\" :If she worked four less than 62 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hour_s1 = 12\nhour_s2 = 62\nif hour_s1 is None or hour_s2 is None:\n print('neutral')\nelif hour_s1 < hour_s2:\n print('Entailment')\nelif hour_s1 != hour_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": One hour after Matthew started waking from t to y , a distance of 45 km , Johnny started walking along the same road from y to t, \"statement 2\" :One hour after Matthew started waking from t to y , a distance of more than 35 km , Johnny started walking along the same road from y to t, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_s1 = 45\ndistance_s2 = 35\nif distance_s1 is None or distance_s2 is None:\n print('neutral')\nelif distance_s1 > distance_s2:\n print('Entailment')\nelif distance_s1 != distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Fred walks at a constant speed of 2 miles per hour and Sam walks at a constant speed of 5 miles per hour , how many miles has Sam walked when they meet ?, \"statement 2\" :If Fred walks at a constant speed of more than 2 miles per hour and Sam walks at a constant speed of 5 miles per hour , how many miles has Sam walked when they meet ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_s1 = 2\nmiles_s2 = 0\nif miles_s1 is None or miles_s2 is None:\n print('neutral')\nelif miles_s1 == miles_s2:\n print('Entailment')\nelif miles_s1 != miles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Sreedhar and Sravan together can do a work in less than 35 days, \"statement 2\" :Sreedhar and Sravan together can do a work in 25 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_s1 = None\ndays_s2 = 25\nif days_s1 is None or days_s2 is None:\n print('neutral')\nelif days_s1 == days_s2:\n print('Entailment')\nelif days_s1 != days_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": While driving from City A to City B , Ed drives at a constant speed of 30 miles per hour, \"statement 2\" :While driving from City A to City B , Ed drives at a constant speed of more than 20 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_s1 = 30\nmiles_s2 = 20\nif miles_s1 is None or miles_s2 is None:\n print('neutral')\nelif miles_s1 > miles_s2:\n print('Entailment')\nelif miles_s1 != miles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Kiran travels from A to B by car and returns from B to A by cycle in 7 hours, \"statement 2\" :Kiran travels from A to B by car and returns from B to A by cycle in more than 4 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_s1 = 7\nhours_s2 = 4\nif hours_s1 is None or hours_s2 is None:\n print('neutral')\nelif hours_s1 > hours_s2:\n print('Entailment')\nelif hours_s1 != hours_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Sam wrote 7 letters on Tuesday and 3 letters on Wednesday, \"statement 2\" :Sam wrote 3 letters on Tuesday and 3 letters on Wednesday, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "letters_s1 = 7\nletters_s2 = 3\nif letters_s1 is None or letters_s2 is None:\n print('neutral')\nelif letters_s1 == letters_s2:\n print('Entailment')\nelif letters_s1 != letters_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": With the help of Pavan , they completed the work in 8 days and earned Rs, \"statement 2\" :With the help of Pavan , they completed the work in more than 8 days and earned Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_s1 = 8\ndays_s2 = 0\nif days_s1 is None or days_s2 is None:\n print('neutral')\nelif days_s1 == days_s2:\n print('Entailment')\nelif days_s1 != days_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Dawson runs the first leg of the course in 38 seconds, \"statement 2\" :Dawson runs the first leg of the course in 68 seconds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "seconds_s1 = 38\nseconds_s2 = 68\nif seconds_s1 is None or seconds_s2 is None:\n print('neutral')\nelif seconds_s1 == seconds_s2:\n print('Entailment')\nelif seconds_s1 != seconds_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The more than 1 nd builder builds in 15 days , then how many 2 ' s are used by the builder from Chennai in numbering the 100 homes ?, \"statement 2\" :The 2 nd builder builds in 15 days , then how many 2 ' s are used by the builder from Chennai in\nnumbering the 100 homes ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_s1 = None\ndays_s2 = 2\nif days_s1 is None or days_s2 is None:\n print('neutral')\nelif days_s1 == days_s2:\n print('Entailment')\nelif days_s1 != days_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Sanoop returned 5 t - shirts to the retailer , and the average price of the remaining t - shirts was Rs, \"statement 2\" :If Sanoop returned 4 t - shirts to the retailer , and the average price of the remaining t - shirts was Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tshirts_s1 = 5\ntshirts_s2 = 4\nif tshirts_s1 is None or tshirts_s2 is None:\n print('neutral')\nelif tshirts_s1 == tshirts_s2:\n print('Entailment')\nelif tshirts_s1 != tshirts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": David gets on the elevator at the less than 61 th floor of a building and rides up at the rate of 57 floors per minute, \"statement 2\" :David gets on the elevator at the 11 th floor of a building and rides up at the rate of 57 floors per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "floor_s1 = None\nfloor_s2 = 11\nif floor_s1 is None or floor_s2 is None:\n print('neutral')\nelif floor_s1 == floor_s2:\n print('Entailment')\nelif floor_s1 != floor_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Anita has less than 460 apples, \"statement 2\" :Anita has 360 apples, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "apples_s1 = None\napples_s2 = 360\nif apples_s1 is None or apples_s2 is None:\n print('neutral')\nelif apples_s1 == apples_s2:\n print('Entailment')\nelif apples_s1 != apples_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Anne \u2019 s speed were doubled , they could clean their house in 3 hours working at their respective rates, \"statement 2\" :If Anne \u2019 s speed were doubled , they could clean their house in less than 3 hours working at their respective rates, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_s1 = 3\nhours_s2 = 0\nif hours_s1 is None or hours_s2 is None:\n print('neutral')\nelif hours_s1 == hours_s2:\n print('Entailment')\nelif hours_s1 != hours_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Robin ' s average ( arithmetic mean ) test score on more than 2 tests is 82, \"statement 2\" :Robin ' s average ( arithmetic mean ) test score on 9 tests is 82, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "test_score_s1 = None\ntest_score_s2 = 9\nif test_score_s1 is None or test_score_s2 is None:\n print('neutral')\nelif test_score_s1 == test_score_s2:\n print('Entailment')\nelif test_score_s1 != test_score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": After they have worked together for 12 days Matt stops and Peter completes the remaining work in 10 days, \"statement 2\" :After they have worked together for less than 52 days Matt stops and Peter completes the remaining work in 10 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_s1 = 12\ndays_s2 = 52\nif days_s1 is None or days_s2 is None:\n print('neutral')\nelif days_s1 < days_s2:\n print('Entailment')\nelif days_s1 != days_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": How many miles from home can Aaron jog so that he spends a total of more than 1 hours jogging and walking ?, \"statement 2\" :How many miles from home can Aaron jog so that he spends a total of 3 hours jogging and walking ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_s1 = None\nhours_s2 = 3\nif hours_s1 is None or hours_s2 is None:\n print('neutral')\nelif hours_s1 == hours_s2:\n print('Entailment')\nelif hours_s1 != hours_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": John was thrice as old as Tom 6 yrs back, \"statement 2\" :John was thrice as old as Tom 2 yrs back, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Years_s1 = 6\nYears_s2 = 2\nif Years_s1 is None or Years_s2 is None:\n print('neutral')\nelif Years_s1 == Years_s2:\n print('Entailment')\nelif Years_s1 != Years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Dana borrows 5000 pounds annually for her college education, \"statement 2\" :Dana borrows more than 2000 pounds annually for her college education, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "borrows_pounds_s1 = 5000\nborrows_pounds_s2 = 2000\nif borrows_pounds_s1 is None or borrows_pounds_s2 is None:\n print('neutral')\nelif borrows_pounds_s1 > borrows_pounds_s2:\n print('Entailment')\nelif borrows_pounds_s1 != borrows_pounds_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": One hour after Matthew started waking from r to y , a distance of more than 35 km , Johnny started walking along the same road from y to r, \"statement 2\" :One hour after Matthew started waking from r to y , a distance of 45 km , Johnny started walking along the same road from y to r, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_km_s1 = None\ndistance_km_s2 = 45\nif distance_km_s1 is None or distance_km_s2 is None:\n print('neutral')\nelif distance_km_s1 == distance_km_s2:\n print('Entailment')\nelif distance_km_s1 != distance_km_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than more than 40 % ?, \"statement 2\" :If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than 50 % ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "departure_rate_s1 = None\ndeparture_rate_s2 = 50\nif departure_rate_s1 is None or departure_rate_s2 is None:\n print('neutral')\nelif departure_rate_s1 == departure_rate_s2:\n print('Entailment')\nelif departure_rate_s1 != departure_rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The product of all the possible units digits of Sophie Germain primes greater than more than 7 is, \"statement 2\" :The product of all the possible units digits of Sophie Germain primes greater than 8 is, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "digits_s1 = None\ndigits_s2 = 8\nif digits_s1 is None or digits_s2 is None:\n print('neutral')\nelif digits_s1 == digits_s2:\n print('Entailment')\nelif digits_s1 != digits_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Ayisha ' s age is 1 / 6 th of her father ' s age, \"statement 2\" :Ayisha ' s age is less than 1 / 6 th of her father ' s age, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nage_s1 = 1/6\nage_s2 = 0\nif age_s1 is None or age_s2 is None:\n print('neutral')\nelif age_s1 == age_s2:\n print('Entailment')\nelif age_s1 != age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mary has a monthly salary of $ 1200, \"statement 2\" :Mary has a monthly salary of $ 3200, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "salary_s1 = 1200\nsalary_s2 = 3200\nif salary_s1 is None or salary_s2 is None:\n print('neutral')\nelif salary_s1 == salary_s2:\n print('Entailment')\nelif salary_s1 != salary_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Dan leaves City A 120 minutes after Cara, \"statement 2\" :Dan leaves City A more than 120 minutes after Cara, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "minutes_s1 = 120\nminutes_s2 = 0\nif minutes_s1 is None or minutes_s2 is None:\n print('neutral')\nelif minutes_s1 == minutes_s2:\n print('Entailment')\nelif minutes_s1 != minutes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Michael ate 1 / 8 of the cookies , Steve ate one half and Tyler ate 150 more cookies than Michael, \"statement 2\" :Michael ate more than 1 / 8 of the cookies , Steve ate one half and Tyler ate 150 more cookies than Michael, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cookies_s1 = 1/8\ncookies_s2 = 0\nif cookies_s1 is None or cookies_s2 is None:\n print('neutral')\nelif cookies_s1 == cookies_s2:\n print('Entailment')\nelif cookies_s1 != cookies_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Reeya obtained 40 , 60 , 70 , 80 and 80 out of 100 in different subjects , What will be the average, \"statement 2\" :Reeya obtained less than 40 , 60 , 70 , 80 and 80 out of 100 in different subjects , What will be the average, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Marks_s1 = 40\nMarks_s2 = 0\nif Marks_s1 is None or Marks_s2 is None:\n print('neutral')\nelif Marks_s1 == Marks_s2:\n print('Entailment')\nelif Marks_s1 != Marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The London Racetrack needs to submit its 3 fastest horses to the Kentucky Derby out of 25 horses, \"statement 2\" :The London Racetrack needs to submit its less than 4 fastest horses to the Kentucky Derby out of 25 horses, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "horses_s1 = 3\nhorses_s2 = 4\nif horses_s1 is None or horses_s2 is None:\n print('neutral')\nelif horses_s1 < horses_s2:\n print('Entailment')\nelif horses_s1 != horses_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mary can do a piece of work in 11 days, \"statement 2\" :Mary can do a piece of work in less than 81 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_s1 = 11\ndays_s2 = 81\nif days_s1 is None or days_s2 is None:\n print('neutral')\nelif days_s1 < days_s2:\n print('Entailment')\nelif days_s1 != days_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jason ' s team scored 60 points in a game basketball and he accounted for 60 percent of their points, \"statement 2\" :Jason ' s team scored less than 60 points in a game basketball and he accounted for 60 percent of their points, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "scored_percent_s1 = 60\nscored_percent_s2 = 0\nif scored_percent_s1 is None or scored_percent_s2 is None:\n print('neutral')\nelif scored_percent_s1 < scored_percent_s2:\n print('Entailment')\nelif scored_percent_s1 != scored_percent_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If it takes Jim less than 78 minutes to stretch and Cara continues to run during this time , how many minutes will it take Jim to catch up to Cara ?, \"statement 2\" :If it takes Jim 18 minutes to stretch and Cara continues to run during this time , how many minutes will it take Jim to catch up to Cara ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "minutes_s1 = None\nminutes_s2 = 18\nif minutes_s1 is None or minutes_s2 is None:\n print('neutral')\nelif minutes_s1 == minutes_s2:\n print('Entailment')\nelif minutes_s1 != minutes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Dan can do a job alone in less than 25 hours, \"statement 2\" :Dan can do a job alone in 15 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_s1 = None\nhours_s2 = 15\nif hours_s1 is None or hours_s2 is None:\n print('neutral')\nelif hours_s1 == hours_s2:\n print('Entailment')\nelif hours_s1 != hours_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Rosy also matched the London Eye which stands at more than 343 ft and Las Vegas \u2019 High Roller standing at 550 ft, \"statement 2\" :Rosy also matched the London Eye which stands at 443 ft and Las\nVegas \u2019 High Roller standing at 550 ft, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ft_s1 = None\nft_s2 = 443\nif ft_s1 is None or ft_s2 is None:\n print('neutral')\nelif ft_s1 == ft_s2:\n print('Entailment')\nelif ft_s1 != ft_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Carol ' s rectangle measures 12 inches by 15 inches and Jordan ' s rectangle is 9 inches long , how wide is Jordan ' s rectangle , in inches ?, \"statement 2\" :If Carol ' s rectangle measures 32 inches by 15 inches and Jordan ' s rectangle is 9 inches long , how wide is Jordan ' s rectangle , in inches ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "inches_s1 = 12\ninches_s2 = 32\nif inches_s1 is None or inches_s2 is None:\n print('neutral')\nelif inches_s1 == inches_s2:\n print('Entailment')\nelif inches_s1 != inches_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Vikas ' s rank among the boys in that class is 4 th from the top and 18 th from the bottom and Tanvi ' s rank among the girls is 8 th from top and 21 st from bottom, \"statement 2\" :Vikas ' s rank among the boys in that class is more than 4 th from the top and 18 th from the bottom and Tanvi ' s rank among the girls is 8 th from top and 21 st from bottom, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "class_s1 = 4\nclass_s2 = 0\nif class_s1 is None or class_s2 is None:\n print('neutral')\nelif class_s1 == class_s2:\n print('Entailment')\nelif class_s1 != class_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 1300 , Deepak ' s share is :, \"statement 2\" :less than 1300 , Deepak ' s share is :, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "share_s1 = 1300\nshare_s2 = 0\nif share_s1 is None or share_s2 is None:\n print('neutral')\nelif share_s1 == share_s2:\n print('Entailment')\nelif share_s1 != share_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The distance between West - Town to East - Town is 15 kilometers, \"statement 2\" :The distance between West - Town to East - Town is less than 85 kilometers, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kilometers_s1 = 15\nkilometers_s2 = 85\nif kilometers_s1 is None or kilometers_s2 is None:\n print('neutral')\nelif kilometers_s1 < kilometers_s2:\n print('Entailment')\nelif kilometers_s1 != kilometers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Yolanda ' s walking rate was 3 miles per hour and Bob \u0442 ' s was 4 miles per hour , how many miles had Bob walked when they met ?, \"statement 2\" :If Yolanda ' s walking rate was less than 5 miles per hour and Bob \u0442 ' s was 4 miles per hour , how many miles had Bob walked when they met ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_s1 = 3\nmiles_s2 = 5\nif miles_s1 is None or miles_s2 is None:\n print('neutral')\nelif miles_s1 < miles_s2:\n print('Entailment')\nelif miles_s1 != miles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": There was 4 to 5 shops in the town which was build by a builder from Mumbai, \"statement 2\" :There was less than 4 to 5 shops in the town which was build by a builder from Mumbai, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shops_s1 = 4\nshops_s2 = 0\nif shops_s1 is None or shops_s2 is None:\n print('neutral')\nelif shops_s1 < shops_s2:\n print('Entailment')\nelif shops_s1 != shops_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The distance between West - Town to East - Town is 15 kilometers, \"statement 2\" :The distance between West - Town to East - Town is more than 15 kilometers, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kilometers_s1 = 15\nkilometers_s2 = 0\nif kilometers_s1 is None or kilometers_s2 is None:\n print('neutral')\nelif kilometers_s1 == kilometers_s2:\n print('Entailment')\nelif kilometers_s1 != kilometers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Ramesh can finish a work in 20 days and Sushil in 25 days, \"statement 2\" :Ramesh can finish a work in more than 20 days and Sushil in 25 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_s1 = 20\ndays_s2 = 0\nif days_s1 is None or days_s2 is None:\n print('neutral')\nelif days_s1 == days_s2:\n print('Entailment')\nelif days_s1 != days_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": On the first day of her vacation , Louisa traveled 200 miles, \"statement 2\" :On the first day of her vacation , Louisa traveled less than 300 miles, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_s1 = 200\nmiles_s2 = 300\nif miles_s1 is None or miles_s2 is None:\n print('neutral')\nelif miles_s1 < miles_s2:\n print('Entailment')\nelif miles_s1 != miles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The product of all the possible units digits of Sophie Germain primes greater than 9 is, \"statement 2\" :The product of all the possible units digits of Sophie Germain primes greater than less than 9 is, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "is_s1 = 9\nis_s2 = 0\nif is_s1 is None or is_s2 is None:\n print('neutral')\nelif is_s1 < is_s2:\n print('Entailment')\nelif is_s1 != is_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Steve gets on the elevator at the 11 th floor of a building and rides up at a rate of 87 floors per minute, \"statement 2\" :Steve gets on the elevator at the 71 th floor of a building and rides up at a rate of 87 floors per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "floor_s1 = 11\nfloor_s2 = 71\nif floor_s1 is None or floor_s2 is None:\n print('neutral')\nelif floor_s1 == floor_s2:\n print('Entailment')\nelif floor_s1 != floor_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Jack walked 7 miles in 1 hour and 15 minutes , what was his rate of walking in miles per hour ?, \"statement 2\" :If Jack walked more than 2 miles in 1 hour and 15 minutes , what was his rate of walking in miles per hour ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_s1 = 7\nmiles_s2 = 2\nif miles_s1 is None or miles_s2 is None:\n print('neutral')\nelif miles_s1 > miles_s2:\n print('Entailment')\nelif miles_s1 != miles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": It takes John exactly 30 minutes to rake a lawn and it takes his son Todd exactly 60 minutes to rake the same lawn, \"statement 2\" :It takes John exactly less than 30 minutes to rake a lawn and it takes his son Todd exactly 60 minutes to rake the same lawn, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "minutes_s1 = 30\nminutes_s2 = 0\nif minutes_s1 is None or minutes_s2 is None:\n print('neutral')\nelif minutes_s1 == minutes_s2:\n print('Entailment')\nelif minutes_s1 != minutes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At the same time Joyce gets on an elevator on the 71 st floor of the same building and rides down at a rate of 93 floors per minute, \"statement 2\" :At the same time Joyce gets on an elevator on the 31 st floor of the same building and rides down at a rate of 93 floors per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "floor_s1 = 71\nfloor_s2 = 31\nif floor_s1 is None or floor_s2 is None:\n print('neutral')\nelif floor_s1 == floor_s2:\n print('Entailment')\nelif floor_s1 != floor_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": On the first day of her vacation , Louisa traveled 240 miles, \"statement 2\" :On the first day of her vacation , Louisa traveled less than 440 miles, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_s1 = 240\nmiles_s2 = 440\nif miles_s1 is None or miles_s2 is None:\n print('neutral')\nelif miles_s1 < miles_s2:\n print('Entailment')\nelif miles_s1 != miles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At the end of ' n ' years , Sandy got back 2 times the original investment, \"statement 2\" :At the end of ' n ' years , Sandy got back less than 3 times the original investment, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "times_s1 = 2\ntimes_s2 = 3\nif times_s1 is None or times_s2 is None:\n print('neutral')\nelif times_s1 < times_s2:\n print('Entailment')\nelif times_s1 != times_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In an exam , Bright scored more than 40 percent , Bivi scored 65 percent and Lisa 45 percent, \"statement 2\" :In an exam , Bright scored 60 percent , Bivi scored 65 percent and Lisa 45 percent, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "scored_percent_s1 = None\nscored_percent_s2 = 60\nif scored_percent_s1 is None or scored_percent_s2 is None:\n print('neutral')\nelif scored_percent_s1 == scored_percent_s2:\n print('Entailment')\nelif scored_percent_s1 != scored_percent_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Last week James worked a total of 41 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"statement 2\" :Last week James worked a total of less than 71 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_s1 = 41\nhours_s2 = 71\nif hours_s1 is None or hours_s2 is None:\n print('neutral')\nelif hours_s1 < hours_s2:\n print('Entailment')\nelif hours_s1 != hours_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jerry travels 8 miles at an average speed of 40 miles per hour , stops for 11 minutes , and then travels another 20 miles at an average speed of 60 miles per hour, \"statement 2\" :Jerry travels more than 4 miles at an average speed of 40 miles per hour , stops for 11 minutes , and then travels another 20 miles at an average speed of 60 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_s1 = 40\nmiles_s2 = 4\nif miles_s1 is None or miles_s2 is None:\n print('neutral')\nelif miles_s1 > miles_s2:\n print('Entailment')\nelif miles_s1 != miles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Molly and Max are driving at a rate of less than 400 kilometers per hour, \"statement 2\" :Molly and Max are driving at a rate of 100 kilometers per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kilometers_s1 = None\nkilometers_s2 = 100\nif kilometers_s1 is None or kilometers_s2 is None:\n print('neutral')\nelif kilometers_s1 == kilometers_s2:\n print('Entailment')\nelif kilometers_s1 != kilometers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": After 5 years , Arun ' s age will be 40 years, \"statement 2\" :After more than 2 years , Arun ' s age will be 40 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_s1 = 5\nyears_s2 = 2\nif years_s1 is None or years_s2 is None:\n print('neutral')\nelif years_s1 > years_s2:\n print('Entailment')\nelif years_s1 != years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In the biology lab of ` ` Jefferson ' ' High School there are 4.32 * 10 ^ 6 germs , equally divided among 10,800 Petri dishes, \"statement 2\" :In the biology lab of ` ` Jefferson ' ' High School there are 4.32 * more than 10 ^ 6 germs , equally divided among 10,800 Petri dishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "germs_s1 = 10*6\ngerms_s2 = 0\nif germs_s1 is None or germs_s2 is None:\n print('neutral')\nelif germs_s1 == germs_s2:\n print('Entailment')\nelif germs_s1 != germs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": How many combinations does Barbara have , if she doesn \u2019 t wear less than 6 specific socks with 1 specific pair of shoes ?, \"statement 2\" :How many combinations does Barbara have , if she doesn \u2019 t wear 2 specific socks with 1 specific pair of shoes ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "socks_s1 = None\nsocks_s2 = 2\nif socks_s1 is None or socks_s2 is None:\n print('neutral')\nelif socks_s1 == socks_s2:\n print('Entailment')\nelif socks_s1 != socks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Stalin gets on the elevator at the 11 th floor of a building and rides up at a rate of 57 floors per minute, \"statement 2\" :Stalin gets on the elevator at the more than 11 th floor of a building and rides up at a rate of 57 floors per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "floor_s1 = 11\nfloor_s2 = 0\nif floor_s1 is None or floor_s2 is None:\n print('neutral')\nelif floor_s1 == floor_s2:\n print('Entailment')\nelif floor_s1 != floor_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is less than 8 : 2 , After 6 Years Rahul age will be 26 years, \"statement 2\" :Ratio between Rahul and Deepak is 5 : 2 , After 6 Years Rahul age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ratio_s1 = None\nRatio_s2 = 5/2\nif Ratio_s1 is None or Ratio_s2 is None:\n print('neutral')\nelif Ratio_s1 == Ratio_s2:\n print('Entailment')\nelif Ratio_s1 != Ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Of the 60 electronics components that a factory must manufacture , 80 percent would be most e \u00a2 ciently manufactured by Machine A and the remaining 20 percent would be most efficiently manufactured by Machine B , though either machine could manufacture any of the 60 components, \"statement 2\" :Of the more than 30 electronics components that a factory must manufacture , 80 percent would be most e \u00a2 ciently manufactured by Machine A and the remaining 20 percent would be most efficiently manufactured by Machine B , though either machine could manufacture any of the 60 components, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "electronics_components_s1 = 60\nelectronics_components_s2 = 30\nif electronics_components_s1 is None or electronics_components_s2 is None:\n print('neutral')\nelif electronics_components_s1 > electronics_components_s2:\n print('Entailment')\nelif electronics_components_s1 != electronics_components_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If 31 people have visited both Iceland and Norway , how many people have visited neither country ?, \"statement 2\" :If less than 41 people have visited both Iceland and Norway , how many people have visited neither country ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_s1 = 31\npeople_s2 = 41\nif people_s1 is None or people_s2 is None:\n print('neutral')\nelif people_s1 < people_s2:\n print('Entailment')\nelif people_s1 != people_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Lilly has less than 60 fish and Rosy has 9 fish, \"statement 2\" :Lilly has 10 fish and Rosy has 9 fish, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "fish_s1 = None\nfish_s2 = 10\nif fish_s1 is None or fish_s2 is None:\n print('neutral')\nelif fish_s1 == fish_s2:\n print('Entailment')\nelif fish_s1 != fish_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mark sold 7 boxes less than n and Ann sold 2 boxes less than n, \"statement 2\" :Mark sold more than 6 boxes less than n and Ann sold 2 boxes less than n, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boxes_s1 = 7\nboxes_s2 = 6\nif boxes_s1 is None or boxes_s2 is None:\n print('neutral')\nelif boxes_s1 > boxes_s2:\n print('Entailment')\nelif boxes_s1 != boxes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Since you ' re nice , you give John 5 baseball cards, \"statement 2\" :Since you ' re nice , you give John more than 5 baseball cards, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "baseball_s1 = 5\nbaseball_s2 = 0\nif baseball_s1 is None or baseball_s2 is None:\n print('neutral')\nelif baseball_s1 == baseball_s2:\n print('Entailment')\nelif baseball_s1 != baseball_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Last year 26 members of a certain club traveled to England , 26 members traveled to France , and 32 members traveled to Italy, \"statement 2\" :Last year less than 56 members of a certain club traveled to England , 26 members traveled to France , and 32 members traveled to Italy, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "members_s1 = 26\nmembers_s2 = 56\nif members_s1 is None or members_s2 is None:\n print('neutral')\nelif members_s1 < members_s2:\n print('Entailment')\nelif members_s1 != members_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The product of all the possible units digits of Sophie Germain primes greater than 8 is, \"statement 2\" :The product of all the possible units digits of Sophie Germain primes greater than more than 7 is, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "is_s1 = 8\nis_s2 = 7\nif is_s1 is None or is_s2 is None:\n print('neutral')\nelif is_s1 > is_s2:\n print('Entailment')\nelif is_s1 != is_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Bhanu spends less than 80 % of his income on petrol on scooter 12 % of the remaining on house rent and the balance on food, \"statement 2\" :Bhanu spends 30 % of his income on petrol on scooter 12 % of the remaining on house rent and the balance on food, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "spends_income_s1 = None\nspends_income_s2 = 30\nif spends_income_s1 is None or spends_income_s2 is None:\n print('neutral')\nelif spends_income_s1 == spends_income_s2:\n print('Entailment')\nelif spends_income_s1 != spends_income_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In ABC limited , 75 % are using Samsung phone at the same time 70 % using i phone ; If in the same company 85 % are using Samsung phone then , what is the percentage of i phone user ?, \"statement 2\" :In ABC limited , more than 25 % are using Samsung phone at the same time 70 % using i phone ; If in the same company 85 % are using Samsung phone then , what is the percentage of i phone user ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "phone_using_s1 = 75\nphone_using_s2 = 25\nif phone_using_s1 is None or phone_using_s2 is None:\n print('neutral')\nelif phone_using_s1 > phone_using_s2:\n print('Entailment')\nelif phone_using_s1 != phone_using_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Four months later Mr Praveen joined the business by investing more than 30000, \"statement 2\" :Four months later Mr Praveen joined the business by investing 90000, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "investing_s1 = None\ninvesting_s2 = 90000\nif investing_s1 is None or investing_s2 is None:\n print('neutral')\nelif investing_s1 == investing_s2:\n print('Entailment')\nelif investing_s1 != investing_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Murali travelled from city A to city B at a speed of less than 50 kmph and from city B to city C at 60 kmph, \"statement 2\" :Murali travelled from city A to city B at a speed of 40 kmph and from city B to city C at 60 kmph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_s1 = None\nspeed_s2 = 40\nif speed_s1 is None or speed_s2 is None:\n print('neutral')\nelif speed_s1 == speed_s2:\n print('Entailment')\nelif speed_s1 != speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": To be considered for \u201c movie of the year , \u201d a film must appear in at least less than 2 / 4 of the top - 10 - movies lists submitted by the Cinematic Academy \u2019 s 770 members, \"statement 2\" :To be considered for \u201c movie of the year , \u201d a film must appear in at least 1 / 4 of the top - 10 - movies lists submitted by the Cinematic Academy \u2019 s 770 members, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "point_s1 = None\npoint_s2 = 1/4\nif point_s1 is None or point_s2 is None:\n print('neutral')\nelif point_s1 == point_s2:\n print('Entailment')\nelif point_s1 != point_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In 1979 approximately 1 / 3 of the 32.3 million airline passengers traveling to or from the United States used Kennedy Airport, \"statement 2\" :In less than 6979 approximately 1 / 3 of the 32.3 million airline passengers traveling to or from the United States used Kennedy Airport, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "passengers_s1 = 1979\npassengers_s2 = 6979\nif passengers_s1 is None or passengers_s2 is None:\n print('neutral')\nelif passengers_s1 < passengers_s2:\n print('Entailment')\nelif passengers_s1 != passengers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Fred walks at a constant speed of 5 miles per hour and Sam walks at a constant speed of 5 miles per hour , how many miles has Sam walked when they meet ?, \"statement 2\" :If Fred walks at a constant speed of less than 8 miles per hour and Sam walks at a constant speed of 5 miles per hour , how many miles has Sam walked when they meet ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_s1 = 5\nmiles_s2 = 8\nif miles_s1 is None or miles_s2 is None:\n print('neutral')\nelif miles_s1 < miles_s2:\n print('Entailment')\nelif miles_s1 != miles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Shekar scored 76 , 65 , 82 , 67 and 75 marks in Mathematics , Science , Social studies , English and Biology respectively, \"statement 2\" :Shekar scored more than 76 , 65 , 82 , 67 and 75 marks in Mathematics , Science , Social studies , English and Biology respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_s1 = 76\nmarks_s2 = 0\nif marks_s1 is None or marks_s2 is None:\n print('neutral')\nelif marks_s1 == marks_s2:\n print('Entailment')\nelif marks_s1 != marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 14000 in a business which he jointly owns with two other persons ( James and Greg ), \"statement 2\" :24000 in a business which he jointly owns with two other persons ( James and Greg ), \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "statement_s1 = 14000\nstatement_s2 = 24000\nif statement_s1 is None or statement_s2 is None:\n print('neutral')\nelif statement_s1 == statement_s2:\n print('Entailment')\nelif statement_s1 != statement_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jill works as a waitress at the local diner where she earns an hourly wage of $ 8.00 per hour and a standard tip rate of 30 % of the cost of the orders she serves, \"statement 2\" :Jill works as a waitress at the local diner where she earns an hourly wage of $ 8.00 per hour and a standard tip rate of less than 30 % of the cost of the orders she serves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tip_rate_s1 = 30\ntip_rate_s2 = 0\nif tip_rate_s1 is None or tip_rate_s2 is None:\n print('neutral')\nelif tip_rate_s1 == tip_rate_s2:\n print('Entailment')\nelif tip_rate_s1 != tip_rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Bookman purchased 60 copies of a new book released recently , 10 of which are hardback and sold for $ 20 each , and rest are paperback and sold for $ 10 each, \"statement 2\" :Bookman purchased less than 60 copies of a new book released recently , 10 of which are hardback and sold for $ 20 each , and rest are paperback and sold for $ 10 each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "book_copies_s1 = 60\nbook_copies_s2 = 0\nif book_copies_s1 is None or book_copies_s2 is None:\n print('neutral')\nelif book_copies_s1 == book_copies_s2:\n print('Entailment')\nelif book_copies_s1 != book_copies_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Bhanu spends 30 % of his income on petrol on scooter 14 % of the remaining on house rent and the balance on food, \"statement 2\" :Bhanu spends more than 30 % of his income on petrol on scooter 14 % of the remaining on house rent and the balance on food, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "spends_income_s1 = 30\nspends_income_s2 = 0\nif spends_income_s1 is None or spends_income_s2 is None:\n print('neutral')\nelif spends_income_s1 == spends_income_s2:\n print('Entailment')\nelif spends_income_s1 != spends_income_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Molly and Max are driving at a rate of 100 kilometers per hour, \"statement 2\" :Molly and Max are driving at a rate of less than 400 kilometers per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kilometers_s1 = 100\nkilometers_s2 = 400\nif kilometers_s1 is None or kilometers_s2 is None:\n print('neutral')\nelif kilometers_s1 < kilometers_s2:\n print('Entailment')\nelif kilometers_s1 != kilometers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": After more than 2 years , Sandy \u2019 s age will be 30 years, \"statement 2\" :After 6 years , Sandy \u2019 s age will be 30 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_s1 = None\nyears_s2 = 6\nif years_s1 is None or years_s2 is None:\n print('neutral')\nelif years_s1 == years_s2:\n print('Entailment')\nelif years_s1 != years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mary has a monthly salary of $ 1200, \"statement 2\" :Mary has a monthly salary of $ less than 3200, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "salary_s1 = 1200\nsalary_s2 = 3200\nif salary_s1 is None or salary_s2 is None:\n print('neutral')\nelif salary_s1 < salary_s2:\n print('Entailment')\nelif salary_s1 != salary_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Cindy is thinking of a number which is 4 less than the square of a positive integer, \"statement 2\" :Cindy is thinking of a number which is 7 less than the square of a positive integer, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_s1 = 4\nnumber_s2 = 7\nif number_s1 is None or number_s2 is None:\n print('neutral')\nelif number_s1 == number_s2:\n print('Entailment')\nelif number_s1 != number_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In a certain province in France there are 9 cities, \"statement 2\" :In a certain province in France there are less than 9 cities, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cities_s1 = 9\ncities_s2 = 0\nif cities_s1 is None or cities_s2 is None:\n print('neutral')\nelif cities_s1 == cities_s2:\n print('Entailment')\nelif cities_s1 != cities_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Sony and Johnny caught 60 fishes, \"statement 2\" :Sony and Johnny caught 30 fishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "fishes_s1 = 60\nfishes_s2 = 30\nif fishes_s1 is None or fishes_s2 is None:\n print('neutral')\nelif fishes_s1 == fishes_s2:\n print('Entailment')\nelif fishes_s1 != fishes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": From a group of more than 5 boys & 4 girls a Committee of 4 persons is to be formed, \"statement 2\" :From a group of 6 boys & 4 girls a Committee of 4 persons is to be formed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boys_s1 = None\nboys_s2 = 6\nif boys_s1 is None or boys_s2 is None:\n print('neutral')\nelif boys_s1 == boys_s2:\n print('Entailment')\nelif boys_s1 != boys_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Triangle STV has sides ST = TV = less than 50 , and SV = 12, \"statement 2\" :Triangle STV has sides ST = TV = 10 , and SV = 12, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Triangle_s1 = None\nTriangle_s2 = 10\nif Triangle_s1 is None or Triangle_s2 is None:\n print('neutral')\nelif Triangle_s1 == Triangle_s2:\n print('Entailment')\nelif Triangle_s1 != Triangle_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mr Sharad started a business investing more than 10000, \"statement 2\" :Mr Sharad started a business investing 50000, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "investing_s1 = None\ninvesting_s2 = 50000\nif investing_s1 is None or investing_s2 is None:\n print('neutral')\nelif investing_s1 == investing_s2:\n print('Entailment')\nelif investing_s1 != investing_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the profit in the business at the end of the year was 22000 how much amount would Mr Praveen have received as the profit ?, \"statement 2\" :If the profit in the business at the end of the year was more than 22000 how much amount would Mr Praveen have received as the profit ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_s1 = 22000\namount_s2 = 0\nif amount_s1 is None or amount_s2 is None:\n print('neutral')\nelif amount_s1 == amount_s2:\n print('Entailment')\nelif amount_s1 != amount_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Joe \u2019 s average ( arithmetic mean ) test score across 4 equally weighted tests was 50, \"statement 2\" :Joe \u2019 s average ( arithmetic mean ) test score across less than 6 equally weighted tests was 50, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "test_score_s1 = 4\ntest_score_s2 = 6\nif test_score_s1 is None or test_score_s2 is None:\n print('neutral')\nelif test_score_s1 < test_score_s2:\n print('Entailment')\nelif test_score_s1 != test_score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Assuming that Karen drives at an average speed of less than 80 mph and Tom drives at an average speed of 45 mph , how many Q miles will Tom drive before Karen wins the bet ?, \"statement 2\" :Assuming that Karen drives at an average speed of 60 mph and Tom drives at an average speed of 45 mph , how many Q miles will Tom drive before Karen wins the bet ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_s1 = None\nspeed_s2 = 60\nif speed_s1 is None or speed_s2 is None:\n print('neutral')\nelif speed_s1 == speed_s2:\n print('Entailment')\nelif speed_s1 != speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At present , the ratio between the ages of Arun and Deepak is 5 : 4, \"statement 2\" :At present , the ratio between the ages of Arun and Deepak is more than 1 : 4, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_s1 = 5/4\nratio_s2 = 1/4\nif ratio_s1 is None or ratio_s2 is None:\n print('neutral')\nelif ratio_s1 > ratio_s2:\n print('Entailment')\nelif ratio_s1 != ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At present , the ratio between the ages of Arun and Deepak is more than 1 : 4, \"statement 2\" :At present , the ratio between the ages of Arun and Deepak is 5 : 4, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_s1 = None\nratio_s2 = 5/4\nif ratio_s1 is None or ratio_s2 is None:\n print('neutral')\nelif ratio_s1 == ratio_s2:\n print('Entailment')\nelif ratio_s1 != ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 600 and Greg ' s share is Rs, \"statement 2\" :more than 500 and Greg ' s share is Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "share_s1 = 600\nshare_s2 = 500\nif share_s1 is None or share_s2 is None:\n print('neutral')\nelif share_s1 > share_s2:\n print('Entailment')\nelif share_s1 != share_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Last week James worked a total of 41 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"statement 2\" :Last week James worked a total of less than 41 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_s1 = 41\nhours_s2 = 0\nif hours_s1 is None or hours_s2 is None:\n print('neutral')\nelif hours_s1 == hours_s2:\n print('Entailment')\nelif hours_s1 != hours_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Deepa bought a calculator at 30 % discount on the listed price, \"statement 2\" :Deepa bought a calculator at less than 30 % discount on the listed price, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "discount_s1 = 30\ndiscount_s2 = 0\nif discount_s1 is None or discount_s2 is None:\n print('neutral')\nelif discount_s1 == discount_s2:\n print('Entailment')\nelif discount_s1 != discount_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": After Sally left mike had 136 watermelons, \"statement 2\" :After Sally left mike had less than 136 watermelons, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "watermelons_s1 = 136\nwatermelons_s2 = 0\nif watermelons_s1 is None or watermelons_s2 is None:\n print('neutral')\nelif watermelons_s1 == watermelons_s2:\n print('Entailment')\nelif watermelons_s1 != watermelons_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 10 % people of a village in Sri Lanka died by bombardment , 20 % of the remainder left the village on account of fear, \"statement 2\" :less than 30 % people of a village in Sri Lanka died by bombardment , 20 % of the remainder left the village on account of fear, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_s1 = 10\npeople_s2 = 30\nif people_s1 is None or people_s2 is None:\n print('neutral')\nelif people_s1 < people_s2:\n print('Entailment')\nelif people_s1 != people_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Ayisha ' s father ' s age will be twice Shankar ' s age after 10 years, \"statement 2\" :Ayisha ' s father ' s age will be twice Shankar ' s age after less than 80 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Years_s1 = 10\nYears_s2 = 80\nif Years_s1 is None or Years_s2 is None:\n print('neutral')\nelif Years_s1 < Years_s2:\n print('Entailment')\nelif Years_s1 != Years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Last year 6 members of the club traveled to both England and France , no members traveled to both England and Italy , and 11 members traveled to both France and Italy, \"statement 2\" :Last year 3 members of the club traveled to both England and France , no members traveled to both England and Italy , and 11 members traveled to both France and Italy, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "members_s1 = 6\nmembers_s2 = 3\nif members_s1 is None or members_s2 is None:\n print('neutral')\nelif members_s1 == members_s2:\n print('Entailment')\nelif members_s1 != members_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": How many different combinations of 4 passengers can be formed from John ' s 6 friends ?, \"statement 2\" :How many different combinations of more than 2 passengers can be formed from John ' s 6 friends ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "passengers_s1 = 4\npassengers_s2 = 2\nif passengers_s1 is None or passengers_s2 is None:\n print('neutral')\nelif passengers_s1 > passengers_s2:\n print('Entailment')\nelif passengers_s1 != passengers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If KING is coded as 17 and DON is coded as 18 Then MASS is coded as, \"statement 2\" :If KING is coded as less than 27 and DON is coded as 18 Then MASS is coded as, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "coded_s1 = 17\ncoded_s2 = 27\nif coded_s1 is None or coded_s2 is None:\n print('neutral')\nelif coded_s1 < coded_s2:\n print('Entailment')\nelif coded_s1 != coded_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Jack walked 4 miles in 1 hour and 15 minutes , what was his rate of walking in miles per hour ?, \"statement 2\" :If Jack walked more than 3 miles in 1 hour and 15 minutes , what was his rate of walking in miles per hour ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_s1 = 4\nmiles_s2 = 3\nif miles_s1 is None or miles_s2 is None:\n print('neutral')\nelif miles_s1 > miles_s2:\n print('Entailment')\nelif miles_s1 != miles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Flora leaves City A 2 hours after Ed, \"statement 2\" :Flora leaves City A more than 2 hours after Ed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nhours_s1 = 2\nhours_s2 = 0\nif hours_s1 is None or hours_s2 is None:\n print('neutral')\nelif hours_s1 == hours_s2:\n print('Entailment')\nelif hours_s1 != hours_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In a shop , 40 % socks are white and rest are black, \"statement 2\" :In a shop , less than 80 % socks are white and rest are black, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "socks_s1 = 40\nsocks_s2 = 80\nif socks_s1 is None or socks_s2 is None:\n print('neutral')\nelif socks_s1 < socks_s2:\n print('Entailment')\nelif socks_s1 != socks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At a meeting of the 7 Joint Chiefs of Staff , the Chief of Naval Operations does not want to sit next to the Chief of the National Guard Bureau, \"statement 2\" :At a meeting of the more than 6 Joint Chiefs of Staff , the Chief of Naval Operations does not want to sit next to the Chief of the National Guard Bureau, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Chiefs_s1 = 7\nChiefs_s2 = 6\nif Chiefs_s1 is None or Chiefs_s2 is None:\n print('neutral')\nelif Chiefs_s1 > Chiefs_s2:\n print('Entailment')\nelif Chiefs_s1 != Chiefs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If 1 / 12 of the passengers on a ship are from North America , 1 / 4 are Europeans , 1 / 9 are from Africa , 1 / 6 are from Asia and the remaining 42 people are citizens of other continents , then how many passengers are on board the ship ?, \"statement 2\" :If less than 5 / 12 of the passengers on a ship are from North America , 1 / 4 are Europeans , 1 / 9 are from Africa , 1 / 6 are from Asia and the remaining 42 people are citizens of other continents , then how many passengers are on board the ship ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "passengers_s1 = 1/12\npassengers_s2 = 5/12\nif passengers_s1 is None or passengers_s2 is None:\n print('neutral')\nelif passengers_s1 < passengers_s2:\n print('Entailment')\nelif passengers_s1 != passengers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Ram , Krish and Bhim can complete a work in less than 50 days, \"statement 2\" :Ram , Krish and Bhim can complete a work in 30 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_s1 = None\ndays_s2 = 30\nif days_s1 is None or days_s2 is None:\n print('neutral')\nelif days_s1 == days_s2:\n print('Entailment')\nelif days_s1 != days_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mark sold more than 1 boxes less than n and Ann sold 2 boxes less than n, \"statement 2\" :Mark sold 6 boxes less than n and Ann sold 2 boxes less than n, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boxes_s1 = None\nboxes_s2 = 6\nif boxes_s1 is None or boxes_s2 is None:\n print('neutral')\nelif boxes_s1 == boxes_s2:\n print('Entailment')\nelif boxes_s1 != boxes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the marks secured by Reema was written as less than 45 instead of 99 then find the correct average marks up to two decimal places ., \"statement 2\" :If the marks secured by Reema was written as 35 instead of 99 then find the correct average marks up to two decimal places ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_s1 = None\nmarks_s2 = 35\nif marks_s1 is None or marks_s2 is None:\n print('neutral')\nelif marks_s1 == marks_s2:\n print('Entailment')\nelif marks_s1 != marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Last year 30 members of a certain club traveled to England , 26 members traveled to France , and 32 members traveled to Italy, \"statement 2\" :Last year more than 30 members of a certain club traveled to England , 26 members traveled to France , and 32 members traveled to Italy, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "members_s1 = 30\nmembers_s2 = 0\nif members_s1 is None or members_s2 is None:\n print('neutral')\nelif members_s1 == members_s2:\n print('Entailment')\nelif members_s1 != members_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If OA = 2 , AC = 4 and BD = 6 , determine the length of OB ., \"statement 2\" :If OA = less than 6 , AC = 4 and BD = 6 , determine the length of OB ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "length_s1 = 2\nlength_s2 = 6\nif length_s1 is None or length_s2 is None:\n print('neutral')\nelif length_s1 < length_s2:\n print('Entailment')\nelif length_s1 != length_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In John ' s School , there are 80 boys of age 14 each , 70 boys of age 15 each & 50 boys of age 13 each and another 60 boys of age 12 each, \"statement 2\" :In John ' s School , there are 50 boys of age 14 each , 70 boys of age 15 each & 50 boys of age 13 each and another 60 boys of age 12 each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boys_s1 = 80\nboys_s2 = 50\nif boys_s1 is None or boys_s2 is None:\n print('neutral')\nelif boys_s1 == boys_s2:\n print('Entailment')\nelif boys_s1 != boys_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Amtek employs 80 level - 1 employees , 30 of whom are college graduates, \"statement 2\" :Amtek employs more than 60 level - 1 employees , 30 of whom are college graduates, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "employs_s1 = 80\nemploys_s2 = 60\nif employs_s1 is None or employs_s2 is None:\n print('neutral')\nelif employs_s1 > employs_s2:\n print('Entailment')\nelif employs_s1 != employs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In another class of less than 700 students there were 24 grades higher than Lena \u2019 s, \"statement 2\" :In another class of 200 students there were 24 grades higher than Lena \u2019 s, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "students_s1 = None\nstudents_s2 = 200\nif students_s1 is None or students_s2 is None:\n print('neutral')\nelif students_s1 == students_s2:\n print('Entailment')\nelif students_s1 != students_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In the biology lab of ` ` Jefferson ' ' High School there are 4.32 * less than 30 ^ 6 germs , equally divided among 10,800 Petri dishes, \"statement 2\" :In the biology lab of ` ` Jefferson ' ' High School there are 4.32 * 10 ^ 6 germs , equally divided among 10,800 Petri dishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "germs_s1 = None\ngerms_s2 = 10*6\nif germs_s1 is None or germs_s2 is None:\n print('neutral')\nelif germs_s1 == germs_s2:\n print('Entailment')\nelif germs_s1 != germs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jane is currently 32 years old , and she stopped baby - sitting 10 years ago, \"statement 2\" :Jane is currently more than 32 years old , and she stopped baby - sitting 10 years ago, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_s1 = 32\nyears_s2 = 0\nif years_s1 is None or years_s2 is None:\n print('neutral')\nelif years_s1 == years_s2:\n print('Entailment')\nelif years_s1 != years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Shreehari has 125 pencils, \"statement 2\" :Shreehari has 525 pencils, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\npencils_s1 = 125\npencils_s2 = 525\nif pencils_s1 is None or pencils_s2 is None:\n print('neutral')\nelif pencils_s1 == pencils_s2:\n print('Entailment')\nelif pencils_s1 != pencils_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At the faculty of Aerospace Engineering , more than 110 students study Random - processing methods , 232 students study Scramjet rocket engines and 112 students study them both, \"statement 2\" :At the faculty of Aerospace Engineering , 310 students study Random - processing methods , 232 students study Scramjet rocket engines and 112 students study them both, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "students_s1 = None\nstudents_s2 = 310\nif students_s1 is None or students_s2 is None:\n print('neutral')\nelif students_s1 == students_s2:\n print('Entailment')\nelif students_s1 != students_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the toy store is stocked with 3 types of balls and 6 types of board games , how many different selections T of the 4 items can Amanda make ?, \"statement 2\" :If the toy store is stocked with 1 types of balls and 6 types of board games , how many different selections T of the 4 items can Amanda make ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "balls_s1 = 3\nballs_s2 = 1\nif balls_s1 is None or balls_s2 is None:\n print('neutral')\nelif balls_s1 == balls_s2:\n print('Entailment')\nelif balls_s1 != balls_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At Veridux Corporation , there are 180 employees, \"statement 2\" :At Veridux Corporation , there are less than 280 employees, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "employees_s1 = 180\nemployees_s2 = 280\nif employees_s1 is None or employees_s2 is None:\n print('neutral')\nelif employees_s1 < employees_s2:\n print('Entailment')\nelif employees_s1 != employees_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If KING is coded as 17 and DON is coded as 18 Then MASS is coded as, \"statement 2\" :If KING is coded as 37 and DON is coded as 18 Then MASS is coded as, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "coded_s1 = 17\ncoded_s2 = 37\nif coded_s1 is None or coded_s2 is None:\n print('neutral')\nelif coded_s1 == coded_s2:\n print('Entailment')\nelif coded_s1 != coded_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In a BCCI meeting there are less than 63 people, \"statement 2\" :In a BCCI meeting there are 13 people, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_s1 = None\npeople_s2 = 13\nif people_s1 is None or people_s2 is None:\n print('neutral')\nelif people_s1 == people_s2:\n print('Entailment')\nelif people_s1 != people_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Ben worked for 7 days on a task that will take him 14 days to complete alone before he was joined by Blake, \"statement 2\" :Ben worked for 8 days on a task that will take him 14 days to complete alone before he was joined by Blake, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_s1 = 7\ndays_s2 = 8\nif days_s1 is None or days_s2 is None:\n print('neutral')\nelif days_s1 == days_s2:\n print('Entailment')\nelif days_s1 != days_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Marcella has more than 17 pairs of shoes, \"statement 2\" :Marcella has 27 pairs of shoes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pairs_of_shoes_s1 = None\npairs_of_shoes_s2 = 27\nif pairs_of_shoes_s1 is None or pairs_of_shoes_s2 is None:\n print('neutral')\nelif pairs_of_shoes_s1 == pairs_of_shoes_s2:\n print('Entailment')\nelif pairs_of_shoes_s1 != pairs_of_shoes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Joe \u2019 s average ( arithmetic mean ) test score across 4 equally weighted tests was 60, \"statement 2\" :Joe \u2019 s average ( arithmetic mean ) test score across more than 2 equally weighted tests was 60, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "score_s1 = 4\nscore_s2 = 2\nif score_s1 is None or score_s2 is None:\n print('neutral')\nelif score_s1 > score_s2:\n print('Entailment')\nelif score_s1 != score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Carol ' s rectangle measures 12 inches by 15 inches and Jordan ' s rectangle is 9 inches long , how wide is Jordan ' s rectangle , in inches ?, \"statement 2\" :If Carol ' s rectangle measures less than 52 inches by 15 inches and Jordan ' s rectangle is 9 inches long , how wide is Jordan ' s rectangle , in inches ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "inches_s1 = 12\ninches_s2 = 52\nif inches_s1 is None or inches_s2 is None:\n print('neutral')\nelif inches_s1 < inches_s2:\n print('Entailment')\nelif inches_s1 != inches_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jerry \u2019 s average ( arithmetic mean ) score on the first 3 of 4 tests is 78, \"statement 2\" :Jerry \u2019 s average ( arithmetic mean ) score on the first 6 of 4 tests is 78, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "score_s1 = 3\nscore_s2 = 6\nif score_s1 is None or score_s2 is None:\n print('neutral')\nelif score_s1 == score_s2:\n print('Entailment')\nelif score_s1 != score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The compound interest earned by Sunil on a certain amount at the end of two years at the rate of 8 % p, \"statement 2\" :The compound interest earned by Sunil on a certain amount at the end of two years at the rate of more than 7 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rate_s1 = 8\nrate_s2 = 7\nif rate_s1 is None or rate_s2 is None:\n print('neutral')\nelif rate_s1 > rate_s2:\n print('Entailment')\nelif rate_s1 != rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": A \u201c Sophie Germain \u201d prime is any positive prime number p for which 2 p + 1 is also prime, \"statement 2\" :A \u201c Sophie Germain \u201d prime is any positive prime number p for which less than 4 p + 1 is also prime, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "prime_number_s1 = 2\nprime_number_s2 = 4\nif prime_number_s1 is None or prime_number_s2 is None:\n print('neutral')\nelif prime_number_s1 < prime_number_s2:\n print('Entailment')\nelif prime_number_s1 != prime_number_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The price of a car and AC are in the ratio 3 : 2, \"statement 2\" :The price of a car and AC are in the ratio more than 2 : 2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_s1 = 3/2\nratio_s2 = 2/2\nif ratio_s1 is None or ratio_s2 is None:\n print('neutral')\nelif ratio_s1 > ratio_s2:\n print('Entailment')\nelif ratio_s1 != ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Lilly has less than 80 fish and Rosy has 8 fish, \"statement 2\" :Lilly has 10 fish and Rosy has 8 fish, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "fish_s1 = None\nfish_s2 = 10\nif fish_s1 is None or fish_s2 is None:\n print('neutral')\nelif fish_s1 == fish_s2:\n print('Entailment')\nelif fish_s1 != fish_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": What is the height difference between the two if the Empire\nState Building is 356 m tall and the Petronas Towers is 370 m tall ?, \"statement 2\" :What is the height difference between the two if the Empire State Building is less than 556 m tall and the Petronas Towers is 370 m tall ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Building_height_s1 = 356\nBuilding_height_s2 = 556\nif Building_height_s1 is None or Building_height_s2 is None:\n print('neutral')\nelif Building_height_s1 < Building_height_s2:\n print('Entailment')\nelif Building_height_s1 != Building_height_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Susan weighs 10 pounds more than Anna does , and together they weigh a total of 110 pounds, \"statement 2\" :Susan weighs 80 pounds more than Anna does , and together they weigh a total of 110 pounds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "weighs_pounds_s1 = 10\nweighs_pounds_s2 = 80\nif weighs_pounds_s1 is None or weighs_pounds_s2 is None:\n print('neutral')\nelif weighs_pounds_s1 == weighs_pounds_s2:\n print('Entailment')\nelif weighs_pounds_s1 != weighs_pounds_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Venkat purchased twenty dozens of toys at the rate of more than 275 per dozen, \"statement 2\" :Venkat purchased twenty dozens of toys at the rate of 375 per dozen, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "toys_rate_s1 = None\ntoys_rate_s2 = 375\nif toys_rate_s1 is None or toys_rate_s2 is None:\n print('neutral')\nelif toys_rate_s1 == toys_rate_s2:\n print('Entailment')\nelif toys_rate_s1 != toys_rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Leo gains 10 pounds , he will weigh 50 % more than his sister Kendra, \"statement 2\" :If Leo gains less than 50 pounds , he will weigh 50 % more than his sister Kendra, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "weigh_s1 = 10\nweigh_s2 = 50\nif weigh_s1 is None or weigh_s2 is None:\n print('neutral')\nelif weigh_s1 < weigh_s2:\n print('Entailment')\nelif weigh_s1 != weigh_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At a meeting of the more than 4 Joint Chiefs of Staff , the Chief of Naval Operations does not want to sit next to the Chief of the National Guard Bureau, \"statement 2\" :At a meeting of the 5 Joint Chiefs of Staff , the Chief of Naval Operations does not want to sit next to the Chief of the National Guard Bureau, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Chiefs_s1 = None\nChiefs_s2 = 5\nif Chiefs_s1 is None or Chiefs_s2 is None:\n print('neutral')\nelif Chiefs_s1 == Chiefs_s2:\n print('Entailment')\nelif Chiefs_s1 != Chiefs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": How many liters of blue paint must be added to 16 liters of Fuchsia to change it to Mauve paint ?, \"statement 2\" :How many liters of blue paint must be added to less than 86 liters of Fuchsia to change it to Mauve paint ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "liters_s1 = 16\nliters_s2 = 86\nif liters_s1 is None or liters_s2 is None:\n print('neutral')\nelif liters_s1 < liters_s2:\n print('Entailment')\nelif liters_s1 != liters_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": I want to give 95 $ to John, \"statement 2\" :I want to give 55 $ to John, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dollar_s1 = 95\nDollar_s2 = 55\nif Dollar_s1 is None or Dollar_s2 is None:\n print('neutral')\nelif Dollar_s1 == Dollar_s2:\n print('Entailment')\nelif Dollar_s1 != Dollar_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": To be considered for \u201c movie of the year , \u201d a film must appear in at least less than 4 / 4 of the top - 10 - movies lists submitted by the Cinematic Academy \u2019 s 760 members, \"statement 2\" :To be considered for \u201c movie of the year , \u201d a film must appear in at least 1 / 4 of the top - 10 - movies lists submitted by the Cinematic Academy \u2019 s 760 members, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Point_s1 = None\nPoint_s2 = 1/4\nif Point_s1 is None or Point_s2 is None:\n print('neutral')\nelif Point_s1 == Point_s2:\n print('Entailment')\nelif Point_s1 != Point_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In a group of more than 20 people , 35 have visited Iceland and 23 have visited Norway, \"statement 2\" :In a group of 60 people , 35 have visited Iceland and 23 have visited Norway, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_s1 = None\npeople_s2 = 60\nif people_s1 is None or people_s2 is None:\n print('neutral')\nelif people_s1 == people_s2:\n print('Entailment')\nelif people_s1 != people_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": James have 10 parrots , 4 fishes , 9 rabbits and 6 dogs, \"statement 2\" :James have more than 10 parrots , 4 fishes , 9 rabbits and 6 dogs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "parrots_s1 = 10\nparrots_s2 = 0\nif parrots_s1 is None or parrots_s2 is None:\n print('neutral')\nelif parrots_s1 == parrots_s2:\n print('Entailment')\nelif parrots_s1 != parrots_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": How many seconds does Sandy take to cover a distance of 500 meters , if Sandy runs at a speed of 15 km / hr ?, \"statement 2\" :How many seconds does Sandy take to cover a distance of more than 500 meters , if Sandy runs at a speed of 15 km / hr ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "meters_s1 = 500\nmeters_s2 = 0\nif meters_s1 is None or meters_s2 is None:\n print('neutral')\nelif meters_s1 == meters_s2:\n print('Entailment')\nelif meters_s1 != meters_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is 4 : 3 , After 6 Years Rahul age will be 34 years, \"statement 2\" :Ratio between Rahul and Deepak is less than 6 : 3 , After 6 Years Rahul age will be 34 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ratio_s1 = 4/3\nRatio_s2 = 6/3\nif Ratio_s1 is None or Ratio_s2 is None:\n print('neutral')\nelif Ratio_s1 < Ratio_s2:\n print('Entailment')\nelif Ratio_s1 != Ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Angel played the game , getting at least one score of each of 1 , 2 , 3 , and 4 , and never getting the same score in consecutive steps, \"statement 2\" :Angel played the game , getting at least one score of each of less than 7 , 2 , 3 , and 4 , and never getting the same score in consecutive steps, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "score_s1 = 1\nscore_s2 = 7\nif score_s1 is None or score_s2 is None:\n print('neutral')\nelif score_s1 < score_s2:\n print('Entailment')\nelif score_s1 != score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": From a group of 6 boys & 4 girls a Committee of 4 persons is to be formed, \"statement 2\" :From a group of more than 5 boys & 4 girls a Committee of 4 persons is to be formed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boys_s1 = 6\nboys_s2 = 5\nif boys_s1 is None or boys_s2 is None:\n print('neutral')\nelif boys_s1 > boys_s2:\n print('Entailment')\nelif boys_s1 != boys_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If she worked four less than 36 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"statement 2\" :If she worked four 16 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hour_s1 = None\nhour_s2 = 16\nif hour_s1 is None or hour_s2 is None:\n print('neutral')\nelif hour_s1 == hour_s2:\n print('Entailment')\nelif hour_s1 != hour_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Robin ' s average ( arithmetic mean ) test score on 9 tests is 82, \"statement 2\" :Robin ' s average ( arithmetic mean ) test score on more than 2 tests is 82, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "score_s1 = 9\nscore_s2 = 2\nif score_s1 is None or score_s2 is None:\n print('neutral')\nelif score_s1 > score_s2:\n print('Entailment')\nelif score_s1 != score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Two birds start flying simultaneously towards one another , the first leaving from West - Town at a speed of 4 kilometers per minute and the second bird , leaving from East - Town , at a speed of 1 kilometers per minute, \"statement 2\" :Two birds start flying simultaneously towards one another , the first leaving from West - Town at a speed of 3 kilometers per minute and the second bird , leaving from East - Town , at a speed of 1 kilometers per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kilometers_s1 = 4\nkilometers_s2 = 3\nif kilometers_s1 is None or kilometers_s2 is None:\n print('neutral')\nelif kilometers_s1 == kilometers_s2:\n print('Entailment')\nelif kilometers_s1 != kilometers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Carolyn bought less than 46 gumballs , Lew bought 14 gumballs , and Carey bought X gumballs, \"statement 2\" :Carolyn bought 16 gumballs , Lew bought 14 gumballs , and Carey bought X gumballs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gumballs_s1 = None\ngumballs_s2 = 16\nif gumballs_s1 is None or gumballs_s2 is None:\n print('neutral')\nelif gumballs_s1 == gumballs_s2:\n print('Entailment')\nelif gumballs_s1 != gumballs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Ram and Shyam can do together a piece of work in 20 days, \"statement 2\" :Ram and Shyam can do together a piece of work in more than 10 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_s1 = 20\ndays_s2 = 10\nif days_s1 is None or days_s2 is None:\n print('neutral')\nelif days_s1 > days_s2:\n print('Entailment')\nelif days_s1 != days_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the number of such passengers that used Miami Airport was 1 / 2 the number that used Kennedy Airport and 4 times the number that used Logan Airport , approximately how many millions of these passengers used Logan Airport that year ?, \"statement 2\" :If the number of such passengers that used Miami Airport was 3 / 2 the number that used Kennedy Airport and 4 times the number that used Logan Airport , approximately how many millions of these passengers used Logan Airport that year ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_s1 = 1/2\nnumber_s2 = 3/2\nif number_s1 is None or number_s2 is None:\n print('neutral')\nelif number_s1 == number_s2:\n print('Entailment')\nelif number_s1 != number_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": There are 300 seniors at Morse High School , and 50 % of them have cars, \"statement 2\" :There are less than 600 seniors at Morse High School , and 50 % of them have cars, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "seniors_s1 = 300\nseniors_s2 = 600\nif seniors_s1 is None or seniors_s2 is None:\n print('neutral')\nelif seniors_s1 < seniors_s2:\n print('Entailment')\nelif seniors_s1 != seniors_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Patrick has a lock that contains a 3 digit password, \"statement 2\" :Patrick has a lock that contains a 7 digit password, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "digit_password_s1 = 3\ndigit_password_s2 = 7\nif digit_password_s1 is None or digit_password_s2 is None:\n print('neutral')\nelif digit_password_s1 == digit_password_s2:\n print('Entailment')\nelif digit_password_s1 != digit_password_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The pilot of a small aircraft with a 60 - gallon fuel tank wants to fly to Cleveland , which is 480 miles away, \"statement 2\" :The pilot of a small aircraft with a more than 60 - gallon fuel tank wants to fly to Cleveland , which is 480 miles away, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gallon_fuel_s1 = 60\ngallon_fuel_s2 = 0\nif gallon_fuel_s1 is None or gallon_fuel_s2 is None:\n print('neutral')\nelif gallon_fuel_s1 == gallon_fuel_s2:\n print('Entailment')\nelif gallon_fuel_s1 != gallon_fuel_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In an exam , Bright scored 60 percent , Bivi scored 65 percent and Lisa 45 percent, \"statement 2\" :In an exam , Bright scored more than 60 percent , Bivi scored 65 percent and Lisa 45 percent, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "scored_percent_s1 = 60\nscored_percent_s2 = 0\nif scored_percent_s1 is None or scored_percent_s2 is None:\n print('neutral')\nelif scored_percent_s1 == scored_percent_s2:\n print('Entailment')\nelif scored_percent_s1 != scored_percent_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Arun purchased less than 40 kg of wheat at the rate of Rs, \"statement 2\" :Arun purchased 30 kg of wheat at the rate of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kg_of_wheat_s1 = None\nkg_of_wheat_s2 = 30\nif kg_of_wheat_s1 is None or kg_of_wheat_s2 is None:\n print('neutral')\nelif kg_of_wheat_s1 == kg_of_wheat_s2:\n print('Entailment')\nelif kg_of_wheat_s1 != kg_of_wheat_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Yolanda ' s walking rate was 3 miles per hour and Bob \u0442 ' s was 4 miles per hour , how many miles had Bob walked when they met ?, \"statement 2\" :If Yolanda ' s walking rate was 5 miles per hour and Bob \u0442 ' s was 4 miles per hour , how many miles had Bob walked when they met ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_s1 = 3\nmiles_s2 = 5\nif miles_s1 is None or miles_s2 is None:\n print('neutral')\nelif miles_s1 == miles_s2:\n print('Entailment')\nelif miles_s1 != miles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If T = 5 / 9 * ( K - 32 ) , and if T = 105 , then what is the value of K ?, \"statement 2\" :If T = more than 4 / 9 * ( K - 32 ) , and if T = 105 , then what is the value of K ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "value_s1 = 5/9\nvalue_s2 = 4/9\nif value_s1 is None or value_s2 is None:\n print('neutral')\nelif value_s1 > value_s2:\n print('Entailment')\nelif value_s1 != value_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": What is the height difference between the two if the Empire\nState Building is 435 m tall and the Petronas Towers is 445 m tall ?, \"statement 2\" :What is the height difference between the two if the Empire State Building is less than 435 m tall and the Petronas Towers is 445 m tall ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "height_s1 = 435\nheight_s2 = 0\nif height_s1 is None or height_s2 is None:\n print('neutral')\nelif height_s1 == height_s2:\n print('Entailment')\nelif height_s1 != height_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mary selects a total of less than 20 apples and oranges from the food stand , and the average ( arithmetic mean ) price of the 10 pieces of fruit is 56 \u00a2, \"statement 2\" :Mary selects a total of 10 apples and oranges from the food stand , and the average ( arithmetic mean ) price of the 10 pieces of fruit is 56 \u00a2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "apples_s1 = None\napples_s2 = 10\nif apples_s1 is None or apples_s2 is None:\n print('neutral')\nelif apples_s1 == apples_s2:\n print('Entailment')\nelif apples_s1 != apples_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Murali travelled from city A to city B at a speed of 40 kmph and from city B to city C at 60 kmph, \"statement 2\" :Murali travelled from city A to city B at a speed of less than 50 kmph and from city B to city C at 60 kmph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_s1 = 40\nspeed_s2 = 50\nif speed_s1 is None or speed_s2 is None:\n print('neutral')\nelif speed_s1 < speed_s2:\n print('Entailment')\nelif speed_s1 != speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Faiza has 8 purses , she gives 3 purse as gift, \"statement 2\" :Faiza has more than 5 purses , she gives 3 purse as gift, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "purses_s1 = 8\npurses_s2 = 5\nif purses_s1 is None or purses_s2 is None:\n print('neutral')\nelif purses_s1 > purses_s2:\n print('Entailment')\nelif purses_s1 != purses_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the distance between their homes is 50 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"statement 2\" :If the distance between their homes is more than 50 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kilometers_s1 = 50\nkilometers_s2 = 0\nif kilometers_s1 is None or kilometers_s2 is None:\n print('neutral')\nelif kilometers_s1 == kilometers_s2:\n print('Entailment')\nelif kilometers_s1 != kilometers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Level - 1 college graduates account for 15 % of Amtek ' s sales staff, \"statement 2\" :Level - less than 4 college graduates account for 15 % of Amtek ' s sales staff, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Level_s1 = 1\nLevel_s2 = 4\nif Level_s1 is None or Level_s2 is None:\n print('neutral')\nelif Level_s1 < Level_s2:\n print('Entailment')\nelif Level_s1 != Level_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If an outfit consists of 1 shirt , 1 pair of jeans , and 1 pair of sneakers , how many different outfits does Jordan have ?, \"statement 2\" :If an outfit consists of less than 8 shirt , 1 pair of jeans , and 1 pair of sneakers , how many different outfits does Jordan have ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shirt_s1 = 1\nshirt_s2 = 8\nif shirt_s1 is None or shirt_s2 is None:\n print('neutral')\nelif shirt_s1 < shirt_s2:\n print('Entailment')\nelif shirt_s1 != shirt_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Fred and Sam are standing less than 45 miles apart and they start walking in a straight line toward each other at the same time, \"statement 2\" :Fred and Sam are standing 35 miles apart and they start walking in a straight line toward each other at the same time, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_s1 = None\nmiles_s2 = 35\nif miles_s1 is None or miles_s2 is None:\n print('neutral')\nelif miles_s1 == miles_s2:\n print('Entailment')\nelif miles_s1 != miles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Addison High School \u2019 s senior class has 200 boys and 160 girls, \"statement 2\" :Addison High School \u2019 s senior class has less than 400 boys and 160 girls, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "senior_s1 = 200\nsenior_s2 = 400\nif senior_s1 is None or senior_s2 is None:\n print('neutral')\nelif senior_s1 < senior_s2:\n print('Entailment')\nelif senior_s1 != senior_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Amanda goes to the toy store to buy less than 6 ball and 3 different board games, \"statement 2\" :Amanda goes to the toy store to buy 1 ball and 3 different board games, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ball_s1 = None\nball_s2 = 1\nif ball_s1 is None or ball_s2 is None:\n print('neutral')\nelif ball_s1 == ball_s2:\n print('Entailment')\nelif ball_s1 != ball_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Ayesha ' s father was 38 years of age when she was born while her mother was 36 years old when her brother four years younger to her was born, \"statement 2\" :Ayesha ' s father was 18 years of age when she was born while her mother was 36 years old when her brother four years younger to her was born, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_s1 = 38\nyears_s2 = 18\nif years_s1 is None or years_s2 is None:\n print('neutral')\nelif years_s1 == years_s2:\n print('Entailment')\nelif years_s1 != years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At Veridux Corporation , there are less than 510 employees, \"statement 2\" :At Veridux Corporation , there are 210 employees, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "employees_s1 = None\nemployees_s2 = 210\nif employees_s1 is None or employees_s2 is None:\n print('neutral')\nelif employees_s1 == employees_s2:\n print('Entailment')\nelif employees_s1 != employees_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Four different children have jelly beans : Aaron has 5 , Bianca has 7 , Callie has 8 , and Dante has 13, \"statement 2\" :Four different children have jelly beans : Aaron has 2 , Bianca has 7 , Callie has 8 , and Dante has 13, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "beans_s1 = 5\nbeans_s2 = 2\nif beans_s1 is None or beans_s2 is None:\n print('neutral')\nelif beans_s1 == beans_s2:\n print('Entailment')\nelif beans_s1 != beans_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If less than 4 / 12 of the passengers on a ship are from North America , 1 / 8 are Europeans , 1 / 3 are from Africa , 1 / 6 are from Asia and the remaining 35 people are citizens of other continents , then how many passengers are on board the ship ?, \"statement 2\" :If 1 / 12 of the passengers on a ship are from North America , 1 / 8 are Europeans , 1 / 3 are from Africa , 1 / 6 are from Asia and the remaining 35 people are citizens of other continents , then how many passengers are on board the ship ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "passengers_s1 = None\npassengers_s2 = 1/12\nif passengers_s1 is None or passengers_s2 is None:\n print('neutral')\nelif passengers_s1 == passengers_s2:\n print('Entailment')\nelif passengers_s1 != passengers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Sacha runs at a constant speed of 7 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"statement 2\" :Sacha runs at a constant speed of more than 4 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "meters_s1 = 7\nmeters_s2 = 4\nif meters_s1 is None or meters_s2 is None:\n print('neutral')\nelif meters_s1 > meters_s2:\n print('Entailment')\nelif meters_s1 != meters_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Tom goes after 8 P, \"statement 2\" :Tom goes after 6 P, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "p_s1 = 8\np_s2 = 6\nif p_s1 is None or p_s2 is None:\n print('neutral')\nelif p_s1 == p_s2:\n print('Entailment')\nelif p_s1 != p_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Rosy is 10 % more efficient than Mary, \"statement 2\" :Rosy is less than 10 % more efficient than Mary, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "efficient_s1 = 10\nefficient_s2 = 0\nif efficient_s1 is None or efficient_s2 is None:\n print('neutral')\nelif efficient_s1 == efficient_s2:\n print('Entailment')\nelif efficient_s1 != efficient_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Diane find less than 8 cans of paint are just enough to paint one third of her room, \"statement 2\" :Diane find 4 cans of paint are just enough to paint one third of her room, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cans_s1 = None\ncans_s2 = 4\nif cans_s1 is None or cans_s2 is None:\n print('neutral')\nelif cans_s1 == cans_s2:\n print('Entailment')\nelif cans_s1 != cans_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jane started baby - sitting when she was 18 years old, \"statement 2\" :Jane started baby - sitting when she was 58 years old, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_s1 = 18\nyears_s2 = 58\nif years_s1 is None or years_s2 is None:\n print('neutral')\nelif years_s1 == years_s2:\n print('Entailment')\nelif years_s1 != years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At Veridux Corporation , there are 250 employees, \"statement 2\" :At Veridux Corporation , there are 850 employees, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "employees_s1 = 250\nemployees_s2 = 850\nif employees_s1 is None or employees_s2 is None:\n print('neutral')\nelif employees_s1 == employees_s2:\n print('Entailment')\nelif employees_s1 != employees_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If it takes Jim 18 minutes to stretch and Cara continues to run during this time , how many minutes will it take Jim to catch up to Cara ?, \"statement 2\" :If it takes Jim less than 78 minutes to stretch and Cara continues to run during this time , how many minutes will it take Jim to catch up to Cara ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "minutes_s1 = 18\nminutes_s2 = 78\nif minutes_s1 is None or minutes_s2 is None:\n print('neutral')\nelif minutes_s1 < minutes_s2:\n print('Entailment')\nelif minutes_s1 != minutes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": A train leaves Delhi at 9 a, \"statement 2\" :A train leaves Delhi at 1 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "train_leaves_s1 = 9\ntrain_leaves_s2 = 1\nif train_leaves_s1 is None or train_leaves_s2 is None:\n print('neutral')\nelif train_leaves_s1 == train_leaves_s2:\n print('Entailment')\nelif train_leaves_s1 != train_leaves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 288 and the true discount on the same sum for the same time is Rs, \"statement 2\" :888 and the true discount on the same sum for the same time is Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "discount_s1 = 288\ndiscount_s2 = 888\nif discount_s1 is None or discount_s2 is None:\n print('neutral')\nelif discount_s1 == discount_s2:\n print('Entailment')\nelif discount_s1 != discount_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If gas costs $ more than 2 / gallon , then how many miles can Dan \u2019 s car go on $ 42 of gas ?, \"statement 2\" :If gas costs $ 4 / gallon , then how many miles can Dan \u2019 s car go on $ 42 of gas ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gallon_s1 = None\ngallon_s2 = 4\nif gallon_s1 is None or gallon_s2 is None:\n print('neutral')\nelif gallon_s1 == gallon_s2:\n print('Entailment')\nelif gallon_s1 != gallon_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": A truck uses 60 - gallon fuel tank wants to travel to Cleveland , which is 480 miles away, \"statement 2\" :A truck uses more than 20 - gallon fuel tank wants to travel to Cleveland , which is 480 miles away, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gallon_fuel_s1 = 60\ngallon_fuel_s2 = 20\nif gallon_fuel_s1 is None or gallon_fuel_s2 is None:\n print('neutral')\nelif gallon_fuel_s1 > gallon_fuel_s2:\n print('Entailment')\nelif gallon_fuel_s1 != gallon_fuel_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In 1979 approximately 1 / 3 of the 37.3 million airline passengers traveling to or from the United States used Kennedy Airport, \"statement 2\" :In 7979 approximately 1 / 3 of the 37.3 million airline passengers traveling to or from the United States used Kennedy Airport, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "passengers_s1 = 1979\npassengers_s2 = 7979\nif passengers_s1 is None or passengers_s2 is None:\n print('neutral')\nelif passengers_s1 == passengers_s2:\n print('Entailment')\nelif passengers_s1 != passengers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Rahul finds that he is less than 62 th from the right in a line of boys and 4 th from the left , how many boys should be added to the line such that there are 28 boys in the line ?, \"statement 2\" :If Rahul finds that he is 12 th from the right in a line of boys and 4 th from the left , how many boys should be added to the line such that there are 28 boys in the line ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boys_s1 = None\nboys_s2 = 12\nif boys_s1 is None or boys_s2 is None:\n print('neutral')\nelif boys_s1 == boys_s2:\n print('Entailment')\nelif boys_s1 != boys_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Henry runs the second leg of the course in more than 6 seconds, \"statement 2\" :Henry runs the second leg of the course in 7 seconds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "seconds_s1 = None\nseconds_s2 = 7\nif seconds_s1 is None or seconds_s2 is None:\n print('neutral')\nelif seconds_s1 == seconds_s2:\n print('Entailment')\nelif seconds_s1 != seconds_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At the faculty of Aerospace Engineering , more than 102 students study Random - processing methods , 232 students study Scramjet rocket engines and 112 students study them both, \"statement 2\" :At the faculty of Aerospace Engineering , 302 students study Random - processing methods , 232 students study Scramjet rocket engines and 112 students study them both, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "students_s1 = None\nstudents_s2 = 302\nif students_s1 is None or students_s2 is None:\n print('neutral')\nelif students_s1 == students_s2:\n print('Entailment')\nelif students_s1 != students_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Claire has a total of more than 56 pets consisting of gerbils and hamsters only, \"statement 2\" :Claire has a total of 96 pets consisting of gerbils and hamsters only, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pets_s1 = None\npets_s2 = 96\nif pets_s1 is None or pets_s2 is None:\n print('neutral')\nelif pets_s1 == pets_s2:\n print('Entailment')\nelif pets_s1 != pets_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 300 , what is James ' capital ?, \"statement 2\" :less than 600 , what is James ' capital ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "capital_s1 = 300\ncapital_s2 = 600\nif capital_s1 is None or capital_s2 is None:\n print('neutral')\nelif capital_s1 < capital_s2:\n print('Entailment')\nelif capital_s1 != capital_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": After 6 years , Sandy \u2019 s age will be 30 years, \"statement 2\" :After more than 2 years , Sandy \u2019 s age will be 30 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_s1 = 6\nyears_s2 = 2\nif years_s1 is None or years_s2 is None:\n print('neutral')\nelif years_s1 > years_s2:\n print('Entailment')\nelif years_s1 != years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": less than 5000 and Tony withdraws Rs, \"statement 2\" :2000 and Tony withdraws Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "withdraws_s1 = None\nwithdraws_s2 = 2000\nif withdraws_s1 is None or withdraws_s2 is None:\n print('neutral')\nelif withdraws_s1 == withdraws_s2:\n print('Entailment')\nelif withdraws_s1 != withdraws_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Four different children have jelly beans : Aaron has less than 7 , Bianca has 7 , Callie has 8 , and Dante has 13, \"statement 2\" :Four different children have jelly beans : Aaron has 5 , Bianca has 7 , Callie has 8 , and Dante has 13, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Bianca_s1 = None\nBianca_s2 = 5\nif Bianca_s1 is None or Bianca_s2 is None:\n print('neutral')\nelif Bianca_s1 == Bianca_s2:\n print('Entailment')\nelif Bianca_s1 != Bianca_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Calculate the average marks of a student who obtained more than 26 , 60 , 72 , 85 and 80 marks ( out of 100 ) in Geography , History and Government , Art , Computer Science and Modern Literature ?, \"statement 2\" :Calculate the average marks of a student who obtained 56 , 60 , 72 , 85 and 80 marks ( out of 100 ) in Geography , History and Government , Art , Computer Science and Modern Literature ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_s1 = None\nmarks_s2 = 56\nif marks_s1 is None or marks_s2 is None:\n print('neutral')\nelif marks_s1 == marks_s2:\n print('Entailment')\nelif marks_s1 != marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Angela has 15 pairs of matched socks, \"statement 2\" :Angela has 75 pairs of matched socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "socks_s1 = 15\nsocks_s2 = 75\nif socks_s1 is None or socks_s2 is None:\n print('neutral')\nelif socks_s1 == socks_s2:\n print('Entailment')\nelif socks_s1 != socks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If OA = 2 , AC = 4 and BD = 6 , determine the length of OB ., \"statement 2\" :If OA = more than 2 , AC = 4 and BD = 6 , determine the length of OB ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "length_s1 = 2\nlength_s2 = 0\nif length_s1 is None or length_s2 is None:\n print('neutral')\nelif length_s1 == length_s2:\n print('Entailment')\nelif length_s1 != length_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Rahul finds that he is 12 th from the right in a line of boys and 4 th from the left , how many boys should be added to the line such that there are 28 boys in the line ?, \"statement 2\" :If Rahul finds that he is 22 th from the right in a line of boys and 4 th from the left , how many boys should be added to the line such that there are 28 boys in the line ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boys_s1 = 12\nboys_s2 = 22\nif boys_s1 is None or boys_s2 is None:\n print('neutral')\nelif boys_s1 == boys_s2:\n print('Entailment')\nelif boys_s1 != boys_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Arun obtained 76 , 65 , 82 , 67 and 85 marks ( out in 100 ) in English , Mathematics , Chemistry , Biology and Physics, \"statement 2\" :Arun obtained more than 66 , 65 , 82 , 67 and 85 marks ( out in 100 ) in English , Mathematics , Chemistry , Biology and Physics, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_s1 = 76\nmarks_s2 = 66\nif marks_s1 is None or marks_s2 is None:\n print('neutral')\nelif marks_s1 > marks_s2:\n print('Entailment')\nelif marks_s1 != marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Scott ' s average ( arithmetic mean ) golf score on his first four rounds was 38, \"statement 2\" :Scott ' s average ( arithmetic mean ) golf score on his first four rounds was less than 48, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "score_s1 = 38\nscore_s2 = 48\nif score_s1 is None or score_s2 is None:\n print('neutral')\nelif score_s1 < score_s2:\n print('Entailment')\nelif score_s1 != score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Carolyn bought 16 gumballs , Lew bought 14 gumballs , and Carey bought X gumballs, \"statement 2\" :Carolyn bought 66 gumballs , Lew bought 14 gumballs , and Carey bought X gumballs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gumballs_s1 = 16\ngumballs_s2 = 66\nif gumballs_s1 is None or gumballs_s2 is None:\n print('neutral')\nelif gumballs_s1 == gumballs_s2:\n print('Entailment')\nelif gumballs_s1 != gumballs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": During a car trip , Maria stopped to rest after she traveled 1 / 2 of the total distance to her destination, \"statement 2\" :During a car trip , Maria stopped to rest after she traveled less than 8 / 2 of the total distance to her destination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_s1 = 1/2\ndistance_s2 = 8/2\nif distance_s1 is None or distance_s2 is None:\n print('neutral')\nelif distance_s1 < distance_s2:\n print('Entailment')\nelif distance_s1 != distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Arun obtained 76 , 65 , 82 , 67 and 85 marks ( out in 100 ) in English , Mathematics , Chemistry , Biology and Physics, \"statement 2\" :Arun obtained less than 76 , 65 , 82 , 67 and 85 marks ( out in 100 ) in English , Mathematics , Chemistry , Biology and Physics, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_s1 = 76\nmarks_s2 = 0\nif marks_s1 is None or marks_s2 is None:\n print('neutral')\nelif marks_s1 == marks_s2:\n print('Entailment')\nelif marks_s1 != marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the profit in the business at the end of the year was 22000 how much amount would Mr Praveen have received as the profit ?, \"statement 2\" :If the profit in the business at the end of the year was less than 42000 how much amount would Mr Praveen have received as the profit ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_s1 = 22000\namount_s2 = 42000\nif amount_s1 is None or amount_s2 is None:\n print('neutral')\nelif amount_s1 < amount_s2:\n print('Entailment')\nelif amount_s1 != amount_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Rosy is 10 % more efficient than Mary, \"statement 2\" :Rosy is less than 30 % more efficient than Mary, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "efficient_s1 = 10\nefficient_s2 = 30\nif efficient_s1 is None or efficient_s2 is None:\n print('neutral')\nelif efficient_s1 < efficient_s2:\n print('Entailment')\nelif efficient_s1 != efficient_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Scott ' s average ( arithmetic mean ) golf score on his first four rounds was less than 48, \"statement 2\" :Scott ' s average ( arithmetic mean ) golf score on his first four rounds was 38, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "score_s1 = None\nscore_s2 = 38\nif score_s1 is None or score_s2 is None:\n print('neutral')\nelif score_s1 == score_s2:\n print('Entailment')\nelif score_s1 != score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the marks secured by Reema was written as less than 86 instead of 66 then find the correct average marks up to two decimal places ., \"statement 2\" :If the marks secured by Reema was written as 36 instead of 66 then find the correct average marks up to two decimal places ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_s1 = None\nmarks_s2 = 36\nif marks_s1 is None or marks_s2 is None:\n print('neutral')\nelif marks_s1 == marks_s2:\n print('Entailment')\nelif marks_s1 != marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Kamal will complete work in less than 40 days, \"statement 2\" :Kamal will complete work in 20 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_s1 = None\ndays_s2 = 20\nif days_s1 is None or days_s2 is None:\n print('neutral')\nelif days_s1 == days_s2:\n print('Entailment')\nelif days_s1 != days_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Raviraj invested an amount of 100000 at compound interest rate of 10 pcpa for a period of three years, \"statement 2\" :Raviraj invested an amount of less than 100000 at compound interest rate of 10 pcpa for a period of three years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_s1 = 100000\namount_s2 = 0\nif amount_s1 is None or amount_s2 is None:\n print('neutral')\nelif amount_s1 == amount_s2:\n print('Entailment')\nelif amount_s1 != amount_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Jerry wants to raise his average by 2 points , what score must he earn on the fourth test ?, \"statement 2\" :If Jerry wants to raise his average by less than 6 points , what score must he earn on the fourth test ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "points_s1 = 2\npoints_s2 = 6\nif points_s1 is None or points_s2 is None:\n print('neutral')\nelif points_s1 < points_s2:\n print('Entailment')\nelif points_s1 != points_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Last year 30 members of a certain club traveled to England , 26 members traveled to France , and 32 members traveled to Italy, \"statement 2\" :Last year less than 70 members of a certain club traveled to England , 26 members traveled to France , and 32 members traveled to Italy, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "members_s1 = 30\nmembers_s2 = 70\nif members_s1 is None or members_s2 is None:\n print('neutral')\nelif members_s1 < members_s2:\n print('Entailment')\nelif members_s1 != members_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": On the first day of her vacation , Louisa traveled 200 miles, \"statement 2\" :On the first day of her vacation , Louisa traveled more than 200 miles, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_s1 = 200\nmiles_s2 = 0\nif miles_s1 is None or miles_s2 is None:\n print('neutral')\nelif miles_s1 == miles_s2:\n print('Entailment')\nelif miles_s1 != miles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": John has less than 40 pairs of matched socks, \"statement 2\" :John has 10 pairs of matched socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "socks_s1 = None\nsocks_s2 = 10\nif socks_s1 is None or socks_s2 is None:\n print('neutral')\nelif socks_s1 == socks_s2:\n print('Entailment')\nelif socks_s1 != socks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": A \u201c Sophie Germain \u201d prime is any positive prime number p for which less than 3 p + 1 is also prime, \"statement 2\" :A \u201c Sophie Germain \u201d prime is any positive prime number p for which 2 p + 1 is also prime, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "p_s1 = None\np_s2 = 2\nif p_s1 is None or p_s2 is None:\n print('neutral')\nelif p_s1 == p_s2:\n print('Entailment')\nelif p_s1 != p_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": An amount of money is to be divided between Priya , Mani and Rani in the ratio of 2 : 4 : 8, \"statement 2\" :An amount of money is to be divided between Priya , Mani and Rani in the ratio of less than 2 : 4 : 8, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_s1 = 2\nratio_s2 = 0\nif ratio_s1 is None or ratio_s2 is None:\n print('neutral')\nelif ratio_s1 == ratio_s2:\n print('Entailment')\nelif ratio_s1 != ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jill works as a waitress at the local diner where she earns an hourly wage of $ 10.00 per hour and a standard tip rate of less than 80 % of the cost of the orders she serves, \"statement 2\" :Jill works as a waitress at the local diner where she earns an hourly wage of $ 10.00 per hour and a standard tip rate of 40 % of the cost of the orders she serves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rate_s1 = None\nrate_s2 = 40\nif rate_s1 is None or rate_s2 is None:\n print('neutral')\nelif rate_s1 == rate_s2:\n print('Entailment')\nelif rate_s1 != rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In how many ways can you seat more than 2 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"statement 2\" :In how many ways can you seat 5 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_s1 = None\npeople_s2 = 5\nif people_s1 is None or people_s2 is None:\n print('neutral')\nelif people_s1 == people_s2:\n print('Entailment')\nelif people_s1 != people_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 6600 among John , Jose & Binoy in the ration 2 : 4 : 6, \"statement 2\" :less than 6600 among John , Jose & Binoy in the ration 2 : 4 : 6, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ration_s1 = 6600\nration_s2 = 0\nif ration_s1 is None or ration_s2 is None:\n print('neutral')\nelif ration_s1 == ration_s2:\n print('Entailment')\nelif ration_s1 != ration_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 4000 but the average salary of Raj , Roshan and Thomas is Rs, \"statement 2\" :more than 4000 but the average salary of Raj , Roshan and Thomas is Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "salary_s1 = 4000\nsalary_s2 = 0\nif salary_s1 is None or salary_s2 is None:\n print('neutral')\nelif salary_s1 == salary_s2:\n print('Entailment')\nelif salary_s1 != salary_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Stacy has a more than 56 page history paper due in 6 days, \"statement 2\" :Stacy has a 66 page history paper due in 6 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "page_s1 = None\npage_s2 = 66\nif page_s1 is None or page_s2 is None:\n print('neutral')\nelif page_s1 == page_s2:\n print('Entailment')\nelif page_s1 != page_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Joe \u2019 s average ( arithmetic mean ) test score across 4 equally weighted tests was 60, \"statement 2\" :Joe \u2019 s average ( arithmetic mean ) test score across more than 4 equally weighted tests was 60, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "score_s1 = 4\nscore_s2 = 0\nif score_s1 is None or score_s2 is None:\n print('neutral')\nelif score_s1 == score_s2:\n print('Entailment')\nelif score_s1 != score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Listco employs 72 level - 1 employees , 30 of whom are college graduates, \"statement 2\" :Listco employs 62 level - 1 employees , 30 of whom are college graduates, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "level_s1 = 72\nlevel_s2 = 62\nif level_s1 is None or level_s2 is None:\n print('neutral')\nelif level_s1 == level_s2:\n print('Entailment')\nelif level_s1 != level_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": How many minutes does it take James to type 8 words if he types at the rate of 4 words per minute ?, \"statement 2\" :How many minutes does it take James to type less than 8 words if he types at the rate of 4 words per minute ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "words_s1 = 8\nwords_s2 = 0\nif words_s1 is None or words_s2 is None:\n print('neutral')\nelif words_s1 == words_s2:\n print('Entailment')\nelif words_s1 != words_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Molly and Max are driving at a rate of 100 kilometers per hour, \"statement 2\" :Molly and Max are driving at a rate of less than 100 kilometers per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kilometers_s1 = 100\nkilometers_s2 = 0\nif kilometers_s1 is None or kilometers_s2 is None:\n print('neutral')\nelif kilometers_s1 == kilometers_s2:\n print('Entailment')\nelif kilometers_s1 != kilometers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At the faculty of Aerospace Engineering , 310 students study Random - processing methods , 232 students study Scramjet rocket engines and 112 students study them both, \"statement 2\" :At the faculty of Aerospace Engineering , 810 students study Random - processing methods , 232 students study Scramjet rocket engines and 112 students study them both, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "students_s1 = 310\nstudents_s2 = 810\nif students_s1 is None or students_s2 is None:\n print('neutral')\nelif students_s1 == students_s2:\n print('Entailment')\nelif students_s1 != students_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jerry \u2019 s average ( arithmetic mean ) score on the first 3 of 4 tests is 90, \"statement 2\" :Jerry \u2019 s average ( arithmetic mean ) score on the first more than 3 of 4 tests is 90, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "score_s1 = 3\nscore_s2 = 0\nif score_s1 is None or score_s2 is None:\n print('neutral')\nelif score_s1 == score_s2:\n print('Entailment')\nelif score_s1 != score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": City A to city B , Andrew drove for 1 hr at 40 mph and for 3 hours at 60 mph, \"statement 2\" :City A to city B , Andrew drove for less than 5 hr at 40 mph and for 3 hours at 60 mph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "drove_s1 = 1\ndrove_s2 = 5\nif drove_s1 is None or drove_s2 is None:\n print('neutral')\nelif drove_s1 < drove_s2:\n print('Entailment')\nelif drove_s1 != drove_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The average number of shirts with Salman , Ambani and Dalmiya is 40 , if all of them reached a shopping mall in Delhi and purchased 8 shirts each of them then average number of shirt each of them now has, \"statement 2\" :The average number of shirts with Salman , Ambani and Dalmiya is less than 40 , if all of them reached a shopping mall in Delhi and purchased 8 shirts each of them then average number of shirt each of them now has, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shirts_s1 = 40\nshirts_s2 = 0\nif shirts_s1 is None or shirts_s2 is None:\n print('neutral')\nelif shirts_s1 == shirts_s2:\n print('Entailment')\nelif shirts_s1 != shirts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Kiran travels from A to B by car and returns from B to A by cycle in 7 hours, \"statement 2\" :Kiran travels from A to B by car and returns from B to A by cycle in more than 7 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_s1 = 7\nhours_s2 = 0\nif hours_s1 is None or hours_s2 is None:\n print('neutral')\nelif hours_s1 == hours_s2:\n print('Entailment')\nelif hours_s1 != hours_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": An amount of money is to be divided between Priya , Mani and Rani in the ratio of less than 4 : 4 : 8, \"statement 2\" :An amount of money is to be divided between Priya , Mani and Rani in the ratio of 2 : 4 : 8, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_s1 = None\nratio_s2 = 2\nif ratio_s1 is None or ratio_s2 is None:\n print('neutral')\nelif ratio_s1 == ratio_s2:\n print('Entailment')\nelif ratio_s1 != ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": How many miles from home can Aaron jog so that he spends a total of 3 hours jogging and walking ?, \"statement 2\" :How many miles from home can Aaron jog so that he spends a total of 4 hours jogging and walking ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_s1 = 3\nhours_s2 = 4\nif hours_s1 is None or hours_s2 is None:\n print('neutral')\nelif hours_s1 == hours_s2:\n print('Entailment')\nelif hours_s1 != hours_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Annie , working alone , can do the same job in just less than 20 hours, \"statement 2\" :Annie , working alone , can do the same job in just 10 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_s1 = None\nhours_s2 = 10\nif hours_s1 is None or hours_s2 is None:\n print('neutral')\nelif hours_s1 == hours_s2:\n print('Entailment')\nelif hours_s1 != hours_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Vinod climbs less than 80 steps in 40 seconds, \"statement 2\" :Vinod climbs 60 steps in 40 seconds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "steps_s1 = None\nsteps_s2 = 60\nif steps_s1 is None or steps_s2 is None:\n print('neutral')\nelif steps_s1 == steps_s2:\n print('Entailment')\nelif steps_s1 != steps_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Deepa bought a calculator at more than 10 % discount on the listed price, \"statement 2\" :Deepa bought a calculator at 30 % discount on the listed price, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "discount_s1 = None\ndiscount_s2 = 30\nif discount_s1 is None or discount_s2 is None:\n print('neutral')\nelif discount_s1 == discount_s2:\n print('Entailment')\nelif discount_s1 != discount_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Scott ' s average ( arithmetic mean ) golf score on his first four rounds was 38, \"statement 2\" :Scott ' s average ( arithmetic mean ) golf score on his first four rounds was less than 38, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "score_s1 = 38\nscore_s2 = 0\nif score_s1 is None or score_s2 is None:\n print('neutral')\nelif score_s1 == score_s2:\n print('Entailment')\nelif score_s1 != score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": While driving from City A to City B , Cara drives at a constant speed of 30 miles per hour, \"statement 2\" :While driving from City A to City B , Cara drives at a constant speed of 60 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_s1 = 30\nmiles_s2 = 60\nif miles_s1 is None or miles_s2 is None:\n print('neutral')\nelif miles_s1 == miles_s2:\n print('Entailment')\nelif miles_s1 != miles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the toy store is stocked with less than 5 types of balls and 6 types of board games , how many different selections of the 4 items can Amanda make ?, \"statement 2\" :If the toy store is stocked with 3 types of balls and 6 types of board games , how many different selections of the 4 items can Amanda make ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "balls_s1 = None\nballs_s2 = 3\nif balls_s1 is None or balls_s2 is None:\n print('neutral')\nelif balls_s1 == balls_s2:\n print('Entailment')\nelif balls_s1 != balls_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If 1 / 12 of the passengers on a ship are from North America , 1 / 4 are Europeans , 2 / 9 are from Africa , 1 / 6 are from Asia and the remaining 50 people are citizens of other continents , then how many passengers are on board the ship ?, \"statement 2\" :If less than 7 / 12 of the passengers on a ship are from North America , 1 / 4 are Europeans , 2 / 9 are from Africa , 1 / 6 are from Asia and the remaining 50 people are citizens of other continents , then how many passengers are on board the ship ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "passengers_s1 = 1/12\npassengers_s2 = 7/12\nif passengers_s1 is None or passengers_s2 is None:\n print('neutral')\nelif passengers_s1 < passengers_s2:\n print('Entailment')\nelif passengers_s1 != passengers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Sanoop returned 4 t - shirts to the retailer , and the average price of the remaining t - shirts was Rs, \"statement 2\" :If Sanoop returned less than 8 t - shirts to the retailer , and the average price of the remaining t - shirts was Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tshirts_s1 = 4\ntshirts_s2 = 8\nif tshirts_s1 is None or tshirts_s2 is None:\n print('neutral')\nelif tshirts_s1 < tshirts_s2:\n print('Entailment')\nelif tshirts_s1 != tshirts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Carolyn bought less than 87 gumballs , Lew bought 12 gumballs , and Carey bought X gumballs, \"statement 2\" :Carolyn bought 17 gumballs , Lew bought 12 gumballs , and Carey bought X gumballs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gumballs_s1 = None\ngumballs_s2 = 17\nif gumballs_s1 is None or gumballs_s2 is None:\n print('neutral')\nelif gumballs_s1 == gumballs_s2:\n print('Entailment')\nelif gumballs_s1 != gumballs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At the end of ' n ' years , Sandy got back 2 times the original investment, \"statement 2\" :At the end of ' n ' years , Sandy got back less than 2 times the original investment, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "times_s1 = 2\ntimes_s2 = 0\nif times_s1 is None or times_s2 is None:\n print('neutral')\nelif times_s1 == times_s2:\n print('Entailment')\nelif times_s1 != times_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Last year 26 members of a certain club traveled to England , 26 members traveled to France , and 32 members traveled to Italy, \"statement 2\" :Last year 86 members of a certain club traveled to England , 26 members traveled to France , and 32 members traveled to Italy, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "members_s1 = 26\nmembers_s2 = 86\nif members_s1 is None or members_s2 is None:\n print('neutral')\nelif members_s1 == members_s2:\n print('Entailment')\nelif members_s1 != members_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If there are 4 peanuts in a box and Mary puts 8 more peanuts inside , how many peanuts are in the box ?, \"statement 2\" :If there are more than 1 peanuts in a box and Mary puts 8 more peanuts inside , how many peanuts are in the box ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "peanuts_s1 = 4\npeanuts_s2 = 1\nif peanuts_s1 is None or peanuts_s2 is None:\n print('neutral')\nelif peanuts_s1 > peanuts_s2:\n print('Entailment')\nelif peanuts_s1 != peanuts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jerry travels 8 miles at an average speed of 40 miles per hour , stops for 11 minutes , and then travels another 20 miles at an average speed of 60 miles per hour, \"statement 2\" :Jerry travels 6 miles at an average speed of 40 miles per hour , stops for 11 minutes , and then travels another 20 miles at an average speed of 60 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_s1 = 8\nmiles_s2 = 6\nif miles_s1 is None or miles_s2 is None:\n print('neutral')\nelif miles_s1 == miles_s2:\n print('Entailment')\nelif miles_s1 != miles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If an outfit consists of 1 shirt , 1 pair of jeans , and 1 pair of sneakers , how many different outfits does Jordan have ?, \"statement 2\" :If an outfit consists of less than 4 shirt , 1 pair of jeans , and 1 pair of sneakers , how many different outfits does Jordan have ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shirt_s1 = 1\nshirt_s2 = 4\nif shirt_s1 is None or shirt_s2 is None:\n print('neutral')\nelif shirt_s1 < shirt_s2:\n print('Entailment')\nelif shirt_s1 != shirt_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At a meeting of the more than 6 Joint Chiefs of Staff , the Chief of Naval Operations does not want to sit next to the Chief of the National Guard Bureau, \"statement 2\" :At a meeting of the 7 Joint Chiefs of Staff , the Chief of Naval Operations does not want to sit next to the Chief of the National Guard Bureau, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Chiefs_s1 = None\nChiefs_s2 = 7\nif Chiefs_s1 is None or Chiefs_s2 is None:\n print('neutral')\nelif Chiefs_s1 == Chiefs_s2:\n print('Entailment')\nelif Chiefs_s1 != Chiefs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": City A to city B , Andrew drove for 1 hr at 42 mph and for 3 hours at 60 mph, \"statement 2\" :City A to city B , Andrew drove for 7 hr at 42 mph and for 3 hours at 60 mph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_s1 = 1\nhours_s2 = 7\nif hours_s1 is None or hours_s2 is None:\n print('neutral')\nelif hours_s1 == hours_s2:\n print('Entailment')\nelif hours_s1 != hours_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The average number of shirts with Salman , Ambani and Dalmiya is 40 , if all of them reached a shopping mall in Delhi and purchased 8 shirts each of them then average number of shirt each of them now has, \"statement 2\" :The average number of shirts with Salman , Ambani and Dalmiya is less than 80 , if all of them reached a shopping mall in Delhi and purchased 8 shirts each of them then average number of shirt each of them now has, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shirts_s1 = 40\nshirts_s2 = 80\nif shirts_s1 is None or shirts_s2 is None:\n print('neutral')\nelif shirts_s1 < shirts_s2:\n print('Entailment')\nelif shirts_s1 != shirts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Dan works alone for 3 hours and then stops , how many hours will it take Annie , working alone , to complete the job ?, \"statement 2\" :If Dan works alone for more than 2 hours and then stops , how many hours will it take Annie , working alone , to complete the job ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_s1 = 3\nhours_s2 = 2\nif hours_s1 is None or hours_s2 is None:\n print('neutral')\nelif hours_s1 > hours_s2:\n print('Entailment')\nelif hours_s1 != hours_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Arun purchased 30 kg of wheat at the rate of Rs, \"statement 2\" :Arun purchased less than 40 kg of wheat at the rate of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kg_of_wheat_s1 = 30\nkg_of_wheat_s2 = 40\nif kg_of_wheat_s1 is None or kg_of_wheat_s2 is None:\n print('neutral')\nelif kg_of_wheat_s1 < kg_of_wheat_s2:\n print('Entailment')\nelif kg_of_wheat_s1 != kg_of_wheat_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If there are 25 males altogether , how many gerbils does Claire have ?, \"statement 2\" :If there are less than 45 males altogether , how many gerbils does Claire have ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "males_s1 = 25\nmales_s2 = 45\nif males_s1 is None or males_s2 is None:\n print('neutral')\nelif males_s1 < males_s2:\n print('Entailment')\nelif males_s1 != males_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In Kaya ' s teacher ' s desk there are 9 pink highlighters , 8 yellow highlighters , and 5 blue highlighters, \"statement 2\" :In Kaya ' s teacher ' s desk there are 3 pink highlighters , 8 yellow highlighters , and 5 blue highlighters, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "highlighters_s1 = 9\nhighlighters_s2 = 3\nif highlighters_s1 is None or highlighters_s2 is None:\n print('neutral')\nelif highlighters_s1 == highlighters_s2:\n print('Entailment')\nelif highlighters_s1 != highlighters_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Anita goes away and Indu leaves 7 days before the work is finished, \"statement 2\" :Anita goes away and Indu leaves more than 1 days before the work is finished, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_s1 = 7\ndays_s2 = 1\nif days_s1 is None or days_s2 is None:\n print('neutral')\nelif days_s1 > days_s2:\n print('Entailment')\nelif days_s1 != days_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Ram and Krish together can complete the same work in 40 days , then how long will Bhim take to complete it ?, \"statement 2\" :If Ram and Krish together can complete the same work in more than 40 days , then how long will Bhim take to complete it ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_s1 = 40\ndays_s2 = 0\nif days_s1 is None or days_s2 is None:\n print('neutral')\nelif days_s1 == days_s2:\n print('Entailment')\nelif days_s1 != days_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Elena purchased a total of less than 22 of these pens for $ 42.00 , how many brand X pens did she purchase ?, \"statement 2\" :If Elena purchased a total of 12 of these pens for $ 42.00 , how many brand X pens did she purchase ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pens_s1 = None\npens_s2 = 12\nif pens_s1 is None or pens_s2 is None:\n print('neutral')\nelif pens_s1 == pens_s2:\n print('Entailment')\nelif pens_s1 != pens_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Another survey of 120 people in the town of Angie found that 60 % preferred Brand A, \"statement 2\" :Another survey of less than 520 people in the town of Angie found that 60 % preferred Brand A, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_s1 = 120\npeople_s2 = 520\nif people_s1 is None or people_s2 is None:\n print('neutral')\nelif people_s1 < people_s2:\n print('Entailment')\nelif people_s1 != people_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Meg and Bob are among the 7 participants in a cycling race, \"statement 2\" :Meg and Bob are among the less than 8 participants in a cycling race, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "participants_s1 = 7\nparticipants_s2 = 8\nif participants_s1 is None or participants_s2 is None:\n print('neutral')\nelif participants_s1 < participants_s2:\n print('Entailment')\nelif participants_s1 != participants_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Listco employs 72 level - 1 employees , 30 of whom are college graduates, \"statement 2\" :Listco employs more than 52 level - 1 employees , 30 of whom are college graduates, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "level_s1 = 72\nlevel_s2 = 52\nif level_s1 is None or level_s2 is None:\n print('neutral')\nelif level_s1 > level_s2:\n print('Entailment')\nelif level_s1 != level_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Preethi has 6 flavors of ice cream in his parlor, \"statement 2\" :Preethi has 1 flavors of ice cream in his parlor, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "flavors_s1 = 6\nflavors_s2 = 1\nif flavors_s1 is None or flavors_s2 is None:\n print('neutral')\nelif flavors_s1 == flavors_s2:\n print('Entailment')\nelif flavors_s1 != flavors_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": John left a job paying $ 75,000 per year to accept a sales job paying $ 45,000 per year plus less than 35 percent commission, \"statement 2\" :John left a job paying $ 75,000 per year to accept a sales job paying $ 45,000 per year plus 15 percent commission, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "commission_s1 = None\ncommission_s2 = 15\nif commission_s1 is None or commission_s2 is None:\n print('neutral')\nelif commission_s1 == commission_s2:\n print('Entailment')\nelif commission_s1 != commission_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the trip home took less than 3 / 2 hour longer than the trip to the beach , how many kilometers o did Carl drive each way ?, \"statement 2\" :If the trip home took 1 / 2 hour longer than the trip to the beach , how many kilometers o did Carl drive each way ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hour_s1 = None\nhour_s2 = 1/2\nif hour_s1 is None or hour_s2 is None:\n print('neutral')\nelif hour_s1 == hour_s2:\n print('Entailment')\nelif hour_s1 != hour_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": To be considered for \u201c movie of the year , \u201d a film must appear in at least 1 / 4 of the top - 10 - movies lists submitted by the Cinematic Academy \u2019 s 770 members, \"statement 2\" :To be considered for \u201c movie of the year , \u201d a film must appear in at least less than 2 / 4 of the top - 10 - movies lists submitted by the Cinematic Academy \u2019 s 770 members, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "point_s1 = 1/4\npoint_s2 = 2/4\nif point_s1 is None or point_s2 is None:\n print('neutral')\nelif point_s1 < point_s2:\n print('Entailment')\nelif point_s1 != point_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The pilot of a small aircraft with a more than 20 - gallon fuel tank wants to fly to Cleveland , which is 480 miles away, \"statement 2\" :The pilot of a small aircraft with a 60 - gallon fuel tank wants to fly to Cleveland , which is 480 miles away, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gallon_fuel_s1 = None\ngallon_fuel_s2 = 60\nif gallon_fuel_s1 is None or gallon_fuel_s2 is None:\n print('neutral')\nelif gallon_fuel_s1 == gallon_fuel_s2:\n print('Entailment')\nelif gallon_fuel_s1 != gallon_fuel_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Aaron will jog from home at less than 4 miles per hour and then walk back home by the same route at 6 miles per hour, \"statement 2\" :Aaron will jog from home at 3 miles per hour and then walk back home by the same route at 6 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_s1 = None\nmiles_s2 = 3\nif miles_s1 is None or miles_s2 is None:\n print('neutral')\nelif miles_s1 == miles_s2:\n print('Entailment')\nelif miles_s1 != miles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Tom drives from town R to town B , driving at a constant speed of 60 miles per hour, \"statement 2\" :Tom drives from town R to town B , driving at a constant speed of 70 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_s1 = 60\nmiles_s2 = 70\nif miles_s1 is None or miles_s2 is None:\n print('neutral')\nelif miles_s1 == miles_s2:\n print('Entailment')\nelif miles_s1 != miles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Dan leaves City A more than 20 minutes after Cara, \"statement 2\" :Dan leaves City A 90 minutes after Cara, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "minutes_s1 = None\nminutes_s2 = 90\nif minutes_s1 is None or minutes_s2 is None:\n print('neutral')\nelif minutes_s1 == minutes_s2:\n print('Entailment')\nelif minutes_s1 != minutes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Arun purchased 30 kg of wheat at the rate of Rs, \"statement 2\" :Arun purchased more than 30 kg of wheat at the rate of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kg_of_wheat_s1 = 30\nkg_of_wheat_s2 = 0\nif kg_of_wheat_s1 is None or kg_of_wheat_s2 is None:\n print('neutral')\nelif kg_of_wheat_s1 == kg_of_wheat_s2:\n print('Entailment')\nelif kg_of_wheat_s1 != kg_of_wheat_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If 1 / 12 of the passengers on a ship are from North America , 1 / 4 are Europeans , 1 / 9 are from Africa , 1 / 6 are from Asia and the remaining 42 people are citizens of other continents , then how many passengers are on board the ship ?, \"statement 2\" :If less than 1 / 12 of the passengers on a ship are from North America , 1 / 4 are Europeans , 1 / 9 are from Africa , 1 / 6 are from Asia and the remaining 42 people are citizens of other continents , then how many passengers are on board the ship ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "passengers_s1 = 1/12\npassengers_s2 = 0\nif passengers_s1 is None or passengers_s2 is None:\n print('neutral')\nelif passengers_s1 == passengers_s2:\n print('Entailment')\nelif passengers_s1 != passengers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Jerry wants to raise his average by 2 points , what score must he earn on the fourth test ?, \"statement 2\" :If Jerry wants to raise his average by less than 7 points , what score must he earn on the fourth test ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "points_s1 = 2\npoints_s2 = 7\nif points_s1 is None or points_s2 is None:\n print('neutral')\nelif points_s1 < points_s2:\n print('Entailment')\nelif points_s1 != points_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Carolyn bought 17 gumballs , Lew bought 12 gumballs , and Carey bought X gumballs, \"statement 2\" :Carolyn bought 57 gumballs , Lew bought 12 gumballs , and Carey bought X gumballs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gumballs_s1 = 17\ngumballs_s2 = 57\nif gumballs_s1 is None or gumballs_s2 is None:\n print('neutral')\nelif gumballs_s1 == gumballs_s2:\n print('Entailment')\nelif gumballs_s1 != gumballs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": What must be Robin ' s score on a 10 th test for his average score on the 10 tests to be 83 ?, \"statement 2\" :What must be Robin ' s score on a 30 th test for his average score on the 10 tests to be 83 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\ntest_s1 = 10\ntest_s2 = 30\nif test_s1 is None or test_s2 is None:\n print('neutral')\nelif test_s1 == test_s2:\n print('Entailment')\nelif test_s1 != test_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jim runs at 6 miles per hour , and Cara runs at 5 miles per hour, \"statement 2\" :Jim runs at more than 2 miles per hour , and Cara runs at 5 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_s1 = 6\nmiles_s2 = 2\nif miles_s1 is None or miles_s2 is None:\n print('neutral')\nelif miles_s1 > miles_s2:\n print('Entailment')\nelif miles_s1 != miles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Dan works alone for 6 hours and then stops , how many hours will it take Annie , working alone , to complete the job ?, \"statement 2\" :If Dan works alone for less than 8 hours and then stops , how many hours will it take Annie , working alone , to complete the job ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_s1 = 6\nhours_s2 = 8\nif hours_s1 is None or hours_s2 is None:\n print('neutral')\nelif hours_s1 < hours_s2:\n print('Entailment')\nelif hours_s1 != hours_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Each week , Harry is paid x dollars per hour for the first 30 hours and 2 x dollars for each additional hour worked that week, \"statement 2\" :Each week , Harry is paid x dollars per hour for the first 80 hours and 2 x dollars for each additional hour worked that week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_s1 = 30\nhours_s2 = 80\nif hours_s1 is None or hours_s2 is None:\n print('neutral')\nelif hours_s1 == hours_s2:\n print('Entailment')\nelif hours_s1 != hours_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 1300 , Deepak ' s share is :, \"statement 2\" :less than 4300 , Deepak ' s share is :, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "share_s1 = 1300\nshare_s2 = 4300\nif share_s1 is None or share_s2 is None:\n print('neutral')\nelif share_s1 < share_s2:\n print('Entailment')\nelif share_s1 != share_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If T = more than 2 / 9 * ( K - 32 ) , and if T = 20 , then what is the value of K ?, \"statement 2\" :If T = 5 / 9 * ( K - 32 ) , and if T = 20 , then what is the value of K ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "value_s1 = None\nvalue_s2 = 5/9\nif value_s1 is None or value_s2 is None:\n print('neutral')\nelif value_s1 == value_s2:\n print('Entailment')\nelif value_s1 != value_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": How much loss would Indu has suffered had she given it to Bindu for 2 years at 4 % per annum simple interest ?, \"statement 2\" :How much loss would Indu has suffered had she given it to Bindu for 6 years at 4 % per annum simple interest ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_s1 = 2\nyears_s2 = 6\nif years_s1 is None or years_s2 is None:\n print('neutral')\nelif years_s1 == years_s2:\n print('Entailment')\nelif years_s1 != years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Smitha bought 8 Kg of kiwi fruit at an average rate of 360, \"statement 2\" :Smitha bought more than 8 Kg of kiwi fruit at an average rate of 360, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Kg_fruit_s1 = 8\nKg_fruit_s2 = 0\nif Kg_fruit_s1 is None or Kg_fruit_s2 is None:\n print('neutral')\nelif Kg_fruit_s1 == Kg_fruit_s2:\n print('Entailment')\nelif Kg_fruit_s1 != Kg_fruit_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At a meeting of the 5 Joint Chiefs of Staff , the Chief of Naval Operations does not want to sit next to the Chief of the National Guard Bureau, \"statement 2\" :At a meeting of the 1 Joint Chiefs of Staff , the Chief of Naval Operations does not want to sit next to the Chief of the National Guard Bureau, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Chiefs_s1 = 5\nChiefs_s2 = 1\nif Chiefs_s1 is None or Chiefs_s2 is None:\n print('neutral')\nelif Chiefs_s1 == Chiefs_s2:\n print('Entailment')\nelif Chiefs_s1 != Chiefs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 288 and the true discount on the same sum for the same time is Rs, \"statement 2\" :less than 588 and the true discount on the same sum for the same time is Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "discount_s1 = 288\ndiscount_s2 = 588\nif discount_s1 is None or discount_s2 is None:\n print('neutral')\nelif discount_s1 < discount_s2:\n print('Entailment')\nelif discount_s1 != discount_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Marcella has less than 65 pairs of shoes, \"statement 2\" :Marcella has 25 pairs of shoes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shoes_s1 = None\nshoes_s2 = 25\nif shoes_s1 is None or shoes_s2 is None:\n print('neutral')\nelif shoes_s1 == shoes_s2:\n print('Entailment')\nelif shoes_s1 != shoes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": There are 8 stations between Vijayawada and Chennai, \"statement 2\" :There are 2 stations between Vijayawada and Chennai, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stations_s1 = 8\nstations_s2 = 2\nif stations_s1 is None or stations_s2 is None:\n print('neutral')\nelif stations_s1 == stations_s2:\n print('Entailment')\nelif stations_s1 != stations_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 200 , what will be the difference between Mani and Rani ' s share ?, \"statement 2\" :less than 400 , what will be the difference between Mani and Rani ' s share ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "share_s1 = 200\nshare_s2 = 400\nif share_s1 is None or share_s2 is None:\n print('neutral')\nelif share_s1 < share_s2:\n print('Entailment')\nelif share_s1 != share_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Fred walks at a constant speed of less than 7 miles per hour and Sam walks at a constant speed of 5 miles per hour , how many miles has Sam walked when they meet ?, \"statement 2\" :If Fred walks at a constant speed of 2 miles per hour and Sam walks at a constant speed of 5 miles per hour , how many miles has Sam walked when they meet ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_s1 = None\nmiles_s2 = 2\nif miles_s1 is None or miles_s2 is None:\n print('neutral')\nelif miles_s1 == miles_s2:\n print('Entailment')\nelif miles_s1 != miles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Billy has more than 4 apples, \"statement 2\" :Billy has 5 apples, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "apples_s1 = None\napples_s2 = 5\nif apples_s1 is None or apples_s2 is None:\n print('neutral')\nelif apples_s1 == apples_s2:\n print('Entailment')\nelif apples_s1 != apples_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 20 percent of Andrea ' s living room floor is covered by a carpet that is 4 feet by 9 feet, \"statement 2\" :less than 30 percent of Andrea ' s living room floor is covered by a carpet that is 4 feet by 9 feet, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "percent_s1 = 20\npercent_s2 = 30\nif percent_s1 is None or percent_s2 is None:\n print('neutral')\nelif percent_s1 < percent_s2:\n print('Entailment')\nelif percent_s1 != percent_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the toy store is stocked with 3 types of balls and 6 types of board games , how many different selections W of the 4 items can Amanda make ?, \"statement 2\" :If the toy store is stocked with less than 4 types of balls and 6 types of board games , how many different selections W of the 4 items can Amanda make ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "balls_S1 = 3\nballs_S2 = 4\nif balls_S1 is None or balls_S2 is None:\n print('neutral')\nelif balls_S1 < balls_S2:\n print('Entailment')\nelif balls_S1 != balls_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Similarly , there ' s a train that leaves Chennai bound for Jammu on everyday of the week exactly at 12 noon, \"statement 2\" :Similarly , there ' s a train that leaves Chennai bound for Jammu on everyday of the week exactly at less than 12 noon, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "times_S1 = 12\ntimes_S2 = 0\nif times_S1 is None or times_S2 is None:\n print('neutral')\nelif times_S1 < times_S2:\n print('Entailment')\nelif times_S1 != times_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jill works as a waitress at the local diner where she earns an hourly wage of $ 8.00 per hour and a standard tip rate of 30 % of the cost of the orders she serves, \"statement 2\" :Jill works as a waitress at the local diner where she earns an hourly wage of $ 8.00 per hour and a standard tip rate of less than 70 % of the cost of the orders she serves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rate_S1 = 30\nrate_S2 = 70\nif rate_S1 is None or rate_S2 is None:\n print('neutral')\nelif rate_S1 < rate_S2:\n print('Entailment')\nelif rate_S1 != rate_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Each week , Harry is paid x dollars per hour for the first 21 hours and 1.5 x dollars for each additional hour worked that week, \"statement 2\" :Each week , Harry is paid x dollars per hour for the first 11 hours and 1.5 x dollars for each additional hour worked that week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = 21\nhours_S2 = 11\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 == hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Claire has a total of 96 pets consisting of gerbils and hamsters only, \"statement 2\" :Claire has a total of 66 pets consisting of gerbils and hamsters only, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pets_S1 = 96\npets_S2 = 66\nif pets_S1 is None or pets_S2 is None:\n print('neutral')\nelif pets_S1 == pets_S2:\n print('Entailment')\nelif pets_S1 != pets_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Each week , Harry is paid x dollars per hour for the first 21 hours and 1.5 x dollars for each additional hour worked that week, \"statement 2\" :Each week , Harry is paid x dollars per hour for the first more than 11 hours and 1.5 x dollars for each additional hour worked that week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = 21\nhours_S2 = 11\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 > hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 14000 after 8 months , John withdraws Rs, \"statement 2\" :less than 14000 after 8 months , John withdraws Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "withdraws_S1 = 14000\nwithdraws_S2 = 0\nif withdraws_S1 is None or withdraws_S2 is None:\n print('neutral')\nelif withdraws_S1 == withdraws_S2:\n print('Entailment')\nelif withdraws_S1 != withdraws_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Ayisha ' s age is 1 / 6 th of her father ' s age, \"statement 2\" :Ayisha ' s age is less than 3 / 6 th of her father ' s age, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_S1 = 1/6\nage_S2 = 3/6\nif age_S1 is None or age_S2 is None:\n print('neutral')\nelif age_S1 < age_S2:\n print('Entailment')\nelif age_S1 != age_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In a group of 60 people , 35 have visited Iceland and 23 have visited Norway, \"statement 2\" :In a group of more than 20 people , 35 have visited Iceland and 23 have visited Norway, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_S1 = 60\npeople_S2 = 20\nif people_S1 is None or people_S2 is None:\n print('neutral')\nelif people_S1 > people_S2:\n print('Entailment')\nelif people_S1 != people_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Xavier starts from P towards Q at a speed of 90 kmph and after every 12 mins increases his speed by 20 kmph, \"statement 2\" :Xavier starts from P towards Q at a speed of more than 90 kmph and after every 12 mins increases his speed by 20 kmph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_S1 = 90\nspeed_S2 = 0\nif speed_S1 is None or speed_S2 is None:\n print('neutral')\nelif speed_S1 == speed_S2:\n print('Entailment')\nelif speed_S1 != speed_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": After 6 years , Arun ' s age will be 26 years, \"statement 2\" :After 3 years , Arun ' s age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_S1 = 6\nyears_S2 = 3\nif years_S1 is None or years_S2 is None:\n print('neutral')\nelif years_S1 == years_S2:\n print('Entailment')\nelif years_S1 != years_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Kiran travels from A to B by car and returns from B to A by cycle in more than 4 hours, \"statement 2\" :Kiran travels from A to B by car and returns from B to A by cycle in 7 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = None\nhours_S2 = 7\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 == hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Ram and Shyam can do together a piece of work in more than 10 days, \"statement 2\" :Ram and Shyam can do together a piece of work in 20 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_S1 = None\ndays_S2 = 20\nif days_S1 is None or days_S2 is None:\n print('neutral')\nelif days_S1 == days_S2:\n print('Entailment')\nelif days_S1 != days_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Fred and Sam are standing 35 miles apart and they start walking in a straight line toward each other at the same time, \"statement 2\" :Fred and Sam are standing more than 35 miles apart and they start walking in a straight line toward each other at the same time, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_S1 = 35\nmiles_S2 = 0\nif miles_S1 is None or miles_S2 is None:\n print('neutral')\nelif miles_S1 == miles_S2:\n print('Entailment')\nelif miles_S1 != miles_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mike gives you another 17 balls, \"statement 2\" :Mike gives you another less than 77 balls, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "balls_S1 = 17\nballs_S2 = 77\nif balls_S1 is None or balls_S2 is None:\n print('neutral')\nelif balls_S1 < balls_S2:\n print('Entailment')\nelif balls_S1 != balls_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Present ages of Sameer and Anand are in the ratio of more than 3 : 4 respectively, \"statement 2\" :Present ages of Sameer and Anand are in the ratio of 5 : 4 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_S1 = None\nratio_S2 = 5/4\nif ratio_S1 is None or ratio_S2 is None:\n print('neutral')\nelif ratio_S1 == ratio_S2:\n print('Entailment')\nelif ratio_S1 != ratio_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mark sold more than 6 boxes less than n and Ann sold 2 boxes less than n, \"statement 2\" :Mark sold 7 boxes less than n and Ann sold 2 boxes less than n, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boxes_S1 = None\nboxes_S2 = 7\nif boxes_S1 is None or boxes_S2 is None:\n print('neutral')\nelif boxes_S1 == boxes_S2:\n print('Entailment')\nelif boxes_S1 != boxes_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In a group of 6 boys & 4 girls a Committee of 4 persons is to be formed, \"statement 2\" :In a group of more than 2 boys & 4 girls a Committee of 4 persons is to be formed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boys_S1 = 6\nboys_S2 = 2\nif boys_S1 is None or boys_S2 is None:\n print('neutral')\nelif boys_S1 > boys_S2:\n print('Entailment')\nelif boys_S1 != boys_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": During the first two weeks of March , the total rainfall in Springdale was 25 inches, \"statement 2\" :During the first two weeks of March , the total rainfall in Springdale was more than 25 inches, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\ninches_S1 = 25\ninches_S2 = 0\nif inches_S1 is None or inches_S2 is None:\n print('neutral')\nelif inches_S1 == inches_S2:\n print('Entailment')\nelif inches_S1 != inches_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Maddie has 18 apples , if she give 12 to mike , how many does she have left ?, \"statement 2\" :Maddie has 58 apples , if she give 12 to mike , how many does she have left ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "apples_S1 = 18\napples_S2 = 58\nif apples_S1 is None or apples_S2 is None:\n print('neutral')\nelif apples_S1 == apples_S2:\n print('Entailment')\nelif apples_S1 != apples_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Antony can divide his herd into 5 equal parts and also to 6 equal parts , but not to 9 equal parts, \"statement 2\" :Antony can divide his herd into less than 5 equal parts and also to 6 equal parts , but not to 9 equal parts, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "parts_S1 = 5\nparts_S2 = 0\nif parts_S1 is None or parts_S2 is None:\n print('neutral')\nelif parts_S1 == parts_S2:\n print('Entailment')\nelif parts_S1 != parts_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 6600 among John , Jose & Binoy in the ration 2 : 4 : 6, \"statement 2\" :more than 2600 among John , Jose & Binoy in the ration 2 : 4 : 6, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "statement_S1 = 6600\nstatement_S2 = 2600\nif statement_S1 is None or statement_S2 is None:\n print('neutral')\nelif statement_S1 > statement_S2:\n print('Entailment')\nelif statement_S1 != statement_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": John ' s Bank ' s saving amount is decreased less than 80 % due to loan payment and current balance is Rs, \"statement 2\" :John ' s Bank ' s saving amount is decreased 30 % due to loan payment and current balance is Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "loan_S1 = None\nloan_S2 = 30\nif loan_S1 is None or loan_S2 is None:\n print('neutral')\nelif loan_S1 > loan_S2:\n print('Entailment')\nelif loan_S1 != loan_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Molly ' s age in 18 years will be six times her age seven years ago, \"statement 2\" :Molly ' s age in more than 18 years will be six times her age seven years ago, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_S1 = 18\nyears_S2 = 0\nif years_S1 is None or years_S2 is None:\n print('neutral')\nelif years_S1 == years_S2:\n print('Entailment')\nelif years_S1 != years_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Carolyn bought 16 gumballs , Lew bought 14 gumballs , and Carey bought X gumballs, \"statement 2\" :Carolyn bought less than 46 gumballs , Lew bought 14 gumballs , and Carey bought X gumballs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gumballs_S1 = 16\ngumballs_S2 = 46\nif gumballs_S1 is None or gumballs_S2 is None:\n print('neutral')\nelif gumballs_S1 < gumballs_S2:\n print('Entailment')\nelif gumballs_S1 != gumballs_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mary has 2 puppies , 9 birds , 4 fishes, \"statement 2\" :Mary has less than 5 puppies , 9 birds , 4 fishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "puppies_S1 = 2\npuppies_S2 = 5\nif puppies_S1 is None or puppies_S2 is None:\n print('neutral')\nelif puppies_S1 < puppies_S2:\n print('Entailment')\nelif puppies_S1 != puppies_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Each week , James is paid x dollars per per hour for the first 40 hours and 1.5 x dollars for each additional hour worked that week, \"statement 2\" :Each week , James is paid x dollars per per hour for the first less than 70 hours and 1.5 x dollars for each additional hour worked that week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = 40\nhours_S2 = 70\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 < hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Rahul paid a total of $ 160 , excluding sales tax , to rent the tool , for how many hours did she rent it ?, \"statement 2\" :If Rahul paid a total of $ 760 , excluding sales tax , to rent the tool , for how many hours did she rent it ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dollar_S1 = 160\ndollar_S2 = 760\nif dollar_S1 is None or dollar_S2 is None:\n print('neutral')\nelif dollar_S1 == dollar_S2:\n print('Entailment')\nelif dollar_S1 != dollar_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mark sold 6 boxes less than n and Ann sold 2 boxes less than n, \"statement 2\" :Mark sold more than 1 boxes less than n and Ann sold 2 boxes less than n, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boxes_S1 = 6\nboxes_S2 = 1\nif boxes_S1 is None or boxes_S2 is None:\n print('neutral')\nelif boxes_S1 > boxes_S2:\n print('Entailment')\nelif boxes_S1 != boxes_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Calculate the average mark scored by Andrea if he had the following scores in an examination : less than 76 , 60 , 72 , 77 , 55 and 85 marks ( out of 100 ) in English , Mathematics , Chemistry , Biology , French Language and Physics respectively ?, \"statement 2\" :Calculate the average mark scored by Andrea if he had the following scores in an examination : 66 , 60 , 72 , 77 , 55 and 85 marks ( out of 100 ) in English , Mathematics , Chemistry , Biology , French Language and Physics respectively ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mark_scored_S1 = None\nmark_scored_S2 = 66\nif mark_scored_S1 is None or mark_scored_S2 is None:\n print('neutral')\nelif mark_scored_S1 == mark_scored_S2:\n print('Entailment')\nelif mark_scored_S1 != mark_scored_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 7 people entered the theater between Sujit and Suraj and 20 people entered the theater after Suraj, \"statement 2\" :8 people entered the theater between Sujit and Suraj and 20 people entered the theater after Suraj, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_S1 = 7\npeople_S2 = 8\nif people_S1 is None or people_S2 is None:\n print('neutral')\nelif people_S1 == people_S2:\n print('Entailment')\nelif people_S1 != people_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the toy store is stocked with 3 types of balls and 6 types of board games , how many different selections R of the 4 items can Amanda make ?, \"statement 2\" :If the toy store is stocked with more than 1 types of balls and 6 types of board games , how many different selections R of the 4 items can Amanda make ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "balls_S1 = 3\nballs_S2 = 1\nif balls_S1 is None or balls_S2 is None:\n print('neutral')\nelif balls_S1 > balls_S2:\n print('Entailment')\nelif balls_S1 != balls_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jill works as a waitress at the local diner where she earns an hourly wage of $ 10.00 per hour and a standard tip rate of 40 % of the cost of the orders she serves, \"statement 2\" :Jill works as a waitress at the local diner where she earns an hourly wage of $ 10.00 per hour and a standard tip rate of less than 80 % of the cost of the orders she serves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rate_S1 = 40\nrate_S2 = 80\nif rate_S1 is None or rate_S2 is None:\n print('neutral')\nelif rate_S1 < rate_S2:\n print('Entailment')\nelif rate_S1 != rate_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Maddie has less than 88 apples , if she give 12 to mike , how many does she have left ?, \"statement 2\" :Maddie has 18 apples , if she give 12 to mike , how many does she have left ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "apples_S1 = None\napples_S2 = 18\nif apples_S1 is None or apples_S2 is None:\n print('neutral')\nelif apples_S1 == apples_S2:\n print('Entailment')\nelif apples_S1 != apples_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": City A to city B , Andrew drove for less than 5 hr at 40 mph and for 3 hours at 60 mph, \"statement 2\" :City A to city B , Andrew drove for 1 hr at 40 mph and for 3 hours at 60 mph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nhr_S1 = None\nhr_S2 = 1\nif hr_S1 is None or hr_S2 is None:\n print('neutral')\nelif hr_S1 == hr_S2:\n print('Entailment')\nelif hr_S1 != hr_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Last year less than 56 members of a certain club traveled to England , 26 members traveled to France , and 32 members traveled to Italy, \"statement 2\" :Last year 26 members of a certain club traveled to England , 26 members traveled to France , and 32 members traveled to Italy, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "members_S1 = None\nmembers_S2 = 26\nif members_S1 is None or members_S2 is None:\n print('neutral')\nelif members_S1 == members_S2:\n print('Entailment')\nelif members_S1 != members_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Shop Offered less than 70 % offer for every Shirt , Smith bought a shirt at Rs, \"statement 2\" :Shop Offered 30 % offer for every Shirt , Smith bought a shirt at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "offer_S1 = None\noffer_S2 = 30\nif offer_S1 is None or offer_S2 is None:\n print('neutral')\nelif offer_S1 == offer_S2:\n print('Entailment')\nelif offer_S1 != offer_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Assuming that Karen drives at an average speed of 60 mph and Tom drives at an average speed of 45 mph , how many Q miles will Tom drive before Karen wins the bet ?, \"statement 2\" :Assuming that Karen drives at an average speed of less than 80 mph and Tom drives at an average speed of 45 mph , how many Q miles will Tom drive before Karen wins the bet ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_S1 = 60\nspeed_S2 = 80\nif speed_S1 is None or speed_S2 is None:\n print('neutral')\nelif speed_S1 < speed_S2:\n print('Entailment')\nelif speed_S1 != speed_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Angela has 13 pairs of matched socks, \"statement 2\" :Angela has 83 pairs of matched socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "socks_S1 = 13\nsocks_S2 = 83\nif socks_S1 is None or socks_S2 is None:\n print('neutral')\nelif socks_S1 == socks_S2:\n print('Entailment')\nelif socks_S1 != socks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Lena \u2019 s grade was in the 80 th percentile out of 120 grades in her class, \"statement 2\" :Lena \u2019 s grade was in the more than 30 th percentile out of 120 grades in her class, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "percentile_S1 = 80\npercentile_S2 = 30\nif percentile_S1 is None or percentile_S2 is None:\n print('neutral')\nelif percentile_S1 > percentile_S2:\n print('Entailment')\nelif percentile_S1 != percentile_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 4000 but the average salary of Raj , Roshan and Thomas is Rs, \"statement 2\" :less than 5000 but the average salary of Raj , Roshan and Thomas is Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "salary_S1 = 4000\nsalary_S2 = 5000\nif salary_S1 is None or salary_S2 is None:\n print('neutral')\nelif salary_S1 < salary_S2:\n print('Entailment')\nelif salary_S1 != salary_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Andrew purchased 7 kg of grapes at the rate of 68 per kg and 9 kg of mangoes at the rate of 48 per kg, \"statement 2\" :Andrew purchased less than 7 kg of grapes at the rate of 68 per kg and 9 kg of mangoes at the rate of 48 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "grapes_S1 = 7\ngrapes_S2 = 0\nif grapes_S1 is None or grapes_S2 is None:\n print('neutral')\nelif grapes_S1 == grapes_S2:\n print('Entailment')\nelif grapes_S1 != grapes_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Karen places a bet with Tom that she will beat Tom in a car race by 4 miles even if Karen starts 4 minutes late, \"statement 2\" :Karen places a bet with Tom that she will beat Tom in a car race by 6 miles even if Karen starts 4 minutes late, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_S1 = 4\nmiles_S2 = 6\nif miles_S1 is None or miles_S2 is None:\n print('neutral')\nelif miles_S1 == miles_S2:\n print('Entailment')\nelif miles_S1 != miles_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Arun obtained 76 , 65 , 82 , 67 and 85 marks ( out in 100 ) in English , Mathematics , Chemistry , Biology and Physics, \"statement 2\" :Arun obtained more than 46 , 65 , 82 , 67 and 85 marks ( out in 100 ) in English , Mathematics , Chemistry , Biology and Physics, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nmarks_S1 = 76\nmarks_S2 = 46\nif marks_S1 is None or marks_S2 is None:\n print('neutral')\nelif marks_S1 > marks_S2:\n print('Entailment')\nelif marks_S1 != marks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Last year no members of the club traveled to both England and France , less than 7 members traveled to both England and Italy , and 11 members traveled to both France and Italy, \"statement 2\" :Last year no members of the club traveled to both England and France , 6 members traveled to both England and Italy , and 11 members traveled to both France and Italy, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "members_S1 = None\nmembers_S2 = 6\nif members_S1 is None or members_S2 is None:\n print('neutral')\nelif members_S1 == members_S2:\n print('Entailment')\nelif members_S1 != members_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Maddie has 48 apples , if she give 22 to mike , how many does she have left ?, \"statement 2\" :Maddie has more than 18 apples , if she give 22 to mike , how many does she have left ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "apples_S1 = 48\napples_S2 = 18\nif apples_S1 is None or apples_S2 is None:\n print('neutral')\nelif apples_S1 > apples_S2:\n print('Entailment')\nelif apples_S1 != apples_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Luckily Saren negotiated a 20 % discount for the present so that each of them paid 4 dollars less, \"statement 2\" :Luckily Saren negotiated a less than 30 % discount for the present so that each of them paid 4 dollars less, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "discount_S1 = 20\ndiscount_S2 = 30\nif discount_S1 is None or discount_S2 is None:\n print('neutral')\nelif discount_S1 < discount_S2:\n print('Entailment')\nelif discount_S1 != discount_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Q : Robert purchased $ 1500 worth of US saving bonds, \"statement 2\" :Q : Robert purchased $ less than 6500 worth of US saving bonds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dollar_S1 = 1500\nDollar_S2 = 6500\nif Dollar_S1 is None or Dollar_S2 is None:\n print('neutral')\nelif Dollar_S1 < Dollar_S2:\n print('Entailment')\nelif Dollar_S1 != Dollar_S2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If she worked four 16 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"statement 2\" :If she worked four less than 36 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hour_S1 = 16\nhour_S2 = 36\nif hour_S1 is None or hour_S2 is None:\n print('neutral')\nelif hour_S1 < hour_S2:\n print('Entailment')\nelif hour_S1 != hour_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If T = 5 / 9 * ( K - 32 ) , and if T = 20 , then what is the value of K ?, \"statement 2\" :If T = less than 5 / 9 * ( K - 32 ) , and if T = 20 , then what is the value of K ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "value_S1 = 5/9\nvalue_S2 = 0\nif value_S1 is None or value_S2 is None:\n print('neutral')\nelif value_S1 == value_S2:\n print('Entailment')\nelif value_S1 != value_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": There are 4 more women than men on Centerville ' s board of education, \"statement 2\" :There are less than 6 more women than men on Centerville ' s board of education, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "women_S1 = 4\nwomen_S2 = 6\nif women_S1 is None or women_S2 is None:\n print('neutral')\nelif women_S1 < women_S2:\n print('Entailment')\nelif women_S1 != women_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Arun obtained more than 46 , 65 , 82 , 67 and 85 marks ( out in 100 ) in English , Mathematics , Chemistry , Biology and Physics, \"statement 2\" :Arun obtained 76 , 65 , 82 , 67 and 85 marks ( out in 100 ) in English , Mathematics , Chemistry , Biology and Physics, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_S1 = None\nmarks_S2 = 76\nif marks_S1 is None or marks_S2 is None:\n print('neutral')\nelif marks_S1 == marks_S2:\n print('Entailment')\nelif marks_S1 != marks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": A bus started its journey from Mumbai and reached Pune in 44 min with its average speed of 50 km / hr, \"statement 2\" :A bus started its journey from Mumbai and reached Pune in more than 24 min with its average speed of 50 km / hr, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "min_S1 = 44\nmin_S2 = 24\nif min_S1 is None or min_S2 is None:\n print('neutral')\nelif min_S1 > min_S2:\n print('Entailment')\nelif min_S1 != min_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At Veridux Corporation , there are less than 280 employees, \"statement 2\" :At Veridux Corporation , there are 180 employees, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "employees_S1 = None\nemployees_S2 = 180\nif employees_S1 is None or employees_S2 is None:\n print('neutral')\nelif employees_S1 == employees_S2:\n print('Entailment')\nelif employees_S1 != employees_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Andy solves problems more than 30 to 125 inclusive in a Math exercise, \"statement 2\" :Andy solves problems 70 to 125 inclusive in a Math exercise, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "problems_S1 = None\nproblems_S2 = 70\nif problems_S1 is None or problems_S2 is None:\n print('neutral')\nelif problems_S1 == problems_S2:\n print('Entailment')\nelif problems_S1 != problems_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Anita , Indu and Geeta can do a piece of work in less than 38 days , 27 days and 36 days respectively, \"statement 2\" :Anita , Indu and Geeta can do a piece of work in 18 days , 27 days and 36 days respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_S1 = None\ndays_S2 = 18\nif days_S1 is None or days_S2 is None:\n print('neutral')\nelif days_S1 == days_S2:\n print('Entailment')\nelif days_S1 != days_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jim runs at 6 miles per hour , and Cara runs at 5 miles per hour, \"statement 2\" :Jim runs at less than 6 miles per hour , and Cara runs at 5 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_S1 = 6\nmiles_S2 = 0\nif miles_S1 is None or miles_S2 is None:\n print('neutral')\nelif miles_S1 == miles_S2:\n print('Entailment')\nelif miles_S1 != miles_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the distance between their homes is 40 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"statement 2\" :If the distance between their homes is 80 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kilometers_S1 = 40\nkilometers_S2 = 80\nif kilometers_S1 is None or kilometers_S2 is None:\n print('neutral')\nelif kilometers_S1 == kilometers_S2:\n print('Entailment')\nelif kilometers_S1 != kilometers_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The time required by a train to cover the distance between Chennai and Jammu is exactly 7 days and 1 minute, \"statement 2\" :The time required by a train to cover the distance between Chennai and Jammu is exactly more than 6 days and 1 minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_S1 = 7\ndays_S2 = 6\nif days_S1 is None or days_S2 is None:\n print('neutral')\nelif days_S1 > days_S2:\n print('Entailment')\nelif days_S1 != days_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": There are 18 stations between Hyderabad and Bangalore, \"statement 2\" :There are less than 48 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stations_S1 = 18\nstations_S2 = 48\nif stations_S1 is None or stations_S2 is None:\n print('neutral')\nelif stations_S1 < stations_S2:\n print('Entailment')\nelif stations_S1 != stations_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Lilly has 10 fish and Rosy has 9 fish, \"statement 2\" :Lilly has less than 60 fish and Rosy has 9 fish, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "fish_S1 = 10\nfish_S2 = 60\nif fish_S1 is None or fish_S2 is None:\n print('neutral')\nelif fish_S1 < fish_S2:\n print('Entailment')\nelif fish_S1 != fish_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Andy solves problems 70 to 125 inclusive in a Math exercise, \"statement 2\" :Andy solves problems more than 30 to 125 inclusive in a Math exercise, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "problems_S1 = 70\nproblems_S2 = 30\nif problems_S1 is None or problems_S2 is None:\n print('neutral')\nelif problems_S1 > problems_S2:\n print('Entailment')\nelif problems_S1 != problems_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If X , Y and Z are digits and more than 5 XYZ is a 4 - digit number that is divisible by 2 , which of the following is a possible product of X , Y and Z ?, \"statement 2\" :If X , Y and Z are digits and 7 XYZ is a 4 - digit number that is divisible by 2 , which of the following is a possible product of X , Y and Z ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "digits_S1 = None\ndigits_S2 = 7\nif digits_S1 is None or digits_S2 is None:\n print('neutral')\nelif digits_S1 == digits_S2:\n print('Entailment')\nelif digits_S1 != digits_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If 25 % of all the students at Morse have cars , how many students are in the three lower grades ?, \"statement 2\" :If less than 35 % of all the students at Morse have cars , how many students are in the three lower grades ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "students_S1 = 25\nstudents_S2 = 35\nif students_S1 is None or students_S2 is None:\n print('neutral')\nelif students_S1 < students_S2:\n print('Entailment')\nelif students_S1 != students_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The pilot of a small aircraft with a 40 - gallon fuel tank wants to fly to Cleveland , which is 480 miles away, \"statement 2\" :The pilot of a small aircraft with a 50 - gallon fuel tank wants to fly to Cleveland , which is 480 miles away, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gallon_fuel_S1 = 40\ngallon_fuel_S2 = 50\nif gallon_fuel_S1 is None or gallon_fuel_S2 is None:\n print('neutral')\nelif gallon_fuel_S1 == gallon_fuel_S2:\n print('Entailment')\nelif gallon_fuel_S1 != gallon_fuel_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Kiran has 85 currency notes in all , some of which were of Rs, \"statement 2\" :Kiran has more than 55 currency notes in all , some of which were of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "currency_S1 = 85\ncurrency_S2 = 55\nif currency_S1 is None or currency_S2 is None:\n print('neutral')\nelif currency_S1 > currency_S2:\n print('Entailment')\nelif currency_S1 != currency_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Billy has less than 20 apples, \"statement 2\" :Billy has 10 apples, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "apples_S1 = None\napples_S2 = 10\nif apples_S1 is None or apples_S2 is None:\n print('neutral')\nelif apples_S1 == apples_S2:\n print('Entailment')\nelif apples_S1 != apples_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Stacy has a 66 page history paper due in 6 days, \"statement 2\" :Stacy has a more than 66 page history paper due in 6 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "page_S1 = 66\npage_S2 = 0\nif page_S1 is None or page_S2 is None:\n print('neutral')\nelif page_S1 == page_S2:\n print('Entailment')\nelif page_S1 != page_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Suraj has a certain average of runs for 8 innings, \"statement 2\" :Suraj has a certain average of runs for 4 innings, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "innings_S1 = 8\ninnings_S2 = 4\nif innings_S1 is None or innings_S2 is None:\n print('neutral')\nelif innings_S1 == innings_S2:\n print('Entailment')\nelif innings_S1 != innings_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": David obtained 86 , 85 , 82 , 87 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"statement 2\" :David obtained more than 16 , 85 , 82 , 87 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_S1 = 86\nmarks_S2 = 16\nif marks_S1 is None or marks_S2 is None:\n print('neutral')\nelif marks_S1 > marks_S2:\n print('Entailment')\nelif marks_S1 != marks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Diane find less than 2 can of paint are just enough to paint one third of her room, \"statement 2\" :Diane find 1 can of paint are just enough to paint one third of her room, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "can_S1 = None\ncan_S2 = 1\nif can_S1 is None or can_S2 is None:\n print('neutral')\nelif can_S1 == can_S2:\n print('Entailment')\nelif can_S1 != can_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The total of the ages of Amar , Akbar and Anthony is more than 35 years, \"statement 2\" :The total of the ages of Amar , Akbar and Anthony is 45 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_S1 = None\nyears_S2 = 45\nif years_S1 is None or years_S2 is None:\n print('neutral')\nelif years_S1 == years_S2:\n print('Entailment')\nelif years_S1 != years_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In John ' s School , there are more than 20 boys of age 14 each , 70 boys of age 15 each & 50 boys of age 13 each and another 60 boys of age 12 each, \"statement 2\" :In John ' s School , there are 80 boys of age 14 each , 70 boys of age 15 each & 50 boys of age 13 each and another 60 boys of age 12 each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boys_S1 = None\nboys_S2 = 80\nif boys_S1 is None or boys_S2 is None:\n print('neutral')\nelif boys_S1 == boys_S2:\n print('Entailment')\nelif boys_S1 != boys_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Lilly has 10 fish and Rosy has 9 fish, \"statement 2\" :Lilly has 30 fish and Rosy has 9 fish, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "fish_S1 = 10\nfish_S2 = 30\nif fish_S1 is None or fish_S2 is None:\n print('neutral')\nelif fish_S1 == fish_S2:\n print('Entailment')\nelif fish_S1 != fish_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 4800 among John , Jose & Binoy in the ration 2 : 4 : 6, \"statement 2\" :more than 3800 among John , Jose & Binoy in the ration 2 : 4 : 6, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ration_S1 = 4800\nration_S2 = 3800\nif ration_S1 is None or ration_S2 is None:\n print('neutral')\nelif ration_S1 > ration_S2:\n print('Entailment')\nelif ration_S1 != ration_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Elena purchased a total of 12 of these pens for $ 42.00 , how many brand X pens did she purchase ?, \"statement 2\" :If Elena purchased a total of more than 12 of these pens for $ 42.00 , how many brand X pens did she purchase ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pens_S1 = 12\npens_S2 = 0\nif pens_S1 is None or pens_S2 is None:\n print('neutral')\nelif pens_S1 == pens_S2:\n print('Entailment')\nelif pens_S1 != pens_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Following the approval of crude oil production cuts by OPEC , the price of crude which has slumped by less than 68 % in the last 3 months is expected to rally and increase by about 5 % in the next one month, \"statement 2\" :Following the approval of crude oil production cuts by OPEC , the price of crude which has slumped by 28 % in the last 3 months is expected to rally and increase by about 5 % in the next one month, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "price_S1 = None\nprice_S2 = 28\nif price_S1 is None or price_S2 is None:\n print('neutral')\nelif price_S1 == price_S2:\n print('Entailment')\nelif price_S1 != price_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than less than 80 % ?, \"statement 2\" :If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than 70 % ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "departure_rate_S1 = None\ndeparture_rate_S2 = 70\nif departure_rate_S1 is None or departure_rate_S2 is None:\n print('neutral')\nelif departure_rate_S1 == departure_rate_S2:\n print('Entailment')\nelif departure_rate_S1 != departure_rate_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If less than 41 people have visited both Iceland and Norway , how many people have visited neither country ?, \"statement 2\" :If 31 people have visited both Iceland and Norway , how many people have visited neither country ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_S1 = None\npeople_S2 = 31\nif people_S1 is None or people_S2 is None:\n print('neutral')\nelif people_S1 == people_S2:\n print('Entailment')\nelif people_S1 != people_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": One hour after Matthew started waking from r to y , a distance of 45 km , Johnny started walking along the same road from y to r, \"statement 2\" :One hour after Matthew started waking from r to y , a distance of more than 35 km , Johnny started walking along the same road from y to r, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_S1 = 45\ndistance_S2 = 35\nif distance_S1 is None or distance_S2 is None:\n print('neutral')\nelif distance_S1 > distance_S2:\n print('Entailment')\nelif distance_S1 != distance_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Calculate the average mark scored by Andrea if he had the following scores in an examination : 66 , 60 , 72 , 77 , 55 and 85 marks ( out of 100 ) in English , Mathematics , Chemistry , Biology , French Language and Physics respectively ?, \"statement 2\" :Calculate the average mark scored by Andrea if he had the following scores in an examination : less than 66 , 60 , 72 , 77 , 55 and 85 marks ( out of 100 ) in English , Mathematics , Chemistry , Biology , French Language and Physics respectively ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "scores_S1 = 66\nscores_S2 = 0\nif scores_S1 is None or scores_S2 is None:\n print('neutral')\nelif scores_S1 == scores_S2:\n print('Entailment')\nelif scores_S1 != scores_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the distance between their homes is less than 80 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"statement 2\" :If the distance between their homes is 20 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kilometers_S1 = None\nkilometers_S2 = 20\nif kilometers_S1 is None or kilometers_S2 is None:\n print('neutral')\nelif kilometers_S1 == kilometers_S2:\n print('Entailment')\nelif kilometers_S1 != kilometers_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At the same time Joyce gets on an elevator on the 71 st floor of the same building and rides down at a rate of 93 floors per minute, \"statement 2\" :At the same time Joyce gets on an elevator on the more than 51 st floor of the same building and rides down at a rate of 93 floors per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nfloor_S1 = 71\nfloor_S2 = 51\nif floor_S1 is None or floor_S2 is None:\n print('neutral')\nelif floor_S1 > floor_S2:\n print('Entailment')\nelif floor_S1 != floor_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": City A to city B , Andrew drove for 1 hour at 50 mph and for 3 hours at 60 mph, \"statement 2\" :City A to city B , Andrew drove for 7 hour at 50 mph and for 3 hours at 60 mph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hour_S1 = 1\nhour_S2 = 7\nif hour_S1 is None or hour_S2 is None:\n print('neutral')\nelif hour_S1 > hour_S2:\n print('Entailment')\nelif hour_S1 != hour_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If ` ` YELLOW ' ' is given a color code of more than 62 , what is the difference between ` ` BROWN ' ' and ` ` RED ' ' ?, \"statement 2\" :If ` ` YELLOW ' ' is given a color code of 92 , what is the difference between ` ` BROWN ' ' and ` ` RED ' ' ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "color_code_S1 = None\ncolor_code_S2 = 92\nif color_code_S1 is None or color_code_S2 is None:\n print('neutral')\nelif color_code_S1 == color_code_S2:\n print('Entailment')\nelif color_code_S1 != color_code_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Carol ' s rectangle measures less than 52 inches by 15 inches and Jordan ' s rectangle is 9 inches long , how wide is Jordan ' s rectangle , in inches ?, \"statement 2\" :If Carol ' s rectangle measures 12 inches by 15 inches and Jordan ' s rectangle is 9 inches long , how wide is Jordan ' s rectangle , in inches ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "inches_S1 = None\ninches_S2 = 12\nif inches_S1 is None or inches_S2 is None:\n print('neutral')\nelif inches_S1 == inches_S2:\n print('Entailment')\nelif inches_S1 != inches_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Sacha runs at a constant speed of 6 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"statement 2\" :Sacha runs at a constant speed of more than 1 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "meters_S1 = 6\nmeters_S2 = 1\nif meters_S1 is None or meters_S2 is None:\n print('neutral')\nelif meters_S1 > meters_S2:\n print('Entailment')\nelif meters_S1 != meters_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Smitha bought more than 5 Kg of kiwi fruit at an average rate of 360, \"statement 2\" :Smitha bought 8 Kg of kiwi fruit at an average rate of 360, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kiwi_S1 = None\nkiwi_S2 = 8\nif kiwi_S1 is None or kiwi_S2 is None:\n print('neutral')\nelif kiwi_S1 == kiwi_S2:\n print('Entailment')\nelif kiwi_S1 != kiwi_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": less than 6500 find the share of Tony ., \"statement 2\" :4500 find the share of Tony ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "share_S1 = None\nshare_S2 = 4500\nif share_S1 is None or share_S2 is None:\n print('neutral')\nelif share_S1 == share_S2:\n print('Entailment')\nelif share_S1 != share_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mary played the game , getting at least one score of each of 1 , 2 , and 3 , and never getting the same score in consecutive steps, \"statement 2\" :Mary played the game , getting at least one score of each of less than 1 , 2 , and 3 , and never getting the same score in consecutive steps, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "score_S1 = 1\nscore_S2 = 0\nif score_S1 is None or score_S2 is None:\n print('neutral')\nelif score_S1 == score_S2:\n print('Entailment')\nelif score_S1 != score_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Anup was asked to find the value of 7 / 12 of a sum of money T, \"statement 2\" :Anup was asked to find the value of more than 4 / 12 of a sum of money T, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "value_S1 = 7/12\nvalue_S2 = 4/12\nif value_S1 is None or value_S2 is None:\n print('neutral')\nelif value_S1 > value_S2:\n print('Entailment')\nelif value_S1 != value_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Smita Was Making A Cube With Dimensions more than 3 * 5 * 5 Using 1 * 1 * 1 Cubes, \"statement 2\" :Smita Was Making A Cube With Dimensions 5 * 5 * 5 Using 1 * 1 * 1 Cubes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dimensions_S1 = None\nDimensions_S2 = 5*5*5\nif Dimensions_S1 is None or Dimensions_S2 is None:\n print('neutral')\nelif Dimensions_S1 == Dimensions_S2:\n print('Entailment')\nelif Dimensions_S1 != Dimensions_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": It will take less than 86 days for Mary to complete a certain task alone, \"statement 2\" :It will take 16 days for Mary to complete a certain task alone, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_S1 = None\ndays_S2 = 16\nif days_S1 is None or days_S2 is None:\n print('neutral')\nelif days_S1 == days_S2:\n print('Entailment')\nelif days_S1 != days_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": City A to city B , Andrew drove for 1 hr at 44 mph and for 3 hours at 60 mph, \"statement 2\" :City A to city B , Andrew drove for less than 1 hr at 44 mph and for 3 hours at 60 mph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "drove_S1 = 1\ndrove_S2 = 0\nif drove_S1 is None or drove_S2 is None:\n print('neutral')\nelif drove_S1 == drove_S2:\n print('Entailment')\nelif drove_S1 != drove_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the ratio of area of triangle ADE to that of the trapezium DECB is 144 : 25 and BC = 13 cm , then find the length of DE ., \"statement 2\" :If the ratio of area of triangle ADE to that of the trapezium DECB is 244 : 25 and BC = 13 cm , then find the length of DE ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_S1 = 144\nratio_S2 = 244\nif ratio_S1 is None or ratio_S2 is None:\n print('neutral')\nelif ratio_S1 == ratio_S2:\n print('Entailment')\nelif ratio_S1 != ratio_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Last week James worked a total of 45 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"statement 2\" :Last week James worked a total of 35 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = 45\nhours_S2 = 35\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 == hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jane started baby - sitting when she was 20 years old, \"statement 2\" :Jane started baby - sitting when she was less than 40 years old, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_S1 = 20\nyears_S2 = 40\nif years_S1 is None or years_S2 is None:\n print('neutral')\nelif years_S1 < years_S2:\n print('Entailment')\nelif years_S1 != years_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": David obtained 76 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , mathematics , physics , chemistry and biology, \"statement 2\" :David obtained less than 76 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , mathematics , physics , chemistry and biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_S1 = 76\nmarks_S2 = 0\nif marks_S1 is None or marks_S2 is None:\n print('neutral')\nelif marks_S1 == marks_S2:\n print('Entailment')\nelif marks_S1 != marks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": There are 4 more women than men on Centerville ' s board of education, \"statement 2\" :There are 1 more women than men on Centerville ' s board of education, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "women_S1 = 4\nwomen_S2 = 1\nif women_S1 is None or women_S2 is None:\n print('neutral')\nelif women_S1 == women_S2:\n print('Entailment')\nelif women_S1 != women_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At the end of ' n ' years , Sandy got back less than 3 times the original investment, \"statement 2\" :At the end of ' n ' years , Sandy got back 2 times the original investment, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "times_S1 = None\ntimes_S2 = 2\nif times_S1 is None or times_S2 is None:\n print('neutral')\nelif times_S1 == times_S2:\n print('Entailment')\nelif times_S1 != times_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Ana goes before more than 2 P, \"statement 2\" :Ana goes before 8 P, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "p_S1 = None\np_S2 = 8\nif p_S1 is None or p_S2 is None:\n print('neutral')\nelif p_S1 == p_S2:\n print('Entailment')\nelif p_S1 != p_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Ana goes before 8 P, \"statement 2\" :Ana goes before less than 8 P, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "p_S1 = 8\np_S2 = 0\nif p_S1 is None or p_S2 is None:\n print('neutral')\nelif p_S1 == p_S2:\n print('Entailment')\nelif p_S1 != p_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If she worked four 8 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"statement 2\" :If she worked four more than 8 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hour_S1 = 8\nhour_S2 = 0\nif hour_S1 is None or hour_S2 is None:\n print('neutral')\nelif hour_S1 == hour_S2:\n print('Entailment')\nelif hour_S1 != hour_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jerry left a job paying $ 75,000 per year to accept a sales job paying $ 45,000 per year plus less than 45 percent commission, \"statement 2\" :Jerry left a job paying $ 75,000 per year to accept a sales job paying $ 45,000 per year plus 15 percent commission, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "percent_S1 = None\npercent_S2 = 15\nif percent_S1 is None or percent_S2 is None:\n print('neutral')\nelif percent_S1 == percent_S2:\n print('Entailment')\nelif percent_S1 != percent_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Raman mixed less than 84 kg of butter at Rs, \"statement 2\" :Raman mixed 44 kg of butter at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "butter_S1 = None\nbutter_S2 = 44\nif butter_S1 is None or butter_S2 is None:\n print('neutral')\nelif butter_S1 == butter_S2:\n print('Entailment')\nelif butter_S1 != butter_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Diane find 1 can of paint are just enough to paint one third of her room, \"statement 2\" :Diane find less than 1 can of paint are just enough to paint one third of her room, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "can_S1 = 1\ncan_S2 = 0\nif can_S1 is None or can_S2 is None:\n print('neutral')\nelif can_S1 == can_S2:\n print('Entailment')\nelif can_S1 != can_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": One hour after Yolanda started walking from X to Y , a distance of less than 81 miles , Bob started walking along the same road from Y to X, \"statement 2\" :One hour after Yolanda started walking from X to Y , a distance of 31 miles , Bob started walking along the same road from Y to X, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_S1 = None\nmiles_S2 = 31\nif miles_S1 is None or miles_S2 is None:\n print('neutral')\nelif miles_S1 == miles_S2:\n print('Entailment')\nelif miles_S1 != miles_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Four different children have jelly beans : Aaron has 5 , Bianca has 7 , Callie has 8 , and Dante has 13, \"statement 2\" :Four different children have jelly beans : Aaron has less than 7 , Bianca has 7 , Callie has 8 , and Dante has 13, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "beans_S1 = 5\nbeans_S2 = 7\nif beans_S1 is None or beans_S2 is None:\n print('neutral')\nelif beans_S1 < beans_S2:\n print('Entailment')\nelif beans_S1 != beans_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Dacid obtained more than 16 , 89 , 82 , 87 and 81 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained 86 , 89 , 82 , 87 and 81 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_S1 = None\nmarks_S2 = 86\nif marks_S1 is None or marks_S2 is None:\n print('neutral')\nelif marks_S1 == marks_S2:\n print('Entailment')\nelif marks_S1 != marks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Fred walks at a constant speed of 2 miles per hour and Sam walks at a constant speed of 5 miles per hour , how many miles has Sam walked when they meet ?, \"statement 2\" :If Fred walks at a constant speed of less than 7 miles per hour and Sam walks at a constant speed of 5 miles per hour , how many miles has Sam walked when they meet ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_S1 = 2\nmiles_S2 = 7\nif miles_S1 is None or miles_S2 is None:\n print('neutral')\nelif miles_S1 < miles_S2:\n print('Entailment')\nelif miles_S1 != miles_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than 60 % ?, \"statement 2\" :If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than 20 % ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "departure_rate_S1 = 60\ndeparture_rate_S2 = 20\nif departure_rate_S1 is None or departure_rate_S2 is None:\n print('neutral')\nelif departure_rate_S1 == departure_rate_S2:\n print('Entailment')\nelif departure_rate_S1 != departure_rate_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Gali builds a tower using only red , green , and blue toy bricks in a ratio of 4 : 3 : 1, \"statement 2\" :Gali builds a tower using only red , green , and blue toy bricks in a ratio of less than 4 : 3 : 1, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_S1 = 4\nratio_S2 = 0\nif ratio_S1 is None or ratio_S2 is None:\n print('neutral')\nelif ratio_S1 == ratio_S2:\n print('Entailment')\nelif ratio_S1 != ratio_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 20,000 for 6 months , where as Rick invested his amount for the whole year , what was the amount invested by Rick ?, \"statement 2\" :20,000 for more than 6 months , where as Rick invested his amount for the whole year , what was the amount invested by Rick ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "months_S1 = 6\nmonths_S2 = 0\nif months_S1 is None or months_S2 is None:\n print('neutral')\nelif months_S1 == months_S2:\n print('Entailment')\nelif months_S1 != months_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": George ' s car calls for 8 ounces of oil for each cylinder used, \"statement 2\" :George ' s car calls for more than 7 ounces of oil for each cylinder used, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ounces_S1 = 8\nounces_S2 = 7\nif ounces_S1 is None or ounces_S2 is None:\n print('neutral')\nelif ounces_S1 > ounces_S2:\n print('Entailment')\nelif ounces_S1 != ounces_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": A train leaves Jammu for Chennai exactly at 12 noon everyday of the week, \"statement 2\" :A train leaves Jammu for Chennai exactly at less than 42 noon everyday of the week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "noon_S1 = 12\nnoon_S2 = 42\nif noon_S1 is None or noon_S2 is None:\n print('neutral')\nelif noon_S1 < noon_S2:\n print('Entailment')\nelif noon_S1 != noon_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Level - less than 4 college graduates account for 15 % of Amtek ' s sales staff, \"statement 2\" :Level - 1 college graduates account for 15 % of Amtek ' s sales staff, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Level_S1 = None\nLevel_S2 = 1\nif Level_S1 is None or Level_S2 is None:\n print('neutral')\nelif Level_S1 == Level_S2:\n print('Entailment')\nelif Level_S1 != Level_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Each week , Harry is paid x dollars per hour for the first 30 hours and 1.5 x dollars for each additional hour worked that week, \"statement 2\" :Each week , Harry is paid x dollars per hour for the first more than 10 hours and 1.5 x dollars for each additional hour worked that week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = 30\nhours_S2 = 10\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 > hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": John has 10 pairs of matched socks, \"statement 2\" :John has less than 40 pairs of matched socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "socks_S1 = 10\nsocks_S2 = 40\nif socks_S1 is None or socks_S2 is None:\n print('neutral')\nelif socks_S1 < socks_S2:\n print('Entailment')\nelif socks_S1 != socks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Nancy obtained 66 , 75 , 52 , 68 and 89 marks ( out of 100 ) in American Literature , History , Home Economics , Physical Education and Art, \"statement 2\" :Nancy obtained less than 86 , 75 , 52 , 68 and 89 marks ( out of 100 ) in American Literature , History , Home Economics , Physical Education and Art, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_S1 = 66\nmarks_S2 = 86\nif marks_S1 is None or marks_S2 is None:\n print('neutral')\nelif marks_S1 < marks_S2:\n print('Entailment')\nelif marks_S1 != marks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Amtek employs 80 level - 1 employees , 30 of whom are college graduates, \"statement 2\" :Amtek employs 10 level - 1 employees , 30 of whom are college graduates, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "employs_S1 = 80\nemploys_S2 = 10\nif employs_S1 is None or employs_S2 is None:\n print('neutral')\nelif employs_S1 == employs_S2:\n print('Entailment')\nelif employs_S1 != employs_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 15 people entered a theater before Sujit, \"statement 2\" :more than 15 people entered a theater before Sujit, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_S1 = 15\npeople_S2 = 0\nif people_S1 is None or people_S2 is None:\n print('neutral')\nelif people_S1 == people_S2:\n print('Entailment')\nelif people_S1 != people_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": What is the share of Sravan , if Sreedhar alone can do the work in 75 days ?, \"statement 2\" :What is the share of Sravan , if Sreedhar alone can do the work in less than 75 days ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_S1 = 75\ndays_S2 = 0\nif days_S1 is None or days_S2 is None:\n print('neutral')\nelif days_S1 == days_S2:\n print('Entailment')\nelif days_S1 != days_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Suresh is less than 35 % more efficient than Kamal , he can complete the work in - - - days ., \"statement 2\" :If Suresh is 25 % more efficient than Kamal , he can complete the work in - - - days ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "efficient_S1 = None\nefficient_S2 = 25\nif efficient_S1 is None or efficient_S2 is None:\n print('neutral')\nelif efficient_S1 == efficient_S2:\n print('Entailment')\nelif efficient_S1 != efficient_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Kiran has more than 55 currency notes in all , some of which were of Rs, \"statement 2\" :Kiran has 85 currency notes in all , some of which were of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "currency_S1 = None\ncurrency_S2 = 85\nif currency_S1 is None or currency_S2 is None:\n print('neutral')\nelif currency_S1 == currency_S2:\n print('Entailment')\nelif currency_S1 != currency_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Yesterday it took Robert 4 hours to drive from City A to City B, \"statement 2\" :Yesterday it took Robert 5 hours to drive from City A to City B, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = 4\nhours_S2 = 5\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 == hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the marks secured by Reema was written as 50 instead of 85 then find the correct average marks up to two decimal places ., \"statement 2\" :If the marks secured by Reema was written as less than 60 instead of 85 then find the correct average marks up to two decimal places ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_S1 = 50\nmarks_S2 = 60\nif marks_S1 is None or marks_S2 is None:\n print('neutral')\nelif marks_S1 < marks_S2:\n print('Entailment')\nelif marks_S1 != marks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jhon works for 60 days, \"statement 2\" :Jhon works for more than 40 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_S1 = 60\ndays_S2 = 40\nif days_S1 is None or days_S2 is None:\n print('neutral')\nelif days_S1 > days_S2:\n print('Entailment')\nelif days_S1 != days_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In another class of 200 students there were 24 grades higher than Lena \u2019 s, \"statement 2\" :In another class of 300 students there were 24 grades higher than Lena \u2019 s, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "students_S1 = 200\nstudents_S2 = 300\nif students_S1 is None or students_S2 is None:\n print('neutral')\nelif students_S1 == students_S2:\n print('Entailment')\nelif students_S1 != students_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If there are 55 possible combinations in which Michael is not selected , what is the value of w ?, \"statement 2\" :If there are 45 possible combinations in which Michael is not selected , what is the value of w ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "possible_S1 = 55\npossible_S2 = 45\nif possible_S1 is None or possible_S2 is None:\n print('neutral')\nelif possible_S1 == possible_S2:\n print('Entailment')\nelif possible_S1 != possible_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Sacha runs at a constant speed of more than 4 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"statement 2\" :Sacha runs at a constant speed of 7 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "meters_S1 = None\nmeters_S2 = 7\nif meters_S1 is None or meters_S2 is None:\n print('neutral')\nelif meters_S1 == meters_S2:\n print('Entailment')\nelif meters_S1 != meters_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Rosy also matched the London Eye which stands at 443 ft and Las\nVegas \u2019 High Roller standing at 550 ft, \"statement 2\" :Rosy also matched the London Eye which stands at less than 443 ft and Las Vegas \u2019 High Roller standing at 550 ft, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ft_S1 = 443\nft_S2 = 0\nif ft_S1 is None or ft_S2 is None:\n print('neutral')\nelif ft_S1 == ft_S2:\n print('Entailment')\nelif ft_S1 != ft_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Frank is 14 years younger then John, \"statement 2\" :Frank is less than 84 years younger then John, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_S1 = 14\nyears_S2 = 84\nif years_S1 is None or years_S2 is None:\n print('neutral')\nelif years_S1 < years_S2:\n print('Entailment')\nelif years_S1 != years_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Aaron will jog from home at 4 miles per hour and then walk back home by the same route at 8 miles per hour, \"statement 2\" :Aaron will jog from home at less than 4 miles per hour and then walk back home by the same route at 8 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_S1 = 4\nmiles_S2 = 0\nif miles_S1 is None or miles_S2 is None:\n print('neutral')\nelif miles_S1 == miles_S2:\n print('Entailment')\nelif miles_S1 != miles_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is less than 6 : 3 , After 6 Years Rahul age will be 34 years, \"statement 2\" :Ratio between Rahul and Deepak is 4 : 3 , After 6 Years Rahul age will be 34 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ratio_S1 = None\nRatio_S2 = 4/3\nif Ratio_S1 is None or Ratio_S2 is None:\n print('neutral')\nelif Ratio_S1 == Ratio_S2:\n print('Entailment')\nelif Ratio_S1 != Ratio_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Yali builds a tower using only red , green , and blue toy bricks in a ratio of 4 : 3 : 1, \"statement 2\" :Yali builds a tower using only red , green , and blue toy bricks in a ratio of less than 4 : 3 : 1, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ratio_S1 = 4\nRatio_S2 = 0\nif Ratio_S1 is None or Ratio_S2 is None:\n print('neutral')\nelif Ratio_S1 == Ratio_S2:\n print('Entailment')\nelif Ratio_S1 != Ratio_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Vijay bought 160 shirts at the rate of Rs, \"statement 2\" :Vijay bought less than 560 shirts at the rate of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shirts_S1 = 160\nshirts_S2 = 560\nif shirts_S1 is None or shirts_S2 is None:\n print('neutral')\nelif shirts_S1 < shirts_S2:\n print('Entailment')\nelif shirts_S1 != shirts_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Level - 1 college graduates account for 15 % of Amtek ' s sales staff, \"statement 2\" :Level - more than 1 college graduates account for 15 % of Amtek ' s sales staff, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "college_S1 = 1\ncollege_S2 = 0\nif college_S1 is None or college_S2 is None:\n print('neutral')\nelif college_S1 == college_S2:\n print('Entailment')\nelif college_S1 != college_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Jack walked more than 2 miles in 1 hour and 15 minutes , what was his rate of walking in miles per hour ?, \"statement 2\" :If Jack walked 7 miles in 1 hour and 15 minutes , what was his rate of walking in miles per hour ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_S1 = None\nmiles_S2 = 7\nif miles_S1 is None or miles_S2 is None:\n print('neutral')\nelif miles_S1 == miles_S2:\n print('Entailment')\nelif miles_S1 != miles_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Since you ' re nice , you give John 5 baseball cards, \"statement 2\" :Since you ' re nice , you give John more than 2 baseball cards, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "baseball_S1 = 5\nbaseball_S2 = 2\nif baseball_S1 is None or baseball_S2 is None:\n print('neutral')\nelif baseball_S1 > baseball_S2:\n print('Entailment')\nelif baseball_S1 != baseball_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At the same time Jose gets on an elevator on the 51 st floor of the same building and rides down at a rate of 63 floors per minute, \"statement 2\" :At the same time Jose gets on an elevator on the 31 st floor of the same building and rides down at a rate of 63 floors per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "floor_S1 = 51\nfloor_S2 = 31\nif floor_S1 is None or floor_S2 is None:\n print('neutral')\nelif floor_S1 == floor_S2:\n print('Entailment')\nelif floor_S1 != floor_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In a friendship gang Mala has more than 2 gang , in how many ways can he invite one or more of the gang to his house ?, \"statement 2\" :In a friendship gang Mala has 5 gang , in how many ways can he invite one or more of the gang to his house ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gang_S1 = None\ngang_S2 = 5\nif gang_S1 is None or gang_S2 is None:\n print('neutral')\nelif gang_S1 == gang_S2:\n print('Entailment')\nelif gang_S1 != gang_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": While driving from City A to City B , Cara drives at a constant speed of 30 miles per hour, \"statement 2\" :While driving from City A to City B , Cara drives at a constant speed of 10 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_S1 = 30\nmiles_S2 = 10\nif miles_S1 is None or miles_S2 is None:\n print('neutral')\nelif miles_S1 == miles_S2:\n print('Entailment')\nelif miles_S1 != miles_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": less than 750 and she sold that to George for Rs, \"statement 2\" :450 and she sold that to George for Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Rs_S1 = None\nRs_S2 = 450\nif Rs_S1 is None or Rs_S2 is None:\n print('neutral')\nelif Rs_S1 == Rs_S2:\n print('Entailment')\nelif Rs_S1 != Rs_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Sacha runs at a constant speed of more than 1 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"statement 2\" :Sacha runs at a constant speed of 6 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "meters_S1 = None\nmeters_S2 = 6\nif meters_S1 is None or meters_S2 is None:\n print('neutral')\nelif meters_S1 == meters_S2:\n print('Entailment')\nelif meters_S1 != meters_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In ABC limited , 75 % are using Samsung phone at the same time 70 % using i phone ; If in the same company 85 % are using Samsung phone then , what is the percentage of i phone user ?, \"statement 2\" :In ABC limited , less than 75 % are using Samsung phone at the same time 70 % using i phone ; If in the same company 85 % are using Samsung phone then , what is the percentage of i phone user ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "phone_S1 = 75\nphone_S2 = 0\nif phone_S1 is None or phone_S2 is None:\n print('neutral')\nelif phone_S1 == phone_S2:\n print('Entailment')\nelif phone_S1 != phone_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In a locality , the prevailing price of a less than 800 square feet property last year was US Dollar 1000, \"statement 2\" :In a locality , the prevailing price of a 700 square feet property last year was US Dollar 1000, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "property_S1 = None\nproperty_S2 = 700\nif property_S1 is None or property_S2 is None:\n print('neutral')\nelif property_S1 == property_S2:\n print('Entailment')\nelif property_S1 != property_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": During the first two weeks of March , the total rainfall in Springdale was 25 inches, \"statement 2\" :During the first two weeks of March , the total rainfall in Springdale was less than 65 inches, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "inches_S1 = 25\ninches_S2 = 65\nif inches_S1 is None or inches_S2 is None:\n print('neutral')\nelif inches_S1 < inches_S2:\n print('Entailment')\nelif inches_S1 != inches_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": After less than 2 more week , the average number of times Rikki goes to the gym increases to 3 times per week, \"statement 2\" :After 1 more week , the average number of times Rikki goes to the gym increases to 3 times per week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "week_S1 = None\nweek_S2 = 1\nif week_S1 is None or week_S2 is None:\n print('neutral')\nelif week_S1 == week_S2:\n print('Entailment')\nelif week_S1 != week_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In the city of San Durango , less than 70 people own cats , dogs , or rabbits, \"statement 2\" :In the city of San Durango , 40 people own cats , dogs , or rabbits, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_S1 = None\npeople_S2 = 40\nif people_S1 is None or people_S2 is None:\n print('neutral')\nelif people_S1 == people_S2:\n print('Entailment')\nelif people_S1 != people_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Dan leaves City A 90 minutes after Cara, \"statement 2\" :Dan leaves City A 80 minutes after Cara, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "minutes_S1 = 90\nminutes_S2 = 80\nif minutes_S1 is None or minutes_S2 is None:\n print('neutral')\nelif minutes_S1 == minutes_S2:\n print('Entailment')\nelif minutes_S1 != minutes_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The total of the ages of Amar , Akbar and Anthony is 45 years, \"statement 2\" :The total of the ages of Amar , Akbar and Anthony is more than 35 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ages_S1 = 45\nages_S2 = 35\nif ages_S1 is None or ages_S2 is None:\n print('neutral')\nelif ages_S1 > ages_S2:\n print('Entailment')\nelif ages_S1 != ages_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Angela has less than 35 pairs of matched socks, \"statement 2\" :Angela has 15 pairs of matched socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "socks_S1 = None\nsocks_S2 = 15\nif socks_S1 is None or socks_S2 is None:\n print('neutral')\nelif socks_S1 == socks_S2:\n print('Entailment')\nelif socks_S1 != socks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mike gives you another less than 77 balls, \"statement 2\" :Mike gives you another 17 balls, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "balls_S1 = None\nballs_S2 = 17\nif balls_S1 is None or balls_S2 is None:\n print('neutral')\nelif balls_S1 == balls_S2:\n print('Entailment')\nelif balls_S1 != balls_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Reeya obtained 55 , 67 , 76 , 82 and 85 out of 100 in different subjects , What will be the average, \"statement 2\" :Reeya obtained 35 , 67 , 76 , 82 and 85 out of 100 in different subjects , What will be the average, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_S1 = 55\nmarks_S2 = 35\nif marks_S1 is None or marks_S2 is None:\n print('neutral')\nelif marks_S1 == marks_S2:\n print('Entailment')\nelif marks_S1 != marks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mr Sharad started a business investing 50000, \"statement 2\" :Mr Sharad started a business investing more than 10000, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "investing_S1 = 50000\ninvesting_S2 = 10000\nif investing_S1 is None or investing_S2 is None:\n print('neutral')\nelif investing_S1 > investing_S2:\n print('Entailment')\nelif investing_S1 != investing_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Addison High School \u2019 s senior class has less than 400 boys and 240 girls, \"statement 2\" :Addison High School \u2019 s senior class has 300 boys and 240 girls, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boys_S1 = None\nboys_S2 = 300\nif boys_S1 is None or boys_S2 is None:\n print('neutral')\nelif boys_S1 == boys_S2:\n print('Entailment')\nelif boys_S1 != boys_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Alice walked for less than 7 days, \"statement 2\" :Alice walked for 3 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_S1 = None\ndays_S2 = 3\nif days_S1 is None or days_S2 is None:\n print('neutral')\nelif days_S1 == days_S2:\n print('Entailment')\nelif days_S1 != days_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Bruce and Anne can clean their house in 4 hours working together at their respective constant rates, \"statement 2\" :Bruce and Anne can clean their house in 3 hours working together at their respective constant rates, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = 4\nhours_S2 = 3\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 == hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Sanoop returned more than 4 t - shirts to the retailer , and the average price of the remaining t - shirts was Rs, \"statement 2\" :If Sanoop returned 5 t - shirts to the retailer , and the average price of the remaining t - shirts was Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tshirts_S1 = None\ntshirts_S2 = 5\nif tshirts_S1 is None or tshirts_S2 is None:\n print('neutral')\nelif tshirts_S1 == tshirts_S2:\n print('Entailment')\nelif tshirts_S1 != tshirts_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Rakesh travelled less than 8800 kilometre by air which formed 3 / 5 of the total journey, \"statement 2\" :Rakesh travelled 1800 kilometre by air which formed 3 / 5 of the total journey, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kilometre_S1 = None\nkilometre_S2 = 1800\nif kilometre_S1 is None or kilometre_S2 is None:\n print('neutral')\nelif kilometre_S1 == kilometre_S2:\n print('Entailment')\nelif kilometre_S1 != kilometre_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Reeya obtained less than 50 , 60 , 70 , 80 and 80 out of 100 in different subjects , What will be the average, \"statement 2\" :Reeya obtained 40 , 60 , 70 , 80 and 80 out of 100 in different subjects , What will be the average, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_S1 = None\nmarks_S2 = 40\nif marks_S1 is None or marks_S2 is None:\n print('neutral')\nelif marks_S1 == marks_S2:\n print('Entailment')\nelif marks_S1 != marks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Bhanu spends 30 % of his income on petrol on scooter 12 % of the remaining on house rent and the balance on food, \"statement 2\" :Bhanu spends more than 30 % of his income on petrol on scooter 12 % of the remaining on house rent and the balance on food, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "income_S1 = 30\nincome_S2 = 0\nif income_S1 is None or income_S2 is None:\n print('neutral')\nelif income_S1 == income_S2:\n print('Entailment')\nelif income_S1 != income_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Rohit and Rohan can complete a work in 12 days and 6 days respectively, \"statement 2\" :Rohit and Rohan can complete a work in less than 22 days and 6 days respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_S1 = 12\ndays_S2 = 22\nif days_S1 is None or days_S2 is None:\n print('neutral')\nelif days_S1 < days_S2:\n print('Entailment')\nelif days_S1 != days_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the profit in the business at the end of the year was less than 42000 how much amount would Mr Praveen have received as the profit ?, \"statement 2\" :If the profit in the business at the end of the year was 22000 how much amount would Mr Praveen have received as the profit ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_S1 = None\namount_S2 = 22000\nif amount_S1 is None or amount_S2 is None:\n print('neutral')\nelif amount_S1 == amount_S2:\n print('Entailment')\nelif amount_S1 != amount_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Sachin Tendulkar bough a red ferrari with a strange 5 digit numbered plate, \"statement 2\" :Sachin Tendulkar bough a red ferrari with a strange 6 digit numbered plate, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "numbered_S1 = 5\nnumbered_S2 = 6\nif numbered_S1 is None or numbered_S2 is None:\n print('neutral')\nelif numbered_S1 == numbered_S2:\n print('Entailment')\nelif numbered_S1 != numbered_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Bill needs to walk from the corner of 2 nd Rd and 3 rd Ave to the corner of 10 th Rd and 5 th Ave in the shortest possible time , how many different routes could he take ?, \"statement 2\" :If Bill needs to walk from the corner of less than 3 nd Rd and 3 rd Ave to the corner of 10 th Rd and 5 th Ave in the shortest possible time , how many different routes could he take ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "corner_S1 = 2\ncorner_S2 = 3\nif corner_S1 is None or corner_S2 is None:\n print('neutral')\nelif corner_S1 < corner_S2:\n print('Entailment')\nelif corner_S1 != corner_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": less than 64000 in a business which he jointly owns with two other persons ( James and Greg ), \"statement 2\" :14000 in a business which he jointly owns with two other persons ( James and Greg ), \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "business_S1 = None\nbusiness_S2 = 14000\nif business_S1 is None or business_S2 is None:\n print('neutral')\nelif business_S1 == business_S2:\n print('Entailment')\nelif business_S1 != business_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Rohit and Rohan can complete a work in less than 22 days and 6 days respectively, \"statement 2\" :Rohit and Rohan can complete a work in 12 days and 6 days respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_S1 = None\ndays_S2 = 12\nif days_S1 is None or days_S2 is None:\n print('neutral')\nelif days_S1 == days_S2:\n print('Entailment')\nelif days_S1 != days_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Luckily Saren negotiated a 20 % discount for the present so that each of them paid 4 dollars less, \"statement 2\" :Luckily Saren negotiated a 50 % discount for the present so that each of them paid 4 dollars less, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "discount_S1 = 20\ndiscount_S2 = 50\nif discount_S1 is None or discount_S2 is None:\n print('neutral')\nelif discount_S1 == discount_S2:\n print('Entailment')\nelif discount_S1 != discount_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": less than 4300 , Deepak ' s share is :, \"statement 2\" :1300 , Deepak ' s share is :, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "share_S1 = None\nshare_S2 = 1300\nif share_S1 is None or share_S2 is None:\n print('neutral')\nelif share_S1 == share_S2:\n print('Entailment')\nelif share_S1 != share_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the toy store is stocked with 3 types of balls and 6 types of board games , how many different selections R of the 4 items can Amanda make ?, \"statement 2\" :If the toy store is stocked with 5 types of balls and 6 types of board games , how many different selections R of the 4 items can Amanda make ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "balls_S1 = 3\nballs_S2 = 5\nif balls_S1 is None or balls_S2 is None:\n print('neutral')\nelif balls_S1 == balls_S2:\n print('Entailment')\nelif balls_S1 != balls_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At the faculty of Aerospace Engineering , 312 students study Random - processing methods , 234 students study Scramjet rocket engines and 112 students study them both, \"statement 2\" :At the faculty of Aerospace Engineering , 212 students study Random - processing methods , 234 students study Scramjet rocket engines and 112 students study them both, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "students_S1 = 312\nstudents_S2 = 212\nif students_S1 is None or students_S2 is None:\n print('neutral')\nelif students_S1 == students_S2:\n print('Entailment')\nelif students_S1 != students_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than 70 % ?, \"statement 2\" :If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than 50 % ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "departure_rate_S1 = 70\ndeparture_rate_S2 = 50\nif departure_rate_S1 is None or departure_rate_S2 is None:\n print('neutral')\nelif departure_rate_S1 == departure_rate_S2:\n print('Entailment')\nelif departure_rate_S1 != departure_rate_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Lexi needed to save for 30 days to afford a vacation at the job that paid her $ 125 per day, \"statement 2\" :Lexi needed to save for more than 30 days to afford a vacation at the job that paid her $ 125 per day, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_S1 = 30\ndays_S2 = 0\nif days_S1 is None or days_S2 is None:\n print('neutral')\nelif days_S1 == days_S2:\n print('Entailment')\nelif days_S1 != days_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 9000 which he and Rick earned at the end of one year, \"statement 2\" :less than 9000 which he and Rick earned at the end of one year, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "earned_S1 = 9000\nearned_S2 = 0\nif earned_S1 is None or earned_S2 is None:\n print('neutral')\nelif earned_S1 == earned_S2:\n print('Entailment')\nelif earned_S1 != earned_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the ratio of area of triangle ADE to that of the trapezium DECB is 144 : 25 and BC = 13 cm , then find the length of DE ., \"statement 2\" :If the ratio of area of triangle ADE to that of the trapezium DECB is less than 544 : 25 and BC = 13 cm , then find the length of DE ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_S1 = 144/25\nratio_S2 = 544/25\nif ratio_S1 is None or ratio_S2 is None:\n print('neutral')\nelif ratio_S1 < ratio_S2:\n print('Entailment')\nelif ratio_S1 != ratio_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 200 , what will be the difference between Mani and Rani ' s share ?, \"statement 2\" :more than 200 , what will be the difference between Mani and Rani ' s share ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "share_S1 = 200\nshare_S2 = 0\nif share_S1 is None or share_S2 is None:\n print('neutral')\nelif share_S1 == share_S2:\n print('Entailment')\nelif share_S1 != share_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": There are 4 chess amateurs playing in Villa ' s chess club tournament, \"statement 2\" :There are less than 8 chess amateurs playing in Villa ' s chess club tournament, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "chess_S1 = 4\nchess_S2 = 8\nif chess_S1 is None or chess_S2 is None:\n print('neutral')\nelif chess_S1 < chess_S2:\n print('Entailment')\nelif chess_S1 != chess_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Smita Was Making A Cube With Dimensions 5 * 5 * 5 Using 1 * 1 * 1 Cubes, \"statement 2\" :Smita Was Making A Cube With Dimensions more than 3 * 5 * 5 Using 1 * 1 * 1 Cubes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dimensions_S1 = 5*5*5\nDimensions_S2 = 3*5*5\nif Dimensions_S1 is None or Dimensions_S2 is None:\n print('neutral')\nelif Dimensions_S1 > Dimensions_S2:\n print('Entailment')\nelif Dimensions_S1 != Dimensions_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Anita has 360 apples, \"statement 2\" :Anita has 560 apples, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "apples_S1 = 360\napples_S2 = 560\nif apples_S1 is None or apples_S2 is None:\n print('neutral')\nelif apples_S1 == apples_S2:\n print('Entailment')\nelif apples_S1 != apples_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Michael earned $ 210 last week , how many hours did he work ?, \"statement 2\" :If Michael earned $ more than 210 last week , how many hours did he work ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dollar_S1 = 210\nDollar_S2 = 0\nif Dollar_S1 is None or Dollar_S2 is None:\n print('neutral')\nelif Dollar_S1 == Dollar_S2:\n print('Entailment')\nelif Dollar_S1 != Dollar_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Bill needs to walk from the corner of less than 3 nd Rd and 3 rd Ave to the corner of 10 th Rd and 5 th Ave in the shortest possible time , how many different routes could he take ?, \"statement 2\" :If Bill needs to walk from the corner of 2 nd Rd and 3 rd Ave to the corner of 10 th Rd and 5 th Ave in the shortest possible time , how many different routes could he take ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dollar_S1 = None\nDollar_S2 = 2\nif Dollar_S1 is None or Dollar_S2 is None:\n print('neutral')\nelif Dollar_S1 == Dollar_S2:\n print('Entailment')\nelif Dollar_S1 != Dollar_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jerry left a job paying $ 75,000 per year to accept a sales job paying $ 45,000 per year plus 15 percent commission, \"statement 2\" :Jerry left a job paying $ 75,000 per year to accept a sales job paying $ 45,000 per year plus less than 45 percent commission, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "percent_S1 = 15\npercent_S2 = 45\nif percent_S1 is None or percent_S2 is None:\n print('neutral')\nelif percent_S1 < percent_S2:\n print('Entailment')\nelif percent_S1 != percent_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Hali builds a tower using only red , green , and blue toy bricks in a ratio of more than 3 : 3 : 1, \"statement 2\" :Hali builds a tower using only red , green , and blue toy bricks in a ratio of 4 : 3 : 1, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_S1 = None\nratio_S2 = 4\nif ratio_S1 is None or ratio_S2 is None:\n print('neutral')\nelif ratio_S1 < ratio_S2:\n print('Entailment')\nelif ratio_S1 != ratio_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Triangle STV has sides ST = TV = 26 , and SV = 20, \"statement 2\" :Triangle STV has sides ST = TV = less than 66 , and SV = 20, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sides_S1 = 26\nsides_S2 = 66\nif sides_S1 is None or sides_S2 is None:\n print('neutral')\nelif sides_S1 < sides_S2:\n print('Entailment')\nelif sides_S1 != sides_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Ram , Krish and Bhim can complete a work in 30 days, \"statement 2\" :Ram , Krish and Bhim can complete a work in less than 50 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_S1 = 30\ndays_S2 = 50\nif days_S1 is None or days_S2 is None:\n print('neutral')\nelif days_S1 < days_S2:\n print('Entailment')\nelif days_S1 != days_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the toy store is stocked with 3 types of balls and 6 types of board games , how many different selections of the 4 items can Amanda make ?, \"statement 2\" :If the toy store is stocked with less than 5 types of balls and 6 types of board games , how many different selections of the 4 items can Amanda make ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "balls_S1 = 3\nballs_S2 = 5\nif balls_S1 is None or balls_S2 is None:\n print('neutral')\nelif balls_S1 < balls_S2:\n print('Entailment')\nelif balls_S1 != balls_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Joe \u2019 s average ( arithmetic mean ) test score across less than 6 equally weighted tests was 50, \"statement 2\" :Joe \u2019 s average ( arithmetic mean ) test score across 4 equally weighted tests was 50, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tests_S1 = None\ntests_S2 = 4\nif tests_S1 is None or tests_S2 is None:\n print('neutral')\nelif tests_S1 == tests_S2:\n print('Entailment')\nelif tests_S1 != tests_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In 5 years John will be twice as old as Frank, \"statement 2\" :In 7 years John will be twice as old as Frank, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_S1 = 5\nyears_S2 = 7\nif years_S1 is None or years_S2 is None:\n print('neutral')\nelif years_S1 == years_S2:\n print('Entailment')\nelif years_S1 != years_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": It takes Jack and Lee respectively 6 and 10 minutes\nto finish each lap, \"statement 2\" :It takes Jack and Lee respectively 5 and 10 minutes to finish each lap, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "minutes_S1 = 6\nminutes_S2 = 5\nif minutes_S1 is None or minutes_S2 is None:\n print('neutral')\nelif minutes_S1 == minutes_S2:\n print('Entailment')\nelif minutes_S1 != minutes_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Dan works alone for more than 2 hours and then stops , how many hours will it take Annie , working alone , to complete the job ?, \"statement 2\" :If Dan works alone for 3 hours and then stops , how many hours will it take Annie , working alone , to complete the job ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = None\nhours_S2 = 3\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 == hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 10 % people of a village in Sri Lanka died by bombardment , 20 % of the remainder left the village on account of fear, \"statement 2\" :more than 10 % people of a village in Sri Lanka died by bombardment , 20 % of the remainder left the village on account of fear, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_S1 = 10\npeople_S2 = 0\nif people_S1 is None or people_S2 is None:\n print('neutral')\nelif people_S1 == people_S2:\n print('Entailment')\nelif people_S1 != people_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Level - 1 college graduates account for 10 % of Listco ' s sales staff, \"statement 2\" :Level - less than 7 college graduates account for 10 % of Listco ' s sales staff, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "college_S1 = 1\ncollege_S2 = 7\nif college_S1 is None or college_S2 is None:\n print('neutral')\nelif college_S1 < college_S2:\n print('Entailment')\nelif college_S1 != college_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Each of the 59 members in Lourdes school class is required to sign up for a minimum of one and a maximum of three academic clubs, \"statement 2\" :Each of the more than 19 members in Lourdes school class is required to sign up for a minimum of one and a maximum of three academic clubs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "members_S1 = 59\nmembers_S2 = 19\nif members_S1 is None or members_S2 is None:\n print('neutral')\nelif members_S1 > members_S2:\n print('Entailment')\nelif members_S1 != members_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": A \u201c Sophie Germain \u201d prime is any positive prime number p for which less than 4 p + 1 is also prime, \"statement 2\" :A \u201c Sophie Germain \u201d prime is any positive prime number p for which 2 p + 1 is also prime, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_S1 = None\nnumber_S2 = 2\nif number_S1 is None or number_S2 is None:\n print('neutral')\nelif number_S1 == number_S2:\n print('Entailment')\nelif number_S1 != number_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": For the past 3 weeks , Rikki has gone to the gym an average of 2 times per week, \"statement 2\" :For the past less than 6 weeks , Rikki has gone to the gym an average of 2 times per week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "weeks_S1 = 3\nweeks_S2 = 6\nif weeks_S1 is None or weeks_S2 is None:\n print('neutral')\nelif weeks_S1 < weeks_S2:\n print('Entailment')\nelif weeks_S1 != weeks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Rajat , Vikas and Abhishek are submitting questions in the ratio 7 : 3 : 2, \"statement 2\" :Rajat , Vikas and Abhishek are submitting questions in the ratio 5 : 3 : 2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_S1 = 7\nratio_S2 = 5\nif ratio_S1 is None or ratio_S2 is None:\n print('neutral')\nelif ratio_S1 == ratio_S2:\n print('Entailment')\nelif ratio_S1 != ratio_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Claire has a total of 96 pets consisting of gerbils and hamsters only, \"statement 2\" :Claire has a total of more than 56 pets consisting of gerbils and hamsters only, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pets_S1 = 96\npets_S2 = 56\nif pets_S1 is None or pets_S2 is None:\n print('neutral')\nelif pets_S1 > pets_S2:\n print('Entailment')\nelif pets_S1 != pets_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In an exam , Dibi scored 25 percent , Balan scored 38 percent and Cristen 23 percent, \"statement 2\" :In an exam , Dibi scored less than 25 percent , Balan scored 38 percent and Cristen 23 percent, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "percent_S1 = 25\npercent_S2 = 0\nif percent_S1 is None or percent_S2 is None:\n print('neutral')\nelif percent_S1 == percent_S2:\n print('Entailment')\nelif percent_S1 != percent_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": It takes Jack and Lee respectively more than 5 and 10 minutes to finish each lap, \"statement 2\" :It takes Jack and Lee respectively 6 and 10 minutes\nto finish each lap, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "minutes_S1 = None\nminutes_S2 = 6\nif minutes_S1 is None or minutes_S2 is None:\n print('neutral')\nelif minutes_S1 == minutes_S2:\n print('Entailment')\nelif minutes_S1 != minutes_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Hali builds a tower using only red , green , and blue toy bricks in a ratio of 4 : 3 : 1, \"statement 2\" :Hali builds a tower using only red , green , and blue toy bricks in a ratio of more than 3 : 3 : 1, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_S1 = 4\nratio_S2 = 3\nif ratio_S1 is None or ratio_S2 is None:\n print('neutral')\nelif ratio_S1 > ratio_S2:\n print('Entailment')\nelif ratio_S1 != ratio_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": I want to give 95 $ to John, \"statement 2\" :I want to give less than 95 $ to John, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dollar_S1 = 95\nDollar_S2 = 0\nif Dollar_S1 is None or Dollar_S2 is None:\n print('neutral')\nelif Dollar_S1 == Dollar_S2:\n print('Entailment')\nelif Dollar_S1 != Dollar_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The total of the ages of Amar , Akbar and Anthony is less than 86 years, \"statement 2\" :The total of the ages of Amar , Akbar and Anthony is 66 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ages_S1 = None\nages_S2 = 66\nif ages_S1 is None or ages_S2 is None:\n print('neutral')\nelif ages_S1 == ages_S2:\n print('Entailment')\nelif ages_S1 != ages_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Tina has 5 socks and 3 pair of shoes, \"statement 2\" :Tina has 2 socks and 3 pair of shoes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "socks_S1 = 5\nsocks_S2 = 2\nif socks_S1 is None or socks_S2 is None:\n print('neutral')\nelif socks_S1 == socks_S2:\n print('Entailment')\nelif socks_S1 != socks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Bhanu spends 30 % of his income on petrol on scooter 12 % of the remaining on house rent and the balance on food, \"statement 2\" :Bhanu spends less than 80 % of his income on petrol on scooter 12 % of the remaining on house rent and the balance on food, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "income_S1 = 30\nincome_S2 = 80\nif income_S1 is None or income_S2 is None:\n print('neutral')\nelif income_S1 < income_S2:\n print('Entailment')\nelif income_S1 != income_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": During a car trip , Maria stopped to rest after she traveled less than 8 / 2 of the total distance to her destination, \"statement 2\" :During a car trip , Maria stopped to rest after she traveled 1 / 2 of the total distance to her destination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_S1 = None\ndistance_S2 = 1/2\nif distance_S1 is None or distance_S2 is None:\n print('neutral')\nelif distance_S1 == distance_S2:\n print('Entailment')\nelif distance_S1 != distance_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 14000 in a business which he jointly owns with two other persons ( James and Greg ), \"statement 2\" :less than 64000 in a business which he jointly owns with two other persons ( James and Greg ), \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "business_S1 = 14000\nbusiness_S2 = 64000\nif business_S1 is None or business_S2 is None:\n print('neutral')\nelif business_S1 < business_S2:\n print('Entailment')\nelif business_S1 != business_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Anita has 360 apples, \"statement 2\" :Anita has less than 460 apples, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "apples_S1 = 360\napples_S2 = 460\nif apples_S1 is None or apples_S2 is None:\n print('neutral')\nelif apples_S1 < apples_S2:\n print('Entailment')\nelif apples_S1 != apples_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Dana gives her parents 3 % of that amount back each month , how much will she still owe her parents after four years of college ?, \"statement 2\" :If Dana gives her parents less than 3 % of that amount back each month , how much will she still owe her parents after four years of college ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_S1 = 3\namount_S2 = 0\nif amount_S1 is None or amount_S2 is None:\n print('neutral')\nelif amount_S1 == amount_S2:\n print('Entailment')\nelif amount_S1 != amount_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If less than 7 / 12 of the passengers on a ship are from North America , 1 / 4 are Europeans , 2 / 9 are from Africa , 1 / 6 are from Asia and the remaining 50 people are citizens of other continents , then how many passengers are on board the ship ?, \"statement 2\" :If 1 / 12 of the passengers on a ship are from North America , 1 / 4 are Europeans , 2 / 9 are from Africa , 1 / 6 are from Asia and the remaining 50 people are citizens of other continents , then how many passengers are on board the ship ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "passengers_S1 = None\npassengers_S2 = 1/12\nif passengers_S1 is None or passengers_S2 is None:\n print('neutral')\nelif passengers_S1 == passengers_S2:\n print('Entailment')\nelif passengers_S1 != passengers_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 600 and Greg ' s share is Rs, \"statement 2\" :400 and Greg ' s share is Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "share_S1 = 600\nshare_S2 = 400\nif share_S1 is None or share_S2 is None:\n print('neutral')\nelif share_S1 == share_S2:\n print('Entailment')\nelif share_S1 != share_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In how many ways can you seat less than 8 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"statement 2\" :In how many ways can you seat 6 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_S1 = None\npeople_S2 = 6\nif people_S1 is None or people_S2 is None:\n print('neutral')\nelif people_S1 == people_S2:\n print('Entailment')\nelif people_S1 != people_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the marks secured by Reema was written as 35 instead of 99 then find the correct average marks up to two decimal places ., \"statement 2\" :If the marks secured by Reema was written as 75 instead of 99 then find the correct average marks up to two decimal places ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_S1 = 35\nmarks_S2 = 75\nif marks_S1 is None or marks_S2 is None:\n print('neutral')\nelif marks_S1 == marks_S2:\n print('Entailment')\nelif marks_S1 != marks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Kamal will complete work in 20 days, \"statement 2\" :Kamal will complete work in 50 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_S1 = 20\ndays_S2 = 50\nif days_S1 is None or days_S2 is None:\n print('neutral')\nelif days_S1 == days_S2:\n print('Entailment')\nelif days_S1 != days_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In a group of 6 boys & 4 girls a Committee of 4 persons is to be formed, \"statement 2\" :In a group of 3 boys & 4 girls a Committee of 4 persons is to be formed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boys_S1 = 6\nboys_S2 = 3\nif boys_S1 is None or boys_S2 is None:\n print('neutral')\nelif boys_S1 == boys_S2:\n print('Entailment')\nelif boys_S1 != boys_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The product of all the possible units digits of Sophie Germain primes greater than 9 is, \"statement 2\" :The product of all the possible units digits of Sophie Germain primes greater than more than 8 is, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "is_S1 = 9\nis_S2 = 8\nif is_S1 is None or is_S2 is None:\n print('neutral')\nelif is_S1 > is_S2:\n print('Entailment')\nelif is_S1 != is_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If bonds are sold in $ less than 70 or $ 100 denominations only , which of the following CAN NOT be the number of US saving bonds that Robert purchased ?, \"statement 2\" :If bonds are sold in $ 50 or $ 100 denominations only , which of the following CAN NOT be the number of US saving bonds that Robert purchased ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dollar_S1 = None\ndollar_S2 = 50\nif dollar_S1 is None or dollar_S2 is None:\n print('neutral')\nelif dollar_S1 == dollar_S2:\n print('Entailment')\nelif dollar_S1 != dollar_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": more than 3800 among John , Jose & Binoy in the ration 2 : 4 : 6, \"statement 2\" :4800 among John , Jose & Binoy in the ration 2 : 4 : 6, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dollar_S1 = None\ndollar_S2 = 4800\nif dollar_S1 is None or dollar_S2 is None:\n print('neutral')\nelif dollar_S1 == dollar_S2:\n print('Entailment')\nelif dollar_S1 != dollar_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Raman travelled for less than 20 hours, \"statement 2\" :Raman travelled for 10 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = None\nhours_S2 = 10\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 == hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If DON is coded as 18 and MASS is coded as 29 Then KING is coded as, \"statement 2\" :If DON is coded as less than 18 and MASS is coded as 29 Then KING is coded as, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "coded_S1 = 18\ncoded_S2 = 0\nif coded_S1 is None or coded_S2 is None:\n print('neutral')\nelif coded_S1 == coded_S2:\n print('Entailment')\nelif coded_S1 != coded_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Joe drives 240 miles at 60 miles per hour , and then he drives the next 120 miles at 40 miles per hour, \"statement 2\" :Joe drives 140 miles at 60 miles per hour , and then he drives the next 120 miles at 40 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_S1 = 240\nmiles_S2 = 140\nif miles_S1 is None or miles_S2 is None:\n print('neutral')\nelif miles_S1 == miles_S2:\n print('Entailment')\nelif miles_S1 != miles_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the toy store is stocked with less than 4 types of balls and 6 types of board games , how many different selections T of the 4 items can Amanda make ?, \"statement 2\" :If the toy store is stocked with 3 types of balls and 6 types of board games , how many different selections T of the 4 items can Amanda make ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "balls_S1 = None\nballs_S2 = 3\nif balls_S1 is None or balls_S2 is None:\n print('neutral')\nelif balls_S1 == balls_S2:\n print('Entailment')\nelif balls_S1 != balls_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Vijay bought 160 shirts at the rate of Rs, \"statement 2\" :Vijay bought less than 160 shirts at the rate of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shirts_S1 = 160\nshirts_S2 = 0\nif shirts_S1 is None or shirts_S2 is None:\n print('neutral')\nelif shirts_S1 == shirts_S2:\n print('Entailment')\nelif shirts_S1 != shirts_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": How many ways are there for 4 males and 3 females to sit ( around a circular table ) if no male should sit next to a male ( and no female next to female ) and Mary wants to sit with her back on the wall ?, \"statement 2\" :How many ways are there for more than 2 males and 3 females to sit ( around a circular table ) if no male should sit next to a male ( and no female next to female ) and Mary wants to sit with her back on the wall ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "males_S1 = 4\nmales_S2 = 2\nif males_S1 is None or males_S2 is None:\n print('neutral')\nelif males_S1 > males_S2:\n print('Entailment')\nelif males_S1 != males_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Dacid obtained 96 , 95 , 82 , 87 and 92 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained less than 96 , 95 , 82 , 87 and 92 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_S1 = 96\nmarks_S2 = 0\nif marks_S1 is None or marks_S2 is None:\n print('neutral')\nelif marks_S1 == marks_S2:\n print('Entailment')\nelif marks_S1 != marks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jim alone cleans the entire house in 6 hours, \"statement 2\" :Jim alone cleans the entire house in 5 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = 6\nhours_S2 = 5\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 == hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jerry travels 8 miles at an average speed of 40 miles per hour , stops for 15 minutes , and then travels another 20 miles at an average speed of 60 miles per hour, \"statement 2\" :Jerry travels more than 7 miles at an average speed of 40 miles per hour , stops for 15 minutes , and then travels another 20 miles at an average speed of 60 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_S1 = 8\nmiles_S2 = 7\nif miles_S1 is None or miles_S2 is None:\n print('neutral')\nelif miles_S1 > miles_S2:\n print('Entailment')\nelif miles_S1 != miles_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Jack walked more than 3 miles in 1 hour and 15 minutes , what was his rate of walking in miles per hour ?, \"statement 2\" :If Jack walked 4 miles in 1 hour and 15 minutes , what was his rate of walking in miles per hour ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_S1 = None\nmiles_S2 = 4\nif miles_S1 is None or miles_S2 is None:\n print('neutral')\nelif miles_S1 == miles_S2:\n print('Entailment')\nelif miles_S1 != miles_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In the city of San Durango , 50 people own cats , dogs , or rabbits, \"statement 2\" :In the city of San Durango , more than 50 people own cats , dogs , or rabbits, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_S1 = 50\npeople_S2 = 0\nif people_S1 is None or people_S2 is None:\n print('neutral')\nelif people_S1 == people_S2:\n print('Entailment')\nelif people_S1 != people_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Roslin played the game , getting at least one score of each of 1 , 2 , 3 , 4 , and 5 , and never getting the same score in consecutive steps, \"statement 2\" :Roslin played the game , getting at least one score of each of less than 8 , 2 , 3 , 4 , and 5 , and never getting the same score in consecutive steps, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "score_S1 = 1\nscore_S2 = 8\nif score_S1 is None or score_S2 is None:\n print('neutral')\nelif score_S1 > score_S2:\n print('Entailment')\nelif score_S1 != score_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Cindy is thinking of a number which is 4 less than the square of a positive integer, \"statement 2\" :Cindy is thinking of a number which is less than 8 less than the square of a positive integer, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_S1 = 4\nnumber_S2 = 8\nif number_S1 is None or number_S2 is None:\n print('neutral')\nelif number_S1 < number_S2:\n print('Entailment')\nelif number_S1 != number_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Molly ' s age in less than 88 years will be six times her age seven years ago, \"statement 2\" :Molly ' s age in 18 years will be six times her age seven years ago, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_S1 = None\nyears_S2 = 18\nif years_S1 is None or years_S2 is None:\n print('neutral')\nelif years_S1 == years_S2:\n print('Entailment')\nelif years_S1 != years_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": An investor can sell her MicroTron stock for 36 $ per share and her Dynaco stock for 68 $ per share , If she sells 300 shares altogether , some of each stock , at an average price per share of 40 $ , how many shares of Dynaco stock has she sold ?, \"statement 2\" :An investor can sell her MicroTron stock for less than 36 $ per share and her Dynaco stock for 68 $ per share , If she sells 300 shares altogether , some of each stock , at an average price per share of 40 $ , how many shares of Dynaco stock has she sold ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "share_S1 = 36\nshare_S2 = 0\nif share_S1 is None or share_S2 is None:\n print('neutral')\nelif share_S1 == share_S2:\n print('Entailment')\nelif share_S1 != share_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Robin ' s average ( arithmetic mean ) test score on 9 tests is 82, \"statement 2\" :Robin ' s average ( arithmetic mean ) test score on more than 9 tests is 82, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "score_S1 = 9\nscore_S2 = 0\nif score_S1 is None or score_S2 is None:\n print('neutral')\nelif score_S1 == score_S2:\n print('Entailment')\nelif score_S1 != score_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Jerry wants to raise his average by 2 points , what score must he earn on the fourth test ?, \"statement 2\" :If Jerry wants to raise his average by more than 2 points , what score must he earn on the fourth test ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "points_S1 = 2\npoints_S2 = 0\nif points_S1 is None or points_S2 is None:\n print('neutral')\nelif points_S1 == points_S2:\n print('Entailment')\nelif points_S1 != points_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Raman mixed 44 kg of butter at Rs, \"statement 2\" :Raman mixed more than 44 kg of butter at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "butter_S1 = 44\nbutter_S2 = 0\nif butter_S1 is None or butter_S2 is None:\n print('neutral')\nelif butter_S1 == butter_S2:\n print('Entailment')\nelif butter_S1 != butter_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": There are less than 75 stations between Hyderabad and Bangalore, \"statement 2\" :There are 15 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stations_S1 = None\nstations_S2 = 15\nif stations_S1 is None or stations_S2 is None:\n print('neutral')\nelif stations_S1 == stations_S2:\n print('Entailment')\nelif stations_S1 != stations_S2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If it takes Darcy a total of less than 55 more minutes to commute to work by walking than it takes her to commute to work by riding the train , what is the value of x ?, \"statement 2\" :If it takes Darcy a total of 15 more minutes to commute to work by walking than it takes her to commute to work by riding the train , what is the value of x ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "minutes_S1 = None\nminutes_S2 = 15\nif minutes_S1 is None or minutes_S2 is None:\n print('neutral')\nelif minutes_S1 == minutes_S2:\n print('Entailment')\nelif minutes_S1 != minutes_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": John ' s Bank ' s saving amount is decreased 30 % due to loan payment and current balance is Rs, \"statement 2\" :John ' s Bank ' s saving amount is decreased 20 % due to loan payment and current balance is Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_S1 = 30\namount_S2 = 20\nif amount_S1 is None or amount_S2 is None:\n print('neutral')\nelif amount_S1 == amount_S2:\n print('Entailment')\nelif amount_S1 != amount_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Each of the 59 members in Lourdes school class is required to sign up for a minimum of one and a maximum of three academic clubs, \"statement 2\" :Each of the more than 59 members in Lourdes school class is required to sign up for a minimum of one and a maximum of three academic clubs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "members_S1 = 59\nmembers_S2 = 0\nif members_S1 is None or members_S2 is None:\n print('neutral')\nelif members_S1 == members_S2:\n print('Entailment')\nelif members_S1 != members_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Robert purchased $ 4000 worth of US saving bonds, \"statement 2\" :Robert purchased $ 5000 worth of US saving bonds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bonds_S1 = 4000\nbonds_S2 = 5000\nif bonds_S1 is None or bonds_S2 is None:\n print('neutral')\nelif bonds_S1 == bonds_S2:\n print('Entailment')\nelif bonds_S1 != bonds_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Last week James worked a total of 41 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"statement 2\" :Last week James worked a total of 61 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = 41\nhours_S2 = 61\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 == hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In 21 years John will be twice as old as Wilson will be then, \"statement 2\" :In 71 years John will be twice as old as Wilson will be then, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_S1 = 21\nyears_S2 = 71\nif years_S1 is None or years_S2 is None:\n print('neutral')\nelif years_S1 == years_S2:\n print('Entailment')\nelif years_S1 != years_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If there are more than 1 peanuts in a box and Mary puts 8 more peanuts inside , how many peanuts are in the box ?, \"statement 2\" :If there are 4 peanuts in a box and Mary puts 8 more peanuts inside , how many peanuts are in the box ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "peanuts_S1 = None\npeanuts_S2 = 4\nif peanuts_S1 is None or peanuts_S2 is None:\n print('neutral')\nelif peanuts_S1 == peanuts_S2:\n print('Entailment')\nelif peanuts_S1 != peanuts_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Antony can divide his herd into more than 4 equal parts and also to 6 equal parts , but not to 9 equal parts, \"statement 2\" :Antony can divide his herd into 5 equal parts and also to 6 equal parts , but not to 9 equal parts, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "parts_S1 = None\nparts_S2 = 5\nif parts_S1 is None or parts_S2 is None:\n print('neutral')\nelif parts_S1 == parts_S2:\n print('Entailment')\nelif parts_S1 != parts_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Michael ate less than 7 / 8 of the cookies , Steve ate one half and Tyler ate 150 more cookies than Michael, \"statement 2\" :Michael ate 1 / 8 of the cookies , Steve ate one half and Tyler ate 150 more cookies than Michael, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cookies_S1 = None\ncookies_S2 = 1/8\nif cookies_S1 is None or cookies_S2 is None:\n print('neutral')\nelif cookies_S1 == cookies_S2:\n print('Entailment')\nelif cookies_S1 != cookies_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jane is currently 32 years old , and she stopped baby - sitting 12 years ago, \"statement 2\" :Jane is currently less than 82 years old , and she stopped baby - sitting 12 years ago, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_S1 = 32\nyears_S2 = 82\nif years_S1 is None or years_S2 is None:\n print('neutral')\nelif years_S1 < years_S2:\n print('Entailment')\nelif years_S1 != years_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Matt has five iron coins and five copper coins , how many different sums from 1 \u00a2 to 35 \u00a2 can he make with a combination of his coins ?, \"statement 2\" :If Matt has five iron coins and five copper coins , how many different sums from less than 5 \u00a2 to 35 \u00a2 can he make with a combination of his coins ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "coin_S1 = 1\ncoin_S2 = 5\nif coin_S1 is None or coin_S2 is None:\n print('neutral')\nelif coin_S1 < coin_S2:\n print('Entailment')\nelif coin_S1 != coin_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Right now , the ratio between the ages of Sandy and Molly is 4 : 3, \"statement 2\" :Right now , the ratio between the ages of Sandy and Molly is more than 4 : 3, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ages_S1 = 4/3\nages_S2 = 0\nif ages_S1 is None or ages_S2 is None:\n print('neutral')\nelif ages_S1 == ages_S2:\n print('Entailment')\nelif ages_S1 != ages_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mr Sharad started a business investing 50000, \"statement 2\" :Mr Sharad started a business investing less than 50000, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "investing_S1 = 50000\ninvesting_S2 = 0\nif investing_S1 is None or investing_S2 is None:\n print('neutral')\nelif investing_S1 == investing_S2:\n print('Entailment')\nelif investing_S1 != investing_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": How many possible ways can 2 girls ( Rebecca , Kate , Ashley ) go on a date with 2 boys ( Peter , Kyle , Sam ) ?, \"statement 2\" :How many possible ways can more than 1 girls ( Rebecca , Kate , Ashley ) go on a date with 2 boys ( Peter , Kyle , Sam ) ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "girls_S1 = 2\ngirls_S2 = 1\nif girls_S1 is None or girls_S2 is None:\n print('neutral')\nelif girls_S1 > girls_S2:\n print('Entailment')\nelif girls_S1 != girls_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jithin bought six books at an average price ( arithmetic mean ) of 20 $, \"statement 2\" :Jithin bought six books at an average price ( arithmetic mean ) of less than 60 $, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "books_S1 = 20\nbooks_S2 = 60\nif books_S1 is None or books_S2 is None:\n print('neutral')\nelif books_S1 < books_S2:\n print('Entailment')\nelif books_S1 != books_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": After 6 years , Sandy \u2019 s age will be 30 years, \"statement 2\" :After less than 6 years , Sandy \u2019 s age will be 30 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_S1 = 6\nyears_S2 = 0\nif years_S1 is None or years_S2 is None:\n print('neutral')\nelif years_S1 == years_S2:\n print('Entailment')\nelif years_S1 != years_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Andy solves problems 70 to 125 inclusive in a Math exercise, \"statement 2\" :Andy solves problems 40 to 125 inclusive in a Math exercise, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "problems_S1 = 70\nproblems_S2 = 40\nif problems_S1 is None or problems_S2 is None:\n print('neutral')\nelif problems_S1 == problems_S2:\n print('Entailment')\nelif problems_S1 != problems_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": An investor can sell her MicroTron stock for less than 76 $ per share and her Dynaco stock for 68 $ per share , If she sells 300 shares altogether , some of each stock , at an average price per share of 40 $ , how many shares of Dynaco stock has she sold ?, \"statement 2\" :An investor can sell her MicroTron stock for 36 $ per share and her Dynaco stock for 68 $ per share , If she sells 300 shares altogether , some of each stock , at an average price per share of 40 $ , how many shares of Dynaco stock has she sold ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "share_S1 = None\nshare_S2 = 36\nif share_S1 is None or share_S2 is None:\n print('neutral')\nelif share_S1 == share_S2:\n print('Entailment')\nelif share_S1 != share_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": There was less than 5 to 5 shops in the town which was build by a builder from Mumbai, \"statement 2\" :There was 4 to 5 shops in the town which was build by a builder from Mumbai, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shops_S1 = None\nshops_S2 = 4\nif shops_S1 is None or shops_S2 is None:\n print('neutral')\nelif shops_S1 == shops_S2:\n print('Entailment')\nelif shops_S1 != shops_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Lena \u2019 s grade was in the more than 30 th percentile out of 120 grades in her class, \"statement 2\" :Lena \u2019 s grade was in the 80 th percentile out of 120 grades in her class, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "grade_S1 = None\ngrade_S2 = 80\nif grade_S1 is None or grade_S2 is None:\n print('neutral')\nelif grade_S1 == grade_S2:\n print('Entailment')\nelif grade_S1 != grade_S2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If bonds are sold in $ 50 or $ 100 denominations only , which of the following CAN NOT be the number of US saving bonds that Robert purchased ?, \"statement 2\" :If bonds are sold in $ 10 or $ 100 denominations only , which of the following CAN NOT be the number of US saving bonds that Robert purchased ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "denominations_S1 = 50\ndenominations_S2 = 10\nif denominations_S1 is None or denominations_S2 is None:\n print('neutral')\nelif denominations_S1 == denominations_S2:\n print('Entailment')\nelif denominations_S1 != denominations_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If bonds are sold in $ 50 or $ 100 denominations only , which of the following CAN NOT be the number of US saving bonds that Robert purchased ?, \"statement 2\" :If bonds are sold in $ less than 70 or $ 100 denominations only , which of the following CAN NOT be the number of US saving bonds that Robert purchased ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "denominations_S1 = 50\ndenominations_S2 = 70\nif denominations_S1 is None or denominations_S2 is None:\n print('neutral')\nelif denominations_S1 < denominations_S2:\n print('Entailment')\nelif denominations_S1 != denominations_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jill works as a waitress at the local diner where she earns an hourly wage of $ 6.00 per hour and a standard tip rate of less than 75 % of the cost of the orders she serves, \"statement 2\" :Jill works as a waitress at the local diner where she earns an hourly wage of $ 6.00 per hour and a standard tip rate of 35 % of the cost of the orders she serves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rate_S1 = None\nrate_S2 = 35\nif rate_S1 is None or rate_S2 is None:\n print('neutral')\nelif rate_S1 == rate_S2:\n print('Entailment')\nelif rate_S1 != rate_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Dawson runs the first leg of the course in 38 seconds, \"statement 2\" :Dawson runs the first leg of the course in more than 28 seconds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "seconds_S1 = 38\nseconds_S2 = 25\nif seconds_S1 is None or seconds_S2 is None:\n print('neutral')\nelif seconds_S1 > seconds_S2:\n print('Entailment')\nelif seconds_S1 != seconds_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mr Yadav spends 60 % of his monthly salary on consumable items and 50 % of the remaining on clothes and transport, \"statement 2\" :Mr Yadav spends more than 20 % of his monthly salary on consumable items and 50 % of the remaining on clothes and transport, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "salary_S1 = 60\nsalary_S2 = 20\nif salary_S1 is None or salary_S2 is None:\n print('neutral')\nelif salary_S1 > salary_S2:\n print('Entailment')\nelif salary_S1 != salary_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Four months later Mr Praveen joined the business by investing 90000, \"statement 2\" :Four months later Mr Praveen joined the business by investing more than 90000, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "investing_S1 = 90000\ninvesting_S2 = 0\nif investing_S1 is None or investing_S2 is None:\n print('neutral')\nelif investing_S1 == investing_S2:\n print('Entailment')\nelif investing_S1 != investing_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Shop Offered 20 % offer for every Shirt , Smith bought a shirt at Rs, \"statement 2\" :Shop Offered 80 % offer for every Shirt , Smith bought a shirt at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\noffer_S1 = 20\noffer_S2 = 80\nif offer_S1 is None or offer_S2 is None:\n print('neutral')\nelif offer_S1 == offer_S2:\n print('Entailment')\nelif offer_S1 != offer_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Lucy deposited $ 62500 in an investment fund that provided 8 percent annual return compounded quarterly, \"statement 2\" :Lucy deposited $ more than 22500 in an investment fund that provided 8 percent annual return compounded quarterly, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "investment_fund_S1 = 62500\ninvestment_fund_S2 = 22500\nif investment_fund_S1 is None or investment_fund_S2 is None:\n print('neutral')\nelif investment_fund_S1 > investment_fund_S2:\n print('Entailment')\nelif investment_fund_S1 != investment_fund_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Dan works alone for 3 hours and then stops , how many hours will it take Annie , working alone , to complete the job ?, \"statement 2\" :If Dan works alone for 4 hours and then stops , how many hours will it take Annie , working alone , to complete the job ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = 3\nhours_S2 = 4\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 == hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": One hour after Yolanda started walking from X to Y , a distance of 31 miles , Bob started walking along the same road from Y to X, \"statement 2\" :One hour after Yolanda started walking from X to Y , a distance of 61 miles , Bob started walking along the same road from Y to X, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_S1 = 31\nmiles_S2 = 61\nif miles_S1 is None or miles_S2 is None:\n print('neutral')\nelif miles_S1 == miles_S2:\n print('Entailment')\nelif miles_S1 != miles_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Suresh is 25 % more efficient than Kamal , he can complete the work in - - - days ., \"statement 2\" :If Suresh is less than 35 % more efficient than Kamal , he can complete the work in - - - days ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "efficient_S1 = 25\nefficient_S2 = 35\nif efficient_S1 is None or efficient_S2 is None:\n print('neutral')\nelif efficient_S1 < efficient_S2:\n print('Entailment')\nelif efficient_S1 != efficient_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In 5 years John will be twice as old as Frank, \"statement 2\" :In less than 8 years John will be twice as old as Frank, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_S1 = 5\nyears_S2 = 8\nif years_S1 is None or years_S2 is None:\n print('neutral')\nelif years_S1 < years_S2:\n print('Entailment')\nelif years_S1 != years_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The price of a car and AC are in the ratio more than 2 : 2, \"statement 2\" :The price of a car and AC are in the ratio 3 : 2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_S1 = None\nratio_S2 = 3/2\nif ratio_S1 is None or ratio_S2 is None:\n print('neutral')\nelif ratio_S1 == ratio_S2:\n print('Entailment')\nelif ratio_S1 != ratio_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Shekar scored more than 46 , 65 , 82 , 67 and 75 marks in Mathematics , Science , Social studies , English and Biology respectively, \"statement 2\" :Shekar scored 76 , 65 , 82 , 67 and 75 marks in Mathematics , Science , Social studies , English and Biology respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_S1 = None\nmarks_S2 = 76\nif marks_S1 is None or marks_S2 is None:\n print('neutral')\nelif marks_S1 == marks_S2:\n print('Entailment')\nelif marks_S1 != marks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": George ' s car calls for more than 7 ounces of oil for each cylinder used, \"statement 2\" :George ' s car calls for 8 ounces of oil for each cylinder used, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ounces_S1 = None\nounces_S2 = 8\nif ounces_S1 is None or ounces_S2 is None:\n print('neutral')\nelif ounces_S1 == ounces_S2:\n print('Entailment')\nelif ounces_S1 != ounces_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Lucy deposited $ less than 72500 in an investment fund that provided 20 percent annual return compounded quarterly, \"statement 2\" :Lucy deposited $ 62500 in an investment fund that provided 20 percent annual return compounded quarterly, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "investment_fund_S1 = None\ninvestment_fund_S2 = 62500\nif investment_fund_S1 is None or investment_fund_S2 is None:\n print('neutral')\nelif investment_fund_S1 == investment_fund_S2:\n print('Entailment')\nelif investment_fund_S1 != investment_fund_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the marks secured by Reema was written as less than 56 instead of 56 then find the correct average marks up to two decimal places ., \"statement 2\" :If the marks secured by Reema was written as 46 instead of 56 then find the correct average marks up to two decimal places ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_S1 = None\nmarks_S2 = 46\nif marks_S1 is None or marks_S2 is None:\n print('neutral')\nelif marks_S1 == marks_S2:\n print('Entailment')\nelif marks_S1 != marks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Bhanu spends less than 60 % of his income on petrol on scooter 14 % of the remaining on house rent and the balance on food, \"statement 2\" :Bhanu spends 30 % of his income on petrol on scooter 14 % of the remaining on house rent and the balance on food, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "income_S1 = None\nincome_S2 = 30\nif income_S1 is None or income_S2 is None:\n print('neutral')\nelif income_S1 == income_S2:\n print('Entailment')\nelif income_S1 != income_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the number of such passengers that used Miami Airport was less than 7 / 3 the number that used Kennedy Airport and 4 times the number that used Logan Airport , approximately how many millions of these passengers used Logan Airport that year ?, \"statement 2\" :If the number of such passengers that used Miami Airport was 1 / 3 the number that used Kennedy Airport and 4 times the number that used Logan Airport , approximately how many millions of these passengers used Logan Airport that year ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "passengers_S1 = None\npassengers_S2 = 1/3\nif passengers_S1 is None or passengers_S2 is None:\n print('neutral')\nelif passengers_S1 == passengers_S2:\n print('Entailment')\nelif passengers_S1 != passengers_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Deepa bought a calculator at 30 % discount on the listed price, \"statement 2\" :Deepa bought a calculator at more than 10 % discount on the listed price, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "discount_S1 = 30\ndiscount_S2 = 10\nif discount_S1 is None or discount_S2 is None:\n print('neutral')\nelif discount_S1 > discount_S2:\n print('Entailment')\nelif discount_S1 != discount_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Frank is 14 years younger then John, \"statement 2\" :Frank is 54 years younger then John, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_S1 = 14\nyears_S2 = 54\nif years_S1 is None or years_S2 is None:\n print('neutral')\nelif years_S1 == years_S2:\n print('Entailment')\nelif years_S1 != years_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 450 and she sold that to George for Rs, \"statement 2\" :less than 750 and she sold that to George for Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Rs_S1 = 450\nRs_S2 = 750\nif Rs_S1 is None or Rs_S2 is None:\n print('neutral')\nelif Rs_S1 < Rs_S2:\n print('Entailment')\nelif Rs_S1 != Rs_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In a friendship gang Mala has 5 gang , in how many ways can he invite one or more of the gang to his house ?, \"statement 2\" :In a friendship gang Mala has more than 5 gang , in how many ways can he invite one or more of the gang to his house ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "friendship_gang_S1 = 5\nfriendship_gang_S2 = 0\nif friendship_gang_S1 is None or friendship_gang_S2 is None:\n print('neutral')\nelif friendship_gang_S1 == friendship_gang_S2:\n print('Entailment')\nelif friendship_gang_S1 != friendship_gang_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Leo gains 10 pounds , he will weigh 50 % more than his sister Kendra, \"statement 2\" :If Leo gains 80 pounds , he will weigh 50 % more than his sister Kendra, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pounds_S1 = 10\npounds_S2 = 80\nif pounds_S1 is None or pounds_S2 is None:\n print('neutral')\nelif pounds_S1 == pounds_S2:\n print('Entailment')\nelif pounds_S1 != pounds_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": NHAI employs 100 men to build a highway of 2 km in 50 days working 8 hours a day, \"statement 2\" :NHAI employs less than 600 men to build a highway of 2 km in 50 days working 8 hours a day, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "men_S1 = 100\nmen_S2 = 600\nif men_S1 is None or men_S2 is None:\n print('neutral')\nelif men_S1 < men_S2:\n print('Entailment')\nelif men_S1 != men_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Kramer can pack less than 20 boxes of cigarettes per minute, \"statement 2\" :Kramer can pack 10 boxes of cigarettes per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boxes_S1 = None\nboxes_S2 = 10\nif boxes_S1 is None or boxes_S2 is None:\n print('neutral')\nelif boxes_S1 == boxes_S2:\n print('Entailment')\nelif boxes_S1 != boxes_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At the same time Joyce gets on an elevator on the more than 51 st floor of the same building and rides down at a rate of 93 floors per minute, \"statement 2\" :At the same time Joyce gets on an elevator on the 71 st floor of the same building and rides down at a rate of 93 floors per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "floor_S1 = None\nfloor_S2 = 71\nif floor_S1 is None or floor_S2 is None:\n print('neutral')\nelif floor_S1 == floor_S2:\n print('Entailment')\nelif floor_S1 != floor_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Efrida and Frazer who live less than 35 miles apart , meet at a restaurant that is directly north of Efrida ' s home and directly east of Frazer ' s home, \"statement 2\" :Efrida and Frazer who live 15 miles apart , meet at a restaurant that is directly north of Efrida ' s home and directly east of Frazer ' s home, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_S1 = None\nmiles_S2 = 15\nif miles_S1 is None or miles_S2 is None:\n print('neutral')\nelif miles_S1 == miles_S2:\n print('Entailment')\nelif miles_S1 != miles_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Addison High School \u2019 s senior class has 200 boys and 160 girls, \"statement 2\" :Addison High School \u2019 s senior class has 700 boys and 160 girls, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boys_S1 = 200\nboys_S2 = 700\nif boys_S1 is None or boys_S2 is None:\n print('neutral')\nelif boys_S1 == boys_S2:\n print('Entailment')\nelif boys_S1 != boys_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Vijay bought less than 560 shirts at the rate of Rs, \"statement 2\" :Vijay bought 160 shirts at the rate of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shirts_S1 = None\nshirts_S2 = 160\nif shirts_S1 is None or shirts_S2 is None:\n print('neutral')\nelif shirts_S1 == shirts_S2:\n print('Entailment')\nelif shirts_S1 != shirts_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If an outfit consists of less than 4 shirt , 1 pair of jeans , and 1 pair of sneakers , how many different outfits does Jordan have ?, \"statement 2\" :If an outfit consists of 1 shirt , 1 pair of jeans , and 1 pair of sneakers , how many different outfits does Jordan have ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shirts_S1 = None\nshirts_S2 = 1\nif shirts_S1 is None or shirts_S2 is None:\n print('neutral')\nelif shirts_S1 == shirts_S2:\n print('Entailment')\nelif shirts_S1 != shirts_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The pilot of a small aircraft with a 40 - gallon fuel tank wants to fly to Cleveland , which is 480 miles away, \"statement 2\" :The pilot of a small aircraft with a less than 50 - gallon fuel tank wants to fly to Cleveland , which is 480 miles away, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gallon_S1 = 40\ngallon_S2 = 50\nif gallon_S1 is None or gallon_S2 is None:\n print('neutral')\nelif gallon_S1 < gallon_S2:\n print('Entailment')\nelif gallon_S1 != gallon_S2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Ben worked for 7 days on a task that will take him 14 days to complete alone before he was joined by Blake, \"statement 2\" :Ben worked for more than 2 days on a task that will take him 14 days to complete alone before he was joined by Blake, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_S1 = 7\ndays_S2 = 2\nif days_S1 is None or days_S2 is None:\n print('neutral')\nelif days_S1 > days_S2:\n print('Entailment')\nelif days_S1 != days_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Each week , James is paid x dollars per per hour for the first 40 hours and 1.5 x dollars for each additional hour worked that week, \"statement 2\" :Each week , James is paid x dollars per per hour for the first more than 40 hours and 1.5 x dollars for each additional hour worked that week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = 40\nhours_S2 = 0\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 == hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Kiran is younger than Bineesh by 7 years and their ages are in the respective ratio of 7 : 9, \"statement 2\" :Kiran is younger than Bineesh by less than 7 years and their ages are in the respective ratio of 7 : 9, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_S1 = 7\nyears_S2 = 0\nif years_S1 is None or years_S2 is None:\n print('neutral')\nelif years_S1 == years_S2:\n print('Entailment')\nelif years_S1 != years_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Frank is less than 84 years younger then John, \"statement 2\" :Frank is 14 years younger then John, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_S1 = None\nyears_S2 = 14\nif years_S1 is None or years_S2 is None:\n print('neutral')\nelif years_S1 == years_S2:\n print('Entailment')\nelif years_S1 != years_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If 1 / 12 of the passengers on a ship are from North America , 1 / 4 are Europeans , 2 / 9 are from Africa , 1 / 6 are from Asia and the remaining 50 people are citizens of other continents , then how many passengers are on board the ship ?, \"statement 2\" :If more than 1 / 12 of the passengers on a ship are from North America , 1 / 4 are Europeans , 2 / 9 are from Africa , 1 / 6 are from Asia and the remaining 50 people are citizens of other continents , then how many passengers are on board the ship ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "passengers_S1 = 1/12\npassengers_S2 = 0\nif passengers_S1 is None or passengers_S2 is None:\n print('neutral')\nelif passengers_S1 == passengers_S2:\n print('Entailment')\nelif passengers_S1 != passengers_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Anita goes away and Indu leaves more than 1 days before the work is finished, \"statement 2\" :Anita goes away and Indu leaves 7 days before the work is finished, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_S1 = None\ndays_S2 = 7\nif days_S1 is None or days_S2 is None:\n print('neutral')\nelif days_S1 == days_S2:\n print('Entailment')\nelif days_S1 != days_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If it takes Darcy a total of 15 more minutes to commute to work by walking than it takes her to commute to work by riding the train , what is the value of x ?, \"statement 2\" :If it takes Darcy a total of more than 15 more minutes to commute to work by walking than it takes her to commute to work by riding the train , what is the value of x ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "minutes_S1 = 15\nminutes_S2 = 0\nif minutes_S1 is None or minutes_S2 is None:\n print('neutral')\nelif minutes_S1 == minutes_S2:\n print('Entailment')\nelif minutes_S1 != minutes_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Efrida and Frazer who live 15 miles apart , meet at a restaurant that is directly north of Efrida ' s home and directly east of Frazer ' s home, \"statement 2\" :Efrida and Frazer who live less than 35 miles apart , meet at a restaurant that is directly north of Efrida ' s home and directly east of Frazer ' s home, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_S1 = 15\nmiles_S2 = 35\nif miles_S1 is None or miles_S2 is None:\n print('neutral')\nelif miles_S1 < miles_S2:\n print('Entailment')\nelif miles_S1 != miles_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Each week , Harry is paid x dollars per hour for the first more than 10 hours and 1.5 x dollars for each additional hour worked that week, \"statement 2\" :Each week , Harry is paid x dollars per hour for the first 30 hours and 1.5 x dollars for each additional hour worked that week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = None\nhours_S2 = 30\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 < hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Preethi has 6 flavors of ice cream in his parlor, \"statement 2\" :Preethi has more than 1 flavors of ice cream in his parlor, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ice_cream_S1 = 6\nice_cream_S2 = 1\nif ice_cream_S1 is None or ice_cream_S2 is None:\n print('neutral')\nelif ice_cream_S1 > ice_cream_S2:\n print('Entailment')\nelif ice_cream_S1 != ice_cream_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In a certain province in France there are 9 cities, \"statement 2\" :In a certain province in France there are more than 1 cities, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cities_S1 = 9\ncities_S2 = 1\nif cities_S1 is None or cities_S2 is None:\n print('neutral')\nelif cities_S1 > cities_S2:\n print('Entailment')\nelif cities_S1 != cities_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Xavier starts from P towards Q at a speed of more than 10 kmph and after every 12 mins increases his speed by 20 kmph, \"statement 2\" :Xavier starts from P towards Q at a speed of 90 kmph and after every 12 mins increases his speed by 20 kmph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_S1 = None\nspeed_S2 = 90\nif speed_S1 is None or speed_S2 is None:\n print('neutral')\nelif speed_S1 == speed_S2:\n print('Entailment')\nelif speed_S1 != speed_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jones gave less than 60 % of the money he had to his wife, \"statement 2\" :Jones gave 40 % of the money he had to his wife, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "money_S1 = None\nmoney_S2 = 40\nif money_S1 is None or money_S2 is None:\n print('neutral')\nelif money_S1 == money_S2:\n print('Entailment')\nelif money_S1 != money_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Reeya obtained more than 45 , 67 , 76 , 82 and 85 out of 100 in different subjects , What will be the average, \"statement 2\" :Reeya obtained 55 , 67 , 76 , 82 and 85 out of 100 in different subjects , What will be the average, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_S1 = None\nmarks_S2 = 55\nif marks_S1 is None or marks_S2 is None:\n print('neutral')\nelif marks_S1 == marks_S2:\n print('Entailment')\nelif marks_S1 != marks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If 1 / 12 of the passengers on a ship are from North America , 1 / 8 are Europeans , 1 / 3 are from Africa , 1 / 6 are from Asia and the remaining 35 people are citizens of other continents , then how many passengers are on board the ship ?, \"statement 2\" :If less than 4 / 12 of the passengers on a ship are from North America , 1 / 8 are Europeans , 1 / 3 are from Africa , 1 / 6 are from Asia and the remaining 35 people are citizens of other continents , then how many passengers are on board the ship ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "passengers_S1 = 1/12\npassengers_S2 = 4/12\nif passengers_S1 is None or passengers_S2 is None:\n print('neutral')\nelif passengers_S1 < passengers_S2:\n print('Entailment')\nelif passengers_S1 != passengers_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The ratio between the number of sheep and the number of horses at the Stewart farm is more than 1 to 7 , If each horse is fed 230 ounces of horse food per day and the farm needs a total 12,880 ounces of horse food per day , what is the number of sheep in the farm ?, \"statement 2\" :The ratio between the number of sheep and the number of horses at the Stewart farm is 6 to 7 , If each horse is fed 230 ounces of horse food per day and the farm needs a total 12,880 ounces of horse food per day , what is the number of sheep in the farm ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_S1 = None\nratio_S2 = 6\nif ratio_S1 is None or ratio_S2 is None:\n print('neutral')\nelif ratio_S1 == ratio_S2:\n print('Entailment')\nelif ratio_S1 != ratio_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Calculate the average marks of a student who obtained 56 , 60 , 72 , 85 and 80 marks ( out of 100 ) in Geography , History and Government , Art , Computer Science and Modern Literature ?, \"statement 2\" :Calculate the average marks of a student who obtained less than 56 , 60 , 72 , 85 and 80 marks ( out of 100 ) in Geography , History and Government , Art , Computer Science and Modern Literature ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_S1 = 56\nmarks_S2 = 0\nif marks_S1 is None or marks_S2 is None:\n print('neutral')\nelif marks_S1 == marks_S2:\n print('Entailment')\nelif marks_S1 != marks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Last week James worked a total of 41 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"statement 2\" :Last week James worked a total of 31 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = 41\nhours_S2 = 31\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 == hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": more than 500 and Greg ' s share is Rs, \"statement 2\" :600 and Greg ' s share is Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "share_S1 = None\nshare_S2 = 600\nif share_S1 is None or share_S2 is None:\n print('neutral')\nelif share_S1 == share_S2:\n print('Entailment')\nelif share_S1 != share_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": After 30 minutes , Jim stops to stretch, \"statement 2\" :After 80 minutes , Jim stops to stretch, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "minutes_S1 = 30\nminutes_S2 = 80\nif minutes_S1 is None or minutes_S2 is None:\n print('neutral')\nelif minutes_S1 == minutes_S2:\n print('Entailment')\nelif minutes_S1 != minutes_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Dana borrows 6500 pounds annually for her college education, \"statement 2\" :Dana borrows 1500 pounds annually for her college education, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pounds_S1 = 6500\npounds_S2 = 1500\nif pounds_S1 is None or pounds_S2 is None:\n print('neutral')\nelif pounds_S1 == pounds_S2:\n print('Entailment')\nelif pounds_S1 != pounds_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": There are 8 stations between Vijayawada and Chennai, \"statement 2\" :There are more than 4 stations between Vijayawada and Chennai, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stations_S1 = 8\nstations_S2 = 4\nif stations_S1 is None or stations_S2 is None:\n print('neutral')\nelif stations_S1 > stations_S2:\n print('Entailment')\nelif stations_S1 != stations_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Level - less than 7 college graduates account for 10 % of Listco ' s sales staff, \"statement 2\" :Level - 1 college graduates account for 10 % of Listco ' s sales staff, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "college_S1 = None\ncollege_S2 = 1\nif college_S1 is None or college_S2 is None:\n print('neutral')\nelif college_S1 == college_S2:\n print('Entailment')\nelif college_S1 != college_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": more than 1 people entered the theater between Sujit and Suraj and 20 people entered the theater after Suraj, \"statement 2\" :7 people entered the theater between Sujit and Suraj and 20 people entered the theater after Suraj, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_S1 = None\npeople_S2 = 7\nif people_S1 is None or people_S2 is None:\n print('neutral')\nelif people_S1 == people_S2:\n print('Entailment')\nelif people_S1 != people_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Lexi got a new job that pays $ 150 per day, \"statement 2\" :Lexi got a new job that pays $ less than 150 per day, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dollar_S1 = 150\ndollar_S2 = 0\nif dollar_S1 is None or dollar_S2 is None:\n print('neutral')\nelif dollar_S1 == dollar_S2:\n print('Entailment')\nelif dollar_S1 != dollar_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Scott ' s average ( arithmetic mean ) golf score on his first four rounds was less than 88, \"statement 2\" :Scott ' s average ( arithmetic mean ) golf score on his first four rounds was 58, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "score_S1 = None\nscore_S2 = 58\nif score_S1 is None or score_S2 is None:\n print('neutral')\nelif score_S1 == score_S2:\n print('Entailment')\nelif score_S1 != score_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": One hour after Matthew started waking from t to y , a distance of 45 km , Johnny started walking along the same road from y to t, \"statement 2\" :One hour after Matthew started waking from t to y , a distance of more than 45 km , Johnny started walking along the same road from y to t, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_S1 = 45\ndistance_S2 = 0\nif distance_S1 is None or distance_S2 is None:\n print('neutral')\nelif distance_S1 == distance_S2:\n print('Entailment')\nelif distance_S1 != distance_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the trip home took less than 7 / 2 hour longer than the trip to the beach , how many kilometers u did Carl drive each way ?, \"statement 2\" :If the trip home took 1 / 2 hour longer than the trip to the beach , how many kilometers u did Carl drive each way ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hour_S1 = None\nhour_S2 = 1/2\nif hour_S1 is None or hour_S2 is None:\n print('neutral')\nelif hour_S1 == hour_S2:\n print('Entailment')\nelif hour_S1 != hour_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": What is the height difference between the two if the Empire\nState Building is 356 m tall and the Petronas Towers is 370 m tall ?, \"statement 2\" :What is the height difference between the two if the Empire State Building is less than 356 m tall and the Petronas Towers is 370 m tall ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "height_S1 = 356\nheight_S2 = 0\nif height_S1 is None or height_S2 is None:\n print('neutral')\nelif height_S1 == height_S2:\n print('Entailment')\nelif height_S1 != height_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Rakesh travelled 1800 kilometre by air which formed 3 / 5 of the total journey, \"statement 2\" :Rakesh travelled less than 8800 kilometre by air which formed 3 / 5 of the total journey, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kilometre_S1 = 1800\nkilometre_S2 = 8800\nif kilometre_S1 is None or kilometre_S2 is None:\n print('neutral')\nelif kilometre_S1 < kilometre_S2:\n print('Entailment')\nelif kilometre_S1 != kilometre_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Dacid obtained 86 , 85 , 92 , 87 and 95 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained less than 86 , 85 , 92 , 87 and 95 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_S1 = 86\nmarks_S2 = 0\nif marks_S1 is None or marks_S2 is None:\n print('neutral')\nelif marks_S1 < marks_S2:\n print('Entailment')\nelif marks_S1 != marks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Present ages of Sameer and Anand are in the ratio of 5 : 4 respectively, \"statement 2\" :Present ages of Sameer and Anand are in the ratio of more than 3 : 4 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ages_S1 = 5/4\nages_S2 = 3/4\nif ages_S1 is None or ages_S2 is None:\n print('neutral')\nelif ages_S1 > ages_S2:\n print('Entailment')\nelif ages_S1 != ages_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Arun obtained more than 66 , 65 , 82 , 67 and 85 marks ( out in 100 ) in English , Mathematics , Chemistry , Biology and Physics, \"statement 2\" :Arun obtained 76 , 65 , 82 , 67 and 85 marks ( out in 100 ) in English , Mathematics , Chemistry , Biology and Physics, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_S1 = None\nmarks_S2 = 76\nif marks_S1 is None or marks_S2 is None:\n print('neutral')\nelif marks_S1 == marks_S2:\n print('Entailment')\nelif marks_S1 != marks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the number of such passengers that used Miami Airport was less than 8 / 2 the number that used Kennedy Airport and 4 times the number that used Logan Airport , approximately how many millions of these passengers used Logan Airport that year ?, \"statement 2\" :If the number of such passengers that used Miami Airport was 1 / 2 the number that used Kennedy Airport and 4 times the number that used Logan Airport , approximately how many millions of these passengers used Logan Airport that year ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "passengers_S1 = None\npassengers_S2 = 1/2\nif passengers_S1 is None or passengers_S2 is None:\n print('neutral')\nelif passengers_S1 == passengers_S2:\n print('Entailment')\nelif passengers_S1 != passengers_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jane started baby - sitting when she was 20 years old, \"statement 2\" :Jane started baby - sitting when she was 40 years old, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_S1 = 20\nyears_S2 = 40\nif years_S1 is None or years_S2 is None:\n print('neutral')\nelif years_S1 == years_S2:\n print('Entailment')\nelif years_S1 != years_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mary can do a piece of work in 11 days, \"statement 2\" :Mary can do a piece of work in more than 11 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_S1 = 11\ndays_S2 = 0\nif days_S1 is None or days_S2 is None:\n print('neutral')\nelif days_S1 == days_S2:\n print('Entailment')\nelif days_S1 != days_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The product of all the possible units digits of Sophie Germain primes greater than more than 8 is, \"statement 2\" :The product of all the possible units digits of Sophie Germain primes greater than 9 is, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "is_S1 = None\nis_S2 = 9\nif is_S1 is None or is_S2 is None:\n print('neutral')\nelif is_S1 == is_S2:\n print('Entailment')\nelif is_S1 != is_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Matt has five iron coins and five copper coins , how many different sums from 1 \u00a2 to 35 \u00a2 can he make with a combination of his coins ?, \"statement 2\" :If Matt has five iron coins and five copper coins , how many different sums from more than 1 \u00a2 to 35 \u00a2 can he make with a combination of his coins ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "coin_S1 = 1\ncoin_S2 = 0\nif coin_S1 is None or coin_S2 is None:\n print('neutral')\nelif coin_S1 == coin_S2:\n print('Entailment')\nelif coin_S1 != coin_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": One hour after Yolanda started walking from X to Y , a distance of 31 miles , Bob started walking along the same road from Y to X, \"statement 2\" :One hour after Yolanda started walking from X to Y , a distance of less than 81 miles , Bob started walking along the same road from Y to X, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_S1 = 31\nmiles_S2 = 81\nif miles_S1 is None or miles_S2 is None:\n print('neutral')\nelif miles_S1 < miles_S2:\n print('Entailment')\nelif miles_S1 != miles_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": less than 600 , what is James ' capital ?, \"statement 2\" :300 , what is James ' capital ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "capital_S1 = None\ncapital_S2 = 300\nif capital_S1 is None or capital_S2 is None:\n print('neutral')\nelif capital_S1 == capital_S2:\n print('Entailment')\nelif capital_S1 != capital_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Anita , Indu and Geeta can do a piece of work in 18 days , 27 days and 36 days respectively, \"statement 2\" :Anita , Indu and Geeta can do a piece of work in less than 38 days , 27 days and 36 days respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_S1 = 18\ndays_S2 = 38\nif days_S1 is None or days_S2 is None:\n print('neutral')\nelif days_S1 < days_S2:\n print('Entailment')\nelif days_S1 != days_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 3600 from Anwar at 6 % p, \"statement 2\" :more than 1600 from Anwar at 6 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "statement_S1 = 3600\nstatement_S2 = 1600\nif statement_S1 is None or statement_S2 is None:\n print('neutral')\nelif statement_S1 > statement_S2:\n print('Entailment')\nelif statement_S1 != statement_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Henry runs the second leg of the course in 7 seconds, \"statement 2\" :Henry runs the second leg of the course in more than 6 seconds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "seconds_S1 = 7\nseconds_S2 = 6\nif seconds_S1 is None or seconds_S2 is None:\n print('neutral')\nelif seconds_S1 > seconds_S2:\n print('Entailment')\nelif seconds_S1 != seconds_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At the faculty of Aerospace Engineering , more than 112 students study Random - processing methods , 234 students study Scramjet rocket engines and 112 students study them both, \"statement 2\" :At the faculty of Aerospace Engineering , 312 students study Random - processing methods , 234 students study Scramjet rocket engines and 112 students study them both, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "students_S1 = None\nstudents_S2 = 312\nif students_S1 is None or students_S2 is None:\n print('neutral')\nelif students_S1 == students_S2:\n print('Entailment')\nelif students_S1 != students_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": John left a job paying $ 75,000 per year to accept a sales job paying $ 45,000 per year plus 15 percent commission, \"statement 2\" :John left a job paying $ 75,000 per year to accept a sales job paying $ 45,000 per year plus 55 percent commission, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "percent_S1 = 15\npercent_S2 = 55\nif percent_S1 is None or percent_S2 is None:\n print('neutral')\nelif percent_S1 == percent_S2:\n print('Entailment')\nelif percent_S1 != percent_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is more than 1 : 2 ?, \"statement 2\" :What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is 4 : 2 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distances_S1 = None\ndistances_S2 = 4/2\nif distances_S1 is None or distances_S2 is None:\n print('neutral')\nelif distances_S1 == distances_S2:\n print('Entailment')\nelif distances_S1 != distances_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jim alone cleans the entire house in more than 1 hours, \"statement 2\" :Jim alone cleans the entire house in 6 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = None\nhours_S2 = 6\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 == hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the distance between their homes is 20 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"statement 2\" :If the distance between their homes is less than 80 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kilometers_S1 = 20\nkilometers_S2 = 80\nif kilometers_S1 is None or kilometers_S2 is None:\n print('neutral')\nelif kilometers_S1 < kilometers_S2:\n print('Entailment')\nelif kilometers_S1 != kilometers_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In how many ways can you seat 6 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"statement 2\" :In how many ways can you seat 7 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_S1 = 6\npeople_S2 = 7\nif people_S1 is None or people_S2 is None:\n print('neutral')\nelif people_S1 == people_S2:\n print('Entailment')\nelif people_S1 != people_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The average of Suresh \u2019 s marks in English and History is 55, \"statement 2\" :The average of Suresh \u2019 s marks in English and History is 35, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_S1 = 55\nmarks_S2 = 35\nif marks_S1 is None or marks_S2 is None:\n print('neutral')\nelif marks_S1 == marks_S2:\n print('Entailment')\nelif marks_S1 != marks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Nitin ranks less than 75 th in a class of 47 students, \"statement 2\" :Nitin ranks 15 th in a class of 47 students, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "students_S1 = None\nstudents_S2 = 15\nif students_S1 is None or students_S2 is None:\n print('neutral')\nelif students_S1 == students_S2:\n print('Entailment')\nelif students_S1 != students_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The price of a car and AC are in the ratio 3 : 2, \"statement 2\" :The price of a car and AC are in the ratio 8 : 2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_S1 = 3/2\nratio_S2 = 8/2\nif ratio_S1 is None or ratio_S2 is None:\n print('neutral')\nelif ratio_S1 == ratio_S2:\n print('Entailment')\nelif ratio_S1 != ratio_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Raman travelled for 10 hours, \"statement 2\" :Raman travelled for less than 10 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = 10\nhours_S2 = 0\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 == hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": After more than 4 years , Sandy \u2019 s age will be 38 years, \"statement 2\" :After 6 years , Sandy \u2019 s age will be 38 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_S1 = None\nyears_S2 = 6\nif years_S1 is None or years_S2 is None:\n print('neutral')\nelif years_S1 == years_S2:\n print('Entailment')\nelif years_S1 != years_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If there are less than 8 boxes of cigarettes in one case , how many cases can Kramer pack in 2 hours ?, \"statement 2\" :If there are 5 boxes of cigarettes in one case , how many cases can Kramer pack in 2 hours ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boxes_S1 = None\nboxes_S2 = 5\nif boxes_S1 is None or boxes_S2 is None:\n print('neutral')\nelif boxes_S1 == boxes_S2:\n print('Entailment')\nelif boxes_S1 != boxes_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The sum of ages of Aswin , Sachin and Sumesh is 93 years, \"statement 2\" :The sum of ages of Aswin , Sachin and Sumesh is more than 43 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_S1 = 93\nyears_S2 = 43\nif years_S1 is None or years_S2 is None:\n print('neutral')\nelif years_S1 > years_S2:\n print('Entailment')\nelif years_S1 != years_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": John needs 4 balls out of 10 balls, \"statement 2\" :John needs 3 balls out of 10 balls, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "balls_S1 = 4\nballs_S2 = 3\nif balls_S1 is None or balls_S2 is None:\n print('neutral')\nelif balls_S1 == balls_S2:\n print('Entailment')\nelif balls_S1 != balls_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": George ' s car calls for 8 ounces of oil for each cylinder used, \"statement 2\" :George ' s car calls for more than 8 ounces of oil for each cylinder used, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ounces_S1 = 8\nounces_S2 = 0\nif ounces_S1 is None or ounces_S2 is None:\n print('neutral')\nelif ounces_S1 == ounces_S2:\n print('Entailment')\nelif ounces_S1 != ounces_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Ayisha ' s age is less than 3 / 6 th of her father ' s age, \"statement 2\" :Ayisha ' s age is 1 / 6 th of her father ' s age, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_S1 = None\nage_S2 = 1/6\nif age_S1 is None or age_S2 is None:\n print('neutral')\nelif age_S1 == age_S2:\n print('Entailment')\nelif age_S1 != age_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jane is currently less than 82 years old , and she stopped baby - sitting 12 years ago, \"statement 2\" :Jane is currently 32 years old , and she stopped baby - sitting 12 years ago, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_S1 = None\nyears_S2 = 32\nif years_S1 is None or years_S2 is None:\n print('neutral')\nelif years_S1 == years_S2:\n print('Entailment')\nelif years_S1 != years_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Lexi needed to save for less than 80 days to afford a vacation at the job that paid her $ 125 per day, \"statement 2\" :Lexi needed to save for 30 days to afford a vacation at the job that paid her $ 125 per day, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_S1 = None\ndays_S2 = 30\nif days_S1 is None or days_S2 is None:\n print('neutral')\nelif days_S1 == days_S2:\n print('Entailment')\nelif days_S1 != days_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Ramesh can finish a work in less than 60 days and Sushil in 25 days, \"statement 2\" :Ramesh can finish a work in 20 days and Sushil in 25 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_S1 = None\ndays_S2 = 20\nif days_S1 is None or days_S2 is None:\n print('neutral')\nelif days_S1 == days_S2:\n print('Entailment')\nelif days_S1 != days_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If there are 5 boxes of cigarettes in one case , how many cases can Kramer pack in 2 hours ?, \"statement 2\" :If there are less than 8 boxes of cigarettes in one case , how many cases can Kramer pack in 2 hours ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boxes_S1 = 5\nboxes_S2 = 8\nif boxes_S1 is None or boxes_S2 is None:\n print('neutral')\nelif boxes_S1 < boxes_S2:\n print('Entailment')\nelif boxes_S1 != boxes_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 2000 and Tony withdraws Rs, \"statement 2\" :less than 5000 and Tony withdraws Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "withdraws_S1 = 2000\nwithdraws_S2 = 5000\nif withdraws_S1 is None or withdraws_S2 is None:\n print('neutral')\nelif withdraws_S1 < withdraws_S2:\n print('Entailment')\nelif withdraws_S1 != withdraws_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Each of three charities in Novel Grove Estates has more than 4 persons serving on its board of directors, \"statement 2\" :Each of three charities in Novel Grove Estates has 8 persons serving on its board of directors, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "persons_S1 = None\npersons_S2 = 8\nif persons_S1 is None or persons_S2 is None:\n print('neutral')\nelif persons_S1 == persons_S2:\n print('Entailment')\nelif persons_S1 != persons_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 6970 , then what will be the share of Sameer in the profit ?, \"statement 2\" :more than 1970 , then what will be the share of Sameer in the profit ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "share_S1 = 6970\nshare_S2 = 1970\nif share_S1 is None or share_S2 is None:\n print('neutral')\nelif share_S1 > share_S2:\n print('Entailment')\nelif share_S1 != share_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Shekar scored 76 , 65 , 82 , 67 and 75 marks in Mathematics , Science , Social studies , English and Biology respectively, \"statement 2\" :Shekar scored more than 46 , 65 , 82 , 67 and 75 marks in Mathematics , Science , Social studies , English and Biology respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_S1 = 76\nmarks_S2 = 46\nif marks_S1 is None or marks_S2 is None:\n print('neutral')\nelif marks_S1 > marks_S2:\n print('Entailment')\nelif marks_S1 != marks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Raman mixed less than 47 kg of butter at Rs, \"statement 2\" :Raman mixed 27 kg of butter at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "butter_S1 = None\nbutter_S2 = 27\nif butter_S1 is None or butter_S2 is None:\n print('neutral')\nelif butter_S1 == butter_S2:\n print('Entailment')\nelif butter_S1 != butter_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Marcella has 27 pairs of shoes, \"statement 2\" :Marcella has more than 27 pairs of shoes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shoes_S1 = 27\nshoes_S2 = 0\nif shoes_S1 is None or shoes_S2 is None:\n print('neutral')\nelif shoes_S1 == shoes_S2:\n print('Entailment')\nelif shoes_S1 != shoes_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Smita Was Making A Cube With Dimensions 5 * 5 * 5 Using 1 * 1 * 1 Cubes, \"statement 2\" :Smita Was Making A Cube With Dimensions more than 5 * 5 * 5 Using 1 * 1 * 1 Cubes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dimensions_S1 = 5*5*5\nDimensions_S2 = 0\nif Dimensions_S1 is None or Dimensions_S2 is None:\n print('neutral')\nelif Dimensions_S1 == Dimensions_S2:\n print('Entailment')\nelif Dimensions_S1 != Dimensions_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Sacha runs at a constant speed of 9 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"statement 2\" :Sacha runs at a constant speed of more than 9 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "meters_S1 = 9\nmeters_S2 = 0\nif meters_S1 is None or meters_S2 is None:\n print('neutral')\nelif meters_S1 == meters_S2:\n print('Entailment')\nelif meters_S1 != meters_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Amtek employs more than 60 level - 1 employees , 30 of whom are college graduates, \"statement 2\" :Amtek employs 80 level - 1 employees , 30 of whom are college graduates, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "level_S1 = None\nlevel_S2 = 80\nif level_S1 is None or level_S2 is None:\n print('neutral')\nelif level_S1 == level_S2:\n print('Entailment')\nelif level_S1 != level_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Lucy deposited $ 62500 in an investment fund that provided 8 percent annual return compounded quarterly, \"statement 2\" :Lucy deposited $ less than 62500 in an investment fund that provided 8 percent annual return compounded quarterly, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "investment_fund_S1 = 62500\ninvestment_fund_S2 = 0\nif investment_fund_S1 is None or investment_fund_S2 is None:\n print('neutral')\nelif investment_fund_S1 == investment_fund_S2:\n print('Entailment')\nelif investment_fund_S1 != investment_fund_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Roslin played the game , getting at least one score of each of 1 , 2 , 3 , 4 , and 5 , and never getting the same score in consecutive steps, \"statement 2\" :Roslin played the game , getting at least one score of each of less than 1 , 2 , 3 , 4 , and 5 , and never getting the same score in consecutive steps, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "score_S1 = 1\nscore_S2 = 0\nif score_S1 is None or score_S2 is None:\n print('neutral')\nelif score_S1 == score_S2:\n print('Entailment')\nelif score_S1 != score_S2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": David gets on the elevator at the 11 th floor of a building and rides up at the rate of 57 floors per minute, \"statement 2\" :David gets on the elevator at the 81 th floor of a building and rides up at the rate of 57 floors per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "floor_S1 = 11\nfloor_S2 = 81\nif floor_S1 is None or floor_S2 is None:\n print('neutral')\nelif floor_S1 == floor_S2:\n print('Entailment')\nelif floor_S1 != floor_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Kiran has 85 currency notes in all , some of which were of Rs, \"statement 2\" :Kiran has 15 currency notes in all , some of which were of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "currency_S1 = 85\ncurrency_S2 = 15\nif currency_S1 is None or currency_S2 is None:\n print('neutral')\nelif currency_S1 == currency_S2:\n print('Entailment')\nelif currency_S1 != currency_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mark sold 7 boxes less than n and Ann sold 2 boxes less than n, \"statement 2\" :Mark sold more than 7 boxes less than n and Ann sold 2 boxes less than n, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boxes_S1 = 7\nboxes_S2 = 0\nif boxes_S1 is None or boxes_S2 is None:\n print('neutral')\nelif boxes_S1 == boxes_S2:\n print('Entailment')\nelif boxes_S1 != boxes_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Sachi invested amount of 8000 in a fixed deposit for 2 years at compound interest rate of 5 % per annum, \"statement 2\" :Sachi invested amount of 2000 in a fixed deposit for 2 years at compound interest rate of 5 % per annum, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_S1 = 8000\namount_S2 = 2000\nif amount_S1 is None or amount_S2 is None:\n print('neutral')\nelif amount_S1 == amount_S2:\n print('Entailment')\nelif amount_S1 != amount_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Sam wrote 7 letters on Tuesday and 3 letters on Wednesday, \"statement 2\" :Sam wrote more than 4 letters on Tuesday and 3 letters on Wednesday, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "letters_S1 = 7\nletters_S2 = 4\nif letters_S1 is None or letters_S2 is None:\n print('neutral')\nelif letters_S1 > letters_S2:\n print('Entailment')\nelif letters_S1 != letters_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Rahul paid a total of $ less than 360 , excluding sales tax , to rent the tool , for how many hours did she rent it ?, \"statement 2\" :If Rahul paid a total of $ 160 , excluding sales tax , to rent the tool , for how many hours did she rent it ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dollar_S1 = None\ndollar_S2 = 160\nif dollar_S1 is None or dollar_S2 is None:\n print('neutral')\nelif dollar_S1 == dollar_S2:\n print('Entailment')\nelif dollar_S1 != dollar_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Dan works alone for less than 8 hours and then stops , how many hours will it take Annie , working alone , to complete the job ?, \"statement 2\" :If Dan works alone for 6 hours and then stops , how many hours will it take Annie , working alone , to complete the job ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = None\nhours_S2 = 6\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 == hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": How many liters of blue paint must be added to 16 liters of Fuchsia to change it to Mauve paint ?, \"statement 2\" :How many liters of blue paint must be added to 36 liters of Fuchsia to change it to Mauve paint ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "liters_S1 = 16\nliters_S2 = 36\nif liters_S1 is None or liters_S2 is None:\n print('neutral')\nelif liters_S1 == liters_S2:\n print('Entailment')\nelif liters_S1 != liters_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jane is currently 32 years old , and she stopped baby - sitting 10 years ago, \"statement 2\" :Jane is currently less than 42 years old , and she stopped baby - sitting 10 years ago, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_S1 = 32\nyears_S2 = 42\nif years_S1 is None or years_S2 is None:\n print('neutral')\nelif years_S1 < years_S2:\n print('Entailment')\nelif years_S1 != years_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The total of the ages of Amar , Akbar and Anthony is 66 years, \"statement 2\" :The total of the ages of Amar , Akbar and Anthony is less than 66 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_S1 = 66\nyears_S2 = 0\nif years_S1 is None or years_S2 is None:\n print('neutral')\nelif years_S1 == years_S2:\n print('Entailment')\nelif years_S1 != years_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": At Veridux Corporation , there are 210 employees, \"statement 2\" :At Veridux Corporation , there are less than 210 employees, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "employees_S1 = 210\nemployees_S2 = 0\nif employees_S1 is None or employees_S2 is None:\n print('neutral')\nelif employees_S1 == employees_S2:\n print('Entailment')\nelif employees_S1 != employees_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Rahul paid a total of $ 160 , excluding sales tax , to rent the tool , for how many hours did she rent it ?, \"statement 2\" :If Rahul paid a total of $ less than 360 , excluding sales tax , to rent the tool , for how many hours did she rent it ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dollar_S1 = 160\ndollar_S2 = 360\nif dollar_S1 is None or dollar_S2 is None:\n print('neutral')\nelif dollar_S1 < dollar_S2:\n print('Entailment')\nelif dollar_S1 != dollar_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Bruce and Bhishma are running on a circular track of length 600 m, \"statement 2\" :Bruce and Bhishma are running on a circular track of length more than 200 m, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "length_S1 = 600\nlength_S2 = 200\nif length_S1 is None or length_S2 is None:\n print('neutral')\nelif length_S1 > length_S2:\n print('Entailment')\nelif length_S1 != length_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jill works as a waitress at the local diner where she earns an hourly wage of $ 6.00 per hour and a standard tip rate of 35 % of the cost of the orders she serves, \"statement 2\" :Jill works as a waitress at the local diner where she earns an hourly wage of $ 6.00 per hour and a standard tip rate of less than 75 % of the cost of the orders she serves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tip_rate_S1 = 35\ntip_rate_S2 = 75\nif tip_rate_S1 is None or tip_rate_S2 is None:\n print('neutral')\nelif tip_rate_S1 < tip_rate_S2:\n print('Entailment')\nelif tip_rate_S1 != tip_rate_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Sachin Tendulkar bough a red ferrari with a strange less than 7 digit numbered plate, \"statement 2\" :Sachin Tendulkar bough a red ferrari with a strange 5 digit numbered plate, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "numbered_S1 = None\nnumbered_S2 = 5\nif numbered_S1 is None or numbered_S2 is None:\n print('neutral')\nelif numbered_S1 == numbered_S2:\n print('Entailment')\nelif numbered_S1 != numbered_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": David obtained 86 , 85 , 82 , 87 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"statement 2\" :David obtained less than 86 , 85 , 82 , 87 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_S1 = 86\nmarks_S2 = 0\nif marks_S1 is None or marks_S2 is None:\n print('neutral')\nelif marks_S1 == marks_S2:\n print('Entailment')\nelif marks_S1 != marks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Vinod climbs 60 steps in 40 seconds, \"statement 2\" :Vinod climbs less than 80 steps in 40 seconds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "steps_S1 = 60\nsteps_S2 = 80\nif steps_S1 is None or steps_S2 is None:\n print('neutral')\nelif steps_S1 < steps_S2:\n print('Entailment')\nelif steps_S1 != steps_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": While driving from City A to City B , Bob drives at a constant speed of 40 miles per hour, \"statement 2\" :While driving from City A to City B , Bob drives at a constant speed of 10 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_S1 = 40\nmiles_S2 = 10\nif miles_S1 is None or miles_S2 is None:\n print('neutral')\nelif miles_S1 == miles_S2:\n print('Entailment')\nelif miles_S1 != miles_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jim alone cleans the entire house in 6 hours, \"statement 2\" :Jim alone cleans the entire house in more than 1 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = 6\nhours_S2 = 1\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 > hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The ratio of the ages of Anil and his son at present is more than 2 : 3, \"statement 2\" :The ratio of the ages of Anil and his son at present is 7 : 3, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ages_S1 = None\nages_S2 = 7/2\nif ages_S1 is None or ages_S2 is None:\n print('neutral')\nelif ages_S1 == ages_S2:\n print('Entailment')\nelif ages_S1 != ages_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 4500 find the share of Tony ., \"statement 2\" :less than 6500 find the share of Tony ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "share_S1 = 4500\nshare_S2 = 6500\nif share_S1 is None or share_S2 is None:\n print('neutral')\nelif share_S1 < share_S2:\n print('Entailment')\nelif share_S1 != share_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The ratio between the number of sheep and the number of horses at the Stewart farm is 6 to 7 , If each horse is fed 230 ounces of horse food per day and the farm needs a total 12,880 ounces of horse food per day , what is the number of sheep in the farm ?, \"statement 2\" :The ratio between the number of sheep and the number of horses at the Stewart farm is less than 6 to 7 , If each horse is fed 230 ounces of horse food per day and the farm needs a total 12,880 ounces of horse food per day , what is the number of sheep in the farm ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "horses_S1 = 6\nhorses_S2 = 0\nif horses_S1 is None or horses_S2 is None:\n print('neutral')\nelif horses_S1 == horses_S2:\n print('Entailment')\nelif horses_S1 != horses_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Sacha runs at a constant speed of 7 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"statement 2\" :Sacha runs at a constant speed of less than 7 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "meters_S1 = 7\nmeters_S2 = 0\nif meters_S1 is None or meters_S2 is None:\n print('neutral')\nelif meters_S1 == meters_S2:\n print('Entailment')\nelif meters_S1 != meters_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": David gets on the elevator at the 11 th floor of a building and rides up at the rate of 57 floors per minute, \"statement 2\" :David gets on the elevator at the less than 61 th floor of a building and rides up at the rate of 57 floors per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "floor_S1 = 11\nfloor_S2 = 61\nif floor_S1 is None or floor_S2 is None:\n print('neutral')\nelif floor_S1 < floor_S2:\n print('Entailment')\nelif floor_S1 != floor_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Marie has 248 $ in her account of the bank, \"statement 2\" :Marie has 148 $ in her account of the bank, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dollar_S1 = 248\ndollar_S2 = 148\nif dollar_S1 is None or dollar_S2 is None:\n print('neutral')\nelif dollar_S1 == dollar_S2:\n print('Entailment')\nelif dollar_S1 != dollar_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Susan weighs less than 40 pounds more than Anna does , and together they weigh a total of 110 pounds, \"statement 2\" :Susan weighs 10 pounds more than Anna does , and together they weigh a total of 110 pounds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pounds_S1 = None\npounds_S2 = 10\nif pounds_S1 is None or pounds_S2 is None:\n print('neutral')\nelif pounds_S1 == pounds_S2:\n print('Entailment')\nelif pounds_S1 != pounds_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": After 10 minutes , Pat stops to stretch, \"statement 2\" :After 60 minutes , Pat stops to stretch, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "minutes_S1 = 10\nminutes_S2 = 60\nif minutes_S1 is None or minutes_S2 is None:\n print('neutral')\nelif minutes_S1 == minutes_S2:\n print('Entailment')\nelif minutes_S1 != minutes_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Marcella has 25 pairs of shoes, \"statement 2\" :Marcella has less than 25 pairs of shoes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shoes_S1 = 25\nshoes_S2 = 0\nif shoes_S1 is None or shoes_S2 is None:\n print('neutral')\nelif shoes_S1 == shoes_S2:\n print('Entailment')\nelif shoes_S1 != shoes_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Bill needs to walk from the corner of 2 nd Rd and 3 rd Ave to the corner of 9 th Rd and 6 th Ave in the shortest possible time , how many different routes could he take ?, \"statement 2\" :If Bill needs to walk from the corner of less than 7 nd Rd and 3 rd Ave to the corner of 9 th Rd and 6 th Ave in the shortest possible time , how many different routes could he take ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "corner_rd_S1 = 2\ncorner_rd_S2 = 7\nif corner_rd_S1 is None or corner_rd_S2 is None:\n print('neutral')\nelif corner_rd_S1 < corner_rd_S2:\n print('Entailment')\nelif corner_rd_S1 != corner_rd_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the marks secured by Reema was written as 50 instead of 85 then find the correct average marks up to two decimal places ., \"statement 2\" :If the marks secured by Reema was written as 70 instead of 85 then find the correct average marks up to two decimal places ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_S1 = 50\nmarks_S2 = 70\nif marks_S1 is None or marks_S2 is None:\n print('neutral')\nelif marks_S1 == marks_S2:\n print('Entailment')\nelif marks_S1 != marks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Calculate the average mark scored by Adam if he had the following scores in an examination : more than 46 , 75 , 72 , 63 and 65 marks ( out of 100 ) in French Language , Geography , Art and design , History and Physical Education respectively ?, \"statement 2\" :Calculate the average mark scored by Adam if he had the following scores in an examination : 86 , 75 , 72 , 63 and 65 marks ( out of 100 ) in French Language , Geography , Art and design , History and Physical Education respectively ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "scores_S1 = None\nscores_S2 = 86\nif scores_S1 is None or scores_S2 is None:\n print('neutral')\nelif scores_S1 == scores_S2:\n print('Entailment')\nelif scores_S1 != scores_S2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Lena \u2019 s grade was in the 80 th percentile out of 120 grades in her class, \"statement 2\" :Lena \u2019 s grade was in the more than 80 th percentile out of 120 grades in her class, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "percentile_S1 = 80\npercentile_S2 = 0\nif percentile_S1 is None or percentile_S2 is None:\n print('neutral')\nelif percentile_S1 == percentile_S2:\n print('Entailment')\nelif percentile_S1 != percentile_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The time required by a train to cover the distance between Chennai and Jammu is exactly more than 6 days and 1 minute, \"statement 2\" :The time required by a train to cover the distance between Chennai and Jammu is exactly 7 days and 1 minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_S1 = None\ndays_S2 = 7\nif days_S1 is None or days_S2 is None:\n print('neutral')\nelif days_S1 == days_S2:\n print('Entailment')\nelif days_S1 != days_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the marks secured by Reema was written as 36 instead of 66 then find the correct average marks up to two decimal places ., \"statement 2\" :If the marks secured by Reema was written as more than 36 instead of 66 then find the correct average marks up to two decimal places ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_S1 = 36\nmarks_S2 = 0\nif marks_S1 is None or marks_S2 is None:\n print('neutral')\nelif marks_S1 == marks_S2:\n print('Entailment')\nelif marks_S1 != marks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If there are 5 boxes of cigarettes in one case , how many cases can Kramer pack in 2 hours ?, \"statement 2\" :If there are 1 boxes of cigarettes in one case , how many cases can Kramer pack in 2 hours ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boxes_S1 = 5\nboxes_S2 = 1\nif boxes_S1 is None or boxes_S2 is None:\n print('neutral')\nelif boxes_S1 == boxes_S2:\n print('Entailment')\nelif boxes_S1 != boxes_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Each week , Harry is paid x dollars per hour for the first less than 82 hours and 1.5 x dollars for each additional hour worked that week, \"statement 2\" :Each week , Harry is paid x dollars per hour for the first 12 hours and 1.5 x dollars for each additional hour worked that week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_S1 = None\nhours_S2 = 12\nif hours_S1 is None or hours_S2 is None:\n print('neutral')\nelif hours_S1 == hours_S2:\n print('Entailment')\nelif hours_S1 != hours_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": How many minutes does it take James to type 8 words if he types at the rate of 4 words per minute ?, \"statement 2\" :How many minutes does it take James to type more than 7 words if he types at the rate of 4 words per minute ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "words_S1 = 8\nwords_S2 = 7\nif words_S1 is None or words_S2 is None:\n print('neutral')\nelif words_S1 > words_S2:\n print('Entailment')\nelif words_S1 != words_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In the biology lab of ` ` Jefferson ' ' High School there are 0.036 * 10 ^ 5 germs , equally divided among 75000 * 10 ^ ( - 3 ) Petri dishes, \"statement 2\" :In the biology lab of ` ` Jefferson ' ' High School there are 0.036 * less than 80 ^ 5 germs , equally divided among 75000 * 10 ^ ( - 3 ) Petri dishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "germs_S1 = 10*5\ngerms_S2 = 80*5\nif germs_S1 is None or germs_S2 is None:\n print('neutral')\nelif germs_S1 < germs_S2:\n print('Entailment')\nelif germs_S1 != germs_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Dana gives her parents less than 7 % of that amount back each month , how much will she still owe her parents after four years of college ?, \"statement 2\" :If Dana gives her parents 3 % of that amount back each month , how much will she still owe her parents after four years of college ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_S1 = None\namount_S2 = 3\nif amount_S1 is None or amount_S2 is None:\n print('neutral')\nelif amount_S1 == amount_S2:\n print('Entailment')\nelif amount_S1 != amount_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Diane find 4 cans of paint are just enough to paint one third of her room, \"statement 2\" :Diane find less than 8 cans of paint are just enough to paint one third of her room, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cans_S1 = 4\ncans_S2 = 8\nif cans_S1 is None or cans_S2 is None:\n print('neutral')\nelif cans_S1 < cans_S2:\n print('Entailment')\nelif cans_S1 != cans_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Billy has 10 apples, \"statement 2\" :Billy has less than 20 apples, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "apples_S1 = 10\napples_S2 = 20\nif apples_S1 is None or apples_S2 is None:\n print('neutral')\nelif apples_S1 < apples_S2:\n print('Entailment')\nelif apples_S1 != apples_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": How many different possible committees of less than 5 people can be selected from these 7 people if at least one of either Jane or Thomas is to be selected ?, \"statement 2\" :How many different possible committees of 4 people can be selected from these 7 people if at least one of either Jane or Thomas is to be selected ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_S1 = None\npeople_S2 = 4\nif people_S1 is None or people_S2 is None:\n print('neutral')\nelif people_S1 == people_S2:\n print('Entailment')\nelif people_S1 != people_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Addison High School \u2019 s senior class has 300 boys and 240 girls, \"statement 2\" :Addison High School \u2019 s senior class has more than 300 boys and 240 girls, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boys_S1 = 300\nboys_S2 = 0\nif boys_S1 is None or boys_S2 is None:\n print('neutral')\nelif boys_S1 == boys_S2:\n print('Entailment')\nelif boys_S1 != boys_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Maddie has less than 7 apples , if she give 2 to mike , how many does she have left ?, \"statement 2\" :Maddie has 4 apples , if she give 2 to mike , how many does she have left ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "apples_S1 = None\napples_S2 = 4\nif apples_S1 is None or apples_S2 is None:\n print('neutral')\nelif apples_S1 == apples_S2:\n print('Entailment')\nelif apples_S1 != apples_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 9000 which he and Rick earned at the end of one year, \"statement 2\" :more than 4000 which he and Rick earned at the end of one year, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "earned_S1 = 9000\nearned_S2 = 4000\nif earned_S1 is None or earned_S2 is None:\n print('neutral')\nelif earned_S1 > earned_S2:\n print('Entailment')\nelif earned_S1 != earned_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Ram and Krish together can complete the same work in more than 20 days , then how long will Bhim take to complete it ?, \"statement 2\" :If Ram and Krish together can complete the same work in 40 days , then how long will Bhim take to complete it ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_S1 = None\ndays_S2 = 40\nif days_S1 is None or days_S2 is None:\n print('neutral')\nelif days_S1 == days_S2:\n print('Entailment')\nelif days_S1 != days_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Nitin borrowed some money at the rate of 6 % p, \"statement 2\" :Nitin borrowed some money at the rate of 8 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rate_S1 = 6\nrate_S2 = 8\nif rate_S1 is None or rate_S2 is None:\n print('neutral')\nelif rate_S1 == rate_S2:\n print('Entailment')\nelif rate_S1 != rate_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is 4 : 3 , After 6 Years Rahul age will be 26 years, \"statement 2\" :Ratio between Rahul and Deepak is more than 1 : 3 , After 6 Years Rahul age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_S1 = 4/3\nratio_S2 = 1/3\nif ratio_S1 is None or ratio_S2 is None:\n print('neutral')\nelif ratio_S1 > ratio_S2:\n print('Entailment')\nelif ratio_S1 != ratio_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Dana gives her parents less than 6 % of that amount back each month , how much will she still owe her parents after four years of college ?, \"statement 2\" :If Dana gives her parents 4 % of that amount back each month , how much will she still owe her parents after four years of college ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_S1 = None\namount_S2 = 4\nif amount_S1 is None or amount_S2 is None:\n print('neutral')\nelif amount_S1 == amount_S2:\n print('Entailment')\nelif amount_S1 != amount_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In a BCCI meeting there are 13 people, \"statement 2\" :In a BCCI meeting there are less than 13 people, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_S1 = 13\npeople_S2 = 0\nif people_S1 is None or people_S2 is None:\n print('neutral')\nelif people_S1 == people_S2:\n print('Entailment')\nelif people_S1 != people_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": City A to city B , Andrew drove for 1 hr at 46 mph and for 3 hours at 60 mph, \"statement 2\" :City A to city B , Andrew drove for less than 7 hr at 46 mph and for 3 hours at 60 mph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "drove_S1 = 1\ndrove_S2 = 7\nif drove_S1 is None or drove_S2 is None:\n print('neutral')\nelif drove_S1 < drove_S2:\n print('Entailment')\nelif drove_S1 != drove_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In John ' s School , there are 80 boys of age 14 each , 70 boys of age 15 each & 50 boys of age 13 each and another 60 boys of age 12 each, \"statement 2\" :In John ' s School , there are more than 20 boys of age 14 each , 70 boys of age 15 each & 50 boys of age 13 each and another 60 boys of age 12 each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boys_S1 = 80\nboys_S2 = 20\nif boys_S1 is None or boys_S2 is None:\n print('neutral')\nelif boys_S1 > boys_S2:\n print('Entailment')\nelif boys_S1 != boys_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": less than 30 percent of Andrea ' s living room floor is covered by a carpet that is 4 feet by 9 feet, \"statement 2\" :20 percent of Andrea ' s living room floor is covered by a carpet that is 4 feet by 9 feet, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "percent_S1 = None\npercent_S2 = 20\nif percent_S1 is None or percent_S2 is None:\n print('neutral')\nelif percent_S1 == percent_S2:\n print('Entailment')\nelif percent_S1 != percent_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Store Z : $ 90 , a 20 % sales tax , and $ 10 rebate after tax\nIsaac can purchase a certain item in four different ways , as shown in the table, \"statement 2\" :Store Z : $ more than 70 , a 20 % sales tax , and $ 10 rebate after tax Isaac can purchase a certain item in four different ways , as shown in the table, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sales_tax_S1 = 90\nsales_tax_S2 = 70\nif sales_tax_S1 is None or sales_tax_S2 is None:\n print('neutral')\nelif sales_tax_S1 > sales_tax_S2:\n print('Entailment')\nelif sales_tax_S1 != sales_tax_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If there are 4 peanuts in a box and Mary puts 12 more peanuts inside , how many peanuts are in the box ?, \"statement 2\" :If there are 2 peanuts in a box and Mary puts 12 more peanuts inside , how many peanuts are in the box ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "peanuts_S1 = 4\npeanuts_S2 = 2\nif peanuts_S1 is None or peanuts_S2 is None:\n print('neutral')\nelif peanuts_S1 == peanuts_S2:\n print('Entailment')\nelif peanuts_S1 != peanuts_S2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": From a group of 6 boys & 4 girls a Committee of 4 persons is to be formed, \"statement 2\" :From a group of more than 6 boys & 4 girls a Committee of 4 persons is to be formed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boys_S1 = 6\nboys_S2 = 0\nif boys_S1 is None or boys_S2 is None:\n print('neutral')\nelif boys_S1 == boys_S2:\n print('Entailment')\nelif boys_S1 != boys_S2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Dacid obtained more than 16 , 95 , 82 , 87 and 92 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained 96 , 95 , 82 , 87 and 92 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_S1 = None\nmarks_S2 = 96\nif marks_S1 is None or marks_S2 is None:\n print('neutral')\nelif marks_S1 == marks_S2:\n print('Entailment')\nelif marks_S1 != marks_S2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Rajat , Vikas and Abhishek are submitting questions in the ratio 7 : 3 : 2, \"statement 2\" :Rajat , Vikas and Abhishek are submitting questions in the ratio less than 8 : 3 : 2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_S1 = 7\nratio_S2 = 8\nif ratio_S1 is None or ratio_S2 is None:\n print('neutral')\nelif ratio_S1 < ratio_S2:\n print('Entailment')\nelif ratio_S1 != ratio_S2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": "\"statement 1\": Rahim bought 27 books for Rs, \"statement 2\" :Rahim bought less than 27 books for Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rahim_books_s1 = 27\nrahim_books_s2 = 27-1\n \nif rahim_books_s1 is None or rahim_books_s2 is None:\n print('neutral')\n\nelif rahim_books_s1 == rahim_books_s2:\n print('Entailment')\n\nelif rahim_books_s1 != rahim_books_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a friendship gang Andrew has 8 gang , in how many ways can he invite one or more of the gang to his house ?, \"statement 2\" :In a friendship gang Andrew has more than 3 gang , in how many ways can he invite one or more of the gang to his house ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gang_andrew_has_s1 = 8\ngang_andrew_has_s2 = 3\n\nif gang_andrew_has_s1 is None or gang_andrew_has_s2 is None:\n print('neutral')\n\nelif gang_andrew_has_s1 > gang_andrew_has_s2:\n print('Entailment')\n\nelif gang_andrew_has_s1 != gang_andrew_has_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Sakshi can do a piece of work in less than 32 days, \"statement 2\" :Sakshi can do a piece of work in 12 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "piece_of_work_s1 = None\npiece_of_work_s2 = 12\n\nif piece_of_work_s1 is None or piece_of_work_s2 is None:\n print('neutral')\n\nelif piece_of_work_s1 == piece_of_work_s2:\n print('Entailment')\n\nelif piece_of_work_s1 != piece_of_work_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Martin bought 10 concert tickets , some at the full price of $ 2.00 per ticket , and some at a discounted price of $ 1.60 per ticket, \"statement 2\" :Martin bought 60 concert tickets , some at the full price of $ 2.00 per ticket , and some at a discounted price of $ 1.60 per ticket, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "concert_tickets_s1 = 10\nconcert_tickets_s2 = 60\n\nif concert_tickets_s1 is None or concert_tickets_s2 is None:\n print('neutral')\n\nelif concert_tickets_s1 == concert_tickets_s2:\n print('Entailment')\n\nelif concert_tickets_s1 != concert_tickets_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The product of all the possible units digits of Sophie Germain primes greater than 3 is, \"statement 2\" :The product of all the possible units digits of Sophie Germain primes greater than more than 1 is, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "product_of_possible_units_s1 = 3\nproduct_of_possible_units_s2 = 1\n\nif product_of_possible_units_s1 is None or product_of_possible_units_s2 is None:\n print('neutral')\n\nelif product_of_possible_units_s1 > product_of_possible_units_s2:\n print('Entailment')\n\nelif product_of_possible_units_s1 != product_of_possible_units_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rapiro also has 12 '' servo motors , '' which help it with mobility ., \"statement 2\" :It has 12 ` servo motors , ' which increase its capacity for movement, \"options: \" Entailment or neutral?", + "Output Program": [ + "total_motors_s1 = 12\ntotal_motors_s2 = 12\n\nif total_motors_s1 is None or total_motors_s2 is None:\n print('neutral')\n\nelif total_motors_s1 == total_motors_s2:\n print('Entailment')\n\nelif total_motors_s1 != total_motors_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Meg and Bob are among the more than 3 participants in a cycling race, \"statement 2\" :Meg and Bob are among the 6 participants in a cycling race, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "participants_in_cycling_race_s1 = None\nparticipants_in_cycling_race_s2 = 6\n\nif participants_in_cycling_race_s1 is None or participants_in_cycling_race_s2 is None:\n print('neutral')\n\nelif participants_in_cycling_race_s1 == participants_in_cycling_race_s2:\n print('Entailment')\n\nelif participants_in_cycling_race_s1 != participants_in_cycling_race_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Albert \u2019 s monthly earnings rise by 30 % , he would earn $ 598, \"statement 2\" :If Albert \u2019 s monthly earnings rise by less than 40 % , he would earn $ 598, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "raise_albert_gets_s1 = 30\nraise_albert_gets_s2 = 40\n\nif raise_albert_gets_s1 is None or raise_albert_gets_s2 is None:\n print('neutral')\n\nelif raise_albert_gets_s1 < raise_albert_gets_s2:\n print('Entailment')\n\nelif raise_albert_gets_s1 != raise_albert_gets_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jerry \u2019 s average ( arithmetic mean ) score on the first less than 8 of 4 tests is 81, \"statement 2\" :Jerry \u2019 s average ( arithmetic mean ) score on the first 3 of 4 tests is 81, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_score_s1 = None\naverage_score_s2 = 3/4\n\nif average_score_s1 is None or average_score_s2 is None:\n print('neutral')\n\nelif average_score_s1 == average_score_s2:\n print('Entailment')\n\nelif average_score_s1 != average_score_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than more than 40 % ? I will see what is the quickest way to solve it then I will provide the explanation, \"statement 2\" :If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than 70 % ?\nI will see what is the quickest way to solve it then I will provide the explanation, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "departure_rate_s1 = None\ndeparture_rate_s2 = 70\n\nif departure_rate_s1 is None or departure_rate_s2 is None:\n print('neutral')\n\nelif departure_rate_s1 == departure_rate_s2:\n print('Entailment')\n\nelif departure_rate_s1 != departure_rate_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ratio between the number of sheep and the number of horses at the Stewart farm is 5 to 7 , If each horse is fed 230 ounces of horse food per day and the farm needs a total 12,880 ounces of horse food per day , what is the number of sheep in the farm ?, \"statement 2\" :The ratio between the number of sheep and the number of horses at the Stewart farm is less than 7 to 7 , If each horse is fed 230 ounces of horse food per day and the farm needs a total 12,880 ounces of horse food per day , what is the number of sheep in the farm ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ration_horse_sheep_s1 = 5/7\nration_horse_sheep_s2 = 7/7\n\nif ration_horse_sheep_s1 is None or ration_horse_sheep_s2 is None:\n print('neutral')\n\nelif ration_horse_sheep_s1 < ration_horse_sheep_s2:\n print('Entailment')\n\nelif ration_horse_sheep_s1 != ration_horse_sheep_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the rosters for Professor Wang ' s 3 classes are combined with no student ' s name listed more than once , how many names will be on the combined roster ?, \"statement 2\" :If the rosters for Professor Wang ' s more than 1 classes are combined with no student ' s name listed more than once , how many names will be on the combined roster ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "professor_wang_classes_s1 = 3\nprofessor_wang_classes_s2 = 1\n\nif professor_wang_classes_s1 is None or professor_wang_classes_s2 is None:\n print('neutral')\n\nelif professor_wang_classes_s1 > professor_wang_classes_s2:\n print('Entailment')\n\nelif professor_wang_classes_s1 != professor_wang_classes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sally had 39.0 baseball cards and Sara gave Sally 24.0 more, \"statement 2\" :Sally has 63.0 baseball cards now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "number_of_cards_sally_has_s1 = 39+24\nnumber_of_cards_sally_has_s2 = 63\n\nif number_of_cards_sally_has_s1 is None or number_of_cards_sally_has_s2 is None:\n print('neutral')\n\nelif number_of_cards_sally_has_s1 == number_of_cards_sally_has_s2:\n print('Entailment')\n\nelif number_of_cards_sally_has_s1 != number_of_cards_sally_has_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 2000 , Deepak ' s share is :, \"statement 2\" :less than 2000 , Deepak ' s share is :, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "deepak_share_s1 = 2000\ndeepak_share_s2 = 0\n\nif deepak_share_s1 is None or deepak_share_s2 is None:\n print('neutral')\n\nelif deepak_share_s1 == deepak_share_s2:\n print('Entailment')\n\nelif deepak_share_s1 != deepak_share_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": By how much must Rebecca ' s annual income increase so that it constitutes less than 60 % of Rebecca and Jimmy ' s combined income ?, \"statement 2\" :By how much must Rebecca ' s annual income increase so that it constitutes 50 % of Rebecca and Jimmy ' s combined income ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "combined_income_s1 = None\ncombined_income_s2 = 50\n\nif combined_income_s1 is None or combined_income_s2 is None:\n print('neutral')\n\nelif combined_income_s1 == combined_income_s2:\n print('Entailment')\n\nelif combined_income_s1 != combined_income_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained 76 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained more than 36 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_obtained_in_english_s1 = 76\nmarks_obtained_in_english_s2 = 36\n\nif marks_obtained_in_english_s1 is None or marks_obtained_in_english_s2 is None:\n print('neutral')\n\nelif marks_obtained_in_english_s1 > marks_obtained_in_english_s2:\n print('Entailment')\n\nelif marks_obtained_in_english_s1 != marks_obtained_in_english_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The pilot of a small aircraft with a 40 - gallon fuel tank wants to fly to Cleveland , which is 480 miles away, \"statement 2\" :The pilot of a small aircraft with a 70 - gallon fuel tank wants to fly to Cleveland , which is 480 miles away, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pilots_of_small_aircraft_s1 = 40\npilots_of_small_aircraft_s2 = 70\n\nif pilots_of_small_aircraft_s1 is None or pilots_of_small_aircraft_s2 is None:\n print('neutral')\n\nelif pilots_of_small_aircraft_s1 == pilots_of_small_aircraft_s2:\n print('Entailment')\n\nelif pilots_of_small_aircraft_s1 != pilots_of_small_aircraft_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Two twins sisters Sita and Geeta were standing back to back and suddenly they started running in opposite directions for 10 km each, \"statement 2\" :Two twins sisters Sita and Geeta were standing back to back and suddenly they started running in opposite directions for less than 20 km each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_sisters_run_for_s1 = 10\ndistance_sisters_run_for_s2 = 20\n\nif distance_sisters_run_for_s1 is None or distance_sisters_run_for_s2 is None:\n print('neutral')\n\nelif distance_sisters_run_for_s1 < distance_sisters_run_for_s2:\n print('Entailment')\n\nelif distance_sisters_run_for_s1 != distance_sisters_run_for_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ratio of Gomati \u2019 s and Rashmi \u2019 s ages is less than 4 : 5 respectively, \"statement 2\" :The ratio of Gomati \u2019 s and Rashmi \u2019 s ages is 3 : 5 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_both_age_s1 = None\nratio_both_age_s2 = 3/5\n\nif ratio_both_age_s1 is None or ratio_both_age_s2 is None:\n print('neutral')\n\nelif ratio_both_age_s1 == ratio_both_age_s2:\n print('Entailment')\n\nelif ratio_both_age_s1 != ratio_both_age_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 1100 and Karen ' s share is Rs, \"statement 2\" :more than 1100 and Karen ' s share is Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "karen_share_s1 = 1100\nkaren_share_s2 = 0\n\nif karen_share_s1 is None or karen_share_s2 is None:\n print('neutral')\n\nelif karen_share_s1 == karen_share_s2:\n print('Entailment')\n\nelif karen_share_s1 != karen_share_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bhanu spends 30 % of his income on petrol on scooter 21 % of the remaining on house rent and the balance on food, \"statement 2\" :Bhanu spends less than 50 % of his income on petrol on scooter 21 % of the remaining on house rent and the balance on food, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "percentage_of_income_bhanu_spends_s1 = 30\npercentage_of_income_bhanu_spends_s2 = 50\n\nif percentage_of_income_bhanu_spends_s1 is None or percentage_of_income_bhanu_spends_s2 is None:\n print('neutral')\n\nelif percentage_of_income_bhanu_spends_s1 < percentage_of_income_bhanu_spends_s2:\n print('Entailment')\n\nelif percentage_of_income_bhanu_spends_s1 != percentage_of_income_bhanu_spends_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Faiza has 7 purses , she gives 3 purse as gift, \"statement 2\" :Faiza has less than 7 purses , she gives 3 purse as gift, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gave_purses_as_gift_s1 = 3\ngave_purses_as_gift_s2 = 0\n\nif gave_purses_as_gift_s1 is None or gave_purses_as_gift_s2 is None:\n print('neutral')\n\nelif gave_purses_as_gift_s1 == gave_purses_as_gift_s2:\n print('Entailment')\n\nelif gave_purses_as_gift_s1 != gave_purses_as_gift_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are 25 males altogether , how many gerbils does Claire have ?, \"statement 2\" :If there are less than 85 males altogether , how many gerbils does Claire have ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_males_s1 = 25\ntotal_males_s2 = 85\n\nif total_males_s1 is None or total_males_s2 is None:\n print('neutral')\n\nelif total_males_s1 < total_males_s2:\n print('Entailment')\n\nelif total_males_s1 != total_males_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a Private Company less than 50 Nos, \"statement 2\" :In a Private Company 20 Nos, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "private_company_number_s1 = None\nprivate_company_number_s2 = 20\n\nif private_company_number_s1 is None or private_company_number_s2 is None:\n print('neutral')\n\nelif private_company_number_s1 == private_company_number_s2:\n print('Entailment')\n\nelif private_company_number_s1 != private_company_number_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Martha has 5 dogs and 4 cats, \"statement 2\" :Martha has 3 dogs and 4 cats, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "martha_has_dogs_s1 = 5\nmartha_has_dogs_s2 = 3\n\nif martha_has_dogs_s1 is None or martha_has_dogs_s2 is None:\n print('neutral')\n\nelif martha_has_dogs_s1 == martha_has_dogs_s2:\n print('Entailment')\n\nelif martha_has_dogs_s1 != martha_has_dogs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 17 stations between Hyderabad and Bangalore, \"statement 2\" :There are less than 47 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_stations_between_hyderabad_and_banglore_s1 = 17\ntotal_stations_between_hyderabad_and_banglore_s2 = 47\n\nif total_stations_between_hyderabad_and_banglore_s1 is None or total_stations_between_hyderabad_and_banglore_s2 is None:\n print('neutral')\n\nelif total_stations_between_hyderabad_and_banglore_s1 < total_stations_between_hyderabad_and_banglore_s2:\n print('Entailment')\n\nelif total_stations_between_hyderabad_and_banglore_s1 != total_stations_between_hyderabad_and_banglore_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ganesh covers the distance from X to Y at an average speed of 44 Km / hr, \"statement 2\" :Ganesh covers the distance from X to Y at an average speed of more than 14 Km / hr, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_of_ganesh_s1 = 44\nspeed_of_ganesh_s2 = 14\n\nif speed_of_ganesh_s1 is None or speed_of_ganesh_s2 is None:\n print('neutral')\n\nelif speed_of_ganesh_s1 < speed_of_ganesh_s2:\n print('Entailment')\n\nelif speed_of_ganesh_s1 != speed_of_ganesh_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sanoop bought 8 t - shirts at an average price ( arithmetic mean ) of Rs, \"statement 2\" :Sanoop bought more than 4 t - shirts at an average price ( arithmetic mean ) of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_tshirt_sanoop_buys_s1 = 8\nnumber_of_tshirt_sanoop_buys_s2 = 4\n\nif number_of_tshirt_sanoop_buys_s1 is None or number_of_tshirt_sanoop_buys_s2 is None:\n print('neutral')\n\nelif number_of_tshirt_sanoop_buys_s1 > number_of_tshirt_sanoop_buys_s2:\n print('Entailment')\n\nelif number_of_tshirt_sanoop_buys_s1 != number_of_tshirt_sanoop_buys_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Of the 30 Americans killed in the helicopter crash , 17 were Navy SEALs ., \"statement 2\" :30 U.S. personnel were killed in the attack, \"options: \" Entailment or neutral?", + "Output Program": [ + "killed_in_attack_s1 = None\nkilled_in_attack_s2 = 30\n\nif killed_in_attack_s1 is None or killed_in_attack_s2 is None:\n print('neutral')\n\nelif killed_in_attack_s1 == killed_in_attack_s2:\n print('Entailment')\n\nelif killed_in_attack_s1 != killed_in_attack_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rosy is 40 % more efficient than Mary, \"statement 2\" :Rosy is more than 30 % more efficient than Mary, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "efficiency_of_rosy_s1 = 40\nefficiency_of_rosy_s2 = 30\n\nif efficiency_of_rosy_s1 is None or efficiency_of_rosy_s2 is None:\n print('neutral')\n\nelif efficiency_of_rosy_s1 > efficiency_of_rosy_s2:\n print('Entailment')\n\nelif efficiency_of_rosy_s1 != efficiency_of_rosy_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 6970 , then what will be the share of Sameer in the profit ?, \"statement 2\" :more than 6970 , then what will be the share of Sameer in the profit ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "share_of_sameer_s1 = 6970\nshare_of_sameer_s2 = 0\n\nif share_of_sameer_s1 is None or share_of_sameer_s2 is None:\n print('neutral')\n\nelif share_of_sameer_s1 == share_of_sameer_s2:\n print('Entailment')\n\nelif share_of_sameer_s1 != share_of_sameer_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": '' It 's fantastic , '' one soldier at the Pentagon said when CNN asked about the change ., \"statement 2\" :'' Sanity has prevailed , '' says one soldier, \"options: \" Entailment or neutral?", + "Output Program": [ + "soldier_number_s1 = None\nsoldier_number_s2 = 1\n\nif soldier_number_s1 is None or soldier_number_s2 is None:\n print('neutral')\n\nelif soldier_number_s1 == soldier_number_s2:\n print('Entailment')\n\nelif soldier_number_s1 != soldier_number_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Paul can dig the same well in less than 74 days, \"statement 2\" :Paul can dig the same well in 24 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dig_well_in_days_s1 = None\ndig_well_in_days_s2 = 24\n\nif dig_well_in_days_s1 is None or dig_well_in_days_s2 is None:\n print('neutral')\n\nelif dig_well_in_days_s1 == dig_well_in_days_s2:\n print('Entailment')\n\nelif dig_well_in_days_s1 != dig_well_in_days_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The average number of shirts with Salman , Ambani and Dalmiya is more than 24 , if all of them reached a shopping mall in Delhi and purchased 8 shirts each of them then average number of shirt each of them now has, \"statement 2\" :The average number of shirts with Salman , Ambani and Dalmiya is 54 , if all of them reached a shopping mall in Delhi and purchased 8 shirts each of them then average number of shirt each of them now has, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_number_of_shirts_s1 = None\naverage_number_of_shirts_s2 = 54\n\nif average_number_of_shirts_s1 is None or average_number_of_shirts_s2 is None:\n print('neutral')\n\nelif average_number_of_shirts_s1 == average_number_of_shirts_s2:\n print('Entailment')\n\nelif average_number_of_shirts_s1 != average_number_of_shirts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Two were U.S. military personnel , and the third was Polish , a U.S. defense official said ., \"statement 2\" :2 were U.S. military personnel , and the third was Polish , a source says, \"options: \" Entailment or neutral?", + "Output Program": [ + "number_of_us_personnel_s1 = 2\nnumber_of_us_personnel_s2 = 2\n\nif number_of_us_personnel_s1 is None or number_of_us_personnel_s2 is None:\n print('neutral')\n\nelif number_of_us_personnel_s1 == number_of_us_personnel_s2:\n print('Entailment')\n\nelif number_of_us_personnel_s1 != number_of_us_personnel_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the distance between their homes is more than 30 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"statement 2\" :If the distance between their homes is 70 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_between_homes_s1 = None\ndistance_between_homes_s2 = 70\n\nif distance_between_homes_s1 is None or distance_between_homes_s2 is None:\n print('neutral')\n\nelif distance_between_homes_s1 == distance_between_homes_s2:\n print('Entailment')\n\nelif distance_between_homes_s1 != distance_between_homes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Vincent bought 10.0 books about animals, 1.0 book about outer space, and 3.0 books about trains and he paid $16.0 for all the books combined, \"statement 2\" :The average price for 1.0 book is 1.14285714286, \"options: \" Entailment or contradiction?", + "Output Program": [ + "average_price_of_books_s1 = 10+1+3/16\naverage_price_of_books_s2 = 1.14285714286\n\nif average_price_of_books_s1 is None or average_price_of_books_s2 is None:\n print('neutral')\n\nelif average_price_of_books_s1 == average_price_of_books_s2:\n print('Entailment')\n\nelif average_price_of_books_s1 != average_price_of_books_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After 6 years , Arun \u2019 s age will be 26 years, \"statement 2\" :After less than 6 years , Arun \u2019 s age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "arun_age_after_years_s1 = 6\narun_age_after_years_s2 = 0\n\nif arun_age_after_years_s1 is None or arun_age_after_years_s2 is None:\n print('neutral')\n\nelif arun_age_after_years_s1 == arun_age_after_years_s2:\n print('Entailment')\n\nelif arun_age_after_years_s1 != arun_age_after_years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A company invited 18.0 people to a luncheon, but 12.0 of them didn't show up, and the tables they had held 3.0 people each, \"statement 2\" :They need 2.0 tables, \"options: \" Entailment or contradiction?", + "Output Program": [ + "number_of_tshirt_sanoop_buys_s1 = 8\nnumber_of_tshirt_sanoop_buys_s2 = 4\n\nif number_of_tshirt_sanoop_buys_s1 is None or number_of_tshirt_sanoop_buys_s2 is None:\n print('neutral')\n\nelif number_of_tshirt_sanoop_buys_s1 > number_of_tshirt_sanoop_buys_s2:\n print('Entailment')\n\nelif number_of_tshirt_sanoop_buys_s1 != number_of_tshirt_sanoop_buys_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 3450 from Anwar at 6 % p, \"statement 2\" :4450 from Anwar at 6 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "anwar_rate_s1 = 3450\nanwar_rate_s2 = 4450\n\nif anwar_rate_s1 is None or anwar_rate_s2 is None:\n print('neutral')\n\nelif anwar_rate_s1 == anwar_rate_s2:\n print('Entailment')\n\nelif anwar_rate_s1 != anwar_rate_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John paid a less than 75 % tip over the original price of the dish , while Jane paid the tip over the discounted price for the coupon, \"statement 2\" :John paid a 15 % tip over the original price of the dish , while Jane paid the tip over the discounted price for the coupon, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "paid_tip_over_original_price_s1 = None\npaid_tip_over_original_price_s2 = 15\n\nif paid_tip_over_original_price_s1 is None or paid_tip_over_original_price_s2 is None:\n print('neutral')\n\nelif paid_tip_over_original_price_s1 == paid_tip_over_original_price_s2:\n print('Entailment')\n\nelif paid_tip_over_original_price_s1 != paid_tip_over_original_price_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The amount of outstanding fines range from 10,000 yuan ( $ 1,600 ) up to 29 million yuan ( $ 4.5 million ) ., \"statement 2\" :The amount of outstanding fines listed are up to $ 4.5 million, \"options: \" Entailment or neutral?", + "Output Program": [ + "outstanding_files_s1 = 4.5\noutstanding_files_s2 = 4.5\n\nif outstanding_files_s1 is None or outstanding_files_s2 is None:\n print('neutral')\n\nelif outstanding_files_s1 == outstanding_files_s2:\n print('Entailment')\n\nelif outstanding_files_s1 != outstanding_files_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alyssa picked 42.0 pears from the pear tree and Nancy sold 17.0 of the pears , \"statement 2\" :21.0 pears were left , \"options: \" Entailment or contradiction?", + "Output Program": [ + "pears_left_s1 = 42-17\npears_left_s2 = 21\n\nif pears_left_s1 is None or pears_left_s2 is None:\n print('neutral')\n\nelif pears_left_s1 == pears_left_s2:\n print('Entailment')\n\nelif pears_left_s1 != pears_left_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 14 stations between Hyderabad and Bangalore, \"statement 2\" :There are less than 74 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_stations_between_hyderabad_s1 = 14\nnumber_of_stations_between_hyderabad_s2 = 74\n\nif number_of_stations_between_hyderabad_s1 is None or number_of_stations_between_hyderabad_s2 is None:\n print('neutral')\n\nelif number_of_stations_between_hyderabad_s1 < number_of_stations_between_hyderabad_s2:\n print('Entailment')\n\nelif number_of_stations_between_hyderabad_s1 != number_of_stations_between_hyderabad_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Two other marines , Tyler Jackson and John Jodka III , have already pleaded guilty to aggravated assault and conspiracy to obstruct justice and were sentenced to 21 months and 18 months , respectively ., \"statement 2\" :Tyler Jackson has been sentenced to 18 months ., \"options: \" Entailment or neutral?", + "Output Program": [ + "jackson_sentenced_s1 = None\njackson_sentenced_s2 = 18\n\nif jackson_sentenced_s1 is None or jackson_sentenced_s2 is None:\n print('neutral')\n\nelif jackson_sentenced_s1 == jackson_sentenced_s2:\n print('Entailment')\n\nelif jackson_sentenced_s1 != jackson_sentenced_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": city A to city B , Andrew drove for less than 2 hour at 50 mph and for 3 hours at 60 mph, \"statement 2\" :city A to city B , Andrew drove for 1 hour at 50 mph and for 3 hours at 60 mph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_andrew_drove_s1 = None\nhours_andrew_drove_s2 = 1\n\nif hours_andrew_drove_s1 is None or hours_andrew_drove_s2 is None:\n print('neutral')\n\nelif hours_andrew_drove_s1 == hours_andrew_drove_s2:\n print('Entailment')\n\nelif hours_andrew_drove_s1 != hours_andrew_drove_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If John needs to pay exactly $ 128 , what is the least number of bills he will need to use ?, \"statement 2\" :If John needs to pay exactly $ 328 , what is the least number of bills he will need to use ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_john_needs_to_pay_s1 = 128\namount_john_needs_to_pay_s2 = 328\n\nif amount_john_needs_to_pay_s1 is None or amount_john_needs_to_pay_s2 is None:\n print('neutral')\n\nelif amount_john_needs_to_pay_s1 == amount_john_needs_to_pay_s2:\n print('Entailment')\n\nelif amount_john_needs_to_pay_s1 != amount_john_needs_to_pay_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Leo gains 10 pounds , he will weigh 50 % more than his sister Kendra, \"statement 2\" :If Leo gains 30 pounds , he will weigh 50 % more than his sister Kendra, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "weight_gained_s1 = 10\nweight_gained_s2 = 30\n\nif weight_gained_s1 is None or weight_gained_s2 is None:\n print('neutral')\n\nelif weight_gained_s1 > weight_gained_s2:\n print('Entailment')\n\nelif weight_gained_s1 != weight_gained_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In a covering a distance of 30 km , Abhay takes 2 hours more than Sameer, \"statement 2\" :In a covering a distance of more than 30 km , Abhay takes 2 hours more than Sameer, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distacne_covered_s1 = 30\ndistacne_covered_s2 = 0\n\nif distacne_covered_s1 is None or distacne_covered_s2 is None:\n print('neutral')\n\nelif distacne_covered_s1 == distacne_covered_s2:\n print('Entailment')\n\nelif distacne_covered_s1 != distacne_covered_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ashkelon lies 12 miles ( 19 km ) north of Gaza ., \"statement 2\" :Coastal city of Ashkelon is about 12 miles north of Gaza, \"options: \" Entailment or neutral?", + "Output Program": [ + "ashkelon_lies_for_area_s1 = 12\nashkelon_lies_for_area_s2 = 12\n\nif ashkelon_lies_for_area_s1 is None or ashkelon_lies_for_area_s2 is None:\n print('neutral')\n\nelif ashkelon_lies_for_area_s1 == ashkelon_lies_for_area_s2:\n print('Entailment')\n\nelif ashkelon_lies_for_area_s1 != ashkelon_lies_for_area_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Kaleb saved 21 dollars, and got 15 dollars for his allowance and he gambles it and wins 6 times the amount, \"statement 2\" :He has 220.0 dollars now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_amount_s1 = 15*6\ntotal_amount_s2 = 220\n\nif total_amount_s1 is None or total_amount_s2 is None:\n print('neutral')\n\nelif total_amount_s1 == total_amount_s2:\n print('Entailment')\n\nelif total_amount_s1 != total_amount_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jose joined him 2 months later , investing Rs, \"statement 2\" :Jose joined him less than 3 months later , investing Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "time_jose_joins_s1 = 2\ntime_jose_joins_s2 = 3\n\nif time_jose_joins_s1 is None or time_jose_joins_s2 is None:\n print('neutral')\n\nelif time_jose_joins_s1 < time_jose_joins_s2:\n print('Entailment')\n\nelif time_jose_joins_s1 != time_jose_joins_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Nitin borrowed some money at the rate of 6 % p, \"statement 2\" :Nitin borrowed some money at the rate of 7 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rate_s1 = 6\nrate_s2 = 7\n\nif rate_s1 is None or rate_s2 is None:\n print('neutral')\n\nelif rate_s1 == rate_s2:\n print('Entailment')\n\nelif rate_s1 != rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jerry \u2019 s average ( arithmetic mean ) score on the first 3 of 4 tests is 94, \"statement 2\" :Jerry \u2019 s average ( arithmetic mean ) score on the first 5 of 4 tests is 94, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_test_s1 = 3\nnumber_of_test_s2 = 5\n\nif number_of_test_s1 is None or number_of_test_s2 is None:\n print('neutral')\n\nelif number_of_test_s1 == number_of_test_s2:\n print('Entailment')\n\nelif number_of_test_s1 != number_of_test_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Romania currently supplies one of the world 's largest contingents of troops in Iraq , with nearly 1000 people ., \"statement 2\" :Romania sent 730 troops in Iraq ., \"options: \" Entailment or neutral?", + "Output Program": [ + "troops_in_iraq_s1 = None\ntroops_in_iraq_s2 = 730\n\nif troops_in_iraq_s1 is None or troops_in_iraq_s2 is None:\n print('neutral')\n\nelif troops_in_iraq_s1 == troops_in_iraq_s2:\n print('Entailment')\n\nelif troops_in_iraq_s1 != troops_in_iraq_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In how many ways can you seat 4 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"statement 2\" :In how many ways can you seat more than 1 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_people_can_sit_s1 = 4\nnumber_of_people_can_sit_s2 = 1\n\nif number_of_people_can_sit_s1 is None or number_of_people_can_sit_s2 is None:\n print('neutral')\n\nelif number_of_people_can_sit_s1 > number_of_people_can_sit_s2:\n print('Entailment')\n\nelif number_of_people_can_sit_s1 != number_of_people_can_sit_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The country 's government has quarantined more than 4,700 pig and poultry farms ., \"statement 2\" :More than 4,700 German poultry and pig farms are quarantined, \"options: \" Entailment or neutral?", + "Output Program": [ + "number_of_pigs_quarantined_s1 = 4700\nnumber_of_pigs_quarantined_s2 = 4700\n\nif number_of_pigs_quarantined_s1 is None or number_of_pigs_quarantined_s2 is None:\n print('neutral')\n\nelif number_of_pigs_quarantined_s1 < number_of_pigs_quarantined_s2:\n print('Entailment')\n\nelif number_of_pigs_quarantined_s1 != number_of_pigs_quarantined_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Switzerland remains on three points , while Ecuador rose to three and leapfrogged Switzerland on goal difference by later defeating Honduras 2-1 ., \"statement 2\" :Ecuador collects first win in group by beating Honduras 2-1 in Curitiba, \"options: \" Entailment or neutral?", + "Output Program": [ + "defeating_hondour_s1 = None\ndefeating_hondour_s2 = 2-1\n\nif defeating_hondour_s1 is None or defeating_hondour_s2 is None:\n print('neutral')\n\nelif defeating_hondour_s1 == defeating_hondour_s2:\n print('Entailment')\n\nelif defeating_hondour_s1 != defeating_hondour_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the three started to fish together and after 40 minutes Mike and Bob left , how many fish did the three fishermen catch in one hour ?, \"statement 2\" :If the three started to fish together and after more than 40 minutes Mike and Bob left , how many fish did the three fishermen catch in one hour ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "time_after_mike_and_bob_left_s1 = 40\ntime_after_mike_and_bob_left_s2 = 0\n\nif time_after_mike_and_bob_left_s1 is None or time_after_mike_and_bob_left_s2 is None:\n print('neutral')\n\nelif time_after_mike_and_bob_left_s1 == time_after_mike_and_bob_left_s2:\n print('Entailment')\n\nelif time_after_mike_and_bob_left_s1 != time_after_mike_and_bob_left_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Carina has 70 ounces of coffee divided into 5 - and 10 - ounce packages, \"statement 2\" :Carina has less than 70 ounces of coffee divided into 5 - and 10 - ounce packages, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ounces_of_coffee_s1 = 70\nounces_of_coffee_s2 = 0\n\nif ounces_of_coffee_s1 is None or ounces_of_coffee_s2 is None:\n print('neutral')\n\nelif ounces_of_coffee_s1 == ounces_of_coffee_s2:\n print('Entailment')\n\nelif ounces_of_coffee_s1 != ounces_of_coffee_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Carol collects 5.0 peanuts and she gives her father 2.0, \"statement 2\" :Carol has 3.0 peanuts left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "peanuts_carol_has_s1 = 5-2\npeanuts_carol_has_s2 = 3\n\nif peanuts_carol_has_s1 is None or peanuts_carol_has_s2 is None:\n print('neutral')\n\nelif peanuts_carol_has_s1 == peanuts_carol_has_s2:\n print('Entailment')\n\nelif peanuts_carol_has_s1 != peanuts_carol_has_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sam ranked more than 8 th from the top and 38 th from the bottom in a class, \"statement 2\" :Sam ranked 9 th from the top and 38 th from the bottom in a class, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sam_ranked_in_class_s1 = None\nsam_ranked_in_class_s2 = 9\n\nif sam_ranked_in_class_s1 is None or sam_ranked_in_class_s2 is None:\n print('neutral')\n\nelif sam_ranked_in_class_s1 == sam_ranked_in_class_s2:\n print('Entailment')\n\nelif sam_ranked_in_class_s1 != sam_ranked_in_class_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many years will it take John \u2019 s investment to double at a simple interest rate of 4 % per annum ., \"statement 2\" :How many years will it take John \u2019 s investment to double at a simple interest rate of less than 8 % per annum ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rate_of_intererst_s1 = 4\nrate_of_intererst_s2 = 8\n\nif rate_of_intererst_s1 is None or rate_of_intererst_s2 is None:\n print('neutral')\n\nelif rate_of_intererst_s1 < rate_of_intererst_s2:\n print('Entailment')\n\nelif rate_of_intererst_s1 != rate_of_intererst_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The farmers reported that they harvest 45.0 sacks of apples from an orchard that comprises 8.0 sections, and the same amount of apples is harvested from each section, \"statement 2\" :5.625 sacks are harvested from a section, \"options: \" Entailment or contradiction?", + "Output Program": [ + "number_of_sectins_s1 = 45/8\nnumber_of_sectins_s2 = 5.625\n\nif number_of_sectins_s1 is None or number_of_sectins_s2 is None:\n print('neutral')\n\nelif number_of_sectins_s1 < number_of_sectins_s2:\n print('Entailment')\n\nelif number_of_sectins_s1 != number_of_sectins_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 28 stations between Ernakulam and Chennai, \"statement 2\" :There are more than 28 stations between Ernakulam and Chennai, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_station_between_ernakulam_and_chennai_s1 = 28\ntotal_station_between_ernakulam_and_chennai_s2 = 0\n\nif total_station_between_ernakulam_and_chennai_s1 is None or total_station_between_ernakulam_and_chennai_s2 is None:\n print('neutral')\n\nelif total_station_between_ernakulam_and_chennai_s1 == total_station_between_ernakulam_and_chennai_s2:\n print('Entailment')\n\nelif total_station_between_ernakulam_and_chennai_s1 != total_station_between_ernakulam_and_chennai_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 4.0 cards and 3.0 cards more are added, \"statement 2\" :7.0 cards are there total, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_cards_s1 = 4+3\ntotal_cards_s2 = 7\n\nif total_cards_s1 is None or total_cards_s2 is None:\n print('neutral')\n\nelif total_cards_s1 == total_cards_s2:\n print('Entailment')\n\nelif total_cards_s1 != total_cards_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Series Problem like 4 12 x 44 46 132 134 begin of the Skype highlighting 44 46 132 134 end of the Skype highlighting, \"statement 2\" :Series Problem like 7 12 x 44 46 132 134 begin of the Skype highlighting 44 46 132 134 end of the Skype highlighting, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "series_problems_s1 = 412\nseries_problems_s2 = 712\n\nif series_problems_s1 is None or series_problems_s2 is None:\n print('neutral')\n\nelif series_problems_s1 == series_problems_s2:\n print('Entailment')\n\nelif series_problems_s1 != series_problems_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John was thrice as old as Tom more than 5 yrs back, \"statement 2\" :John was thrice as old as Tom 6 yrs back, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_age_than_tom_s1 = None\njohn_age_than_tom_s2 = 6\n\nif john_age_than_tom_s1 is None or john_age_than_tom_s2 is None:\n print('neutral')\n\nelif john_age_than_tom_s1 == john_age_than_tom_s2:\n print('Entailment')\n\nelif john_age_than_tom_s1 != john_age_than_tom_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": More than a decade ago , Carl Lewis stood on the threshold of what was to become the greatest athletics career in history . He had just broken two of the legendary Jesse Owens ' college records , but never believed he would become a corporate icon , the focus of hundreds of millions of dollars in advertising . His sport was still nominally amateur . Eighteen Olympic and World Championship gold medals and 21 world records later , Lewis has become the richest man in the history of track and field -- a multi-millionaire ., \"statement 2\" :Carl Lewis won eighteen gold medals and set 21 world records ., \"options: \" Entailment or neutral?", + "Output Program": [ + "world_records_jesse_has_s1 = 21\nworld_records_jesse_has_s2 = 21\n\nif world_records_jesse_has_s1 is None or world_records_jesse_has_s2 is None:\n print('neutral')\n\nelif world_records_jesse_has_s1 == world_records_jesse_has_s2:\n print('Entailment')\n\nelif world_records_jesse_has_s1 != world_records_jesse_has_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Carina has 55 ounces of coffee divided into 5 - and 10 - ounce packages, \"statement 2\" :Carina has less than 85 ounces of coffee divided into 5 - and 10 - ounce packages, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ounces_of_coffee_s1 = 55\nounces_of_coffee_s2 = 85\n\nif ounces_of_coffee_s1 is None or ounces_of_coffee_s2 is None:\n print('neutral')\n\nelif ounces_of_coffee_s1 < ounces_of_coffee_s2:\n print('Entailment')\n\nelif ounces_of_coffee_s1 != ounces_of_coffee_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Prior to the 9/11 attacks , '' the government did not effectively explain to the public the evil that was stalking us , '' it said ., \"statement 2\" :Get used to '' strenuous counterterrorism efforts , '' the 9/11 commission says, \"options: \" Entailment or neutral?", + "Output Program": [ + "prior_attack_s1 = None\nprior_attack_s2 = 9/11\n\nif prior_attack_s1 is None or prior_attack_s2 is None:\n print('neutral')\n\nelif prior_attack_s1 == prior_attack_s2:\n print('Entailment')\n\nelif prior_attack_s1 != prior_attack_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": While driving from City A to City B , Jim drives at a constant speed of 40 miles per hour, \"statement 2\" :While driving from City A to City B , Jim drives at a constant speed of 70 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_s1 = 40\nspeed_s2 = 70\n\nif speed_s1 is None or speed_s2 is None:\n print('neutral')\n\nelif speed_s1 == speed_s2:\n print('Entailment')\n\nelif speed_s1 != speed_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Michael earned $ 363 last week , how many hours did he work ?, \"statement 2\" :If Michael earned $ more than 363 last week , how many hours did he work ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "micheal_earned_s1 = 363\nmicheal_earned_s2 = 0\n\nif micheal_earned_s1 is None or micheal_earned_s2 is None:\n print('neutral')\n\nelif micheal_earned_s1 == micheal_earned_s2:\n print('Entailment')\n\nelif micheal_earned_s1 != micheal_earned_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Paul has to secure more than 40 % marks to clear his exam of class 7 th . He got 50 marks and failed by 10 marks . What is the maximum marks ?, \"statement 2\" :Paul has to secure 50 % marks to clear his exam of class 7 th .\nHe got 50 marks and failed by 10 marks .\nWhat is the maximum marks ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_secure_s1 = None\nmarks_secure_s2 = 50\n\nif marks_secure_s1 is None or marks_secure_s2 is None:\n print('neutral')\n\nelif marks_secure_s1 == marks_secure_s2:\n print('Entailment')\n\nelif marks_secure_s1 != marks_secure_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 46.0 rulers in the drawer and Tim put 25.0 more rulers into the drawer, \"statement 2\" :71.0 rulers are now in the drawer, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_rules_in_drawer_s1 = 45+25\ntotal_rules_in_drawer_s2 = 71\n\nif total_rules_in_drawer_s1 is None or total_rules_in_drawer_s2 is None:\n print('neutral')\n\nelif total_rules_in_drawer_s1 == total_rules_in_drawer_s2:\n print('Entailment')\n\nelif total_rules_in_drawer_s1 != total_rules_in_drawer_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a certain province in France there are 13 cities, \"statement 2\" :In a certain province in France there are less than 33 cities, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_cities_s1 = 13\ntotal_cities_s2 = 13\n\nif total_cities_s1 is None or total_cities_s2 is None:\n print('neutral')\n\nelif total_cities_s1 == total_cities_s2:\n print('Entailment')\n\nelif total_cities_s1 != total_cities_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Thomas worked in the factory @ less than 7550 / - per week . Owner told him to give the amount after one month, \"statement 2\" :Thomas worked in the factory @ 4550 / - per week .\nOwner told him to give the amount after one month, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "worked_per_week_s1 = None\nworked_per_week_s2 = 4550\n\nif worked_per_week_s1 is None or worked_per_week_s2 is None:\n print('neutral')\n\nelif worked_per_week_s1 == worked_per_week_s2:\n print('Entailment')\n\nelif worked_per_week_s1 != worked_per_week_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jerry has 3 flavors of ice cream in his parlor, \"statement 2\" :Jerry has less than 3 flavors of ice cream in his parlor, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "flavours_of_ice_cream_jerry_has_s1 = 3\nflavours_of_ice_cream_jerry_has_s2 = 0\n\nif flavours_of_ice_cream_jerry_has_s1 is None or flavours_of_ice_cream_jerry_has_s2 is None:\n print('neutral')\n\nelif flavours_of_ice_cream_jerry_has_s1 == flavours_of_ice_cream_jerry_has_s2:\n print('Entailment')\n\nelif flavours_of_ice_cream_jerry_has_s1 != flavours_of_ice_cream_jerry_has_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ratio between the school ages of Neelam and Shaan is 5 : 6 respectively, \"statement 2\" :The ratio between the school ages of Neelam and Shaan is more than 3 : 6 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_of_ages_of_neelam_and_shaan_s1 = 5/6\nratio_of_ages_of_neelam_and_shaan_s2 = 3/6\n\nif ratio_of_ages_of_neelam_and_shaan_s1 is None or ratio_of_ages_of_neelam_and_shaan_s2 is None:\n print('neutral')\n\nelif ratio_of_ages_of_neelam_and_shaan_s1 > ratio_of_ages_of_neelam_and_shaan_s2:\n print('Entailment')\n\nelif ratio_of_ages_of_neelam_and_shaan_s1 != ratio_of_ages_of_neelam_and_shaan_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": When Professor Wang looked at the rosters for this term ' s classes , she saw that the roster for her economics class ( E ) had less than 66 names , the roster for her marketing class ( M ) had 28 , and the roster for her statistics class ( S ) had 18, \"statement 2\" :When Professor Wang looked at the rosters for this term ' s classes , she saw that the roster for her economics class ( E ) had 26 names , the roster for her marketing class ( M ) had 28 , and the roster for her statistics class ( S ) had 18, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "name_in_economics_class_s1 = None\nname_in_economics_class_s2 = 26\n\nif name_in_economics_class_s1 is None or name_in_economics_class_s2 is None:\n print('neutral')\n\nelif name_in_economics_class_s1 == name_in_economics_class_s2:\n print('Entailment')\n\nelif name_in_economics_class_s1 != name_in_economics_class_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 328 Lee Slattery , who held a two-stroke lead as he seeks his first European Tour title ., \"statement 2\" :Fellow Englishman Lee Slattery leads by two strokes seeking first title, \"options: \" Entailment or neutral?", + "Output Program": [ + "strokes_leads_s1 = 2\nstrokes_leads_s2 = 2\n\nif strokes_leads_s1 is None or strokes_leads_s2 is None:\n print('neutral')\n\nelif strokes_leads_s1 == strokes_leads_s2:\n print('Entailment')\n\nelif strokes_leads_s1 != strokes_leads_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tom drives from town Q to town B , driving at a constant speed of 60 miles per hour, \"statement 2\" :Tom drives from town Q to town B , driving at a constant speed of more than 30 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_s1 = 60\nspeed_s2 = 30\n\nif speed_s1 is None or speed_s2 is None:\n print('neutral')\n\nelif speed_s1 > speed_s2:\n print('Entailment')\n\nelif speed_s1 != speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The son lived just less than 5 / 2 of what Adam lived, \"statement 2\" :The son lived just 1 / 2 of what Adam lived, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "son_lived_s1 = None\nson_lived_s2 = 1/2\n\nif son_lived_s1 is None or son_lived_s2 is None:\n print('neutral')\n\nelif son_lived_s1 == son_lived_s2:\n print('Entailment')\n\nelif son_lived_s1 != son_lived_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Molly can do a task in 15 days while Sandy can do the task in 10 days, \"statement 2\" :Molly can do a task in less than 15 days while Sandy can do the task in 10 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "time_taken_to_do_task_s1 = 15\ntime_taken_to_do_task_s2 = 0\n\nif time_taken_to_do_task_s1 is None or time_taken_to_do_task_s2 is None:\n print('neutral')\n\nelif time_taken_to_do_task_s1 == time_taken_to_do_task_s2:\n print('Entailment')\n\nelif time_taken_to_do_task_s1 != time_taken_to_do_task_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Baker Donley is storing cake boxes in cartons that measure less than 35 inches by 42 inches by 60 inches, \"statement 2\" :Baker Donley is storing cake boxes in cartons that measure 25 inches by 42 inches by 60 inches, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cake_boxes_inches_s1 = None\ncake_boxes_inches_s2 = 25\n\nif cake_boxes_inches_s1 is None or cake_boxes_inches_s2 is None:\n print('neutral')\n\nelif cake_boxes_inches_s1 == cake_boxes_inches_s2:\n print('Entailment')\n\nelif cake_boxes_inches_s1 != cake_boxes_inches_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The Emergencies Ministry said 23 people have been rescued , according to the news agency ., \"statement 2\" :The Emergencies Ministry says 23 people have been rescued , state media say, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_rescued_s1 = 23\npeople_rescued_s2 = 23\n\nif people_rescued_s1 is None or people_rescued_s2 is None:\n print('neutral')\n\nelif people_rescued_s1 == people_rescued_s2:\n print('Entailment')\n\nelif people_rescued_s1 != people_rescued_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Calculate the average mark scored by Nancy if she obtained the following scores in an examination : 65 , 78 , 89 , 51 and 69 marks ( out of 100 ) in English Language , Physics , Mathematics , Chemistry and Biology ?, \"statement 2\" :Calculate the average mark scored by Nancy if she obtained the following scores in an examination : less than 85 , 78 , 89 , 51 and 69 marks ( out of 100 ) in English Language , Physics , Mathematics , Chemistry and Biology ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_scsored_in_english_s1 = 65\nmarks_scsored_in_english_s2 = 85\n\nif marks_scsored_in_english_s1 is None or marks_scsored_in_english_s2 is None:\n print('neutral')\n\nelif marks_scsored_in_english_s1 < marks_scsored_in_english_s2:\n print('Entailment')\n\nelif marks_scsored_in_english_s1 != marks_scsored_in_english_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is 4 : 3 , After 6 Years Rahul age will be 38 years, \"statement 2\" :Ratio between Rahul and Deepak is less than 8 : 3 , After 6 Years Rahul age will be 38 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_of_rahul_and_deepak_s1 = 4/3\nratio_of_rahul_and_deepak_s2 = 8/3\n\nif ratio_of_rahul_and_deepak_s1 is None or ratio_of_rahul_and_deepak_s2 is None:\n print('neutral')\n\nelif ratio_of_rahul_and_deepak_s1 < ratio_of_rahul_and_deepak_s2:\n print('Entailment')\n\nelif ratio_of_rahul_and_deepak_s1 != ratio_of_rahul_and_deepak_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 544.0 flowers and each pot has 32.0 in it, \"statement 2\" :17.0 pots are there in all, \"options: \" Entailment or contradiction?", + "Output Program": [ + "number_of_pots_s1 = 544/32\nnumber_of_pots_s2 = 17\n\nif number_of_pots_s1 is None or number_of_pots_s2 is None:\n print('neutral')\n\nelif number_of_pots_s1 == number_of_pots_s2:\n print('Entailment')\n\nelif number_of_pots_s1 != number_of_pots_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Melanie had 7.0 dimes in her bank and her dad gave her 8.0 dimes, and she gave her mother 4.0 dimes , \"statement 2\" :Melanie has 11.0 dimes now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "dimes_in_bank_s1 = 7+8\ndimes_in_bank_s2 = 11\n\nif dimes_in_bank_s1 is None or dimes_in_bank_s2 is None:\n print('neutral')\n\nelif dimes_in_bank_s1 == dimes_in_bank_s2:\n print('Entailment')\n\nelif dimes_in_bank_s1 != dimes_in_bank_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Henry were to add 8 gallons of water to a tank that is already 3 / 4 full of water , the tank would be 7 / 8 full, \"statement 2\" :If Henry were to add more than 7 gallons of water to a tank that is already 3 / 4 full of water , the tank would be 7 / 8 full, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "quantity_of_water_in_tank_s1 = 8\nquantity_of_water_in_tank_s2 = 7\n\nif quantity_of_water_in_tank_s1 is None or quantity_of_water_in_tank_s2 is None:\n print('neutral')\n\nelif quantity_of_water_in_tank_s1 > quantity_of_water_in_tank_s2:\n print('Entailment')\n\nelif quantity_of_water_in_tank_s1 != quantity_of_water_in_tank_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At least 50 people were injured ., \"statement 2\" :It leaves at least 50 people injured, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_injured_s1 = 50\npeople_injured_s2 = 50\n\nif people_injured_s1 is None or people_injured_s2 is None:\n print('neutral')\n\nelif people_injured_s1 == people_injured_s2:\n print('Entailment')\n\nelif people_injured_s1 != people_injured_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Claire has a total of more than 82 pets consisting of gerbils and hamsters only, \"statement 2\" :Claire has a total of 92 pets consisting of gerbils and hamsters only, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "claire_pets_s1 = None\nclaire_pets_s2 = 92\n\nif claire_pets_s1 is None or claire_pets_s2 is None:\n print('neutral')\n\nelif claire_pets_s1 == claire_pets_s2:\n print('Entailment')\n\nelif claire_pets_s1 != claire_pets_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": ( CNN ) -- The Transportation Security Administration is in the process of firing six checked-baggage screeners and suspending 14 others at Boston 's Logan International Airport ., \"statement 2\" :The TSA is moving to fire six of the screeners and suspend the other 14, \"options: \" Entailment or neutral?", + "Output Program": [ + "baggage_suspended_s1 = 14\nbaggage_suspended_s2 = 14\n\nif baggage_suspended_s1 is None or baggage_suspended_s2 is None:\n print('neutral')\n\nelif baggage_suspended_s1 == baggage_suspended_s2:\n print('Entailment')\n\nelif baggage_suspended_s1 != baggage_suspended_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many liters of blue paint must be added to 32 liters of Fuchsia to change it to Mauve paint ?, \"statement 2\" :How many liters of blue paint must be added to less than 62 liters of Fuchsia to change it to Mauve paint ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "paint_to_be_added_s1 = 32\npaint_to_be_added_s2 = 62\n\nif paint_to_be_added_s1 is None or paint_to_be_added_s2 is None:\n print('neutral')\n\nelif paint_to_be_added_s1 < paint_to_be_added_s2:\n print('Entailment')\n\nelif paint_to_be_added_s1 != paint_to_be_added_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jane and Thomas are among the 8 people from which a committee of 3 people is to be selected, \"statement 2\" :Jane and Thomas are among the 3 people from which a committee of 3 people is to be selected, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_to_be_selected_s1 = 8\npeople_to_be_selected_s2 = 3\n\nif people_to_be_selected_s1 is None or people_to_be_selected_s2 is None:\n print('neutral')\n\nelif people_to_be_selected_s1 < people_to_be_selected_s2:\n print('Entailment')\n\nelif people_to_be_selected_s1 != people_to_be_selected_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": With a diameter of 5,230 kilometers , Ganymede is the largest satellite in the solar system - bigger than Mercury and about three-fourths the size of Mars ., \"statement 2\" :The terrestrial moon has a diameter of 3,746 kilometers ., \"options: \" Entailment or neutral?", + "Output Program": [ + "diameter_in_km_s1 = None\ndiameter_in_km_s2 = 3746\n\nif diameter_in_km_s1 is None or diameter_in_km_s2 is None:\n print('neutral')\n\nelif diameter_in_km_s1 == diameter_in_km_s2:\n print('Entailment')\n\nelif diameter_in_km_s1 != diameter_in_km_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Swetha takes a trip and drives 8 hours from Town A to Town C at a rate of 40 miles per hour, \"statement 2\" :Swetha takes a trip and drives more than 4 hours from Town A to Town C at a rate of 40 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_covered_s1 = 8\ndistance_covered_s2 = 4\n\nif distance_covered_s1 is None or distance_covered_s2 is None:\n print('neutral')\n\nelif distance_covered_s1 > distance_covered_s2:\n print('Entailment')\n\nelif distance_covered_s1 != distance_covered_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the agreed period of the debenture was 18 months : calculate the amount of interest Jaclyn will earn for each quarter, \"statement 2\" :If the agreed period of the debenture was 58 months : calculate the amount of interest Jaclyn will earn for each quarter, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "period_of_debenture_s1 = 18\nperiod_of_debenture_s2 = 58\n\nif period_of_debenture_s1 is None or period_of_debenture_s2 is None:\n print('neutral')\n\nelif period_of_debenture_s1 == period_of_debenture_s2:\n print('Entailment')\n\nelif period_of_debenture_s1 != period_of_debenture_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Michael has 49.0 fish and Ben gives him 18.0 more fish, \"statement 2\" :He has 67.0 marbles now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_fish_micheal_has_s1 = 49+18\ntotal_fish_micheal_has_s2 = 67\n\nif total_fish_micheal_has_s1 is None or total_fish_micheal_has_s2 is None:\n print('neutral')\n\nelif total_fish_micheal_has_s1 == total_fish_micheal_has_s2:\n print('Entailment')\n\nelif total_fish_micheal_has_s1 != total_fish_micheal_has_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Maria had 14.0 bottles of water in her fridge, and she drank 8.0 of them and then bought 45.0 more, \"statement 2\" :She would have 51.0 bottles , \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_bottles_s1 = 8\ntotal_bottles_s2 = 4\n\nif total_bottles_s1 is None or total_bottles_s2 is None:\n print('neutral')\n\nelif total_bottles_s1 > total_bottles_s2:\n print('Entailment')\n\nelif total_bottles_s1 != total_bottles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rebecca ' s annual income is $ 20 , and Jimmy ' s annual income is $ 10 ,, \"statement 2\" :Rebecca ' s annual income is $ less than 50 , and Jimmy ' s annual income is $ 10 ,, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "annual_income_of_rebeeca_s1 = 20\nannual_income_of_rebeeca_s2 = 10\n\nif annual_income_of_rebeeca_s1 is None or annual_income_of_rebeeca_s2 is None:\n print('neutral')\n\nelif annual_income_of_rebeeca_s1 < annual_income_of_rebeeca_s2:\n print('Entailment')\n\nelif annual_income_of_rebeeca_s1 != annual_income_of_rebeeca_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": You are reading a book with 120.0 pages, and you want to read the same number of pages each night, \"statement 2\" :You would have 9.0 pages to read each night to finish in 10.0 days, \"options: \" Entailment or contradiction?", + "Output Program": [ + "pages_read_s1 = 120\npages_read_s2 = 10*9\n\nif pages_read_s1 is None or pages_read_s2 is None:\n print('neutral')\n\nelif pages_read_s1 == pages_read_s2:\n print('Entailment')\n\nelif pages_read_s1 != pages_read_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rahim bought less than 67 books for Rs, \"statement 2\" :Rahim bought 27 books for Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Rs_of_book_s1 = None\nRs_of_book_s2 = 27\n\nif Rs_of_book_s1 is None or Rs_of_book_s2 is None:\n print('neutral')\n\nelif Rs_of_book_s1 == Rs_of_book_s2:\n print('Entailment')\n\nelif Rs_of_book_s1 != Rs_of_book_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sanoop bought 8 t - shirts at an average price ( arithmetic mean ) of Rs, \"statement 2\" :Sanoop bought less than 8 t - shirts at an average price ( arithmetic mean ) of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bought_tshirt_s1 = 8\nbought_tshirt_s2 = 0\n\nif bought_tshirt_s1 is None or bought_tshirt_s2 is None:\n print('neutral')\n\nelif bought_tshirt_s1 == bought_tshirt_s2:\n print('Entailment')\n\nelif bought_tshirt_s1 != bought_tshirt_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": After they have worked together for less than 82 days Matt stops and Peter completes the remaining work in 8 days, \"statement 2\" :After they have worked together for 12 days Matt stops and Peter completes the remaining work in 8 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_they_worked_together_s1 = None\ndays_they_worked_together_s2 = 12\n\nif days_they_worked_together_s1 is None or days_they_worked_together_s2 is None:\n print('neutral')\n\nelif days_they_worked_together_s1 == days_they_worked_together_s2:\n print('Entailment')\n\nelif days_they_worked_together_s1 != days_they_worked_together_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Clarissa is driving home from work , less than 610 miles away, \"statement 2\" :Clarissa is driving home from work , 110 miles away, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "driven_miles_s1 = None\ndriven_miles_s2 = 110\n\nif driven_miles_s1 is None or driven_miles_s2 is None:\n print('neutral')\n\nelif driven_miles_s1 == driven_miles_s2:\n print('Entailment')\n\nelif driven_miles_s1 != driven_miles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A pet supply store has 600.0 bags of dog food and 327.0 bags of cat food., \"statement 2\" :273.0 more bags of dog food are there than cat food, \"options: \" Entailment or contradiction?", + "Output Program": [ + "bogs_of_dog_food_s1 = 600\nbogs_of_dog_food_s2 = 273\n\nif bogs_of_dog_food_s1 is None or bogs_of_dog_food_s2 is None:\n print('neutral')\n\nelif bogs_of_dog_food_s1 > bogs_of_dog_food_s2:\n print('Entailment')\n\nelif bogs_of_dog_food_s1 != bogs_of_dog_food_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The total marks obtained by a student in Mathematics and Physics is less than 70 and his score in Chemistry is 20 marks more than that in Physics, \"statement 2\" :The total marks obtained by a student in Mathematics and Physics is 20 and his score in Chemistry is 20 marks more than that in Physics, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_obtained_s1 = None\nmarks_obtained_s2 = 20\n\nif marks_obtained_s1 is None or marks_obtained_s2 is None:\n print('neutral')\n\nelif marks_obtained_s1 == marks_obtained_s2:\n print('Entailment')\n\nelif marks_obtained_s1 != marks_obtained_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Thompson had the following scores in an exam ( out of 100 ) :\nSocial Studies : 60\nScience : 89\nArt : 62\nMusic : 69\nSpanish : 84\nBiology : 89\nWhat are his average marks ?, \"statement 2\" :Thompson had the following scores in an exam ( out of more than 100 ) : Social Studies : 60 Science : 89 Art : 62 Music : 69 Spanish : 84 Biology : 89 What are his average marks ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_marks_s1 = 100\ntotal_marks_s2 = 0\n\nif total_marks_s1 is None or total_marks_s2 is None:\n print('neutral')\n\nelif total_marks_s1 == total_marks_s2:\n print('Entailment')\n\nelif total_marks_s1 != total_marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Coover was 94, \"statement 2\" :He was 94 ., \"options: \" Entailment or neutral?", + "Output Program": [ + "coover_age_s1 = 94\ncoover_age_s2 = 94\n\nif coover_age_s1 is None or coover_age_s2 is None:\n print('neutral')\n\nelif coover_age_s1 == coover_age_s2:\n print('Entailment')\n\nelif coover_age_s1 != coover_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is 4 : 3 , After 6 Years Rahul age will be 42 years, \"statement 2\" :Ratio between Rahul and Deepak is less than 4 : 3 , After 6 Years Rahul age will be 42 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_between_rahul_and_deepak_age_s1 = 4/3\nratio_between_rahul_and_deepak_age_s2 = 0\n\nif ratio_between_rahul_and_deepak_age_s1 is None or ratio_between_rahul_and_deepak_age_s2 is None:\n print('neutral')\n\nelif ratio_between_rahul_and_deepak_age_s1 == ratio_between_rahul_and_deepak_age_s2:\n print('Entailment')\n\nelif ratio_between_rahul_and_deepak_age_s1 != ratio_between_rahul_and_deepak_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Half of the Malmo family members have blue eyes , and 4 / 5 of the family members who have blue eyes do not wear glasses, \"statement 2\" :Half of the Malmo family members have blue eyes , and more than 4 / 5 of the family members who have blue eyes do not wear glasses, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "family_members_have_blue_eyes_and_dont_wear_glasses_s1 = 4/5\nfamily_members_have_blue_eyes_and_dont_wear_glasses_s2 = 0\n\nif family_members_have_blue_eyes_and_dont_wear_glasses_s1 is None or family_members_have_blue_eyes_and_dont_wear_glasses_s2 is None:\n print('neutral')\n\nelif family_members_have_blue_eyes_and_dont_wear_glasses_s1 == family_members_have_blue_eyes_and_dont_wear_glasses_s2:\n print('Entailment')\n\nelif family_members_have_blue_eyes_and_dont_wear_glasses_s1 != family_members_have_blue_eyes_and_dont_wear_glasses_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Smith gradually lost her vision from the age of eight due to a rare genetic disorder , becoming registered as officially blind by 16 ., \"statement 2\" :She lost her sight by the age of 16 and registered blind, \"options: \" Entailment or neutral?", + "Output Program": [ + "age_at_which_smith_got_blind_s1 = 16\nage_at_which_smith_got_blind_s2 = 16\n\nif age_at_which_smith_got_blind_s1 is None or age_at_which_smith_got_blind_s2 is None:\n print('neutral')\n\nelif age_at_which_smith_got_blind_s1 == age_at_which_smith_got_blind_s2:\n print('Entailment')\n\nelif age_at_which_smith_got_blind_s1 != age_at_which_smith_got_blind_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Pakistan , which fought two of its three wars with India over Kashmir , denies Indian charges that it is arming separatists in the valley ., \"statement 2\" :India and Pakistan have fought three wars for the possession of Kashmir ., \"options: \" Entailment or neutral?", + "Output Program": [ + "fought_war_s1 = None\nfought_war_s2 = 3\n\nif fought_war_s1 is None or fought_war_s2 is None:\n print('neutral')\n\nelif fought_war_s1 == fought_war_s2:\n print('Entailment')\n\nelif fought_war_s1 != fought_war_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John paid a 15 % tip over the original price of the dish , while Jane paid the tip over the discounted price for the coupon, \"statement 2\" :John paid a less than 25 % tip over the original price of the dish , while Jane paid the tip over the discounted price for the coupon, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "top_john_paid_s1 = 15\ntop_john_paid_s2 = 25\n\nif top_john_paid_s1 is None or top_john_paid_s2 is None:\n print('neutral')\n\nelif top_john_paid_s1 < top_john_paid_s2:\n print('Entailment')\n\nelif top_john_paid_s1 != top_john_paid_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sony and Johnny caught 40 fishes, \"statement 2\" :Sony and Johnny caught more than 30 fishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "fishes_caught_s1 = 40\nfishes_caught_s2 = 30\n\nif fishes_caught_s1 is None or fishes_caught_s2 is None:\n print('neutral')\n\nelif fishes_caught_s1 > fishes_caught_s2:\n print('Entailment')\n\nelif fishes_caught_s1 != fishes_caught_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John has less than 83 ten - dollar bills , 11 five - dollar bills , and 17 one - dollar bills, \"statement 2\" :John has 13 ten - dollar bills , 11 five - dollar bills , and 17 one - dollar bills, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dollar_john_has_s1 = None\ndollar_john_has_s2 = 13\n\nif dollar_john_has_s1 is None or dollar_john_has_s2 is None:\n print('neutral')\n\nelif dollar_john_has_s1 == dollar_john_has_s2:\n print('Entailment')\n\nelif dollar_john_has_s1 != dollar_john_has_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is less than 7 : 3 , After 6 Years Rahul age will be 26 years, \"statement 2\" :Ratio between Rahul and Deepak is 4 : 3 , After 6 Years Rahul age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_between_rahul_and_deepak_age_s1 = None\nratio_between_rahul_and_deepak_age_s2 = 1/3\n\nif ratio_between_rahul_and_deepak_age_s1 is None or ratio_between_rahul_and_deepak_age_s2 is None:\n print('neutral')\n\nelif ratio_between_rahul_and_deepak_age_s1 == ratio_between_rahul_and_deepak_age_s2:\n print('Entailment')\n\nelif ratio_between_rahul_and_deepak_age_s1 != ratio_between_rahul_and_deepak_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Josh had 16.0 marbles in his collection and he lost 7.0 marbles, \"statement 2\" :He has 5.0 marbles now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "marble_collection_s1 = 16-7\nmarble_collection_s2 = 5\n\nif marble_collection_s1 is None or marble_collection_s2 is None:\n print('neutral')\n\nelif marble_collection_s1 == marble_collection_s2:\n print('Entailment')\n\nelif marble_collection_s1 != marble_collection_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tom and Jerry enter into a partnership by investing $ more than 200 and $ 300 respectively, \"statement 2\" :Tom and Jerry enter into a partnership by investing $ 700 and $ 300 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "partnership_investment_s1 = None\npartnership_investment_s2 = 700\n\nif partnership_investment_s1 is None or partnership_investment_s2 is None:\n print('neutral')\n\nelif partnership_investment_s1 == partnership_investment_s2:\n print('Entailment')\n\nelif partnership_investment_s1 != partnership_investment_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Gwen drove an average speed of 15 miles per hour for the first 40 miles of a tripthen at a average speed of 30 miles / hr for the remaining 40 miles of the trip if she made no stops during the trip what was Gwen ' s avg speed in miles / hr for the entire trip, \"statement 2\" :Gwen drove an average speed of less than 15 miles per hour for the first 40 miles of a tripthen at a average speed of 30 miles / hr for the remaining 40 miles of the trip if she made no stops during the trip what was Gwen ' s avg speed in miles / hr for the entire trip, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_speed_in_miles_per_hour_s1 = 15\naverage_speed_in_miles_per_hour_s2 = 0\n\nif average_speed_in_miles_per_hour_s1 is None or average_speed_in_miles_per_hour_s2 is None:\n print('neutral')\n\nelif average_speed_in_miles_per_hour_s1 == average_speed_in_miles_per_hour_s2:\n print('Entailment')\n\nelif average_speed_in_miles_per_hour_s1 != average_speed_in_miles_per_hour_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a BCCI meeting there are 11 people, \"statement 2\" :In a BCCI meeting there are less than 31 people, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_people_s1 = 11\ntotal_people_s2 = 32\n\nif total_people_s1 is None or total_people_s2 is None:\n print('neutral')\n\nelif total_people_s1 < total_people_s2:\n print('Entailment')\n\nelif total_people_s1 != total_people_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Yolanda ' s walking rate was 3 miles per hour and Bob \u0442 ' s was 4 miles per hour , how many miles had Bob walked when they met ?, \"statement 2\" :If Yolanda ' s walking rate was more than 3 miles per hour and Bob \u0442 ' s was 4 miles per hour , how many miles had Bob walked when they met ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "walking_rate_per_hour_s1 = 3\nwalking_rate_per_hour_s2 = 0\n\nif walking_rate_per_hour_s1 is None or walking_rate_per_hour_s2 is None:\n print('neutral')\n\nelif walking_rate_per_hour_s1 == walking_rate_per_hour_s2:\n print('Entailment')\n\nelif walking_rate_per_hour_s1 != walking_rate_per_hour_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In Spain 's La Liga , second half penalties from Mali international Freddy Kanoute and Spanish striker Alvaro Negredo helped Sevilla to a 3-1 home win over strugglers Real Zaragoza ., \"statement 2\" :Sevilla beat Real Zaragoza 3-1 to go fifth in Spain 's La Liga, \"options: \" Entailment or neutral?", + "Output Program": [ + "sevilla_beat_at_s1 = None\nsevilla_beat_at_s2 = 3-1\n\nif sevilla_beat_at_s1 is None or sevilla_beat_at_s2 is None:\n print('neutral')\n\nelif sevilla_beat_at_s1 == sevilla_beat_at_s2:\n print('Entailment')\n\nelif sevilla_beat_at_s1 != sevilla_beat_at_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sammy Ofer was 89, \"statement 2\" :He was 89 ., \"options: \" Entailment or neutral?", + "Output Program": [ + "sammy_oer_s1 = 89\nsammy_oer_s2 = 89\n\nif sammy_oer_s1 is None or sammy_oer_s2 is None:\n print('neutral')\n\nelif sammy_oer_s1 == sammy_oer_s2:\n print('Entailment')\n\nelif sammy_oer_s1 != sammy_oer_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than 80 % ?, \"statement 2\" :If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than more than 80 % ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\ndeparture_rate_s1 = 80\ndeparture_rate_s2 = 0\n\nif departure_rate_s1 is None or departure_rate_s2 is None:\n print('neutral')\n\nelif departure_rate_s1 == departure_rate_s2:\n print('Entailment')\n\nelif departure_rate_s1 != departure_rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shawn invested one half of his savings in a bond that paid simple interest for 2 years and received $ 400 as interest, \"statement 2\" :Shawn invested one half of his savings in a bond that paid simple interest for less than 7 years and received $ 400 as interest, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_invested_s1 = 2\nyears_invested_s2 = 7\n\nif years_invested_s1 is None or years_invested_s2 is None:\n print('neutral')\n\nelif years_invested_s1 < years_invested_s2:\n print('Entailment')\n\nelif years_invested_s1 != years_invested_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Diana is 4 years older than Rashid is , then how old is Rashid ?, \"statement 2\" :If Diana is more than 3 years older than Rashid is , then how old is Rashid ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_dina_is_older_s1 = 4\nyears_dina_is_older_s2 = 3\n\nif years_dina_is_older_s1 is None or years_dina_is_older_s2 is None:\n print('neutral')\n\nelif years_dina_is_older_s1 > years_dina_is_older_s2:\n print('Entailment')\n\nelif years_dina_is_older_s1 != years_dina_is_older_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Overall , 2,500 delegates traveled to Davos from more than 100 countries ., \"statement 2\" :Overall , 2,500 delegates traveled to Davos from more than 100 countries around the world, \"options: \" Entailment or neutral?", + "Output Program": [ + "delegates_travelled_s1 = 2500\ndelegates_travelled_s2 = 2500\n\nif delegates_travelled_s1 is None or delegates_travelled_s2 is None:\n print('neutral')\n\nelif delegates_travelled_s1 == delegates_travelled_s2:\n print('Entailment')\n\nelif delegates_travelled_s1 != delegates_travelled_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sterling has filed a $ 1B suit against the NBA because it banned him for life and forced him to sell, \"statement 2\" :He also filed a $ 1 billion lawsuit against the NBA for its decision to ban him for life and force him to sell the franchise ., \"options: \" Entailment or neutral?", + "Output Program": [ + "filed_suit_of_dollar_s1 = None\nfiled_suit_of_dollar_s2 = 1\n\nif filed_suit_of_dollar_s1 is None or filed_suit_of_dollar_s2 is None:\n print('neutral')\n\nelif filed_suit_of_dollar_s1 == filed_suit_of_dollar_s2:\n print('Entailment')\n\nelif filed_suit_of_dollar_s1 != filed_suit_of_dollar_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": New York ( CNN ) -- Her teachers knew she loved to doodle on her tests and homework , but no one thought Olivia Bouler 's drawing skills would raise more than $ 110,000 to help birds affected by the Gulf oil spill ., \"statement 2\" :So far , she 's raised more than $ 110,000, \"options: \" Entailment or neutral?", + "Output Program": [ + "dollar_she_raised_s1 = None\ndollar_she_raised_s2 = 110000\n\nif dollar_she_raised_s1 is None or dollar_she_raised_s2 is None:\n print('neutral')\n\nelif dollar_she_raised_s1 == dollar_she_raised_s2:\n print('Entailment')\n\nelif dollar_she_raised_s1 != dollar_she_raised_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Jack ' s score was within 2 standard deviations of the mean , what is the lowest score he could have received ?, \"statement 2\" :If Jack ' s score was within less than 2 standard deviations of the mean , what is the lowest score he could have received ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jack_score_s1 = 2\njack_score_s2 = 0\n\nif jack_score_s1 is None or jack_score_s2 is None:\n print('neutral')\n\nelif jack_score_s1 == jack_score_s2:\n print('Entailment')\n\nelif jack_score_s1 != jack_score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Scott ' s average ( arithmetic mean ) golf score on his first four rounds was less than 78, \"statement 2\" :Scott ' s average ( arithmetic mean ) golf score on his first four rounds was 28, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_mean_s1 = None\naverage_mean_s2 = 28\n\nif average_mean_s1 is None or average_mean_s2 is None:\n print('neutral')\n\nelif average_mean_s1 == average_mean_s2:\n print('Entailment')\n\nelif average_mean_s1 != average_mean_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill has less than 55 gallons of water stored in quart , half - gallon , and one gallon jars, \"statement 2\" :Jill has 35 gallons of water stored in quart , half - gallon , and one gallon jars, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gallon_of_water_s1 = None\ngallon_of_water_s2 = 35\n\nif gallon_of_water_s1 is None or gallon_of_water_s2 is None:\n print('neutral')\n\nelif gallon_of_water_s1 == gallon_of_water_s2:\n print('Entailment')\n\nelif gallon_of_water_s1 != gallon_of_water_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are less than 38 stations between Ernakulam and Chennai, \"statement 2\" :There are 18 stations between Ernakulam and Chennai, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "station_between_ernakulam_and_chennai_s1 = None\nstation_between_ernakulam_and_chennai_s2 = 18\n\nif station_between_ernakulam_and_chennai_s1 is None or station_between_ernakulam_and_chennai_s2 is None:\n print('neutral')\n\nelif station_between_ernakulam_and_chennai_s1 == station_between_ernakulam_and_chennai_s2:\n print('Entailment')\n\nelif station_between_ernakulam_and_chennai_s1 != station_between_ernakulam_and_chennai_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary works in a restaurant a maximum of 60 hours, \"statement 2\" :Mary works in a restaurant a maximum of more than 60 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_mary_works_s1 = 60\nhours_mary_works_s2 = 0\n\nif hours_mary_works_s1 is None or hours_mary_works_s2 is None:\n print('neutral')\n\nelif hours_mary_works_s1 == hours_mary_works_s2:\n print('Entailment')\n\nelif hours_mary_works_s1 != hours_mary_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are 14 more FGH supermarkets in the US than in Canada , how many FGH supermarkets are there in the US ?, \"statement 2\" :If there are less than 14 more FGH supermarkets in the US than in Canada , how many FGH supermarkets are there in the US ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "FGH_supermarket_s1 = 14\nFGH_supermarket_s2 = 0\n\nif FGH_supermarket_s1 is None or FGH_supermarket_s2 is None:\n print('neutral')\n\nelif FGH_supermarket_s1 == FGH_supermarket_s2:\n print('Entailment')\n\nelif FGH_supermarket_s1 != FGH_supermarket_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were a total of 27.0 soccer games during the 3.0 month season, and the games are equally divided, \"statement 2\" :7.0 soccer games are played a month, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_soccer_s1 = 27/3\ntotal_soccer_s2 = 7\n\nif total_soccer_s1 is None or total_soccer_s2 is None:\n print('neutral')\n\nelif total_soccer_s1 == total_soccer_s2:\n print('Entailment')\n\nelif total_soccer_s1 != total_soccer_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alok ordered less than 86 chapatis , 5 plates of rice , 7 plates of mixed vegetable and 6 ice - cream cups, \"statement 2\" :Alok ordered 16 chapatis , 5 plates of rice , 7 plates of mixed vegetable and 6 ice - cream cups, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ordered_chapatis_s1 = None\nordered_chapatis_s2 = 16\n\nif ordered_chapatis_s1 is None or ordered_chapatis_s2 is None:\n print('neutral')\n\nelif ordered_chapatis_s1 == ordered_chapatis_s2:\n print('Entailment')\n\nelif ordered_chapatis_s1 != ordered_chapatis_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jesse has 21.0 bananas, and he shares them among 3.0 friends, \"statement 2\" :Each friend gets 7.0 bananas, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_bananas_jesse_has_s1 = 21/3\ntotal_bananas_jesse_has_s2 = 7\n\nif total_bananas_jesse_has_s1 is None or total_bananas_jesse_has_s2 is None:\n print('neutral')\n\nelif total_bananas_jesse_has_s1 == total_bananas_jesse_has_s2:\n print('Entailment')\n\nelif total_bananas_jesse_has_s1 != total_bananas_jesse_has_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Assuming that Karen drives at an average speed of 60 mph and Tom drives at an average speed of 45 mph , how many Y miles will Tom drive before Karen wins the bet ?, \"statement 2\" :Assuming that Karen drives at an average speed of less than 60 mph and Tom drives at an average speed of 45 mph , how many Y miles will Tom drive before Karen wins the bet ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_speed_s1 = 60\naverage_speed_s2 = 0\n\nif average_speed_s1 is None or average_speed_s2 is None:\n print('neutral')\n\nelif average_speed_s1 == average_speed_s2:\n print('Entailment')\n\nelif average_speed_s1 != average_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Another death and 10 injuries occurred when troops shot at protesters marching toward the southern town of Al Sanameen , witnesses said ., \"statement 2\" :One person is dead and 10 are wounded in Al Sanameen , witnesses say, \"options: \" Entailment or neutral?", + "Output Program": [ + "total_death_and_injuries_s1 = 10+1\ntotal_death_and_injuries_s2 = 10+1\n\nif total_death_and_injuries_s1 is None or total_death_and_injuries_s2 is None:\n print('neutral')\n\nelif total_death_and_injuries_s1 == total_death_and_injuries_s2:\n print('Entailment')\n\nelif total_death_and_injuries_s1 != total_death_and_injuries_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A treasure hunter discovered a buried treasure chest filled with 5155.0 rubys and 45.0 diamonds., \"statement 2\" :5196.0 gems were there in total, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_gems_s1 = 5155+45\ntotal_gems_s2 = 5196\n\nif total_gems_s1 is None or total_gems_s2 is None:\n print('neutral')\n\nelif total_gems_s1 == total_gems_s2:\n print('Entailment')\n\nelif total_gems_s1 != total_gems_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ratio of present ages of Nisha and Shilpa is 7 : 8 respectively, \"statement 2\" :The ratio of present ages of Nisha and Shilpa is less than 7 : 8 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_of_present_ages_of_both_s1 = 7/8\nratio_of_present_ages_of_both_s2 = 0\n\nif ratio_of_present_ages_of_both_s1 is None or ratio_of_present_ages_of_both_s2 is None:\n print('neutral')\n\nelif ratio_of_present_ages_of_both_s1 == ratio_of_present_ages_of_both_s2:\n print('Entailment')\n\nelif ratio_of_present_ages_of_both_s1 != ratio_of_present_ages_of_both_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Paul can dig the same well in 24 days, \"statement 2\" :Paul can dig the same well in less than 24 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_paul_dig_well_s1 = 24\ndays_paul_dig_well_s2 = 0\n\nif days_paul_dig_well_s1 is None or days_paul_dig_well_s2 is None:\n print('neutral')\n\nelif days_paul_dig_well_s1 == days_paul_dig_well_s2:\n print('Entailment')\n\nelif days_paul_dig_well_s1 != days_paul_dig_well_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lionel left his house and walked towards Walt ' s house , 48 miles away, \"statement 2\" :Lionel left his house and walked towards Walt ' s house , less than 48 miles away, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "walked_miles_away_s1 = 48\nwalked_miles_away_s2 = 0\n\nif walked_miles_away_s1 is None or walked_miles_away_s2 is None:\n print('neutral')\n\nelif walked_miles_away_s1 == walked_miles_away_s2:\n print('Entailment')\n\nelif walked_miles_away_s1 != walked_miles_away_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": I 'm willing to offer $ 5 million to Donald Trump that he can donate to a charity of his choice -- Hair Club for Men ; The Institute for Incorrigible Douche-bag-ery ., \"statement 2\" :The comedian offers $ 5 million for Trump to prove otherwise, \"options: \" Entailment or neutral?", + "Output Program": [ + "dollar_comedian_offers_s1 = None\ndollar_comedian_offers_s2 = 5\n\nif dollar_comedian_offers_s1 is None or dollar_comedian_offers_s2 is None:\n print('neutral')\n\nelif dollar_comedian_offers_s1 == dollar_comedian_offers_s2:\n print('Entailment')\n\nelif dollar_comedian_offers_s1 != dollar_comedian_offers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained 45 , 35 , 52 , 47 and 55 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained more than 35 , 35 , 52 , 47 and 55 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_dacid_obtained_s1 = 45\nmarks_dacid_obtained_s2 = 35\n\nif marks_dacid_obtained_s1 is None or marks_dacid_obtained_s2 is None:\n print('neutral')\n\nelif marks_dacid_obtained_s1 > marks_dacid_obtained_s2:\n print('Entailment')\n\nelif marks_dacid_obtained_s1 != marks_dacid_obtained_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After more than 1 years , Arun ' s age will be 26 years, \"statement 2\" :After 6 years , Arun ' s age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "arun_age_years_s1 = None\narun_age_years_s2 = 6\n\nif arun_age_years_s1 is None or arun_age_years_s2 is None:\n print('neutral')\n\nelif arun_age_years_s1 == arun_age_years_s2:\n print('Entailment')\n\nelif arun_age_years_s1 != arun_age_years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Turnout was registered at just over 95 percent , it said ., \"statement 2\" :Turnout was just over 95 percent , electoral commission says, \"options: \" Entailment or neutral?", + "Output Program": [ + "turnout_s1 = None\nturnout_s2 = 95\n\nif turnout_s1 is None or turnout_s2 is None:\n print('neutral')\n\nelif turnout_s1 == turnout_s2:\n print('Entailment')\n\nelif turnout_s1 != turnout_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lindy runs at a constant speed of 10 feet per second from Christina to Jack , back to Christina , back to Jack , and so forth, \"statement 2\" :Lindy runs at a constant speed of 50 feet per second from Christina to Jack , back to Christina , back to Jack , and so forth, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "feet_per_second_s1 = 10\nfeet_per_second_s2 = 50\n\nif feet_per_second_s1 is None or feet_per_second_s2 is None:\n print('neutral')\n\nelif feet_per_second_s1 == feet_per_second_s2:\n print('Entailment')\n\nelif feet_per_second_s1 != feet_per_second_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The present ages of Lewis and Brown are in the ratio less than 8 : 2, \"statement 2\" :The present ages of Lewis and Brown are in the ratio 1 : 2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_of_both_present_ages_s1 = None\nratio_of_both_present_ages_s2 = 1/2\n\nif ratio_of_both_present_ages_s1 is None or ratio_of_both_present_ages_s2 is None:\n print('neutral')\n\nelif ratio_of_both_present_ages_s1 == ratio_of_both_present_ages_s2:\n print('Entailment')\n\nelif ratio_of_both_present_ages_s1 != ratio_of_both_present_ages_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If an outfit consists of less than 7 shirt , 1 pair of jeans , and 1 pair of sneakers , how many different outfits does Jordan have ?, \"statement 2\" :If an outfit consists of 1 shirt , 1 pair of jeans , and 1 pair of sneakers , how many different outfits does Jordan have ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "outfit_consists_shirt_s1 = None\noutfit_consists_shirt_s2 = 1\n\nif outfit_consists_shirt_s1 is None or outfit_consists_shirt_s2 is None:\n print('neutral')\n\nelif outfit_consists_shirt_s1 == outfit_consists_shirt_s2:\n print('Entailment')\n\nelif outfit_consists_shirt_s1 != outfit_consists_shirt_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The distance from Steve ' s house to work is 30 Km, \"statement 2\" :The distance from Steve ' s house to work is 70 Km, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_in_km_from_steve_house_s1 = 30\ndistance_in_km_from_steve_house_s2 = 70\n\nif distance_in_km_from_steve_house_s1 is None or distance_in_km_from_steve_house_s2 is None:\n print('neutral')\n\nelif distance_in_km_from_steve_house_s1 == distance_in_km_from_steve_house_s2:\n print('Entailment')\n\nelif distance_in_km_from_steve_house_s1 != distance_in_km_from_steve_house_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are 22 more FGH supermarkets in the US than in Canada , how many FGH supermarkets are there in the US ?, \"statement 2\" :If there are 42 more FGH supermarkets in the US than in Canada , how many FGH supermarkets are there in the US ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "FGH_supermarkets_s1 = 22\nFGH_supermarkets_s2 = 42\n\nif FGH_supermarkets_s1 is None or FGH_supermarkets_s2 is None:\n print('neutral')\n\nelif FGH_supermarkets_s1 == FGH_supermarkets_s2:\n print('Entailment')\n\nelif FGH_supermarkets_s1 != FGH_supermarkets_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Martin bought 10 concert tickets , some at the full price of $ 2.00 per ticket , and some at a discounted price of $ 1.60 per ticket, \"statement 2\" :Martin bought 20 concert tickets , some at the full price of $ 2.00 per ticket , and some at a discounted price of $ 1.60 per ticket, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "concert_tickets_s1 = 10\nconcert_tickets_s2 = 20\n\nif concert_tickets_s1 is None or concert_tickets_s2 is None:\n print('neutral')\n\nelif concert_tickets_s1 == concert_tickets_s2:\n print('Entailment')\n\nelif concert_tickets_s1 != concert_tickets_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Thousands of people were wounded in clashes , and at least one police officer and five demonstrators were killed ., \"statement 2\" :At least 6 killed , thousands wounded in recent demonstrations, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_killed_s1 = 6\npeople_killed_s2 = 6\n\nif people_killed_s1 is None or people_killed_s2 is None:\n print('neutral')\n\nelif people_killed_s1 == people_killed_s2:\n print('Entailment')\n\nelif people_killed_s1 != people_killed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Firefighters found the Boeing 737 on fire , with its wheels sheared off , resting in a ravine about 200 yards from the runway , Hynes said ., \"statement 2\" :Jet also caught fire in ravine 200 yards from runway, \"options: \" Entailment or neutral?", + "Output Program": [ + "yards_runaway_s1 = None\nyards_runaway_s2 = 200\n\nif yards_runaway_s1 is None or yards_runaway_s2 is None:\n print('neutral')\n\nelif yards_runaway_s1 == yards_runaway_s2:\n print('Entailment')\n\nelif yards_runaway_s1 != yards_runaway_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If it takes Pat 15 minutes to stretch and Cathy continues to run during this time , how many minutes will it take Pat to catch up to Cathy ?, \"statement 2\" :If it takes Pat more than 15 minutes to stretch and Cathy continues to run during this time , how many minutes will it take Pat to catch up to Cathy ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "minutes_pat_stretch_s1 = 15\nminutes_pat_stretch_s2 = 0\n\nif minutes_pat_stretch_s1 is None or minutes_pat_stretch_s2 is None:\n print('neutral')\n\nelif minutes_pat_stretch_s1 == minutes_pat_stretch_s2:\n print('Entailment')\n\nelif minutes_pat_stretch_s1 != minutes_pat_stretch_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Store Z : $ 90 , a 20 % sales tax , and $ 10 rebate after tax\nIsaac can purchase a certain item in four different ways , as shown in the table, \"statement 2\" :Store Z : $ more than 60 , a 20 % sales tax , and $ 10 rebate after tax Isaac can purchase a certain item in four different ways , as shown in the table, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_s1 = 92\namount_s2 = 60\n\nif amount_s1 is None or amount_s2 is None:\n print('neutral')\n\nelif amount_s1 > amount_s2:\n print('Entailment')\n\nelif amount_s1 != amount_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jack had framed less than 84 photographs taken by Octavia , and 12 photographs taken by other photographers, \"statement 2\" :Jack had framed 24 photographs taken by Octavia , and 12 photographs taken by other photographers, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jacks_framed_photographs_s1 = None\njacks_framed_photographs_s2 = 84\n\nif jacks_framed_photographs_s1 is None or jacks_framed_photographs_s2 is None:\n print('neutral')\n\nelif jacks_framed_photographs_s1 == jacks_framed_photographs_s2:\n print('Entailment')\n\nelif jacks_framed_photographs_s1 != jacks_framed_photographs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The 41 parents participating in the Smithville PTA have been assigned to at least 1 of 3 committees : festival planning , classroom aid , and teacher relations, \"statement 2\" :The less than 81 parents participating in the Smithville PTA have been assigned to at least 1 of 3 committees : festival planning , classroom aid , and teacher relations, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "parents_participating_s1 = 41\nparents_participating_s2 = 81\n\nif parents_participating_s1 is None or parents_participating_s2 is None:\n print('neutral')\n\nelif parents_participating_s1 < parents_participating_s2:\n print('Entailment')\n\nelif parents_participating_s1 != parents_participating_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Anne \u2019 s speed were doubled , they could clean their house in 3 hours working at their respective rates, \"statement 2\" :If Anne \u2019 s speed were doubled , they could clean their house in less than 5 hours working at their respective rates, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "time_taken_to_clean_house_s1 = 3\ntime_taken_to_clean_house_s2 = 5\n\nif time_taken_to_clean_house_s1 is None or time_taken_to_clean_house_s2 is None:\n print('neutral')\n\nelif time_taken_to_clean_house_s1 < time_taken_to_clean_house_s2:\n print('Entailment')\n\nelif time_taken_to_clean_house_s1 != time_taken_to_clean_house_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 8 % people of a village in Sri Lanka died by bombardment , 15 % of the remainder left the village on account of fear, \"statement 2\" :more than 8 % people of a village in Sri Lanka died by bombardment , 15 % of the remainder left the village on account of fear, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_died_in_srilanka_s1 = 8\npeople_died_in_srilanka_s2 = 0\n\nif people_died_in_srilanka_s1 is None or people_died_in_srilanka_s2 is None:\n print('neutral')\n\nelif people_died_in_srilanka_s1 == people_died_in_srilanka_s2:\n print('Entailment')\n\nelif people_died_in_srilanka_s1 != people_died_in_srilanka_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": About 80 trucks filled with commodities were expected to cross into Gaza ., \"statement 2\" :Trucks filled with commodities cross into Gaza at three locations, \"options: \" Entailment or neutral?", + "Output Program": [ + "location_in_gaza_s1 = None\nlocation_in_gaza_s2 = 3\n\nif location_in_gaza_s1 is None or location_in_gaza_s2 is None:\n print('neutral')\n\nelif location_in_gaza_s1 == location_in_gaza_s2:\n print('Entailment')\n\nelif location_in_gaza_s1 != location_in_gaza_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The UK Press Association also reported that two players from Edinburgh club Hearts were allegedly caught with an illegal substance ., \"statement 2\" :Two other Scottish players also allegedly caught with an illegal substance, \"options: \" Entailment or neutral?", + "Output Program": [ + "players_s1 = 2\nplayers_s2 = 2\n\nif players_s1 is None or players_s2 is None:\n print('neutral')\n\nelif players_s1 == players_s2:\n print('Entailment')\n\nelif players_s1 != players_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Twenty-one police officers and one demonstrator were hurt , and at least five people have been arrested , police said ., \"statement 2\" :At least five arrested ; 21 police officers and one protester hurt in the clashes , police say, \"options: \" Entailment or neutral?", + "Output Program": [ + "police_officer_protester_s1 = 21\npolice_officer_protester_s2 = 21\n\nif police_officer_protester_s1 is None or police_officer_protester_s2 is None:\n print('neutral')\n\nelif police_officer_protester_s1 == police_officer_protester_s2:\n print('Entailment')\n\nelif police_officer_protester_s1 != police_officer_protester_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mr Vishwas got an amount of 10920 as an interest at the end of eight years, \"statement 2\" :Mr Vishwas got an amount of 20920 as an interest at the end of eight years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "interest_amount_s1 = 10920\ninterest_amount_s2 = 20920\n\nif interest_amount_s1 is None or interest_amount_s2 is None:\n print('neutral')\n\nelif interest_amount_s1 == interest_amount_s2:\n print('Entailment')\n\nelif interest_amount_s1 != interest_amount_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": city A to city B , Andrew drove for 1 hour at 50 mph and for 3 hours at 60 mph, \"statement 2\" :city A to city B , Andrew drove for less than 4 hour at 50 mph and for 3 hours at 60 mph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_andrew_drove_s1 = 1\nhours_andrew_drove_s2 = 4\n\nif hours_andrew_drove_s1 is None or hours_andrew_drove_s2 is None:\n print('neutral')\n\nelif hours_andrew_drove_s1 < hours_andrew_drove_s2:\n print('Entailment')\n\nelif hours_andrew_drove_s1 != hours_andrew_drove_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a certain province in France there are less than 89 cities, \"statement 2\" :In a certain province in France there are 19 cities, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cities_in_france_s1 = None\ncities_in_france_s2 = 19\n\nif cities_in_france_s1 is None or cities_in_france_s2 is None:\n print('neutral')\n\nelif cities_in_france_s1 == cities_in_france_s2:\n print('Entailment')\n\nelif cities_in_france_s1 != cities_in_france_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Warner Limited has 4 Senior Managing Directors and 6 Managing Directors, \"statement 2\" :Warner Limited has less than 8 Senior Managing Directors and 6 Managing Directors, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "senior_managing_director_s1 = 4\nsenior_managing_director_s2 = 8\n\nif senior_managing_director_s1 is None or senior_managing_director_s2 is None:\n print('neutral')\n\nelif senior_managing_director_s1 < senior_managing_director_s2:\n print('Entailment')\n\nelif senior_managing_director_s1 != senior_managing_director_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At present , the ratio between the ages of Arun and Deepak is 4 : 3, \"statement 2\" :At present , the ratio between the ages of Arun and Deepak is less than 4 : 3, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_between_age_of_arun_and_deepak_s1 = 4/3\nratio_between_age_of_arun_and_deepak_s2 = 0\n\nif ratio_between_age_of_arun_and_deepak_s1 is None or ratio_between_age_of_arun_and_deepak_s2 is None:\n print('neutral')\n\nelif ratio_between_age_of_arun_and_deepak_s1 == ratio_between_age_of_arun_and_deepak_s2:\n print('Entailment')\n\nelif ratio_between_age_of_arun_and_deepak_s1 != ratio_between_age_of_arun_and_deepak_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Dan can do a job alone in less than 85 hours, \"statement 2\" :Dan can do a job alone in 15 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_dan_can_do_job_s1 = None\nhours_dan_can_do_job_s2 = 15\n\nif hours_dan_can_do_job_s1 is None or hours_dan_can_do_job_s2 is None:\n print('neutral')\n\nelif hours_dan_can_do_job_s1 == hours_dan_can_do_job_s2:\n print('Entailment')\n\nelif hours_dan_can_do_job_s1 != hours_dan_can_do_job_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Of the hurricanes , NOAA predicts that one to three will be major hurricanes -- storms classified as Category 3 on the Saffir-Simpson scale of storm intensity -- with winds of 111 mph or higher ., \"statement 2\" :NOAA predicts four to seven hurricanes , with one to three major storms, \"options: \" Entailment or neutral?", + "Output Program": [ + "hurricanes_predicted_s1 = 3\nhurricanes_predicted_s2 = 4\n\nif hurricanes_predicted_s1 is None or hurricanes_predicted_s2 is None:\n print('neutral')\n\nelif hurricanes_predicted_s1 < hurricanes_predicted_s2:\n print('Entailment')\n\nelif hurricanes_predicted_s1 != hurricanes_predicted_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Claire has a total of 86 pets consisting of gerbils and hamsters only, \"statement 2\" :Claire has a total of more than 86 pets consisting of gerbils and hamsters only, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_pets_claire_had_s1 = 86\ntotal_pets_claire_had_s2 = 0\n\nif total_pets_claire_had_s1 is None or total_pets_claire_had_s2 is None:\n print('neutral')\n\nelif total_pets_claire_had_s1 == total_pets_claire_had_s2:\n print('Entailment')\n\nelif total_pets_claire_had_s1 != total_pets_claire_had_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jessica had 8.0 quarters in her bank and her sister borrowed 3.0 of her quarters , \"statement 2\" :Jessica has 5.0 quarters now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "jessica_has_quarters_s1 = 8-3\njessica_has_quarters_s2 = 5\n\nif jessica_has_quarters_s1 is None or jessica_has_quarters_s2 is None:\n print('neutral')\n\nelif jessica_has_quarters_s1 == jessica_has_quarters_s2:\n print('Entailment')\n\nelif jessica_has_quarters_s1 != jessica_has_quarters_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is more than 1 : 3 , After 10 Years Rahul age will be 26 years, \"statement 2\" :Ratio between Rahul and Deepak is 4 : 3 , After 10 Years Rahul age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_between_rahul_and_deepak_age_s1 = None\nratio_between_rahul_and_deepak_age_s2 = 4/3\n\nif ratio_between_rahul_and_deepak_age_s1 is None or ratio_between_rahul_and_deepak_age_s2 is None:\n print('neutral')\n\nelif ratio_between_rahul_and_deepak_age_s1 == ratio_between_rahul_and_deepak_age_s2:\n print('Entailment')\n\nelif ratio_between_rahul_and_deepak_age_s1 != ratio_between_rahul_and_deepak_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lali builds a tower using only red , green , and blue toy bricks in a ratio of 4 : 3 : 1, \"statement 2\" :Lali builds a tower using only red , green , and blue toy bricks in a ratio of less than 7 : 3 : 1, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "colour_bricks_in_ratio_s1 = 4/3\ncolour_bricks_in_ratio_s2 = 7/3\n\nif colour_bricks_in_ratio_s1 is None or colour_bricks_in_ratio_s2 is None:\n print('neutral')\n\nelif colour_bricks_in_ratio_s1 < colour_bricks_in_ratio_s2:\n print('Entailment')\n\nelif colour_bricks_in_ratio_s1 != colour_bricks_in_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The sale was made to pay Yukos ' US $ 27.5 billion tax bill , Yuganskneftegaz was originally sold for US $ 9.4 billion to a little known company Baikalfinansgroup which was later bought by the Russian state-owned oil company Rosneft ., \"statement 2\" :Yuganskneftegaz cost US $ 27.5 billion ., \"options: \" Entailment or neutral?", + "Output Program": [ + "tax_bill_s1 = None\ntax_bill_s2 = 27.5\n\nif tax_bill_s1 is None or tax_bill_s2 is None:\n print('neutral')\n\nelif tax_bill_s1 == tax_bill_s2:\n print('Entailment')\n\nelif tax_bill_s1 != tax_bill_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": ( CNN ) -- Four separate times , prosecutors say , Gregory Peterson lured women under the pretext of a movie or lunch -- and sexually assaulted them ., \"statement 2\" :Four women allege he assaulted them, \"options: \" Entailment or neutral?", + "Output Program": [ + "women_alleged_s1 = 4\nwomen_alleged_s2 = 4\n\nif women_alleged_s1 is None or women_alleged_s2 is None:\n print('neutral')\n\nelif women_alleged_s1 == women_alleged_s2:\n print('Entailment')\n\nelif women_alleged_s1 != women_alleged_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": '' It was a hard one , to leave eight guys up there . '', \"statement 2\" :Survivor says decision to leave eight behind was '' gut-wrenching '', \"options: \" Entailment or neutral?", + "Output Program": [ + "leave_guys_behind_s1 = None\nleave_guys_behind_s2 = 8\n\nif leave_guys_behind_s1 is None or leave_guys_behind_s2 is None:\n print('neutral')\n\nelif leave_guys_behind_s1 == leave_guys_behind_s2:\n print('Entailment')\n\nelif leave_guys_behind_s1 != leave_guys_behind_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At present , the ratio between the ages of Arun and Deepak is 4 : 3, \"statement 2\" :At present , the ratio between the ages of Arun and Deepak is less than 8 : 3, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_between_arun_and_deepak_age_s1 = 4/3\nratio_between_arun_and_deepak_age_s2 = 4/3\n\nif ratio_between_arun_and_deepak_age_s1 is None or ratio_between_arun_and_deepak_age_s2 is None:\n print('neutral')\n\nelif ratio_between_arun_and_deepak_age_s1 == ratio_between_arun_and_deepak_age_s2:\n print('Entailment')\n\nelif ratio_between_arun_and_deepak_age_s1 != ratio_between_arun_and_deepak_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Bill needs to walk from the corner of 2 nd Rd and 3 rd Ave to the corner of 7 th Rd and 8 th Ave in the shortest possible time , how many different routes could he take ?, \"statement 2\" :If Bill needs to walk from the corner of less than 2 nd Rd and 3 rd Ave to the corner of 7 th Rd and 8 th Ave in the shortest possible time , how many different routes could he take ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bill_needs_to_walks_s1 = 2\nbill_needs_to_walks_s2 = 0\n\nif bill_needs_to_walks_s1 is None or bill_needs_to_walks_s2 is None:\n print('neutral')\n\nelif bill_needs_to_walks_s1 == bill_needs_to_walks_s2:\n print('Entailment')\n\nelif bill_needs_to_walks_s1 != bill_needs_to_walks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 2.0 birds were sitting on the fence and 4.0 more birds came to join them, \"statement 2\" :10.0 birds are sitting on the fence, \"options: \" Entailment or contradiction?", + "Output Program": [ + "birds_sitting_on_fence_s1 = 2+4\nbirds_sitting_on_fence_s2 = 10\n\nif birds_sitting_on_fence_s1 is None or birds_sitting_on_fence_s2 is None:\n print('neutral')\n\nelif birds_sitting_on_fence_s1 == birds_sitting_on_fence_s2:\n print('Entailment')\n\nelif birds_sitting_on_fence_s1 != birds_sitting_on_fence_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": ( CNN ) Two men have been charged with plotting attacks in Australia following a major counter-terrorism operation in Sydney ., \"statement 2\" :Two men charged with '' acts done in preparation for , or planning terrorist acts '', \"options: \" Entailment or neutral?", + "Output Program": [ + "men_charged_s1 = 2\nmen_charged_s2 = 2\n\nif men_charged_s1 is None or men_charged_s2 is None:\n print('neutral')\n\nelif men_charged_s1 == men_charged_s2:\n print('Entailment')\n\nelif men_charged_s1 != men_charged_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": David biked 16 1 / 3 miles in 2 hours and 20 minutes, \"statement 2\" :David biked less than 86 1 / 3 miles in 2 hours and 20 minutes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_biked_s1 = 16\nmiles_biked_s2 = 86\n\nif miles_biked_s1 is None or miles_biked_s2 is None:\n print('neutral')\n\nelif miles_biked_s1 < miles_biked_s2:\n print('Entailment')\n\nelif miles_biked_s1 != miles_biked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If 36 of the photographs in the exhibition were taken by Octavia , how many photographs were either framed by Jack or taken by Octavia ?, \"statement 2\" :If 66 of the photographs in the exhibition were taken by Octavia , how many photographs were either framed by Jack or taken by Octavia ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "no_of_photographers_s1 = 36\nno_of_photographers_s2 = 66\n\nif no_of_photographers_s1 is None or no_of_photographers_s2 is None:\n print('neutral')\n\nelif no_of_photographers_s1 == no_of_photographers_s2:\n print('Entailment')\n\nelif no_of_photographers_s1 != no_of_photographers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 12.0 birds on the fence and 8.0 birds fly away, \"statement 2\" :4.0 birds are on the fence, \"options: \" Entailment or contradiction?", + "Output Program": [ + "birds_on_fence_s1 = 12-8\nbirds_on_fence_s2 = 4\n\nif birds_on_fence_s1 is None or birds_on_fence_s2 is None:\n print('neutral')\n\nelif birds_on_fence_s1 == birds_on_fence_s2:\n print('Entailment')\n\nelif birds_on_fence_s1 != birds_on_fence_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John has less than 8 friends who want to ride in his new car that can accommodate only 3 people at a time ( John plus 2 passengers ), \"statement 2\" :John has 4 friends who want to ride in his new car that can accommodate only 3 people at a time ( John plus 2 passengers ), \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "friends_want_to_ride_new_car_s1 = None\nfriends_want_to_ride_new_car_s2 = 4\n\nif friends_want_to_ride_new_car_s1 is None or friends_want_to_ride_new_car_s2 is None:\n print('neutral')\n\nelif friends_want_to_ride_new_car_s1 == friends_want_to_ride_new_car_s2:\n print('Entailment')\n\nelif friends_want_to_ride_new_car_s1 != friends_want_to_ride_new_car_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The school cafeteria had 38.0 apples, and they used 20.0 to make lunch for the students and then bought 28.0 more, \"statement 2\" :They would have 43.0 apples , \"options: \" Entailment or contradiction?", + "Output Program": [ + "apples_cafeteria_has_s1 = 38-20+28\napples_cafeteria_has_s2 = 43\n\nif apples_cafeteria_has_s1 is None or apples_cafeteria_has_s2 is None:\n print('neutral')\n\nelif apples_cafeteria_has_s1 == apples_cafeteria_has_s2:\n print('Entailment')\n\nelif apples_cafeteria_has_s1 != apples_cafeteria_has_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mike had 34.0 peaches left at his roadside fruit stand and he went to the orchard and picked 86.0 more peaches to stock up the stand, \"statement 2\" :He has 120.0 peaches now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "peaches_left_s1 = 34+86\npeaches_left_s2 = 120\n\nif peaches_left_s1 is None or peaches_left_s2 is None:\n print('neutral')\n\nelif peaches_left_s1 == peaches_left_s2:\n print('Entailment')\n\nelif peaches_left_s1 != peaches_left_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The average marks scored by Ganesh in English , Science , Mathematics and History is less than less than 24 from that scored by him in English , History , Geography and Mathematics, \"statement 2\" :The average marks scored by Ganesh in English , Science , Mathematics and History is less than 14 from that scored by him in English , History , Geography and Mathematics, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_marks_s1 = None\naverage_marks_s2 = 14\n\nif average_marks_s1 is None or average_marks_s2 is None:\n print('neutral')\n\nelif average_marks_s1 == average_marks_s2:\n print('Entailment')\n\nelif average_marks_s1 != average_marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mrs. Sheridan has 17.0 cats and Mrs. Sheridan gave away 14.0 cats, \"statement 2\" :Sheridan has 5.0 cats now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "shredian_has_cats_s1 = 17-14\nshredian_has_cats_s2 = 5\n\nif shredian_has_cats_s1 is None or shredian_has_cats_s2 is None:\n print('neutral')\n\nelif shredian_has_cats_s1 == shredian_has_cats_s2:\n print('Entailment')\n\nelif shredian_has_cats_s1 != shredian_has_cats_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shawn invested one half of his savings in a bond that paid simple interest for 2 years ( 20 % per anum ) and received $ 600 as interest, \"statement 2\" :Shawn invested one half of his savings in a bond that paid simple interest for more than 2 years ( 20 % per anum ) and received $ 600 as interest, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "paid_simple_interest_s1 = 2\npaid_simple_interest_s2 = 0\n\nif paid_simple_interest_s1 is None or paid_simple_interest_s2 is None:\n print('neutral')\n\nelif paid_simple_interest_s1 == paid_simple_interest_s2:\n print('Entailment')\n\nelif paid_simple_interest_s1 != paid_simple_interest_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Each year, salmon travel upstream, going from the ocean to the rivers where they were born and this year, 712261.0 returned to their rivers, 259378.0 of which were female salmon, \"statement 2\" :452883.0 male salmon made the trip, \"options: \" Entailment or contradiction?", + "Output Program": [ + "male_salmon_s1 = 712261-259378\nmale_salmon_s2 = 452883\n\nif male_salmon_s1 is None or male_salmon_s2 is None:\n print('neutral')\n\nelif male_salmon_s1 == male_salmon_s2:\n print('Entailment')\n\nelif male_salmon_s1 != male_salmon_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were 10.0 students riding on the school bus and at the first stop, 3.0 students got off of the bus, \"statement 2\" :7.0 students are left on the bus, \"options: \" Entailment or contradiction?", + "Output Program": [ + "students_left_in_bus_s1 = 10-3\nstudents_left_in_bus_s2 = 7\n\nif students_left_in_bus_s1 is None or students_left_in_bus_s2 is None:\n print('neutral')\n\nelif students_left_in_bus_s1 == students_left_in_bus_s2:\n print('Entailment')\n\nelif students_left_in_bus_s1 != students_left_in_bus_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is 4 : 3 , After 2 Years Rahul age will be 26 years, \"statement 2\" :Ratio between Rahul and Deepak is less than 7 : 3 , After 2 Years Rahul age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_between_rahul_and_deepak_s1 = 4/3\nratio_between_rahul_and_deepak_s2 = 7/3\n\nif ratio_between_rahul_and_deepak_s1 is None or ratio_between_rahul_and_deepak_s2 is None:\n print('neutral')\n\nelif ratio_between_rahul_and_deepak_s1 < ratio_between_rahul_and_deepak_s2:\n print('Entailment')\n\nelif ratio_between_rahul_and_deepak_s1 != ratio_between_rahul_and_deepak_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A pet supply store has 600.0 bags of dog food and 327.0 bags of cat food., \"statement 2\" :271.0 more bags of dog food are there than cat food, \"options: \" Entailment or contradiction?", + "Output Program": [ + "bag_of_dog_food_s1 = 600+327\nbag_of_dog_food_s2 = 0\n\nif bag_of_dog_food_s1 is None or bag_of_dog_food_s2 is None:\n print('neutral')\n\nelif bag_of_dog_food_s1 == bag_of_dog_food_s2:\n print('Entailment')\n\nelif bag_of_dog_food_s1 != bag_of_dog_food_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Of the more than 30 electronics components that a factory must manufacture , 50 percent would be most e \u00a2 ciently manufactured by Machine A and the remaining 50 percent would be most efficiently manufactured by Machine B , though either machine could manufacture any of the 90 components, \"statement 2\" :Of the 90 electronics components that a factory must manufacture , 50 percent would be most e \u00a2 ciently manufactured by Machine A and the remaining 50 percent would be most efficiently manufactured by Machine B , though either machine could manufacture any of the 90 components, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "electronics_components_s1 = None\nelectronics_components_s2 = 90\n\nif electronics_components_s1 is None or electronics_components_s2 is None:\n print('neutral')\n\nelif electronics_components_s1 == electronics_components_s2:\n print('Entailment')\n\nelif electronics_components_s1 != electronics_components_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alok ordered 16 chapatis , 5 plates of rice , 7 plates of mixed vegetable and 5 ice - cream cups, \"statement 2\" :Alok ordered less than 66 chapatis , 5 plates of rice , 7 plates of mixed vegetable and 5 ice - cream cups, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "alok_ordered_chapatis_s1 = 16\nalok_ordered_chapatis_s2 = 66\n\nif alok_ordered_chapatis_s1 is None or alok_ordered_chapatis_s2 is None:\n print('neutral')\n\nelif alok_ordered_chapatis_s1 < alok_ordered_chapatis_s2:\n print('Entailment')\n\nelif alok_ordered_chapatis_s1 != alok_ordered_chapatis_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 121 , 144 , 169 , 196 , 225 , 256 , 288 , 324 , 361, \"statement 2\" :less than 121 , 144 , 169 , 196 , 225 , 256 , 288 , 324 , 361, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "statement_s1 = 121+144+169+196+225+256+288+324+361\nstatement_s2 = 0\n\nif statement_s1 is None or statement_s2 is None:\n print('neutral')\n\nelif statement_s1 == statement_s2:\n print('Entailment')\n\nelif statement_s1 != statement_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained more than 46 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained 76 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_obtained_s1 = None\nmarks_obtained_s2 = 76+65+82+67+85\n\nif marks_obtained_s1 is None or marks_obtained_s2 is None:\n print('neutral')\n\nelif marks_obtained_s1 == marks_obtained_s2:\n print('Entailment')\n\nelif marks_obtained_s1 != marks_obtained_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 6.0 people ate 54.0 lemon heads each., \"statement 2\" :324.0 lemon heads were eaten all together, \"options: \" Entailment or contradiction?", + "Output Program": [ + "lemon_heads_eaten_together_s1 = 54*6\nlemon_heads_eaten_together_s2 = 324\n\nif lemon_heads_eaten_together_s1 is None or lemon_heads_eaten_together_s2 is None:\n print('neutral')\n\nelif lemon_heads_eaten_together_s1 == lemon_heads_eaten_together_s2:\n print('Entailment')\n\nelif lemon_heads_eaten_together_s1 != lemon_heads_eaten_together_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Instagram got so popular so fast that Facebook took notice and purchased the company for a billion dollars -- ( yes , $ 1 billion ) -- to bolster its own smart phone presence shortly before its IPO ., \"statement 2\" :Rushkoff : Facebook paid $ 1 billion for Instagram and needs a return, \"options: \" Entailment or neutral?", + "Output Program": [ + "billion_facebook_paid_s1 = None\nbillion_facebook_paid_s2 = 1\n\nif billion_facebook_paid_s1 is None or billion_facebook_paid_s2 is None:\n print('neutral')\n\nelif billion_facebook_paid_s1 == billion_facebook_paid_s2:\n print('Entailment')\n\nelif billion_facebook_paid_s1 != billion_facebook_paid_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": city A to city B , Andrew drove for 1 hour at 50 mph and for 3 hours at 60 mph, \"statement 2\" :city A to city B , Andrew drove for more than 1 hour at 50 mph and for 3 hours at 60 mph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hour_andrew_drove_s1 = 1\nhour_andrew_drove_s2 = 0\n\nif hour_andrew_drove_s1 is None or hour_andrew_drove_s2 is None:\n print('neutral')\n\nelif hour_andrew_drove_s1 == hour_andrew_drove_s2:\n print('Entailment')\n\nelif hour_andrew_drove_s1 != hour_andrew_drove_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": City A to city B , Andrew drove for less than 5 hr at 48 mph and for 3 hours at 60 mph, \"statement 2\" :City A to city B , Andrew drove for 1 hr at 48 mph and for 3 hours at 60 mph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_andrew_drove_s1 = None\nhours_andrew_drove_s2 = 1\n\nif hours_andrew_drove_s1 is None or hours_andrew_drove_s2 is None:\n print('neutral')\n\nelif hours_andrew_drove_s1 == hours_andrew_drove_s2:\n print('Entailment')\n\nelif hours_andrew_drove_s1 != hours_andrew_drove_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Murali travelled from city A to city B at a speed of more than 30 kmph and from city B to city C at 60 kmph, \"statement 2\" :Murali travelled from city A to city B at a speed of 40 kmph and from city B to city C at 60 kmph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "murari_travelled_at_speed_s1 = None\nmurari_travelled_at_speed_s2 = 40\n\nif murari_travelled_at_speed_s1 is None or murari_travelled_at_speed_s2 is None:\n print('neutral')\n\nelif murari_travelled_at_speed_s1 == murari_travelled_at_speed_s2:\n print('Entailment')\n\nelif murari_travelled_at_speed_s1 != murari_travelled_at_speed_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 1000 , what is Isabella ' s capital ?, \"statement 2\" :less than 2000 , what is Isabella ' s capital ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "isabella_capital_s1 = 1000\nisabella_capital_s2 = 2000\n\nif isabella_capital_s1 is None or isabella_capital_s2 is None:\n print('neutral')\n\nelif isabella_capital_s1 < isabella_capital_s2:\n print('Entailment')\n\nelif isabella_capital_s1 != isabella_capital_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The quake left about 2,000 customers without power , said David Eisenhower , a spokesman for Pacific Gas and Light ., \"statement 2\" :2,000 customers without electricity , power company says, \"options: \" Entailment or neutral?", + "Output Program": [ + "customer_without_electricity_s1 = 2000\ncustomer_without_electricity_s2 = 2000\n\nif customer_without_electricity_s1 is None or customer_without_electricity_s2 is None:\n print('neutral')\n\nelif customer_without_electricity_s1 == customer_without_electricity_s2:\n print('Entailment')\n\nelif customer_without_electricity_s1 != customer_without_electricity_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In an exam , Gibi scored 59 percent , Jigi scored 55 percent , Mike scored 99 percent and Lizzy 67 percent, \"statement 2\" :In an exam , Gibi scored more than 59 percent , Jigi scored 55 percent , Mike scored 99 percent and Lizzy 67 percent, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gibi_scored_s1 = 59\ngibi_scored_s2 = 0\n\nif gibi_scored_s1 is None or gibi_scored_s2 is None:\n print('neutral')\n\nelif gibi_scored_s1 == gibi_scored_s2:\n print('Entailment')\n\nelif gibi_scored_s1 != gibi_scored_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In Arun ' s company 60 % of the employees earn less than $ 50,000 a year , 60 % of the employees earn more than $ 40,000 a year , 11 % of the employees earn $ 43,000 a year and 5 % of the employees earn $ 49,000 a year, \"statement 2\" :In Arun ' s company 40 % of the employees earn less than $ 50,000 a year , 60 % of the employees earn more than $ 40,000 a year , 11 % of the employees earn $ 43,000 a year and 5 % of the employees earn $ 49,000 a year, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "employees_earns_s1 = 60\nemployees_earns_s2 = 40\n\nif employees_earns_s1 is None or employees_earns_s2 is None:\n print('neutral')\n\nelif employees_earns_s1 == employees_earns_s2:\n print('Entailment')\n\nelif employees_earns_s1 != employees_earns_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Aarti had prior experience in that route and mentioned that the speed of stream was 4 kmph, \"statement 2\" :Aarti had prior experience in that route and mentioned that the speed of stream was 6 kmph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_of_stream_s1 = 4\nspeed_of_stream_s2 = 6\n\nif speed_of_stream_s1 is None or speed_of_stream_s2 is None:\n print('neutral')\n\nelif speed_of_stream_s1 == speed_of_stream_s2:\n print('Entailment')\n\nelif speed_of_stream_s1 != speed_of_stream_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rebecca ' s annual income is $ 15 and Jimmy ' s annual income is $ 18, \"statement 2\" :Rebecca ' s annual income is $ 55 and Jimmy ' s annual income is $ 18, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rebecca_annual_income_s1 = 15\nrebecca_annual_income_s2 = 55\n\nif rebecca_annual_income_s1 is None or rebecca_annual_income_s2 is None:\n print('neutral')\n\nelif rebecca_annual_income_s1 == rebecca_annual_income_s2:\n print('Entailment')\n\nelif rebecca_annual_income_s1 != rebecca_annual_income_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are less than 74 stations between Ernakulam and Chennai, \"statement 2\" :There are 24 stations between Ernakulam and Chennai, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "station_between_ernakulam_and_chennai_s1 = None\nstation_between_ernakulam_and_chennai_s2 = 24\n\nif station_between_ernakulam_and_chennai_s1 is None or station_between_ernakulam_and_chennai_s2 is None:\n print('neutral')\n\nelif station_between_ernakulam_and_chennai_s1 == station_between_ernakulam_and_chennai_s2:\n print('Entailment')\n\nelif station_between_ernakulam_and_chennai_s1 != station_between_ernakulam_and_chennai_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Level - less than 8 college graduates account for 15 % of Listco ' s sales staff, \"statement 2\" :Level - 1 college graduates account for 15 % of Listco ' s sales staff, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "college_graduates_s1 = None\ncollege_graduates_s2 = 1\n\nif college_graduates_s1 is None or college_graduates_s2 is None:\n print('neutral')\n\nelif college_graduates_s1 == college_graduates_s2:\n print('Entailment')\n\nelif college_graduates_s1 != college_graduates_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy can do a job in 18 days and Molly can do the same job in 36 days, \"statement 2\" :Sandy can do a job in less than 58 days and Molly can do the same job in 36 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_sandy_can_work_s1 = 18\ndays_sandy_can_work_s2 = 58\n\nif days_sandy_can_work_s1 is None or days_sandy_can_work_s2 is None:\n print('neutral')\n\nelif days_sandy_can_work_s1 < days_sandy_can_work_s2:\n print('Entailment')\n\nelif days_sandy_can_work_s1 != days_sandy_can_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At a meeting of the 8 Joint Chiefs of Staff , the Chief of Naval Operations does not want to sit next to the Chief of the National Guard Bureau, \"statement 2\" :At a meeting of the more than 8 Joint Chiefs of Staff , the Chief of Naval Operations does not want to sit next to the Chief of the National Guard Bureau, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "joint_chief_of_staff_s1 = 8\njoint_chief_of_staff_s2 = 0\n\nif joint_chief_of_staff_s1 is None or joint_chief_of_staff_s2 is None:\n print('neutral')\n\nelif joint_chief_of_staff_s1 == joint_chief_of_staff_s2:\n print('Entailment')\n\nelif joint_chief_of_staff_s1 != joint_chief_of_staff_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": They also killed at least seven people , including an Argentine tourist , according to news reports ., \"statement 2\" :At least seven people killed in flooding , reports say, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_killed_in_flooding_s1 = None\npeople_killed_in_flooding_s2 = 7\n\nif people_killed_in_flooding_s1 is None or people_killed_in_flooding_s2 is None:\n print('neutral')\n\nelif people_killed_in_flooding_s1 == people_killed_in_flooding_s2:\n print('Entailment')\n\nelif people_killed_in_flooding_s1 != people_killed_in_flooding_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many jelly beans must Dante give to Aaron to ensure that no child has more than 1 fewer jelly beans than any other child ?, \"statement 2\" :How many jelly beans must Dante give to Aaron to ensure that no child has more than 7 fewer jelly beans than any other child ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jelly_beans_must_dante_give_aaron_s1 = 1\njelly_beans_must_dante_give_aaron_s2 = 7\n\nif jelly_beans_must_dante_give_aaron_s1 is None or jelly_beans_must_dante_give_aaron_s2 is None:\n print('neutral')\n\nelif jelly_beans_must_dante_give_aaron_s1 == jelly_beans_must_dante_give_aaron_s2:\n print('Entailment')\n\nelif jelly_beans_must_dante_give_aaron_s1 != jelly_beans_must_dante_give_aaron_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The distance between their homes is 45 kilometers , Cara ' s walking speed is 6 km / h , and Don ' s walking speed is 5 km / h, \"statement 2\" :The distance between their homes is less than 75 kilometers , Cara ' s walking speed is 6 km / h , and Don ' s walking speed is 5 km / h, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_between_homes_s1 = 45\ndistance_between_homes_s2 = 75\n\nif distance_between_homes_s1 is None or distance_between_homes_s2 is None:\n print('neutral')\n\nelif distance_between_homes_s1 < distance_between_homes_s2:\n print('Entailment')\n\nelif distance_between_homes_s1 != distance_between_homes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jessica can text less than 225 words per minute , while Maurice can text 10 words per minute, \"statement 2\" :Jessica can text 125 words per minute , while Maurice can text 10 words per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "text_words_per_minute_s1 = None\ntext_words_per_minute_s2 = 125\n\nif text_words_per_minute_s1 is None or text_words_per_minute_s2 is None:\n print('neutral')\n\nelif text_words_per_minute_s1 == text_words_per_minute_s2:\n print('Entailment')\n\nelif text_words_per_minute_s1 != text_words_per_minute_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mr Yadav spends 60 % of his monthly salary on consumable items and 50 % of the remaining on clothes and transport, \"statement 2\" :Mr Yadav spends less than 60 % of his monthly salary on consumable items and 50 % of the remaining on clothes and transport, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "spend_monthly_salary_items_s1 = 60\nspend_monthly_salary_items_s2 = 0\n\nif spend_monthly_salary_items_s1 is None or spend_monthly_salary_items_s2 is None:\n print('neutral')\n\nelif spend_monthly_salary_items_s1 == spend_monthly_salary_items_s2:\n print('Entailment')\n\nelif spend_monthly_salary_items_s1 != spend_monthly_salary_items_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Carl drove from his home to the beach at an average speed of 80 kilometers per hour and returned home by the same route at an average speed of 70 kilometers per hour, \"statement 2\" :Carl drove from his home to the beach at an average speed of more than 40 kilometers per hour and returned home by the same route at an average speed of 70 kilometers per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "km_per_hour_s1 = 80\nkm_per_hour_s2 = 40\n\nif km_per_hour_s1 is None or km_per_hour_s2 is None:\n print('neutral')\n\nelif km_per_hour_s1 > km_per_hour_s2:\n print('Entailment')\n\nelif km_per_hour_s1 != km_per_hour_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 90 students represent x percent of the boys at Jones Elementary School, \"statement 2\" :more than 50 students represent x percent of the boys at Jones Elementary School, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "students_represent_boys_s1 = 90\nstudents_represent_boys_s2 = 50\n\nif students_represent_boys_s1 is None or students_represent_boys_s2 is None:\n print('neutral')\n\nelif students_represent_boys_s1 > students_represent_boys_s2:\n print('Entailment')\n\nelif students_represent_boys_s1 != students_represent_boys_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Still , violence continued : Insurgents killed five U.S. soldiers , set off a suicide car bomb that killed four Iraqi policemen in Baghdad and targeted more polling sites across the country ., \"statement 2\" :Five US soldiers were killed , and at least 10 Iraqis died in Baghdad ., \"options: \" Entailment or neutral?", + "Output Program": [ + "killed_US_soldiers_s1 = None\nkilled_US_soldiers_s2 = 5\n\nif killed_US_soldiers_s1 is None or killed_US_soldiers_s2 is None:\n print('neutral')\n\nelif killed_US_soldiers_s1 == killed_US_soldiers_s2:\n print('Entailment')\n\nelif killed_US_soldiers_s1 != killed_US_soldiers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many crayons does Albert have if he buys 2 additional boxes ?, \"statement 2\" :How many crayons does Albert have if he buys less than 5 additional boxes ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "additional_boxes_s1 = 2\nadditional_boxes_s2 = 5\n\nif additional_boxes_s1 is None or additional_boxes_s2 is None:\n print('neutral')\n\nelif additional_boxes_s1 < additional_boxes_s2:\n print('Entailment')\n\nelif additional_boxes_s1 != additional_boxes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jorge scored 156.0 goals playing soccer last season and this season he scored 187.0 goals, \"statement 2\" :The total number of goals Jorge scored is 341.0, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_scored_s1 = 156+187\ntotal_scored_s2 = 341\n\nif total_scored_s1 is None or total_scored_s2 is None:\n print('neutral')\n\nelif total_scored_s1 == total_scored_s2:\n print('Entailment')\n\nelif total_scored_s1 != total_scored_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Violence over the last week killed 23 people , two worshippers dragged from a mosque and shot , underlining the challenges of bringing stability and strengthening Afghanistan 's fledgling democracy ., \"statement 2\" :Two worshippers were killed in Afghanistan ., \"options: \" Entailment or neutral?", + "Output Program": [ + "worshippers_s1 = 2\nworshippers_s2 = 2\n\nif worshippers_s1 is None or worshippers_s2 is None:\n print('neutral')\n\nelif worshippers_s1 == worshippers_s2:\n print('Entailment')\n\nelif worshippers_s1 != worshippers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Leo gains 10 pounds , he will weigh 50 % more than his sister Kendra, \"statement 2\" :If Leo gains less than 30 pounds , he will weigh 50 % more than his sister Kendra, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "leo_gains_pound_s1 = 10\nleo_gains_pound_s2 = 30\n\nif leo_gains_pound_s1 is None or leo_gains_pound_s2 is None:\n print('neutral')\n\nelif leo_gains_pound_s1 < leo_gains_pound_s2:\n print('Entailment')\n\nelif leo_gains_pound_s1 != leo_gains_pound_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Director Alfonso Cuaron 's '' Gravity '' -- starring Sandra Bullock and George Clooney as astronauts adrift in space -- has 11 nominations , including those for best actress for Bullock , cinematography , original screenplay and outstanding British film ., \"statement 2\" :Director Alfonso Cuaron 's '' Gravity '' nominated for 11 BAFTAs, \"options: \" Entailment or neutral?", + "Output Program": [ + "nominations_s1 = None\nnominations_s2 = 11\n\nif nominations_s1 is None or nominations_s2 is None:\n print('neutral')\n\nelif nominations_s1 == nominations_s2:\n print('Entailment')\n\nelif nominations_s1 != nominations_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained more than 20 , 92 , 85 , 87 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained 90 , 92 , 85 , 87 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_obtained_s1 = None\nmarks_obtained_s2 = 90+92+85+87+85\n\nif marks_obtained_s1 is None or marks_obtained_s2 is None:\n print('neutral')\n\nelif marks_obtained_s1 == marks_obtained_s2:\n print('Entailment')\n\nelif marks_obtained_s1 != marks_obtained_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a covering a distance of less than 50 km , Abhay takes 2 hours more than Sameer, \"statement 2\" :In a covering a distance of 30 km , Abhay takes 2 hours more than Sameer, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_covered_s1 = None\ndistance_covered_s2 = 30\n\nif distance_covered_s1 is None or distance_covered_s2 is None:\n print('neutral')\n\nelif distance_covered_s1 == distance_covered_s2:\n print('Entailment')\n\nelif distance_covered_s1 != distance_covered_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sanoop bought 8 t - shirts at an average price ( arithmetic mean ) of Rs, \"statement 2\" :Sanoop bought more than 8 t - shirts at an average price ( arithmetic mean ) of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tshirt_bought_s1 = 8\ntshirt_bought_s2 = 0\n\nif tshirt_bought_s1 is None or tshirt_bought_s2 is None:\n print('neutral')\n\nelif tshirt_bought_s1 == tshirt_bought_s2:\n print('Entailment')\n\nelif tshirt_bought_s1 != tshirt_bought_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": David obtained more than 22 , 60 , 35 , 62 and 84 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"statement 2\" :David obtained 72 , 60 , 35 , 62 and 84 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_obatined_s1 = None\nmarks_obatined_s2 = 72+60+35+62+84\n\nif marks_obatined_s1 is None or marks_obatined_s2 is None:\n print('neutral')\n\nelif marks_obatined_s1 == marks_obatined_s2:\n print('Entailment')\n\nelif marks_obatined_s1 != marks_obatined_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Elena purchased a total of less than 42 of these pens for $ 42.00 , how many brand X pens did she purchase ?, \"statement 2\" :If Elena purchased a total of 12 of these pens for $ 42.00 , how many brand X pens did she purchase ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_dollar_for_pen_s1 = None\ntotal_dollar_for_pen_s2 = 12\n\nif total_dollar_for_pen_s1 is None or total_dollar_for_pen_s2 is None:\n print('neutral')\n\nelif total_dollar_for_pen_s1 == total_dollar_for_pen_s2:\n print('Entailment')\n\nelif total_dollar_for_pen_s1 != total_dollar_for_pen_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jerry travels 8 miles at an average speed of 40 miles per hour , stops for 12 minutes , and then travels another 20 miles at an average speed of 60 miles per hour, \"statement 2\" :Jerry travels more than 3 miles at an average speed of 40 miles per hour , stops for 12 minutes , and then travels another 20 miles at an average speed of 60 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_per_hour_s1 = 8\nmiles_per_hour_s2 = 3\n\nif miles_per_hour_s1 is None or miles_per_hour_s2 is None:\n print('neutral')\n\nelif miles_per_hour_s1 > miles_per_hour_s2:\n print('Entailment')\n\nelif miles_per_hour_s1 != miles_per_hour_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nitin borrowed some money at the rate of 6 % p, \"statement 2\" :Nitin borrowed some money at the rate of 5 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rate_at_nitin_borrowed_s1 = 6\nrate_at_nitin_borrowed_s2 = 5\n\nif rate_at_nitin_borrowed_s1 is None or rate_at_nitin_borrowed_s2 is None:\n print('neutral')\n\nelif rate_at_nitin_borrowed_s1 == rate_at_nitin_borrowed_s2:\n print('Entailment')\n\nelif rate_at_nitin_borrowed_s1 != rate_at_nitin_borrowed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sean , who weighs less than 300 pounds , is in the elevator with two packages weighing 150 pounds and 280 pounds, \"statement 2\" :Sean , who weighs 200 pounds , is in the elevator with two packages weighing 150 pounds and 280 pounds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pound_that_weighs_s1 = None\npound_that_weighs_s2 = 200\n\nif pound_that_weighs_s1 is None or pound_that_weighs_s2 is None:\n print('neutral')\n\nelif pound_that_weighs_s1 == pound_that_weighs_s2:\n print('Entailment')\n\nelif pound_that_weighs_s1 != pound_that_weighs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": City A to city B , Raja drove for 1 hour at 72 mph and for 3 hours at 80 mph, \"statement 2\" :City A to city B , Raja drove for less than 4 hour at 72 mph and for 3 hours at 80 mph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_raja_drove_s1 = 1\nmiles_raja_drove_s2 = 4\n\nif miles_raja_drove_s1 is None or miles_raja_drove_s2 is None:\n print('neutral')\n\nelif miles_raja_drove_s1 < miles_raja_drove_s2:\n print('Entailment')\n\nelif miles_raja_drove_s1 != miles_raja_drove_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Suresh works for more than 3 hours and then the remaining job is completed by Ashutosh, \"statement 2\" :Suresh works for 9 hours and then the remaining job is completed by Ashutosh, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_suresh_works_s1 = None\nhours_suresh_works_s2 = 9\n\nif hours_suresh_works_s1 is None or hours_suresh_works_s2 is None:\n print('neutral')\n\nelif hours_suresh_works_s1 == hours_suresh_works_s2:\n print('Entailment')\n\nelif hours_suresh_works_s1 != hours_suresh_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 14240.0 books in a library and they are arranged on shelves that hold 8.0 books each, \"statement 2\" :1779.0 shelves are in the library, \"options: \" Entailment or contradiction?", + "Output Program": [ + "shelves_in_library_s1 = 14240/8\nshelves_in_library_s2 = 1779\n\nif shelves_in_library_s1 is None or shelves_in_library_s2 is None:\n print('neutral')\n\nelif shelves_in_library_s1 == shelves_in_library_s2:\n print('Entailment')\n\nelif shelves_in_library_s1 != shelves_in_library_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sara got fast food for lunch and Sara spent $5.36 on a hotdog and $5.1 on a salad, \"statement 2\" :The total of the lunch bill is 10.46, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_lunch_bill_s1 = 5.36+5.1\ntotal_lunch_bill_s2 = 10.46\n\nif total_lunch_bill_s1 is None or total_lunch_bill_s2 is None:\n print('neutral')\n\nelif total_lunch_bill_s1 == total_lunch_bill_s2:\n print('Entailment')\n\nelif total_lunch_bill_s1 != total_lunch_bill_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": According to the Organization for Economic Cooperation and Development , 69.5 % of the Mexican population aged 15 and older is overweight or obese ., \"statement 2\" :Nearly 70 % of the population is overweight or obese, \"options: \" Entailment or neutral?", + "Output Program": [ + "population_obese_s1 = None\npopulation_obese_s2 = 70\n\nif population_obese_s1 is None or population_obese_s2 is None:\n print('neutral')\n\nelif population_obese_s1 == population_obese_s2:\n print('Entailment')\n\nelif population_obese_s1 != population_obese_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The pilot of a small aircraft with a 40 - gallon fuel tank wants to fly to Cleveland , which is 520 miles away, \"statement 2\" :The pilot of a small aircraft with a more than 10 - gallon fuel tank wants to fly to Cleveland , which is 520 miles away, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pilot_in_small_aircraft_s1 = 40\npilot_in_small_aircraft_s2 = 10\n\nif pilot_in_small_aircraft_s1 is None or pilot_in_small_aircraft_s2 is None:\n print('neutral')\n\nelif pilot_in_small_aircraft_s1 > pilot_in_small_aircraft_s2:\n print('Entailment')\n\nelif pilot_in_small_aircraft_s1 != pilot_in_small_aircraft_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Two persons were injured in dynamite attacks perpetrated this evening against two bank branches in this Northwestern Colombian city ., \"statement 2\" :Two persons perpetrated dynamite attacks in a Northwestern Colombian city ., \"options: \" Entailment or neutral?", + "Output Program": [ + "persons_injured_s1 = None\npersons_injured_s2 = 2\n\nif persons_injured_s1 is None or persons_injured_s2 is None:\n print('neutral')\n\nelif persons_injured_s1 == persons_injured_s2:\n print('Entailment')\n\nelif persons_injured_s1 != persons_injured_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Veena ranks 73 rd from the top in a class of 182, \"statement 2\" :Veena ranks more than 73 rd from the top in a class of 182, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "veena_ranked_s1 = 73\nveena_ranked_s2 = 0\n\nif veena_ranked_s1 is None or veena_ranked_s2 is None:\n print('neutral')\n\nelif veena_ranked_s1 == veena_ranked_s2:\n print('Entailment')\n\nelif veena_ranked_s1 != veena_ranked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A restaurant baked 5.0 cakes during lunch and sold 6.0 during dinner today and the restaurant baked 3.0 cakes yesterday , \"statement 2\" :3.0 cakes are left , \"options: \" Entailment or contradiction?", + "Output Program": [ + "cakes_baked_s1 = 5-6+3\ncakes_baked_s2 = 3\n\nif cakes_baked_s1 is None or cakes_baked_s2 is None:\n print('neutral')\n\nelif cakes_baked_s1 == cakes_baked_s2:\n print('Entailment')\n\nelif cakes_baked_s1 != cakes_baked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": PSG was crowned winners for the second season in succession following Monaco 's 1-1 draw against Guingamp ., \"statement 2\" :Monaco held 1-1 by Guingamp, \"options: \" Entailment or neutral?", + "Output Program": [ + "monaco_held_s1 = 1-1\nmonaco_held_s2 = 1-1\n\nif monaco_held_s1 is None or monaco_held_s2 is None:\n print('neutral')\n\nelif monaco_held_s1 == monaco_held_s2:\n print('Entailment')\n\nelif monaco_held_s1 != monaco_held_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": more than 5970 , then what will be the share of Sameer in the profit ?, \"statement 2\" :6970 , then what will be the share of Sameer in the profit ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sameer_share_s1 = None\nsameer_share_s2 = 6970\n\nif sameer_share_s1 is None or sameer_share_s2 is None:\n print('neutral')\n\nelif sameer_share_s1 == sameer_share_s2:\n print('Entailment')\n\nelif sameer_share_s1 != sameer_share_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jampolis says weight training needs to be a priority for women before and after 40 ., \"statement 2\" :Weight training and eating a balanced diet is important to stay healthy after 40, \"options: \" Entailment or neutral?", + "Output Program": [ + "weight_training_s1 = None\nweight_training_s2 = 40\n\nif weight_training_s1 is None or weight_training_s2 is None:\n print('neutral')\n\nelif weight_training_s1 == weight_training_s2:\n print('Entailment')\n\nelif weight_training_s1 != weight_training_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": On the first day of her vacation , Louisa traveled less than 660 miles, \"statement 2\" :On the first day of her vacation , Louisa traveled 160 miles, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_louisa_travelled_s1 = None\nmiles_louisa_travelled_s2 = 160\n\nif miles_louisa_travelled_s1 is None or miles_louisa_travelled_s2 is None:\n print('neutral')\n\nelif miles_louisa_travelled_s1 == miles_louisa_travelled_s2:\n print('Entailment')\n\nelif miles_louisa_travelled_s1 != miles_louisa_travelled_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nitin borrowed some money at the rate of 6 % p, \"statement 2\" :Nitin borrowed some money at the rate of less than 6 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rate_at_which_nitin_borrowed_s1 = 6\nrate_at_which_nitin_borrowed_s2 = 0\n\nif rate_at_which_nitin_borrowed_s1 is None or rate_at_which_nitin_borrowed_s2 is None:\n print('neutral')\n\nelif rate_at_which_nitin_borrowed_s1 == rate_at_which_nitin_borrowed_s2:\n print('Entailment')\n\nelif rate_at_which_nitin_borrowed_s1 != rate_at_which_nitin_borrowed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Molly ' s age in less than 88 years will be seven times her age six years ago, \"statement 2\" :Molly ' s age in 18 years will be seven times her age six years ago, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "molly_age_s1 = None\nmolly_age_s2 = 18\n\nif molly_age_s1 is None or molly_age_s2 is None:\n print('neutral')\n\nelif molly_age_s1 == molly_age_s2:\n print('Entailment')\n\nelif molly_age_s1 != molly_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sara had 100.0 pennies and 783.0 quarters in her bank and her dad gave 271.0 quarters to Sara , \"statement 2\" :She has 1054.0 quarters now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "quaters_sara_has_s1 = 100+783+271\nquaters_sara_has_s2 = 1054\n\nif quaters_sara_has_s1 is None or quaters_sara_has_s2 is None:\n print('neutral')\n\nelif quaters_sara_has_s1 > quaters_sara_has_s2:\n print('Entailment')\n\nelif quaters_sara_has_s1 != quaters_sara_has_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Israeli helicopters shot two missiles at a car driving through the Gaza Strip on Wednesday , killing three people , Palestinian security sources said ., \"statement 2\" :Three militants from the Islamic Jihad group were killed when Israeli helicopters fired missiles at a car in the Gaza Strip ., \"options: \" Entailment or neutral?", + "Output Program": [ + "killed_militants_s1 = None\nkilled_militants_s2 = 3\n\nif killed_militants_s1 is None or killed_militants_s2 is None:\n print('neutral')\n\nelif killed_militants_s1 == killed_militants_s2:\n print('Entailment')\n\nelif killed_militants_s1 != killed_militants_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The farmer had 127.0 apples and his neighbor gave him 88.0 apples, \"statement 2\" :Farmer has 215.0 apples now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "farmer_has_apples_s1 = 127+88\nfarmer_has_apples_s2 = 215\n\nif farmer_has_apples_s1 is None or farmer_has_apples_s2 is None:\n print('neutral')\n\nelif farmer_has_apples_s1 == farmer_has_apples_s2:\n print('Entailment')\n\nelif farmer_has_apples_s1 != farmer_has_apples_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A customer 's late arrival cost her an additional $ 1,116 for her car rental ., \"statement 2\" :She was charged an additional $ 1,116 for the rental because of the late pick up, \"options: \" Entailment or neutral?", + "Output Program": [ + "additional_car_rental_s1 = 1116\nadditional_car_rental_s2 = 1116\n\nif additional_car_rental_s1 is None or additional_car_rental_s2 is None:\n print('neutral')\n\nelif additional_car_rental_s1 == additional_car_rental_s2:\n print('Entailment')\n\nelif additional_car_rental_s1 != additional_car_rental_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The $ 300 Slingbox 500 also streams1080p HD content and has a variety of connection options , including HDMI , component and composite for linking to your other devices and television set ., \"statement 2\" :Both add HD streaming and the Slingbox 500 adds HDMI and WiFi, \"options: \" Entailment or neutral?", + "Output Program": [ + "both_add_HDMI_and_wifi_s1 = None\nboth_add_HDMI_and_wifi_s2 = 500\n\nif both_add_HDMI_and_wifi_s1 is None or both_add_HDMI_and_wifi_s2 is None:\n print('neutral')\n\nelif both_add_HDMI_and_wifi_s1 == both_add_HDMI_and_wifi_s2:\n print('Entailment')\n\nelif both_add_HDMI_and_wifi_s1 != both_add_HDMI_and_wifi_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Each week , James is paid x dollars per per hour for the first less than 60 hours and 2 x dollars for each additional hour worked that week, \"statement 2\" :Each week , James is paid x dollars per per hour for the first 40 hours and 2 x dollars for each additional hour worked that week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "paid_dollars_per_hour_s1 = None\npaid_dollars_per_hour_s2 = 40\n\nif paid_dollars_per_hour_s1 is None or paid_dollars_per_hour_s2 is None:\n print('neutral')\n\nelif paid_dollars_per_hour_s1 == paid_dollars_per_hour_s2:\n print('Entailment')\n\nelif paid_dollars_per_hour_s1 != paid_dollars_per_hour_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": AB = 10 and EC = 20, \"statement 2\" :AB = 30 and EC = 20, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "AB_length_s1 = 10\nAB_length_s2 = 30\n\nif AB_length_s1 is None or AB_length_s2 is None:\n print('neutral')\n\nelif AB_length_s1 == AB_length_s2:\n print('Entailment')\n\nelif AB_length_s1 != AB_length_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The average marks scored by Ganesh in English , Science , Mathematics and History is less than 17 from that scored by him in English , History , Geography and Mathematics, \"statement 2\" :The average marks scored by Ganesh in English , Science , Mathematics and History is less than less than 47 from that scored by him in English , History , Geography and Mathematics, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_marks_s1 = 17\naverage_marks_s2 = 47\n\nif average_marks_s1 is None or average_marks_s2 is None:\n print('neutral')\n\nelif average_marks_s1 < average_marks_s2:\n print('Entailment')\n\nelif average_marks_s1 != average_marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Exactly 3 / 10 of the ponies have horseshoes , and exactly 5 / 8 of the ponies with horseshoes are from Iceland, \"statement 2\" :Exactly more than 1 / 10 of the ponies have horseshoes , and exactly 5 / 8 of the ponies with horseshoes are from Iceland, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ponies_have_horseshoes_s1 = 3/10\nponies_have_horseshoes_s2 = 1/10\n\nif ponies_have_horseshoes_s1 is None or ponies_have_horseshoes_s2 is None:\n print('neutral')\n\nelif ponies_have_horseshoes_s1 > ponies_have_horseshoes_s2:\n print('Entailment')\n\nelif ponies_have_horseshoes_s1 != ponies_have_horseshoes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is 4 : 3 , After 10 Years Rahul age will be 26 years, \"statement 2\" :Ratio between Rahul and Deepak is more than 1 : 3 , After 10 Years Rahul age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_between_rahul_and_deepak_s1 = 4/3\nratio_between_rahul_and_deepak_s2 = 1/3\n\nif ratio_between_rahul_and_deepak_s1 is None or ratio_between_rahul_and_deepak_s2 is None:\n print('neutral')\n\nelif ratio_between_rahul_and_deepak_s1 > ratio_between_rahul_and_deepak_s2:\n print('Entailment')\n\nelif ratio_between_rahul_and_deepak_s1 != ratio_between_rahul_and_deepak_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If T = 5 / 9 * ( K - 32 ) , and if T = 35 , then what is the value of K ?, \"statement 2\" :If T = 3 / 9 * ( K - 32 ) , and if T = 35 , then what is the value of K ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "T_is_s1 = 5/9\nT_is_s2 = 3/9\n\nif T_is_s1 is None or T_is_s2 is None:\n print('neutral')\n\nelif T_is_s1 == T_is_s2:\n print('Entailment')\n\nelif T_is_s1 != T_is_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jazmin had 1209.0 dolls and Geraldine had 2186.0 dolls, and they put their dolls together, \"statement 2\" :They would have 3397.0 dolls , \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_dolls_s1 = 1209+2186\ntotal_dolls_s2 = 3397\n\nif total_dolls_s1 is None or total_dolls_s2 is None:\n print('neutral')\n\nelif total_dolls_s1 == total_dolls_s2:\n print('Entailment')\n\nelif total_dolls_s1 != total_dolls_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Molly can do a task in less than 45 days while Sandy can do the task in 30 days, \"statement 2\" :Molly can do a task in 15 days while Sandy can do the task in 30 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_molly_can_do_work_s1 = None\ndays_molly_can_do_work_s2 = 15\n\nif days_molly_can_do_work_s1 is None or days_molly_can_do_work_s2 is None:\n print('neutral')\n\nelif days_molly_can_do_work_s1 == days_molly_can_do_work_s2:\n print('Entailment')\n\nelif days_molly_can_do_work_s1 != days_molly_can_do_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Calculate Tony ' ' s average score in an exam if he obtained the following marks 53 , 87 , 89 , 80 and 78 out of 100 in different subjects ., \"statement 2\" :Calculate Tony ' ' s average score in an exam if he obtained the following marks more than 33 , 87 , 89 , 80 and 78 out of 100 in different subjects ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_scored_s1 = 53+87+89+80+78\naverage_scored_s2 = 33+87+89+80+78\n\nif average_scored_s1 is None or average_scored_s2 is None:\n print('neutral')\n\nelif average_scored_s1 > average_scored_s2:\n print('Entailment')\n\nelif average_scored_s1 != average_scored_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Claire has a total of 90 pets consisting of gerbils and hamsters only, \"statement 2\" :Claire has a total of more than 20 pets consisting of gerbils and hamsters only, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pets_claire_has_s1 = 90\npets_claire_has_s2 = 20\n\nif pets_claire_has_s1 is None or pets_claire_has_s2 is None:\n print('neutral')\n\nelif pets_claire_has_s1 > pets_claire_has_s2:\n print('Entailment')\n\nelif pets_claire_has_s1 != pets_claire_has_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sanoop bought 8 t - shirts at an average price ( arithmetic mean ) of Rs, \"statement 2\" :Sanoop bought more than 6 t - shirts at an average price ( arithmetic mean ) of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tshirt_bought_s1 = 8\ntshirt_bought_s2 = 6\n\nif tshirt_bought_s1 is None or tshirt_bought_s2 is None:\n print('neutral')\n\nelif tshirt_bought_s1 > tshirt_bought_s2:\n print('Entailment')\n\nelif tshirt_bought_s1 != tshirt_bought_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The group said Hamas has executed at least three men '' convicted on the basis of ` confessions ' apparently obtained under torture . '', \"statement 2\" :Three executed men apparently confessed under torture , Human Rights Watch says, \"options: \" Entailment or neutral?", + "Output Program": [ + "executed_men_s1 = 3\nexecuted_men_s2 = 3\n\nif executed_men_s1 is None or executed_men_s2 is None:\n print('neutral')\n\nelif executed_men_s1 == executed_men_s2:\n print('Entailment')\n\nelif executed_men_s1 != executed_men_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Paul runs the first leg of the course in 22 seconds, \"statement 2\" :Paul runs the first leg of the course in less than 82 seconds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "secounds_paul_run_s1 = 22\nsecounds_paul_run_s2 = 82\n\nif secounds_paul_run_s1 is None or secounds_paul_run_s2 is None:\n print('neutral')\n\nelif secounds_paul_run_s1 == secounds_paul_run_s2:\n print('Entailment')\n\nelif secounds_paul_run_s1 != secounds_paul_run_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Italy 's Civil Protection agency reported at least 1,500 injured and 50,000 without shelter ., \"statement 2\" :About 50,000 people without shelter , Italy 's Civil Protection agency says, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_without_shelter_s1 = 50000\npeople_without_shelter_s2 = 50000\n\nif people_without_shelter_s1 is None or people_without_shelter_s2 is None:\n print('neutral')\n\nelif people_without_shelter_s1 == people_without_shelter_s2:\n print('Entailment')\n\nelif people_without_shelter_s1 != people_without_shelter_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Founded by Enzo Ferrari in less than 4928 as Scuderia Ferrari , the company sponsored drivers and manufactured race cars before moving into production of street - legal vehicles in 1947 as Ferrari S, \"statement 2\" :Founded by Enzo Ferrari in 1928 as Scuderia Ferrari , the company sponsored drivers and manufactured race cars before moving into production of street - legal vehicles in 1947 as Ferrari S, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "company_sponsored_drivers_s1 = None\ncompany_sponsored_drivers_s2 = 1928\n\nif company_sponsored_drivers_s1 is None or company_sponsored_drivers_s2 is None:\n print('neutral')\n\nelif company_sponsored_drivers_s1 == company_sponsored_drivers_s2:\n print('Entailment')\n\nelif company_sponsored_drivers_s1 != company_sponsored_drivers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Palestinians reported 24 people in Gaza were killed and more than 150 injured in Israeli airstrikes ., \"statement 2\" :Palestinians say 24 killed in Israeli attacks targeting militants, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_killed_s1 = 24\npeople_killed_s2 = 24\n\nif people_killed_s1 is None or people_killed_s2 is None:\n print('neutral')\n\nelif people_killed_s1 == people_killed_s2:\n print('Entailment')\n\nelif people_killed_s1 != people_killed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Aamir saves less than 52 % of his monthly salary, \"statement 2\" :Aamir saves 32 % of his monthly salary, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "saves_monthly_salary_s1 = None\nsaves_monthly_salary_s2 = 32\n\nif saves_monthly_salary_s1 is None or saves_monthly_salary_s2 is None:\n print('neutral')\n\nelif saves_monthly_salary_s1 == saves_monthly_salary_s2:\n print('Entailment')\n\nelif saves_monthly_salary_s1 != saves_monthly_salary_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Marilyn has 51.0 bottle caps and Nancy gives her 36.0, \"statement 2\" :Marilyn has 87.0 bottle caps now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "bottle_caps_s1 = 51+36\nbottle_caps_s2 = 87\n\nif bottle_caps_s1 is None or bottle_caps_s2 is None:\n print('neutral')\n\nelif bottle_caps_s1 == bottle_caps_s2:\n print('Entailment')\n\nelif bottle_caps_s1 != bottle_caps_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The watch store down the street from Wendy ' s house has 2 leather watches , 1 gold watch , and 1 silver watch, \"statement 2\" :The watch store down the street from Wendy ' s house has more than 2 leather watches , 1 gold watch , and 1 silver watch, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "leather_watches_s1 = 2\nleather_watches_s2 = 0\n\nif leather_watches_s1 is None or leather_watches_s2 is None:\n print('neutral')\n\nelif leather_watches_s1 == leather_watches_s2:\n print('Entailment')\n\nelif leather_watches_s1 != leather_watches_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": On his way back , James drives 60 miles per hour and stops in Town B which is midway between Town A and Town C, \"statement 2\" :On his way back , James drives 80 miles per hour and stops in Town B which is midway between Town A and Town C, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_drive_per_hour_s1 = 60\nmiles_drive_per_hour_s2 = 80\n\nif miles_drive_per_hour_s1 is None or miles_drive_per_hour_s2 is None:\n print('neutral')\n\nelif miles_drive_per_hour_s1 == miles_drive_per_hour_s2:\n print('Entailment')\n\nelif miles_drive_per_hour_s1 != miles_drive_per_hour_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jose joined him 2 months later , investing Rs, \"statement 2\" :Jose joined him less than 5 months later , investing Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jose_joined_months_later_s1 = 2\njose_joined_months_later_s2 = 5\n\nif jose_joined_months_later_s1 is None or jose_joined_months_later_s2 is None:\n print('neutral')\n\nelif jose_joined_months_later_s1 > jose_joined_months_later_s2:\n print('Entailment')\n\nelif jose_joined_months_later_s1 != jose_joined_months_later_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Dan works alone for 4 hours and then stops , how many hours will it take Annie , working alone , to complete the job ?, \"statement 2\" :If Dan works alone for less than 4 hours and then stops , how many hours will it take Annie , working alone , to complete the job ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dan_worked_alone_s1 = 4\ndan_worked_alone_s2 = 0\n\nif dan_worked_alone_s1 is None or dan_worked_alone_s2 is None:\n print('neutral')\n\nelif dan_worked_alone_s1 == dan_worked_alone_s2:\n print('Entailment')\n\nelif dan_worked_alone_s1 != dan_worked_alone_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Dan works alone for less than 7 hours and then stops , how many hours will it take Annie , working alone , to complete the job ?, \"statement 2\" :If Dan works alone for 4 hours and then stops , how many hours will it take Annie , working alone , to complete the job ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_dan_worked_s1 = None\nhours_dan_worked_s2 = 4\n\nif hours_dan_worked_s1 is None or hours_dan_worked_s2 is None:\n print('neutral')\n\nelif hours_dan_worked_s1 == hours_dan_worked_s2:\n print('Entailment')\n\nelif hours_dan_worked_s1 != hours_dan_worked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John and Mike enter into a partnership by investing $ more than 600 and $ 300 respectively, \"statement 2\" :John and Mike enter into a partnership by investing $ 700 and $ 300 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "partnership_by_investing_s1 = None\npartnership_by_investing_s2 = 700\n\nif partnership_by_investing_s1 is None or partnership_by_investing_s2 is None:\n print('neutral')\n\nelif partnership_by_investing_s1 == partnership_by_investing_s2:\n print('Entailment')\n\nelif partnership_by_investing_s1 != partnership_by_investing_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The less than 81 parents participating in the Smithville PTA have been assigned to at least 1 of 3 committees : festival planning , classroom aid , and teacher relations, \"statement 2\" :The 41 parents participating in the Smithville PTA have been assigned to at least 1 of 3 committees : festival planning , classroom aid , and teacher relations, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "parents_participating_s1 = None\nparents_participating_s2 = 41\n\nif parents_participating_s1 is None or parents_participating_s2 is None:\n print('neutral')\n\nelif parents_participating_s1 == parents_participating_s2:\n print('Entailment')\n\nelif parents_participating_s1 != parents_participating_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 55000 respectively , after three months Mitra invested Rs, \"statement 2\" :more than 15000 respectively , after three months Mitra invested Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rs_invested_s1 = 55000\nrs_invested_s2 = 15000\n\nif rs_invested_s1 is None or rs_invested_s2 is None:\n print('neutral')\n\nelif rs_invested_s1 > rs_invested_s2:\n print('Entailment')\n\nelif rs_invested_s1 != rs_invested_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Peter purchased less than 40 kg of rice at the rate of $ 11.50 per kg and 20 kg of rice at the rate of 14.25 per kg, \"statement 2\" :Peter purchased 30 kg of rice at the rate of $ 11.50 per kg and 20 kg of rice at the rate of 14.25 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nkg_of_rice_s1 = None\nkg_of_rice_s2 = 30\n\nif kg_of_rice_s1 is None or kg_of_rice_s2 is None:\n print('neutral')\n\nelif kg_of_rice_s1 == kg_of_rice_s2:\n print('Entailment')\n\nelif kg_of_rice_s1 != kg_of_rice_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mike had 33.0 quarters and 87.0 nickels in his bank and his dad gave Mike 75.0 nickels, \"statement 2\" :He has 162.0 nickels now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "nickels_mike_has_s1 = 87+75\nnickels_mike_has_s2 = 162\n\nif nickels_mike_has_s1 is None or nickels_mike_has_s2 is None:\n print('neutral')\n\nelif nickels_mike_has_s1 == nickels_mike_has_s2:\n print('Entailment')\n\nelif nickels_mike_has_s1 != nickels_mike_has_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How much loss would Indu has suffered had she given it to Bindu for 2 years at 4 % per annum simple interest ?, \"statement 2\" :How much loss would Indu has suffered had she given it to Bindu for more than 2 years at 4 % per annum simple interest ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "indu_suffered_loss_for_years_s1 = 2\nindu_suffered_loss_for_years_s2 = 0\n\nif indu_suffered_loss_for_years_s1 is None or indu_suffered_loss_for_years_s2 is None:\n print('neutral')\n\nelif indu_suffered_loss_for_years_s1 == indu_suffered_loss_for_years_s2:\n print('Entailment')\n\nelif indu_suffered_loss_for_years_s1 != indu_suffered_loss_for_years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": 2.0 birds were sitting on the fence and 4.0 more birds came to join them, \"statement 2\" :6.0 birds are sitting on the fence, \"options: \" Entailment or contradiction?", + "Output Program": [ + "birds_on_fence_s1 = 2+4\nbirds_on_fence_s2 = 6\n\nif birds_on_fence_s1 is None or birds_on_fence_s2 is None:\n print('neutral')\n\nelif birds_on_fence_s1 == birds_on_fence_s2:\n print('Entailment')\n\nelif birds_on_fence_s1 != birds_on_fence_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many different combinations of 2 passengers can be formed from John ' s 6 friends ?, \"statement 2\" :How many different combinations of more than 1 passengers can be formed from John ' s 6 friends ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "combination_of_passenger1 = 2\ncombination_of_passenger2 = 0\ncombination_of_passenger2 > 1\n\nif combination_of_passenger1 is None or combination_of_passenger2 is None:\n print(\"Neutral\")\nelif combination_of_passenger1 > 1:\n print(\"Entailment\")\nelif combination_of_passengers1 != combination_of_passengers2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 390.0 students at a school, and each classroom holds 30.0 students, \"statement 2\" :11.0 classrooms are needed at the school, \"options: \" Entailment or contradiction?", + "Output Program": [ + "class_required_s1 = 390/30 \nclass_required_s2 = 11\n\nif class_required_s1 is None or class_required_s2 is None: \n print(\"Neutral\") \nelif class_required_s1 == class_required_s2 : \n print(\"Entailment\") \nelif class_required_s1 != class_required_s2 : \n print(\"Contradicton\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The victims were two women and two men , described as being in their early 40s to mid-50s , police said ., \"statement 2\" :Two men , two women were killed , police say, \"options: \" Entailment or neutral?", + "Output Program": [ + "victim_men_and_women = 2 \nkilled_men_and_women = 2\n\nif victim_men_and_women is None or killed_men_and_women is None: \n print(\"Neutral\") \nelif victim_men_and_women == killed_men_and_women: \n print(\"Entailment\") \nelif victim_men_and_women != killed_men_and_women: \n print(\"Contradicton\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": ( CNN ) -- Around 1,000 people accused of being witches in Gambia have been locked up in secret detention centers and forced to drink a dangerous hallucinogenic potion , according to human rights organization Amnesty International ., \"statement 2\" :Victims forced to drink dangerous hallucinogenic potion ; at least two have died, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_died_s1 = 2\npeople_died_s2 = 2\n\npeople_died_s1 = None\npeople_died_s2 = None\n\nif people_died_s1 is None or people_died_s2 is None:\n print(\"Neutral\")\nelif people_died_s1 < people_died_s2:\n print(\"Entailment\")\nelif people_died_s1 != people_died_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The company says it 's financed around $ 40m of micro-loans to farms, \"statement 2\" :He says the company has financed around $ 40 million of micro-loans to farms ., \"options: \" Entailment or neutral?", + "Output Program": [ + "company_says = 40\nhe_says = 40\n\nif company_says is None or he_says is None: \n print(\"Neutral\") \nelif company_says == he_says: \n print(\"Entailment\") \nelif company_says != he_says: \n print(\"Contradicton\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than less than 80 % ? I will see what is the quickest way to solve it then I will provide the explanation, \"statement 2\" :If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than 40 % ?\nI will see what is the quickest way to solve it then I will provide the explanation, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "departure_rate_s1 = 0\ndeparture_rate_s1 < 80\ndeparture_rate_s2 = 0\ndeparture_rate_s2 > 40\n\ndeparture_rate_s1 = None\ndeparture_rate_s2 = None\n\nif departure_rate_s1 is None or departure_rate_s2 is None: \n print(\"Neutral\") \nelif departure_rate_s1 == departure_rate_s2 : \n print(\"Entailment\") \nelif departure_rate_s1 != departure_rate_s2 : \n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Snyder has 4 more men and 6 more women than Leigh , how many women are in the Snyder choir ?, \"statement 2\" :If Snyder has less than 5 more men and 6 more women than Leigh , how many women are in the Snyder choir ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "women_than_men_s1 = 4\nwomen_than_men_s2 = 0\nwomen_than_men_s2 < 5\n\nif women_than_men_s1 is None or women_than_men_s2 is None: \n print(\"Neutral\") \nelif women_than_men_s1 > women_than_men_s2: \n print(\"Entailment\") \nelif women_than_men_s1 != women_than_men_s2: \n print(\"Contradicton\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Anup was asked to find the value of more than 6 / 12 of a sum of money R, \"statement 2\" :Anup was asked to find the value of 7 / 12 of a sum of money R, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sum_of_money_s1 = 0\nsum_of_money_s1 > 6/12\nsum_of_money_s2 = 7/12\n\nsum_of_money_s1 = None\nsum_of_money_s2 = None\n\nif sum_of_money_s1 is None or sum_of_money_s2 is None:\n print(\"Neutral\")\nelif sum_of_money_s1 < sum_of_money_s2 :\n print(\"Entailment\")\nelif sum_of_money_s1 != sum_of_money_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": less than 7450 from Anwar at 6 % p, \"statement 2\" :3450 from Anwar at 6 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "anwar_at_p_s1 = 0\nanwar_at_p_s1 < 7450\nanwar_at_p_s2 = 3450\n\nanwar_at_p_s1 = None\nanwar_at_p_s2 = None\n\nif anwar_at_p_s1 is None or anwar_at_p_s2 is None:\n print(\"Neutral\")\nelif anwar_at_p_s1 < anwar_at_p_s2 :\n print(\"Entailment\")\nelif anwar_at_p_s1 != anwar_at_p_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Abe 's family moved from the Bahamas to Japan , so they had convert their money into Japanese yen and their checking account had 6359.0 yen, and he has spent 3485.0 yen since then , \"statement 2\" :They have 2874.0 yen left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "checking_account = 6359.0 \nspent = 3485.0\ns1 = checking_account - spent\ns2 = 2874.0\n\nif s1 is None or s2 is None: \n print(\"Neutral\") \nelif s1 == s2: \n print(\"Entailment\") \nelif s1 != s2: \n print(\"Contradicton\")\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The five Colombian citizens are among 11 people detained in connection with the case , Venezuela 's justice ministry said in a statement ., \"statement 2\" :Five suspects arrested are Colombian citizens , Venezuela 's justice ministry says, \"options: \" Entailment or neutral?", + "Output Program": [ + "colombian_citizen_s1 = 5\ncolombian_citizen_s2 = 5\namongst_people = 11\n\nif colombian_citizen_s1 is None or colombian_citizen_s2 is None:\n print(\"Neutral\")\nelif colombian_citizen_s1 == colombian_citizen_s2:\n print(\"Entailment\")\nelif colombian_citizen_s1 != colombian_citizen_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Turkey is a significant Israeli trading partner , Fischer said , and damage to the trade relationship between the two countries could have serious consequences for Israel ., \"statement 2\" :Tensions between the two countries are rising, \"options: \" Entailment or neutral?", + "Output Program": [ + "countries_are_rising_s1 = 2\ncountries_are_rising_s2 = 2\n\ncountries_are_rising_s1 = None\ncountries_are_rising_s2 = None\n\nif countries_are_rising_s1 is None or countries_are_rising_s2 is None:\n print(\"Neutral\")\nelif countries_are_rising_s1 < countries_are_rising_s2 :\n print(\"Entailment\")\nelif countries_are_rising_s1 != countries_are_rising_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": With almost all of the votes counted , Hollande was leading with 51.6 % to Sarkozy 's 48.4 % , the nation 's Interior Ministry said ., \"statement 2\" :With nearly all of the ballots counted , he leads with 51.6 % of the vote, \"options: \" Entailment or neutral?", + "Output Program": [ + "s1_leads = 51.6\ns2_leads = 51.6\n\nif s1_leads is None or s2_leads is None:\n print(\"Neutral\")\nelif s1_leads == s2_leads:\n print(\"Entailment\")\nelif s1_leads != s2_leads:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Raman mixed 24 kg of butter at Rs, \"statement 2\" :Raman mixed more than 24 kg of butter at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "butter_of_kg_s1 = 24\nbutter_of_kg_s2 = 0\nbutter_of_kg_s2 > 24\n\nif butter_of_kg_s1 is None or butter_of_kg_s2 is None:\n print(\"Neutral\")\nelif butter_of_kg_s2 > 24:\n print(\"Entailment\")\nelif butter_of_kg_s1 != butter_of_kg_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary works in a restaurant a maximum of less than 60 hours, \"statement 2\" :Mary works in a restaurant a maximum of 50 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_mary_work_s2 = 0\nhours_mary_work_s1 = 50\nhours_mary_work_s2 < 60\n\nhours_mary_work_s1 = None\nhours_mary_work_s2 = None\n\nif hours_mary_work_s1 is None or hours_mary_work_s2 is None:\n print(\"Neutral\")\nelif hours_mary_work_s1 < hours_mary_work_s2:\n print(\"Entailment\")\nelif hours_mary_work_s1 != hours_mary_work_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 32 stations between Ernakulam and Chennai, \"statement 2\" :There are more than 22 stations between Ernakulam and Chennai, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "station1 = 32\nstation2 = 0\nstation2 > 22\n\nif station1 is None or station2 is None:\n print(\"Neutral\")\nelif station1 > station2:\n print(\"Entailment\")\nelif station1 != station2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Change.org , based in San Francisco , California , says it has 35 million users in 196 countries ., \"statement 2\" :The website says it has more than 35 million users, \"options: \" Entailment or neutral?", + "Output Program": [ + "users_in_countries_s1 = 35\nusers_in_countries_s2 = 0\nusers_in_countries_s2 > 35\n\nusers_in_countries_s1 = None\nusers_in_countries_s2 = None\n\nif users_in_countries_s1 is None or users_in_countries_s2 is None:\n print(\"Neutral\")\nelif users_in_countries_s1 < users_in_countries_s2:\n print(\"Entailment\")\nelif users_in_countries_s1 != users_in_countries_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 4200 among John , Jose & Binoy in the ration 2 : 4 : 6, \"statement 2\" :less than 4200 among John , Jose & Binoy in the ration 2 : 4 : 6, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_s1 = 4200\nratio_s2 = 0\nratio_s2 < 4200\n\nif ratio_s1 is None or ratio_s2 is None:\n print(\"Neutral\")\nelif ratio_s2 > ratio_s1:\n print(\"Entailment\")\nelif ratio_s1 != ratio_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The 40 parents participating in the Smithville PTA have been assigned to at least 1 of 3 committees : festival planning , classroom aid , and teacher relations, \"statement 2\" :The less than 40 parents participating in the Smithville PTA have been assigned to at least 1 of 3 committees : festival planning , classroom aid , and teacher relations, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "parents_assigned_in_commitee_s1 = 40\nparents_assigned_in_commitee_s2 = 0\nparents_assigned_in_commitee_s2 < 40\n\nif parents_assigned_in_commitee_s1 is None or parents_assigned_in_commitee_s2 is None:\n print(\"Neutral\")\nelif parents_assigned_in_commitee_s2 > parents_assigned_in_commitee_s1:\n print(\"Entailment\")\nelif parents_assigned_in_commitee_s1 != parents_assigned_in_commitee_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Andy solves problems 80 to 125 inclusive in a Math exercise, \"statement 2\" :Andy solves problems more than 40 to 125 inclusive in a Math exercise, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "solve_math_problem_s1 = 80\nsolve_math_problem_s2 = 0\nsolve_math_problem_s2 > 40\n\nif solve_math_problem_s1 is None or solve_math_problem_s2 is None:\n print(\"Neutral\")\nelif solve_math_problem_s1 > solve_math_problem_s2:\n print(\"Entailment\")\nelif solve_math_problem_s1 != solve_math_problem_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The points E and F are on the diagonal AC as shown ,\nand 2 ( AE + FC ) = 3 EF, \"statement 2\" :The points E and F are on the diagonal AC as shown , and 7 ( AE + FC ) = 3 EF, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "diagonal_points_s1 = 2\ndiagonal_points_s2 = 7\n\nif diagonal_points_s1 is None or diagonal_points_s2 is None:\n print(\"Neutral\")\nelif diagonal_points_s2 > diagonal_points_s1:\n print(\"Entailment\")\nelif diagonal_points_s1 != diagonal_points_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Store Z : $ 90 , a 20 % sales tax , and $ 10 rebate after tax\nIsaac can purchase a certain item in four different ways , as shown in the table, \"statement 2\" :Store Z : $ 20 , a 20 % sales tax , and $ 10 rebate after tax Isaac can purchase a certain item in four different ways , as shown in the table, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "store_Z_s1 = 90\nstore_Z_s2 = 20\n\nif store_Z_s1 is None or store_Z_s2 is None:\n print(\"Neutral\")\nelif store_Z_s2 > store_Z_s1:\n print(\"Entailment\")\nelif store_Z_s1 != store_Z_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy attempts 30 sums and obtains 60 marks, \"statement 2\" :Sandy attempts less than 70 sums and obtains 60 marks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_attempts_sum_s1 = 30\nsandy_attempts_sum_s2 = 0\nsandy_attempts_sum_s2 < 70\n\nif sandy_attempts_sum_s1 is None or sandy_attempts_sum_s2 is None:\n print(\"Neutral\")\nelif sandy_attempts_sum_s1 > sandy_attempts_sum_s2:\n print(\"Entailment\")\nelif sandy_attempts_sum_s1 != sandy_attempts_sum_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": U.S. government employees are restricted from traveling to all or parts of these three states ., \"statement 2\" :State Department warns Americans of danger of traveling to parts of three Mexican states, \"options: \" Entailment or neutral?", + "Output Program": [ + "mexican_states_s1 = 3\nmexican_states_s2 = 3\n\nmexican_states_s1 = None\nmexican_states_s2 = None\n\nif mexican_states_s1 is None or mexican_states_s2 is None:\n print(\"Neutral\")\nelif mexican_states_s1 < mexican_states_s2:\n print(\"Entailment\")\nelif mexican_states_s1 != mexican_states_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 6 friends go out to dinner at Outback Steakhouse, \"statement 2\" :7 friends go out to dinner at Outback Steakhouse, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "friends_out_on_dinner_s1 = 6 \nfriends_out_on_dinner_s2 = 7\n\nif friends_out_on_dinner_s1 is None or friends_out_on_dinner_s2 is None: \n print(\"Neutral\") \nelif friends_out_on_dinner_s1 == friends_out_on_dinner_s2: \n print(\"Entailment\") \nelif friends_out_on_dinner_s1 != friends_out_on_dinner_s2: \n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Listco employs more than 50 level - 1 employees , 30 of whom are college graduates, \"statement 2\" :Listco employs 90 level - 1 employees , 30 of whom are college graduates, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "listco_employes_s1 = 0\nlistco_employes_s1 > 50\nlistco_employes_s2 = 90\n\nlistco_employes_s1 = None\nlistco_employes_s2 = None\n\nif listco_employes_s1 is None or listco_employes_s2 is None:\n print(\"Neutral\")\nelif listco_employes_s1 < listco_employes_s2:\n print(\"Entailment\")\nelif listco_employes_s1 != listco_employes_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Raj and Roshan has some money with them in the ratio less than 8 : 4 respectively, \"statement 2\" :Raj and Roshan has some money with them in the ratio 5 : 4 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "money_ratio_s1 = 0\nmoney_ratio_s1 < 8/4\nmoney_ratio_s2 = 5/4\n\nmoney_ratio_s1 = None\nmoney_ratio_s2 = None\n\nif money_ratio_s1 is None or money_ratio_s2 is None:\n print(\"Neutral\")\nelif money_ratio_s1 < money_ratio_s2:\n print(\"Entailment\")\nelif money_ratio_s1 != money_ratio_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The rock , which was returned from the Moon in April 1972 by Apollo 16 astronauts Young and Charlie Duke , remains NASA property but is on extended loan for display at the Burke Baker Planetarium Theater located at the museum ., \"statement 2\" :16 astronauts have been on the moon ., \"options: \" Entailment or neutral?", + "Output Program": [ + "astronauts_on_moon_s1 = 16\nastronauts_on_moon_s2 = 16\n\nastronauts_on_moon_s1 = None\nastronauts_on_moon_s2 = None\n\nif astronauts_on_moon_s1 is None or astronauts_on_moon_s2 is None:\n print(\"Neutral\")\nelif astronauts_on_moon_s1 < astronauts_on_moon_s2:\n print(\"Entailment\")\nelif astronauts_on_moon_s1 != astronauts_on_moon_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tim and Jim enter into a partnership by investing $ more than 300 and $ 300 respectively, \"statement 2\" :Tim and Jim enter into a partnership by investing $ 700 and $ 300 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "partnership_by_investing_s1 = 0\npartnership_by_investing_s1 > 300\npartnership_by_investing_s2 = 700\n\npartnership_by_investing_s1 = None\npartnership_by_investing_s2 = None\n\nif partnership_by_investing_s1 is None or partnership_by_investing_s2 is None:\n print(\"Neutral\")\nelif partnership_by_investing_s1 < partnership_by_investing_s2:\n print(\"Entailment\")\nelif partnership_by_investing_s1 != partnership_by_investing_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Yolanda ' s walking rate was more than 1 miles per hour and Bob \u0442 ' s was 4 miles per hour , how many miles had Bob walked when they met ?, \"statement 2\" :If Yolanda ' s walking rate was 3 miles per hour and Bob \u0442 ' s was 4 miles per hour , how many miles had Bob walked when they met ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_per_hour_s1 = 0\nmiles_per_hour_s1 > 1 \nmiles_per_hour_s2 = 3 \n\nmiles_per_hour_s1 = None\nmiles_per_hour_s2 = None\n\nif miles_per_hour_s1 is None or miles_per_hour_s2 is None:\n print(\"Neutral\")\nelif miles_per_hour_s1 < miles_per_hour_s2:\n print(\"Entailment\")\nelif miles_per_hour_s1 != miles_per_hour_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In 1997 he invested an additional amount of 10000 and Mr Rakesh joined him with an amount of 35000, \"statement 2\" :In more than 1997 he invested an additional amount of 10000 and Mr Rakesh joined him with an amount of 35000, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "investment_year_s1 = 1997\ninvestment_year_s2 = 0\ninvestment_year_s2 > 1997\n\nif investment_year_s1 is None or investment_year_s2 is None:\n print(\"Neutral\")\nelif investment_year_s2 > investment_year_s1:\n print(\"Entailment\")\nelif investment_year_s1 != investment_year_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mark sold 8 boxes less than n and Ann sold 2 boxes less than n, \"statement 2\" :Mark sold 5 boxes less than n and Ann sold 2 boxes less than n, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boxes_sold_s1 = 8\nboxes_sold_s2 = 0\nboxes_sold_s2 < 5\n\nif boxes_sold_s1 is None or boxes_sold_s2 is None:\n print(\"Neutral\")\nelif boxes_sold_s2 > boxes_sold_s1:\n print(\"Entailment\")\nelif boxes_sold_s1 != boxes_sold_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Jos \u00e9 reads at a constant rate of 5 pages every 5 minutes , how many seconds will it take him to read N pages ?, \"statement 2\" :If Jos \u00e9 reads at a constant rate of less than 7 pages every 5 minutes , how many seconds will it take him to read N pages ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "constant_rate_pages_read_s1 = 5\nconstant_rate_pages_read_s2 = 0\nconstant_rate_pages_read_s2 < 7\n\nif constant_rate_pages_read_s1 is None or constant_rate_pages_read_s2 is None:\n print(\"Neutral\")\nelif constant_rate_pages_read_s1 > constant_rate_pages_read_s2:\n print(\"Entailment\")\nelif constant_rate_pages_read_s1 != constant_rate_pages_read_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the distance between their homes is less than 70 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"statement 2\" :If the distance between their homes is 60 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_between_their_home_s1 = 0\ndistance_between_their_home_s1 < 70\ndistance_between_their_home_s2 = 60 \n\ndistance_between_their_home_s1 = None\ndistance_between_their_home_s2 = None\n\nif distance_between_their_home_s1 is None or distance_between_their_home_s2 is None:\n print(\"Neutral\")\nelif distance_between_their_home_s1 < distance_between_their_home_s2:\n print(\"Entailment\")\nelif distance_between_their_home_s1 != distance_between_their_home_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Matt is touring a nation in which coins are issued in two amounts , less than 5 \u00a2 and 5 \u00a2 , which are made of iron and copper , respectively, \"statement 2\" :Matt is touring a nation in which coins are issued in two amounts , 2 \u00a2 and 5 \u00a2 , which are made of iron and copper , respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "coin_issued_s1 = 0\ncoin_issued_s1 < 5 \ncoin_issued_s2 = 2\n\ncoin_issued_s1 = None\ncoin_issued_s2 = None\n\nif coin_issued_s1 is None or coin_issued_s2 is None:\n print(\"Neutral\")\nelif coin_issued_s1 < coin_issued_s2:\n print(\"Entailment\")\nelif coin_issued_s1 != coin_issued_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The distance between their homes is 36 kilometers , Betty ' s walking speed is 4 km / h , and Dave ' s walking speed is 3 km / h, \"statement 2\" :The distance between their homes is less than 36 kilometers , Betty ' s walking speed is 4 km / h , and Dave ' s walking speed is 3 km / h, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_betwen_homes_s1 = 36\ndistance_betwen_homes_s2 = 0\ndistance_betwen_homes_s2 < 36\n\nif distance_betwen_homes_s1 is None or distance_betwen_homes_s2 is None: \n print(\"Neutral\") \nelif distance_betwen_homes_s1 == distance_betwen_homes_s2: \n print(\"Entailment\") \nelif distance_betwen_homes_s1 != distance_betwen_homes_s2: \n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": For the fifth grade play, the chairs have been put into 27.0 rows with 16.0 chairs in each row., \"statement 2\" :432.0 chairs have been put out for the play, \"options: \" Entailment or contradiction?", + "Output Program": [ + "chairs_rows_s1 = 27*16\nchairs_rows_s2 = 432.0\n\nif chairs_rows_s1 is None or chairs_rows_s2 is None: \n print(\"Neutral\") \nelif chairs_rows_s1 == chairs_rows_s2: \n print(\"Entailment\") \nelif chairs_rows_s1 != chairs_rows_s2: \n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The instructions state that Cheryl needs less than 8 square yards of one type of material and 1 / 2 square yards of another type of material for a project, \"statement 2\" :The instructions state that Cheryl needs 2 square yards of one type of material and 1 / 2 square yards of another type of material for a project, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "instruction_state_needs_square_yards_s1 = 0\ninstruction_state_needs_square_yards_s1 < 8 \ninstruction_state_needs_square_yards_s2 = 2\n\ninstruction_state_needs_square_yards_s1 = None\ninstruction_state_needs_square_yards_s2 = None\n\nif instruction_state_needs_square_yards_s1 is None or instruction_state_needs_square_yards_s2 is None:\n print(\"Neutral\")\nelif instruction_state_needs_square_yards_s1 < instruction_state_needs_square_yards_s2:\n print(\"Entailment\")\nelif instruction_state_needs_square_yards_s1 != instruction_state_needs_square_yards_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After more than 2 years , Arun ' s age will be 32 years, \"statement 2\" :After 4 years , Arun ' s age will be 32 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_after_years_s1 = 0\nage_after_years_s1 > 2\nage_after_years_s2 = 4\n\nage_after_years_s1 = None\nage_after_years_s2 = None\n\nif age_after_years_s1 is None or age_after_years_s2 is None:\n print(\"Neutral\")\nelif age_after_years_s1 < age_after_years_s2:\n print(\"Entailment\")\nelif age_after_years_s1 != age_after_years_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Hundreds of agents swarmed more than 70 locations in 10 provinces , rescuing more than 200 Colombians who had been working in subhuman conditions , officials said ., \"statement 2\" :Forces conduct raids in more than 70 locations in 10 provinces across Argentina, \"options: \" Entailment or neutral?", + "Output Program": [ + "\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Scientists on Monday announced the discovery of a frozen , shiny red world some 8 billion miles from Earth that is the most distant known object in the solar system ., \"statement 2\" :A frozen world 8 billion miles from Earth is believed to be the farthest known object within our solar system ., \"options: \" Entailment or neutral?", + "Output Program": [ + "red_world_miles_from_earth_s1 = 8\nred_world_miles_from_earth_s2 = 8\n\nif red_world_miles_from_earth_s1 is None or red_world_miles_from_earth_s2 is None: \n print(\"Neutral\") \nelif red_world_miles_from_earth_s1 == red_world_miles_from_earth_s2: \n print(\"Entailment\") \nelif red_world_miles_from_earth_s1 != red_world_miles_from_earth_s2: \n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 18 stations between Hyderabad and Bangalore, \"statement 2\" :There are less than 88 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "station_between_Hyderabad_and_bangalore_s1 = 18\nstation_between_Hyderabad_and_bangalore_s2 = 0\nstation_between_Hyderabad_and_bangalore_s2 < 88\n\nif station_between_Hyderabad_and_bangalore_s1 is None or station_between_Hyderabad_and_bangalore_s2 is None: \n print(\"Neutral\") \nelif station_between_Hyderabad_and_bangalore_s1 < 88: \n print(\"Entailment\") \nelif station_between_Hyderabad_and_bangalore_s1 != station_between_Hyderabad_and_bangalore_s2: \n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Others put the toll much higher : The International Committee of the Red Cross said it 's realistic to estimate that 10,000 people may have died nationally ., \"statement 2\" :International Red Cross : Realistic to estimate 10,000 people dead across Philippines, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_died_s1 = 10000\npeople_died_s2 = 10000\n\npeople_died_s1 = None\npeople_died_s2 = None\n\nif people_died_s1 is None or people_died_s2 is None:\n print(\"Neutral\")\nelif people_died_s1 < people_died_s2:\n print(\"Entailment\")\nelif people_died_s1 != people_died_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jeni has 7 flavors of cake in his bakery, \"statement 2\" :Jeni has more than 7 flavors of cake in his bakery, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cake_flavours_s1 = 7\ncake_flavours_s2 = 0\ncake_flavours_s2 > 7 \n\nif cake_flavours_s1 is None or cake_flavours_s2 is None:\n print(\"Neutral\")\nelif cake_flavours_s1 == cake_flavours_s2:\n print(\"Entailment\")\nelif cake_flavours_s1 != cake_flavours_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 504.0 apples and it takes 4.0 apples to make 1.0 pie, \"statement 2\" :There are 126.0 pies, \"options: \" Entailment or contradiction?", + "Output Program": [ + "pies_s1 = 504/4\npies_s2 = 126\n\nif pies_s1 is None or pies_s2 is None:\n print(\"Neutral\")\nelif pies_s1 == pies_s2:\n print(\"Entailment\")\nelif pies_s1 != pies_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sacha runs at a constant speed of more than 5 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"statement 2\" :Sacha runs at a constant speed of 6 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_meters_per_seconds_s1 = 0\nspeed_meters_per_seconds_s1 > 5\nspeed_meters_per_seconds_s2 = 6\n\nspeed_meters_per_seconds_s1 = None\nspeed_meters_per_seconds_s2 = None\n\nif speed_meters_per_seconds_s1 is None or speed_meters_per_seconds_s2 is None:\n print(\"Neutral\")\nelif speed_meters_per_seconds_s1 < speed_meters_per_seconds_s2:\n print(\"Entailment\")\nelif speed_meters_per_seconds_s1 != speed_meters_per_seconds_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A book store had 41.0 books in the bargin bin and they then sort out 2.0 books off the bin and sold 33.0 books, \"statement 2\" :3.0 books would now be in the bin, \"options: \" Entailment or contradiction?", + "Output Program": [ + "books_in_bin_s1 = 41 - 35\nbooks_in_bin_s2 = 33\n\nif books_in_bin_s1 is None or books_in_bin_s2 is None:\n print(\"Neutral\")\nelif books_in_bin_s1 == books_in_bin_s2:\n print(\"Entailment\")\nelif books_in_bin_s1 != books_in_bin_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many seconds does Sandy take to cover a distance of 600 meters , if Sandy runs at a speed of 15 km / hr ?, \"statement 2\" :How many seconds does Sandy take to cover a distance of less than 600 meters , if Sandy runs at a speed of 15 km / hr ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_covered_s1 = 600\ndistance_covered_s2 = 0\ndistance_covered_s2 < 600\n\nif distance_covered_s1 is None or distance_covered_s2 is None:\n print(\"Neutral\")\nelif distance_covered_s1 == distance_covered_s2:\n print(\"Entailment\")\nelif distance_covered_s1 != distance_covered_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": While driving from City A to City B , Bob drives at a constant speed of more than 20 miles per hour, \"statement 2\" :While driving from City A to City B , Bob drives at a constant speed of 40 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_meters_per_hours_s1 = 0\nspeed_meters_per_hours_s1 > 20\nspeed_meters_per_hours_s2 = 40\n\nspeed_meters_per_hours_s1 = None\nspeed_meters_per_hours_s2 = None\n\nif speed_meters_per_hours_s1 is None or speed_meters_per_hours_s2 is None:\n print(\"Neutral\")\nelif speed_meters_per_hours_s1 < speed_meters_per_hours_s2:\n print(\"Entailment\")\nelif speed_meters_per_hours_s1 != speed_meters_per_hours_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are less than 490 baseball fans in the town , each of whom is a fan of exactly one of those three teams , how many NY Mets fans are there in this town ?, \"statement 2\" :If there are 390 baseball fans in the town , each of whom is a fan of exactly one of those three teams , how many NY Mets fans are there in this town ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "baseball_fans_in_town_s1 = 0\nbaseball_fans_in_town_s1 > 490\nbaseball_fans_in_town_s2 = 390\n\nbaseball_fans_in_town_s1 = None\nbaseball_fans_in_town_s2 = None\n\nif baseball_fans_in_town_s1 is None or baseball_fans_in_town_s2 is None:\n print(\"Neutral\")\nelif baseball_fans_in_town_s1 < baseball_fans_in_town_s2:\n print(\"Entailment\")\nelif baseball_fans_in_town_s1 != baseball_fans_in_town_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": I want to put 20.0 gallons of gas into 5.0 gallon gas cans., \"statement 2\" :I need 3.0 gas cans, \"options: \" Entailment or contradiction?", + "Output Program": [ + "gallons_of_gas_s1 = 5\ngallons_of_gas_s2 = 3\n\nif gallons_of_gas_s1 is None or gallons_of_gas_s2 is None:\n print(\"Neutral\")\nelif gallons_of_gas_s1 == gallons_of_gas_s2:\n print(\"Entailment\")\nelif gallons_of_gas_s1 != gallons_of_gas_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Premier League champions Manchester City were the biggest spenders , splashing out nearly $ 17 million ., \"statement 2\" :Manchester City are highest spenders after paying out $ 17 million, \"options: \" Entailment or neutral?", + "Output Program": [ + "spenders_paying_s1 = 17\nspenders_paying_s2 = 17\n\nif spenders_paying_s1 is None or spenders_paying_s2 is None:\n print(\"Neutral\")\nelif spenders_paying_s1 == spenders_paying_s2:\n print(\"Entailment\")\nelif spenders_paying_s1 != spenders_paying_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy grew 6.0 carrots and Sam took 3.0 carrots, \"statement 2\" :Sandy has 5.0 carrots left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "carrots_s1 = 3\ncarrots_s2 = 5\n\nif carrots_s1 is None or carrots_s2 is None:\n print(\"Neutral\")\nelif carrots_s1 == carrots_s2:\n print(\"Entailment\")\nelif carrots_s1 != carrots_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Speed of Arjun is 30 m / s and that of Bhishma is 20 m / s, \"statement 2\" :Speed of Arjun is more than 30 m / s and that of Bhishma is 20 m / s, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_of_arjun_s1 = 30\nspeed_of_arjun_s2 = 0\nspeed_of_arjun_s2 > 30\n\nif speed_of_arjun_s1 is None or speed_of_arjun_s2 is None:\n print(\"Neutral\")\nelif speed_of_arjun_s1 == speed_of_arjun_s2:\n print(\"Entailment\")\nelif speed_of_arjun_s1 != speed_of_arjun_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If it takes Darcy a total of less than 6 more minutes to commute to work by walking than it takes her to commute to work by riding the train , what is the value of x ?, \"statement 2\" :If it takes Darcy a total of 2 more minutes to commute to work by walking than it takes her to commute to work by riding the train , what is the value of x ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "commute_to_work_by_walking_s1 = 0\ncommute_to_work_by_walking_s1 < 6\ncommute_to_work_by_walking_s2 = 2\n\ncommute_to_work_by_walking_s1 = None\ncommute_to_work_by_walking_s2 = None\n\nif commute_to_work_by_walking_s1 is None or commute_to_work_by_walking_s2 is None:\n print(\"Neutral\")\nelif commute_to_work_by_walking_s1 < commute_to_work_by_walking_s2:\n print(\"Entailment\")\nelif commute_to_work_by_walking_s1 != commute_to_work_by_walking_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Billy has less than 8 apples, \"statement 2\" :Billy has 6 apples, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "billy_has_apples_s1 = 0\nbilly_has_apples_s1 < 8\nbilly_has_apples_s2 = 6\n\nbilly_has_apples_s1 = None\nbilly_has_apples_s2 = None\n\nif billy_has_apples_s1 is None or billy_has_apples_s2 is None:\n print(\"Neutral\")\nelif billy_has_apples_s1 < billy_has_apples_s2:\n print(\"Entailment\")\nelif billy_has_apples_s1 != billy_has_apples_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ayesha ' s father was 34 years of age when she was born while her mother was 30 years old when her brother four years younger to her was born, \"statement 2\" :Ayesha ' s father was more than 24 years of age when she was born while her mother was 30 years old when her brother four years younger to her was born, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ayesha_father_age_s1 = 34\nAyesha_father_age_s2 = 0\nAyesha_father_age_s2 > 24\n\nif Ayesha_father_age_s1 is None or Ayesha_father_age_s2 is None: \n print(\"Neutral\") \nelif Ayesha_father_age_s1 > Ayesha_father_age_s2: \n print(\"Entailment\") \nelif Ayesha_father_age_s1 != Ayesha_father_age_s2: \n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bruce and Anne can clean their house in 4 hours working together at their respective constant rates, \"statement 2\" :Bruce and Anne can clean their house in 6 hours working together at their respective constant rates, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Both_can_clean_house_s1 = 4\nBoth_can_clean_house_s2 = 6\n\nif Both_can_clean_house_s1 is None or Both_can_clean_house_s2 is None:\n print(\"Neutral\")\nelif Both_can_clean_house_s1 == Both_can_clean_house_s2:\n print(\"Entailment\")\nelif Both_can_clean_house_s1 != Both_can_clean_house_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If KING is coded as 17 and MASS is coded as 29 Then DOC is coded as, \"statement 2\" :If KING is coded as less than 77 and MASS is coded as 29 Then DOC is coded as, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "king_coded_s1 = 17\nking_coded_s2 = 0\nking_coded_s2 < 77\n\nif king_coded_s1 is None or king_coded_s2 is None: \n print(\"Neutral\") \nelif king_coded_s1 > king_coded_s2: \n print(\"Entailment\") \nelif king_coded_s1 != king_coded_s2: \n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Donald carries a total of less than 65 notes ( of either $ 10 or \u20ac 10 , ) then what is the total number of notes ( of either $ 10 or \u20ac 10 , ) they take ?, \"statement 2\" :If Donald carries a total of 45 notes ( of either $ 10 or \u20ac 10 , ) then what is the total number of notes ( of either $ 10 or \u20ac 10 , ) they take ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_no_of_notes_s1 = 0\ntotal_no_of_notes_s1 < 65\ntotal_no_of_notes_s2 = 45\n\ntotal_no_of_notes_s1 = None\ntotal_no_of_notes_s2 = None\n\nif total_no_of_notes_s1 is None or total_no_of_notes_s2 is None:\n print(\"Neutral\")\nelif total_no_of_notes_s1 < total_no_of_notes_s2:\n print(\"Entailment\")\nelif total_no_of_notes_s1 != total_no_of_notes_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary works in a restaurant a maximum of 40 hours, \"statement 2\" :Mary works in a restaurant a maximum of more than 40 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Mary_works_hour_s1 = 40\nMary_works_hour_s2 = 0\nMary_works_hour_s2 > 40\n\nif Mary_works_hour_s1 is None or Mary_works_hour_s2 is None:\n print(\"Neutral\")\nelif Mary_works_hour_s1 == Mary_works_hour_s2:\n print(\"Entailment\")\nelif Mary_works_hour_s1 != Mary_works_hour_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ratio of the ages of Mona and Sona is 4 : 5, \"statement 2\" :The ratio of the ages of Mona and Sona is more than 1 : 5, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_of_ages_s1 = 4/5\nratio_of_ages_s2 = 0\nratio_of_ages_s2 > 1/5\n\nif ratio_of_ages_s1 is None or ratio_of_ages_s2 is None:\n print(\"Neutral\")\nelif ratio_of_ages_s1 > ratio_of_ages_s2:\n print(\"Entailment\")\nelif ratio_of_ages_s1 != ratio_of_ages_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": '' Having a chance to win $ 10 million and our first child on the way -- it 's pretty amazing . '', \"statement 2\" :Golfer is in contention to win the $ 10 million FedEx Cup prize, \"options: \" Entailment or neutral?", + "Output Program": [ + "chance_to_win_s1 = 10\nchance_to_win_s2 = 10\n\nchance_to_win_s1 = None\nchance_to_win_s2 = None\n\nif chance_to_win_s1 is None or chance_to_win_s2 is None:\n print(\"Neutral\")\nelif chance_to_win_s1 < chance_to_win_s2:\n print(\"Entailment\")\nelif chance_to_win_s1 != chance_to_win_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bush 's earthbound celebration will be a dinner with 200 friends and family and a performance by Irish tenor Ronan Tynan ., \"statement 2\" :George H.W. Bush will celebrate 90th birthday with 200 family and friends, \"options: \" Entailment or neutral?", + "Output Program": [ + "dinner_witth_friends_s1 = 200\ndinner_witth_friends_s2 = 200\n\ndinner_witth_friends_s1 = None\ndinner_witth_friends_s2 = None\n\nif dinner_witth_friends_s1 is None or dinner_witth_friends_s2 is None:\n print(\"Neutral\")\nelif dinner_witth_friends_s1 < dinner_witth_friends_s2:\n print(\"Entailment\")\nelif dinner_witth_friends_s1 != dinner_witth_friends_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Carina has 85 ounces of coffee divided into 5 - and 10 - ounce packages, \"statement 2\" :Carina has more than 45 ounces of coffee divided into 5 - and 10 - ounce packages, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "carina_has_ounces_coffee_s1 = 85\ncarina_has_ounces_coffee_s2 = 0\ncarina_has_ounces_coffee_s2 > 45\n\nif carina_has_ounces_coffee_s1 is None or carina_has_ounces_coffee_s2 is None:\n print(\"Neutral\")\nelif carina_has_ounces_coffee_s1 > carina_has_ounces_coffee_s2:\n print(\"Entailment\")\nelif carina_has_ounces_coffee_s1 != carina_has_ounces_coffee_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Brad Henry declared a state of emergency for 31 counties ., \"statement 2\" :Oklahoma governor declares emergency for 31 counties, \"options: \" Entailment or neutral?", + "Output Program": [ + "state_of_emergency1= 31\nstate_of_emergency2= 31\n\nif state_of_emergency1 is None or state_of_emergency2 is None:\n print(\"Neutral\")\nelif state_of_emergency1 == state_of_emergency2:\n print(\"Entailment\")\nelif state_of_emergency1 != state_of_emergency2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Albert borrowed a total of $ less than 8700 from Brian and Charlie, \"statement 2\" :Albert borrowed a total of $ 5700 from Brian and Charlie, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_borrowed_s1 = 0\ntotal_borrowed_s1 < 8700\ntotal_borrowed_s2 = 5700\n\ntotal_borrowed_s1 = None\ntotal_borrowed_s2 = None\n\nif total_borrowed_s1 is None or total_borrowed_s2 is None:\n print(\"Neutral\")\nelif total_borrowed_s1 < total_borrowed_s2:\n print(\"Entailment\")\nelif total_borrowed_s1 != total_borrowed_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is 4 : 3 , After 6 Years Rahul age will be 26 years, \"statement 2\" :Ratio between Rahul and Deepak is 3 : 3 , After 6 Years Rahul age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio1= 4/3\nratio2= 3/4\n\nif ratio1 is None or ratio2 is None:\n print(\"Neutral\")\nelif ratio1 == ratio2:\n print(\"Entailment\")\nelif ratio1 != ratio2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the height difference between the two if the Empire\nState Building is 435 m tall and the Petronas Towers is 458 m tall ?, \"statement 2\" :What is the height difference between the two if the Empire State Building is less than 635 m tall and the Petronas Towers is 458 m tall ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "height_difference_h1 = 435 \nheight_difference_h2 = 0 \nheight_difference_h2 < 635\n\nif height_difference_h1 is None or height_difference_h2 is None:\n print(\"Neutral\")\nelif height_difference_h1 > height_difference_h2:\n print(\"Entailment\")\nelif height_difference_h1 != height_difference_h2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Albert completes a piece of work in less than 50 days , Rose completes the same work in 30 days, \"statement 2\" :Albert completes a piece of work in 20 days , Rose completes the same work in 30 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "completes_work_s1 = 0\ncompletes_work_s1 < 50\ncompletes_work_s2 = 20\n\ncompletes_work_s1 = None\ncompletes_work_s2 = None\n\nif completes_work_s1 is None or completes_work_s2 is None:\n print(\"Neutral\")\nelif completes_work_s1 < completes_work_s2:\n print(\"Entailment\")\nelif completes_work_s1 != completes_work_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the ratio of their ages is more than 5 : 9 , how old is Sandy ?, \"statement 2\" :If the ratio of their ages is 7 : 9 , how old is Sandy ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_ratio_s1 = 0\nage_ratio_s1 > 5/9\nage_ratio_s2 = 7/9\n\nage_ratio_s1 = None\nage_ratio_s2 = None\n\nif age_ratio_s1 is None or age_ratio_s2 is None:\n print(\"Neutral\")\nelif age_ratio_s1 < age_ratio_s2:\n print(\"Entailment\")\nelif age_ratio_s1 != age_ratio_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In 5 years John will be twice as old as Frank, \"statement 2\" :In 2 years John will be twice as old as Frank, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_s1 = 5\nyears_s2 = 2\n\nif years_s1 is None or years_s2 is None:\n print(\"Neutral\")\nelif years_s1 < years_s2:\n print(\"Entailment\")\nelif years_s1 != years_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Level - 1 college graduates account for 15 % of Listco ' s sales staff, \"statement 2\" :Level - 2 college graduates account for 15 % of Listco ' s sales staff, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "level_of_graduates_accounts_s1 = 15\nlevel_of_graduates_accounts_s2 = 15\n\nif level_of_graduates_accounts_s1 is None or level_of_graduates_accounts_s2 is None:\n print(\"Neutral\")\nelif level_of_graduates_accounts_s1 == level_of_graduates_accounts_s2:\n print(\"Entailment\")\nelif level_of_graduates_accounts_s1 != level_of_graduates_accounts_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Maria picked 48.0 carrots from her garden, and she threw out 15.0 of them and then threw away another 11.0 more the next day, \"statement 2\" :She would have 25.0 carrots left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "carrots_in_garden_s1 = 48\ncarrots_in_garden_s2 = 25\n\nif carrots_in_garden_s1 is None or carrots_in_garden_s2 is None:\n print(\"Neutral\")\nelif carrots_in_garden_s1 == carrots_in_garden_s2:\n print(\"Entailment\")\nelif carrots_in_garden_s1 != carrots_in_garden_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Richard will arrange less than 7 people of 6 different heights for photograph by placing them in two rows of three so that each person in the first row is standing is standing in front of someone in the second row, \"statement 2\" :Richard will arrange 6 people of 6 different heights for photograph by placing them in two rows of three so that each person in the first row is standing is standing in front of someone in the second row, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "arrange_people_s1 = 0\narrange_people_s1 < 7\narrange_people_s2 = 6\n\narrange_people_s1 = None\narrange_people_s2 = None\n\nif arrange_people_s1 is None or arrange_people_s2 is None:\n print(\"Neutral\")\nelif arrange_people_s1 < arrange_people_s2:\n print(\"Entailment\")\nelif arrange_people_s1 != arrange_people_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In an exam , Amar scored 64 percent , Bhavan scored 36 percent and Chetan 44 percent, \"statement 2\" :In an exam , Amar scored less than 84 percent , Bhavan scored 36 percent and Chetan 44 percent, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amar_scored_in_exam_s1 = 64\namar_scored_in_exam_s2 = 0\namar_scored_in_exam_s2 < 84\n\nif amar_scored_in_exam_s1 is None or amar_scored_in_exam_s2 is None:\n print(\"Neutral\")\nelif amar_scored_in_exam_s1 > amar_scored_in_exam_s2:\n print(\"Entailment\")\nelif amar_scored_in_exam_s1 != amar_scored_in_exam_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The average length of the sides of triangle ABC is 12, \"statement 2\" :The average length of the sides of triangle ABC is 62, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_length_of_triangle_s1 = 12\naverage_length_of_triangle_s2 = 62\n\nif average_length_of_triangle_s1 is None or average_length_of_triangle_s2 is None:\n print(\"Neutral\")\nelif average_length_of_triangle_s1 == average_length_of_triangle_s2:\n print(\"Entailment\")\nelif average_length_of_triangle_s1 != average_length_of_triangle_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill works as a waitress at the local diner where she earns an hourly wage of $ 5.00 per hour and a standard tip rate of 25 % of the cost of the orders she serves, \"statement 2\" :Jill works as a waitress at the local diner where she earns an hourly wage of $ 5.00 per hour and a standard tip rate of less than 25 % of the cost of the orders she serves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tip_rate_s1 = 25\ntip_rate_s2 = 0 \ntip_rate_s2 < 25\n\nif tip_rate_s1 is None or tip_rate_s2 is None:\n print(\"Neutral\")\nelif tip_rate_s1 < tip_rate_s2:\n print(\"Entailment\")\nelif tip_rate_s1 != tip_rate_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Another survey of 100 people in the town of Angie found that 60 % preferred Brand A, \"statement 2\" :Another survey of less than 300 people in the town of Angie found that 60 % preferred Brand A, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "survey_of_people_s1 = 100\nsurvey_of_people_s2 = 0\nsurvey_of_people_s2 < 300\n\nif survey_of_people_s1 is None or survey_of_people_s2 is None:\n print(\"Neutral\")\nelif survey_of_people_s1 > survey_of_people_s2:\n print(\"Entailment\")\nelif survey_of_people_s1 != survey_of_people_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mike can catch less than 60 fish in one hour , Jim can catch twice as much and Bob can catch 50 % more than Jim, \"statement 2\" :Mike can catch 30 fish in one hour , Jim can catch twice as much and Bob can catch 50 % more than Jim, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "catch_fish_in_one_hour_s1 = 0\ncatch_fish_in_one_hour_s1 < 60\ncatch_fish_in_one_hour_s2 = 30\n\ncatch_fish_in_one_hour_s1 = None\ncatch_fish_in_one_hour_s2 = None\n\nif catch_fish_in_one_hour_s1 is None or catch_fish_in_one_hour_s2 is None:\n print(\"Neutral\")\nelif catch_fish_in_one_hour_s1 < catch_fish_in_one_hour_s2:\n print(\"Entailment\")\nelif catch_fish_in_one_hour_s1 != catch_fish_in_one_hour_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The monthly income of Suman in the year more than 1009 was approximately what percentage of the monthly income of Jyothi in the year 2010 ?, \"statement 2\" :The monthly income of Suman in the year 2009 was approximately what percentage of the monthly income of Jyothi in the year 2010 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "monthly_income_s1 = 0\nmonthly_income_s1 > 2009\nmonthly_income_s2 = 2009\n\nmonthly_income_s1 = None\nmonthly_income_s2 = None\n\nif monthly_income_s1 is None or monthly_income_s2 is None:\n print(\"Neutral\")\nelif monthly_income_s1 < monthly_income_s2:\n print(\"Entailment\")\nelif monthly_income_s1 != monthly_income_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": For dinner , Sandy ate 200 grams of corn which was five times as much corn as she ate for lunch , and twice as much corn as she ate for breakfast, \"statement 2\" :For dinner , Sandy ate less than 300 grams of corn which was five times as much corn as she ate for lunch , and twice as much corn as she ate for breakfast, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_ate_grams_of_corns_s1 = 200\nsandy_ate_grams_of_corns_s2 = 0\nsandy_ate_grams_of_corns_s2 < 300\n\nif sandy_ate_grams_of_corns_s1 is None or sandy_ate_grams_of_corns_s2 is None:\n print(\"Neutral\")\nelif sandy_ate_grams_of_corns_s1 > sandy_ate_grams_of_corns_s2:\n print(\"Entailment\")\nelif sandy_ate_grams_of_corns_s1 != sandy_ate_grams_of_corns_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Darius drove 679.0 miles to visit his grandmother and Julia drove 998.0 miles to visit her grandmother, \"statement 2\" :The total number of miles Darius and Julia drove is 1672.0, \"options: \" Entailment or contradiction?", + "Output Program": [ + "drove_miles_to_visit_s1 = 679 + 998\ndrove_miles_to_visit_s2 = 1672\n\nif drove_miles_to_visit_s1 is None or drove_miles_to_visit_s2 is None:\n print(\"Neutral\")\nelif drove_miles_to_visit_s1 == drove_miles_to_visit_s2:\n print(\"Entailment\")\nelif drove_miles_to_visit_s1 != drove_miles_to_visit_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Two senior administration officials told CNN that U.S. authorities had intelligence that they shared with the Russians ., \"statement 2\" :Two U.S. officials tell CNN that information was shared with the Russians, \"options: \" Entailment or neutral?", + "Output Program": [ + "number_of_officers_told_cnn_s1 = 2\nnumber_of_officers_told_cnn_s2 = 2\n\nif number_of_officers_told_cnn_s1 is None or number_of_officers_told_cnn_s2 is None:\n print(\"Neutral\")\nelif number_of_officers_told_cnn_s1 == number_of_officers_told_cnn_s2 :\n print(\"Entailment\")\nelif number_of_officers_told_cnn_s1 != number_of_officers_told_cnn_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How much loss would Indu has suffered had she given it to Bindu for 2 years at 4 % per annum simple interest ?, \"statement 2\" :How much loss would Indu has suffered had she given it to Bindu for less than 6 years at 4 % per annum simple interest ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_bindu_suffered_loss_s1 = 2\nyears_bindu_suffered_loss_s2 = 0\nyears_bindu_suffered_loss_s1 < 6\n\nif years_bindu_suffered_loss_s1 is None or years_bindu_suffered_loss_s2 is None:\n print(\"Neutral\")\nelif years_bindu_suffered_loss_s1 > years_bindu_suffered_loss_s2:\n print(\"Entailment\")\nelif years_bindu_suffered_loss_s1 != years_bindu_suffered_loss_s2:\n print(\"Contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 4200 from Anwar at 6 % p, \"statement 2\" :more than 4200 from Anwar at 6 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Anwar_s1 = 4200\nAnwar_s2 = 0\nAnwar_s2 > 4200\n\nif Anwar_s1 is None or Anwar_s2 is None:\n print(\"Neutral\")\nelif Anwar_s1 == Anwar_s2:\n print(\"Entailment\")\nelif Anwar_s1 != Anwar_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": To be considered for \u201c movie of the year , \u201d a film must appear in at least 1 / 4 of the top - 10 - movies lists submitted by the Cinematic Academy \u2019 s 795 members, \"statement 2\" :To be considered for \u201c movie of the year , \u201d a film must appear in at least less than 2 / 4 of the top - 10 - movies lists submitted by the Cinematic Academy \u2019 s 795 members, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "movie_of_the_year_s1 = 1/4\nmovie_of_the_year_s2 = 0\nmovie_of_the_year_s2 < 2/4\n\nif movie_of_the_year_s1 is None or movie_of_the_year_s2 is None:\n print(\"Neutral\")\nelif movie_of_the_year_s1 > movie_of_the_year_s2:\n print(\"Entailment\")\nelif movie_of_the_year_s1 != movie_of_the_year_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Tim hires this freelancer , and hires him again to make alterations which took less than 80 more hours, \"statement 2\" :If Tim hires this freelancer , and hires him again to make alterations which took 20 more hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "freelancer_took_hours_s1 = 0\nfreelancer_took_hours_s1 < 80\nfreelancer_took_hours_s2 = 20\n\nfreelancer_took_hours_s1 = None\nfreelancer_took_hours_s2 = None\n\nif freelancer_took_hours_s1 is None or freelancer_took_hours_s2 is None:\n print(\"Neutral\")\nelif freelancer_took_hours_s1 < freelancer_took_hours_s2:\n print(\"Entailment\")\nelif freelancer_took_hours_s1 != freelancer_took_hours_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Earlier , the United States came back from two goals behind to draw 2-2 with Slovenia in a pulsating encounter in Johannesburg ., \"statement 2\" :Slovenia top the group after earlier 2-2 draw with the United States, \"options: \" Entailment or neutral?", + "Output Program": [ + "draw_with_US_s1 = 2-2\ndraw_with_US_s2 = 2-2\n\ndraw_with_US_s1 = None\ndraw_with_US_s2 = None\n\nif draw_with_US_s1 is None or draw_with_US_s2 is None:\n print(\"Neutral\")\nelif draw_with_US_s1 < draw_with_US_s2:\n print(\"Entailment\")\nelif draw_with_US_s1 != draw_with_US_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Stacy has a 63 page history paper due in 7 days, \"statement 2\" :Stacy has a 73 page history paper due in 7 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "page_history_paper_s1 = 63\npage_history_paper_s2 = 73\n\nif page_history_paper_s1 is None or page_history_paper_s2 is None:\n print(\"Neutral\")\nelif page_history_paper_s1 == page_history_paper_s2:\n print(\"Entailment\")\nelif page_history_paper_s1 != page_history_paper_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sanoop bought more than 4 t - shirts at an average price ( arithmetic mean ) of Rs, \"statement 2\" :Sanoop bought 8 t - shirts at an average price ( arithmetic mean ) of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tshirt_bought_s1 = 0\ntshirt_bought_s1 > 4\ntshirt_bought_s2 = 8\n\ntshirt_bought_s1 = None\ntshirt_bought_s2 = None\n\nif tshirt_bought_s1 is None or tshirt_bought_s2 is None:\n print(\"Neutral\")\nelif tshirt_bought_s1 < tshirt_bought_s2:\n print(\"Entailment\")\nelif tshirt_bought_s1 != tshirt_bought_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jaime earned enough money by selling seashells at 30 cents each to buy several used paperback books at 55 cents each, \"statement 2\" :Jaime earned enough money by selling seashells at less than 70 cents each to buy several used paperback books at 55 cents each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "selling_seashell_at_cent_s1 = 30\nselling_seashell_at_cent_s2 = 0\nselling_seashell_at_cent_s2 < 70\n\nif selling_seashell_at_cent_s1 is None or selling_seashell_at_cent_s2 is None:\n print(\"Neutral\")\nelif selling_seashell_at_cent_s1 > selling_seashell_at_cent_s2:\n print(\"Entailment\")\nelif selling_seashell_at_cent_s1 != selling_seashell_at_cent_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In Arun ' s company more than 50 % of the employees earn less than $ 50,000 a year , 60 % of the employees earn more than $ 40,000 a year , 11 % of the employees earn $ 43,000 a year and 5 % of the employees earn $ 49,000 a year, \"statement 2\" :In Arun ' s company 60 % of the employees earn less than $ 50,000 a year , 60 % of the employees earn more than $ 40,000 a year , 11 % of the employees earn $ 43,000 a year and 5 % of the employees earn $ 49,000 a year, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "employees_earn_s1 = 0\nemployees_earn_s1 > 50\nemployees_earn_s2 = 60\n\nemployees_earn_s1 = None\nemployees_earn_s2 = None\n\nif employees_earn_s1 is None or employees_earn_s2 is None:\n print(\"Neutral\")\nelif employees_earn_s1 < employees_earn_s2:\n print(\"Entailment\")\nelif employees_earn_s1 != employees_earn_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If an outfit consists of 1 shirt , 1 pair of jeans , and 1 pair of sneakers , how many different outfits does Jordan have ?, \"statement 2\" :If an outfit consists of 5 shirt , 1 pair of jeans , and 1 pair of sneakers , how many different outfits does Jordan have ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "outfit_consists_of_shirt_s1 = 1\noutfit_consists_of_shirt_s2 = 5\n\nif outfit_consists_of_shirt_s1 is None or outfit_consists_of_shirt_s2 is None:\n print(\"Neutral\")\nelif outfit_consists_of_shirt_s1 == outfit_consists_of_shirt_s2:\n print(\"Entailment\")\nelif outfit_consists_of_shirt_s1 != outfit_consists_of_shirt_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": David obtained more than 46 , 95 , 82 , 97 and 95 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"statement 2\" :David obtained 96 , 95 , 82 , 97 and 95 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_s1 = 0\nmarks_s1 > 46+95+82+97+95\nmarks_s2 = 96+95+82+97+95\n\nmarks_s1 = None\nmarks_s2 = None\n\nif marks_s1 is None or marks_s2 is None:\n print(\"Neutral\")\nelif marks_s1 < marks_s2:\n print(\"Entailment\")\nelif marks_s1 != marks_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joan picked 37.0 oranges, and Sara picked 10.0 oranges and Alyssa picked 30.0 pears , \"statement 2\" :48.0 oranges were picked in total , \"options: \" Entailment or contradiction?", + "Output Program": [ + "joan_picked_oranges_s1 =47\njoan_picked_oranges_s2 = 48\n\nif joan_picked_oranges_s1 is None or joan_picked_oranges_s2 is None:\n print(\"Neutral\")\nelif joan_picked_oranges_s1 == joan_picked_oranges_s2:\n print(\"Entailment\")\nelif joan_picked_oranges_s1 != joan_picked_oranges_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 2.0 beavers were working on their home and 1.0 went for a swim, \"statement 2\" :0.0 beavers are still working on their home, \"options: \" Entailment or contradiction?", + "Output Program": [ + "beavers_working_on_home_s1 = 1\nbeavers_working_on_home_s2 = 0\n\nif beavers_working_on_home_s1 is None or beavers_working_on_home_s2 is None:\n print(\"Neutral\")\nelif beavers_working_on_home_s1 == beavers_working_on_home_s2:\n print(\"Entailment\")\nelif beavers_working_on_home_s1 != beavers_working_on_home_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lionel left his house and walked towards Walt ' s house , 48 miles away, \"statement 2\" :Lionel left his house and walked towards Walt ' s house , 18 miles away, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "lionel_walked_miles_s1 = 48\nlionel_walked_miles_s2 = 18\n\nif lionel_walked_miles_s1 is None or lionel_walked_miles_s2 is None:\n print(\"Neutral\")\nelif lionel_walked_miles_s1 == lionel_walked_miles_s2:\n print(\"Entailment\")\nelif lionel_walked_miles_s1 != lionel_walked_miles_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Snyder has 4 more men and 6 more women than Leigh , how many women are in the Snyder choir ?, \"statement 2\" :If Snyder has more than 4 more men and 6 more women than Leigh , how many women are in the Snyder choir ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "snyder_has_men_s1 = 4\nsnyder_has_men_s2 = 0\nsnyder_has_men_s2 > 4\n\nif snyder_has_men_s1 is None or snyder_has_men_s2 is None:\n print(\"Neutral\")\nelif snyder_has_men_s1 == snyder_has_men_s2:\n print(\"Entailment\")\nelif snyder_has_men_s1 != snyder_has_men_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Snyder has 4 more men and 6 more women than Leigh , how many women are in the Snyder choir ?, \"statement 2\" :If Snyder has less than 6 more men and 6 more women than Leigh , how many women are in the Snyder choir ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "snyder_has_men_s1 = 4\nsnyder_has_men_s2 = 0\nsnyder_has_men_s2 < 6\n\nif snyder_has_men_s1 is None or snyder_has_men_s2 is None:\n print(\"Neutral\")\nelif snyder_has_men_s1 > snyder_has_men_s2:\n print(\"Entailment\")\nelif snyder_has_men_s1 != snyder_has_men_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Series Problem like 4 12 x 44 46 132 134 begin of the Skype highlighting 44 46 132 134 end of the Skype highlighting, \"statement 2\" :Series Problem like more than 2 12 x 44 46 132 134 begin of the Skype highlighting 44 46 132 134 end of the Skype highlighting, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "series_problem_s1 = 412*4446132134\nseries_problem_s2 = 0\nseries_problem_s2 > 212*4446132134\n\nif series_problem_s1 is None or series_problem_s2 is None:\n print(\"Neutral\")\nelif series_problem_s1 > series_problem_s2:\n print(\"Entailment\")\nelif series_problem_s1 != series_problem_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mrs. Sheridan has 47.0 fish and she gave her sister 22.0 fish, \"statement 2\" :She has 25.0 fish now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "fish_now_s1 = 47 - 22\nfish_now_s2 = 25\n\nif fish_now_s1 is None or fish_now_s2 is None:\n print(\"Neutral\")\nelif fish_now_s1 == fish_now_s2:\n print(\"Entailment\")\nelif fish_now_s1 != fish_now_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rathi took a loan for 6 years at the rate of 5 % per annum on Simple Interest , If the total interest paid was Rs, \"statement 2\" :Rathi took a loan for 7 years at the rate of 5 % per annum on Simple Interest , If the total interest paid was Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_for_loan_s1 = 6\nyears_for_loan_s2 = 7\n\nif years_for_loan_s1 is None or years_for_loan_s2 is None:\n print(\"Neutral\")\nelif years_for_loan_s1 > years_for_loan_s2:\n print(\"Entailment\")\nelif years_for_loan_s1 != years_for_loan_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 84.0 leaves and there are 139.0 ladybugs on the leaves, \"statement 2\" :The average number of ladybugs on each leaf is 1.65476190476, \"options: \" Entailment or contradiction?", + "Output Program": [ + "average_no_of_ladybugs_on_leaves_s1 = 84*139\naverage_no_of_ladybugs_on_leaves_s2 = 1.65476190476/2\n\nif average_no_of_ladybugs_on_leaves_s1 is None or average_no_of_ladybugs_on_leaves_s2 is None:\n print(\"Neutral\")\nelif average_no_of_ladybugs_on_leaves_s1 > average_no_of_ladybugs_on_leaves_s2:\n print(\"Entailment\")\nelif average_no_of_ladybugs_on_leaves_s1 != average_no_of_ladybugs_on_leaves_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What 's also out of proportion : Walker has raised 7 1/2 times that of his Democratic challenger , Tom Barrett ., \"statement 2\" :To date , Gov. Scott Walker has raised 7 1/2 times that of Democrat , Tom Barrett, \"options: \" Entailment or neutral?", + "Output Program": [ + "walker_raised_challenger_s1 = 7.5\nwalker_raised_challenger_s2 = 7.5\n\nif walker_raised_challenger_s1 is None or walker_raised_challenger_s2 is None:\n print(\"Neutral\")\nelif walker_raised_challenger_s1 == walker_raised_challenger_s2:\n print(\"Entailment\")\nelif walker_raised_challenger_s1 != walker_raised_challenger_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": less than 85 % of students from 100 Science students are locals and 85 % of total 120 Commerce students are locals, \"statement 2\" :25 % of students from 100 Science students are locals and 85 % of total 120 Commerce students are locals, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "student_s1 = 0\nstudent_s1 < 85\nstudent_s2 = 25\n\nstudent_s1 = None\nstudent_s2 = None\n\nif student_s1 is None or student_s2 is None:\n print(\"Neutral\")\nelif student_s1 < student_s2:\n print(\"Entailment\")\nelif student_s1 != student_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": An investor can sell her MicroTron stock for less than 66 $ per share and her Dynaco stock for 44 $ per share , If she sells 300 shares altogether , some of each stock , at an average price per share of 40 $ , how many shares of Dynaco stock has she sold ?, \"statement 2\" :An investor can sell her MicroTron stock for 36 $ per share and her Dynaco stock for 44 $ per share , If she sells 300 shares altogether , some of each stock , at an average price per share of 40 $ , how many shares of Dynaco stock has she sold ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stock_per_share_s1 = 0\nstock_per_share_s1 < 60\nstock_per_share_s2 = 36\n\nstock_per_share_s1 = None\nstock_per_share_s2 = None\n\nif stock_per_share_s1 is None or stock_per_share_s2 is None:\n print(\"Neutral\")\nelif stock_per_share_s1 < stock_per_share_s2:\n print(\"Entailment\")\nelif stock_per_share_s1 != stock_per_share_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": When relatives visit Haley and her family, she and her cousins do origami and she gives 48.0 origami papers to every 1.0 of her 6.0 cousins, \"statement 2\" :She has given away 288.0 papers, \"options: \" Entailment or contradiction?", + "Output Program": [ + "papers_given_s1 = 48*6\npapers_given_s2 = 288\n\nif papers_given_s1 is None or papers_given_s2 is None:\n print(\"Neutral\")\nelif papers_given_s1 == papers_given_s2:\n print(\"Entailment\")\nelif papers_given_s1 != papers_given_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is 2 : 3 ?\nA, \"statement 2\" :What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is less than 4 : 3 ? A, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Average_speed_of_murali_s1 = 2/3\nAverage_speed_of_murali_s2 = 0 \nAverage_speed_of_murali_s2 < 4/3\n\nif Average_speed_of_murali_s1 is None or Average_speed_of_murali_s2 is None:\n print(\"Neutral\")\nelif Average_speed_of_murali_s1 > Average_speed_of_murali_s2:\n print(\"Entailment\")\nelif Average_speed_of_murali_s1 != Average_speed_of_murali_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Andy has less than 60 pairs of matched gloves, \"statement 2\" :Andy has 20 pairs of matched gloves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gloves_andy_has_s1 = 0\ngloves_andy_has_s1 < 60\ngloves_andy_has_s2 = 20\n\ngloves_andy_has_s1 = None\ngloves_andy_has_s2 = None\n\nif gloves_andy_has_s1 is None or gloves_andy_has_s2 is None:\n print(\"Neutral\")\nelif gloves_andy_has_s1 < gloves_andy_has_s2:\n print(\"Entailment\")\nelif gloves_andy_has_s1 != gloves_andy_has_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mrs. Heine is buying Valentine\u2019s Day treats for her 2.0 dogs, and she wants to buy them 3.0 heart biscuits each, \"statement 2\" :She needs 6.0 biscuits, \"options: \" Entailment or contradiction?", + "Output Program": [ + "she_needs_biscuit_s1 = 3 * 2\nshe_needs_biscuit_s2 = 6\n\nif she_needs_biscuit_s1 is None or she_needs_biscuit_s2 is None:\n print(\"Neutral\")\nelif she_needs_biscuit_s1 == she_needs_biscuit_s2:\n print(\"Entailment\")\nelif she_needs_biscuit_s1 != she_needs_biscuit_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": With more than 70 % of votes counted , Syriza was officially projected to win at least 149 seats in the 300-seat Parliament ., \"statement 2\" :Official projections indicate the left-wing Syriza party has won at least 149 seats in Parliament, \"options: \" Entailment or neutral?", + "Output Program": [ + "seats_won_s1 = None\nseats_won_s2 = 149\n\nif seats_won_s1 is None or seats_won_s2 is None:\n print('neutral')\n\nelif seats_won_s1 == seats_won_s2:\n print('Entailment')\n\nelif seats_won_s1 != seats_won_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Matt is touring a nation in which coins are issued in two amounts , 2 \u00a2 and 5 \u00a2 , which are made of iron and copper , respectively, \"statement 2\" :Matt is touring a nation in which coins are issued in two amounts , 8 \u00a2 and 5 \u00a2 , which are made of iron and copper , respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "coin_issued_in_two_amounts_s1 = 2/5\ncoin_issued_in_two_amounts_s2 = 8/5\n\nif coin_issued_in_two_amounts_s1 is None or coin_issued_in_two_amounts_s2 is None:\n print(\"Neutral\")\nelif coin_issued_in_two_amounts_s1 > coin_issued_in_two_amounts_s2:\n print(\"Entailment\")\nelif coin_issued_in_two_amounts_s1 != coin_issued_in_two_amounts_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Drip by drip , Aguilar , 28 , watches as chemo enters her body to fight advanced-stage ovarian cancer ., \"statement 2\" :Christina Aguilar , 28 , is getting treated for ovarian cancer, \"options: \" Entailment or neutral?", + "Output Program": [ + "treated_for_ovarian_cancer_s1 = 28\ntreated_for_ovarian_cancer_s2 = 28\n\nif treated_for_ovarian_cancer_s1 is None or treated_for_ovarian_cancer_s2 is None:\n print(\"Neutral\")\nelif treated_for_ovarian_cancer_s1 == treated_for_ovarian_cancer_s2:\n print(\"Entailment\")\nelif treated_for_ovarian_cancer_s1 != treated_for_ovarian_cancer_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jason picked 46.0 pears and Keith picked 47.0 pears from the pear tree and Mike ate 12.0 of those pears , \"statement 2\" :They have 84.0 pears left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "pears_left_s1 = 46+47-12\npears_left_s2 = 84\n\nif pears_left_s1 is None or pears_left_s2 is None:\n print(\"Neutral\")\nelif pears_left_s1 == pears_left_s2:\n print(\"Entailment\")\nelif pears_left_s1 != pears_left_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sally had 39.0 baseball cards and Sara gave Sally 24.0 more, \"statement 2\" :Sally has 64.0 baseball cards now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Sally_had_baseball_cards_s1 = 39+24\nSally_had_baseball_cards_s2 = 64\n\nif Sally_had_baseball_cards_s1 is None or Sally_had_baseball_cards_s2 is None:\n print(\"Neutral\")\nelif Sally_had_baseball_cards_s1 == Sally_had_baseball_cards_s2:\n print(\"Entailment\")\nelif Sally_had_baseball_cards_s1 != Sally_had_baseball_cards_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Cook can divide his herd into 5 equal parts and also to 6 equal parts , but not to 9 equal parts, \"statement 2\" :Cook can divide his herd into 3 equal parts and also to 6 equal parts , but not to 9 equal parts, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "divide_herd_in_parts_s1 = 5\ndivide_herd_in_parts_s2 = 3\n\nif divide_herd_in_parts_s1 is None or divide_herd_in_parts_s2 is None:\n print(\"Neutral\")\nelif divide_herd_in_parts_s1 == divide_herd_in_parts_s2:\n print(\"Entailment\")\nelif divide_herd_in_parts_s1 != divide_herd_in_parts_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": When Professor Wang looked at the rosters for this term ' s classes , she saw that the roster for her economics class ( E ) had 20 names , the roster for her marketing class ( M ) had 28 , and the roster for her statistics class ( S ) had 18, \"statement 2\" :When Professor Wang looked at the rosters for this term ' s classes , she saw that the roster for her economics class ( E ) had more than 20 names , the roster for her marketing class ( M ) had 28 , and the roster for her statistics class ( S ) had 18, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "eco_class_names_s1 = 20\neco_class_names_s2 = 0\neco_class_names_s2 > 20\n\nif eco_class_names_s1 is None or eco_class_names_s2 is None:\n print(\"Neutral\")\nelif eco_class_names_s1 == eco_class_names_s2:\n print(\"Entailment\")\nelif eco_class_names_s1 != eco_class_names_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sara had 100.0 pennies and 783.0 quarters in her bank and her dad borrowed 271.0 quarters from Sara , \"statement 2\" :She has 512.0 quarters now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "quarters_sara_had_s1 = 783 - 271\nquarters_sara_had_s2 = 512\n\nif quarters_sara_had_s1 is None or quarters_sara_had_s2 is None:\n print(\"Neutral\")\nelif quarters_sara_had_s1 == quarters_sara_had_s2:\n print(\"Entailment\")\nelif quarters_sara_had_s1 != quarters_sara_had_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Danny scored more than 76 , 75 , 52 , 87 , 85 and 82 marks ( out of 100 ) in English , Social Studies , Art , Music , Biology and French, \"statement 2\" :If Danny scored 86 , 75 , 52 , 87 , 85 and 82 marks ( out of 100 ) in English , Social Studies , Art , Music , Biology and French, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_scored_s1 = 0\nmarks_scored_s1 > 76+75+52+87+85\nmarks_scored_s2 = 86+75+52+87+85\n\nmarks_scored_s1 = None\nmarks_scored_s2 = None\n\nif marks_scored_s1 is None or marks_scored_s2 is None:\n print(\"Neutral\")\nelif marks_scored_s1 < marks_scored_s2:\n print(\"Entailment\")\nelif marks_scored_s1 != marks_scored_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If less than 71 people have visited both Iceland and Norway , how many people have visited neither country ?, \"statement 2\" :If 61 people have visited both Iceland and Norway , how many people have visited neither country ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_visited_s1 = 0\npeople_visited_s1 < 71\npeople_visited_s2 = 61\n\npeople_visited_s1 = None\npeople_visited_s2 = None\n\nif people_visited_s1 is None or people_visited_s2 is None:\n print(\"Neutral\")\nelif people_visited_s1 < people_visited_s2:\n print(\"Entailment\")\nelif people_visited_s1 != people_visited_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Maddie has 15 apples , if she give 8 to mike , how many does she have left ?, \"statement 2\" :Maddie has 75 apples , if she give 8 to mike , how many does she have left ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "apples_maddie_has_s1 = 15 - 8\napples_maddie_has_s2 = 75 - 8\n\nif apples_maddie_has_s1 is None or apples_maddie_has_s2 is None:\n print(\"Neutral\")\nelif apples_maddie_has_s1 == apples_maddie_has_s2:\n print(\"Entailment\")\nelif apples_maddie_has_s1 != apples_maddie_has_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He successfully married his girlfriend Diana after less than 7 / 7 more of his life, \"statement 2\" :He successfully married his girlfriend Diana after 1 / 7 more of his life, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "married_diana_s1 = 0\nmarried_diana_s1 < 7/7\nmarried_diana_s2 = 1/7\n\nmarried_diana_s1 = None\nmarried_diana_s2 = None\n\nif married_diana_s1 is None or married_diana_s2 is None:\n print(\"Neutral\")\nelif married_diana_s1 < married_diana_s2:\n print(\"Entailment\")\nelif married_diana_s1 != married_diana_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Triangle STV has sides ST = TV = 13 , and SV = 10, \"statement 2\" :Triangle STV has sides ST = TV = 43 , and SV = 10, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "triangle_tv_has_s1 = 13\ntriangle_tv_has_s2 = 43\n\nif triangle_tv_has_s1 is None or triangle_tv_has_s2 is None:\n print(\"Neutral\")\nelif triangle_tv_has_s1 > triangle_tv_has_s2:\n print(\"Entailment\")\nelif triangle_tv_has_s1 != triangle_tv_has_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A poll of 1,005 British citizens conducted by Collinson Latitude found that 40 % of those signed up to airline loyalty schemes never redeem miles , which , one would imagine , slightly defeats the purpose ., \"statement 2\" :Recent survey found 40 % of passengers never redeem loyalty miles, \"options: \" Entailment or neutral?", + "Output Program": [ + "airline_loyalty_schemes_s1 = 40\nairline_loyalty_schemes_s2 = 40\n\nairline_loyalty_schemes_s1 = None\nairline_loyalty_schemes_s2 = None\n\nif airline_loyalty_schemes_s1 is None or airline_loyalty_schemes_s2 is None:\n print(\"Neutral\")\nelif airline_loyalty_schemes_s1 < airline_loyalty_schemes_s2:\n print(\"Entailment\")\nelif airline_loyalty_schemes_s1 != airline_loyalty_schemes_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The total price of a kilogram each of Shimla apples and Red Delicious apples is less than 350 rupees more than the total price of a kilogram each of Red Delicious apples and Fuji apples, \"statement 2\" :The total price of a kilogram each of Shimla apples and Red Delicious apples is 250 rupees more than the total price of a kilogram each of Red Delicious apples and Fuji apples, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_price_s1 = 0\ntotal_price_s1 < 350\ntotal_price_s2 = 250\n\ntotal_price_s1 = None\ntotal_price_s2 = None\n\nif total_price_s1 is None or total_price_s2 is None:\n print(\"Neutral\")\nelif total_price_s1 < total_price_s2:\n print(\"Entailment\")\nelif total_price_s1 != total_price_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the distance between their homes is 80 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"statement 2\" :If the distance between their homes is less than 80 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_between_homes_s1 = 80\ndistance_between_homes_s2 = 0\ndistance_between_homes_s2 < 80\n\nif distance_between_homes_s1 is None or distance_between_homes_s2 is None:\n print(\"Neutral\")\nelif distance_between_homes_s1 < distance_between_homes_s2:\n print(\"Entailment\")\nelif distance_between_homes_s1 != distance_between_homes_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At present , the ratio between the ages of Arun and Deepak is 4 : 3, \"statement 2\" :At present , the ratio between the ages of Arun and Deepak is more than 2 : 3, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_of_ages_s1 = 4/3\nratio_of_ages_s2 = 2/3\n\nif ratio_of_ages_s1 is None or ratio_of_ages_s2 is None:\n print(\"Neutral\")\nelif ratio_of_ages_s1 > ratio_of_ages_s2:\n print(\"Entailment\")\nelif ratio_of_ages_s1 != ratio_of_ages_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The farmers reported that they harvest 45.0 sacks of apples from an orchard that comprises 8.0 sections, and the same amount of apples is harvested from each section, \"statement 2\" :6.2 sacks are harvested from a section, \"options: \" Entailment or contradiction?", + "Output Program": [ + "sacks_of_apples_harvested_s1 = 45\nsacks_of_apples_harvested_s2 = 6.2\n\nif sacks_of_apples_harvested_s1 is None or sacks_of_apples_harvested_s2 is None:\n print(\"Neutral\")\nelif sacks_of_apples_harvested_s1 < sacks_of_apples_harvested_s2:\n print(\"Entailment\")\nelif sacks_of_apples_harvested_s1 != sacks_of_apples_harvested_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is 4 : 3 , After 10 Years Rahul age will be 26 years, \"statement 2\" :Ratio between Rahul and Deepak is more than 2 : 3 , After 10 Years Rahul age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_between_deepak_and_rahul_s1 = 4/3\nratio_between_deepak_and_rahul_s2 = 2/3\n\nif ratio_between_deepak_and_rahul_s1 is None or ratio_between_deepak_and_rahul_s2 is None:\n print(\"Neutral\")\nelif ratio_between_deepak_and_rahul_s1 > ratio_between_deepak_and_rahul_s2:\n print(\"Entailment\")\nelif ratio_between_deepak_and_rahul_s1 != ratio_between_deepak_and_rahul_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 6.0 birds and 3.0 nests., \"statement 2\" :There are 3.0 more birds than nests, \"options: \" Entailment or contradiction?", + "Output Program": [ + "nest = 3\nbirds_s1 = 6\nbirds_s2 = 3*3\n\nif birds_s1 is None or birds_s2 is None:\n print(\"Neutral\")\nelif birds_s1 > birds_s2:\n print(\"Entailment\")\nelif birds_s1 != birds_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If in less than 22 years , John will be one year younger than twice the age of Mark on that day , how old is Mark today ?, \"statement 2\" :If in 12 years , John will be one year younger than twice the age of Mark on that day , how old is Mark today ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_s1 = 0\nyears_s1 < 22\nyears_s2 = 12\n\nyears_s1 = None\nyears_s2 = None\n\nif years_s1 is None or years_s2 is None:\n print(\"Neutral\")\nelif years_s1 < years_s2:\n print(\"Entailment\")\nelif years_s1 != years_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were 9.0 red orchids and 3.0 white orchids in the vase and Sally cut 15.0 red orchids from her flower garden and put them in the vase , \"statement 2\" :24.0 red orchids are there now in the vase, \"options: \" Entailment or contradiction?", + "Output Program": [ + "red_orchids_in_vase_s1 = 9 + 15\nred_orchids_in_vase_s2 = 24\n\nif red_orchids_in_vase_s1 is None or red_orchids_in_vase_s2 is None:\n print(\"Neutral\")\nelif red_orchids_in_vase_s1 == red_orchids_in_vase_s2:\n print(\"Entailment\")\nelif red_orchids_in_vase_s1 != red_orchids_in_vase_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy attempts 30 sums and obtains 55 marks, \"statement 2\" :Sandy attempts 50 sums and obtains 55 marks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_attempts_sums_s1 = 30\nsandy_attempts_sums_s2 = 50\n\nif sandy_attempts_sums_s1 is None or sandy_attempts_sums_s2 is None:\n print(\"Neutral\")\nelif sandy_attempts_sums_s1 == sandy_attempts_sums_s2:\n print(\"Entailment\")\nelif sandy_attempts_sums_s1 != sandy_attempts_sums_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Pastor Maldonado , who won the Spanish GP for Williams to become the fifth different winner this season in five races , qualified ninth fastest but was relegated 10 places ., \"statement 2\" :Pastor Maldonado relegated 10 places for practice misdemeanor, \"options: \" Entailment or neutral?", + "Output Program": [ + "places_relegated_s1 = 10\nplaces_relegated_s2 = 10\n\nif places_relegated_s1 is None or places_relegated_s2 is None:\n print('neutral')\n\nelif places_relegated_s1 == places_relegated_s2:\n print('Entailment')\n\nelif places_relegated_s1 != places_relegated_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ratio of men to women in the Snyder community choir is 4 to 3, \"statement 2\" :The ratio of men to women in the Snyder community choir is less than 7 to 3, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_of_men_and_women_s1 = 4/3\nratio_of_men_and_women_s2 = 0\nratio_of_men_and_women_s2 < 7/3\n\nif ratio_of_men_and_women_s1 is None or ratio_of_men_and_women_s2 is None:\n print(\"Neutral\")\nelif ratio_of_men_and_women_s1 > ratio_of_men_and_women_s2:\n print(\"Entailment\")\nelif ratio_of_men_and_women_s1 != ratio_of_men_and_women_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Series Problem like 4 12 x 44 46 132 134 begin of the Skype highlighting 44 46 132 134 end of the Skype highlighting, \"statement 2\" :Series Problem like less than 7 12 x 44 46 132 134 begin of the Skype highlighting 44 46 132 134 end of the Skype highlighting, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "problems_s1 = 412*4446132134\nproblems_s2 = 0\nproblems_s2 < 712*4446132134\n\nif problems_s1 is None or problems_s2 is None:\n print(\"Neutral\")\nelif problems_s1 > problems_s2:\n print(\"Entailment\")\nelif problems_s1 != problems_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Kiran , an eight years old boy has 27 toys, \"statement 2\" :Kiran , an eight years old boy has less than 57 toys, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "toys_kiran_has_s1 = 27\ntoys_kiran_has_s2 = 0\ntoys_kiran_has_s2 < 57\n\nif toys_kiran_has_s1 is None or toys_kiran_has_s2 is None:\n print(\"Neutral\")\nelif toys_kiran_has_s1 > toys_kiran_has_s2:\n print(\"Entailment\")\nelif toys_kiran_has_s1 != toys_kiran_has_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If neha is 10\nBoth Sonali and priyanka is 15\nBoth sadaf and tanu is 10 .\nhow much is prinka by the same system ?, \"statement 2\" :If neha is less than 60 Both Sonali and priyanka is 15 Both sadaf and tanu is 10 . how much is prinka by the same system ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "neha_system_s1 = 10\nneha_system_s2 = 0\nneha_system_s2 < 60\n\nif neha_system_s1 is None or neha_system_s2 is None:\n print(\"Neutral\")\nelif neha_system_s1 > neha_system_s2:\n print(\"Entailment\")\nelif neha_system_s1 != neha_system_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Temporary help firms added 32,000 and education and health care services gained 13,000 jobs last month ., \"statement 2\" :Service industries such as education and health care added 46,000 jobs ., \"options: \" Entailment or neutral?", + "Output Program": [ + "jobs_s1 = 32000\njobs_s2 = 46000\n\njobs_s1 = None\njobs_s2 = None\n\nif jobs_s1 is None or jobs_s2 is None:\n print(\"Neutral\")\nelif jobs_s1 < jobs_s2:\n print(\"Entailment\")\nelif jobs_s1 != jobs_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Let \u2019 s assume such rumors to be true and that in a match between Ghana and Bolivia ; Ghana the stronger team has a probability of 2 / 3 of winning the game, \"statement 2\" :Let \u2019 s assume such rumors to be true and that in a match between Ghana and Bolivia ; Ghana the stronger team has a probability of less than 8 / 3 of winning the game, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "probability_of_game_win_s1 = 2/3\nprobability_of_game_win_s2 = 0\nprobability_of_game_win_s2 < 8/3\n\nif probability_of_game_win_s1 is None or probability_of_game_win_s2 is None:\n print(\"Neutral\")\nelif probability_of_game_win_s1 > probability_of_game_win_s2:\n print(\"Entailment\")\nelif probability_of_game_win_s1 != probability_of_game_win_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Lionel ' s speed was 3 miles per hour and Walt ' s 6 miles per hour , how many miles had Lionel walked when he met Walt ?, \"statement 2\" :If Lionel ' s speed was 1 miles per hour and Walt ' s 6 miles per hour , how many miles had Lionel walked when he met Walt ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "lionel_speed_per_hour_s1 = 3\nlionel_speed_per_hour_s2 = 1\n\nif lionel_speed_per_hour_s1 is None or lionel_speed_per_hour_s2 is None:\n print(\"Neutral\")\nelif lionel_speed_per_hour_s1 == lionel_speed_per_hour_s2:\n print(\"Entailment\")\nelif lionel_speed_per_hour_s1 != lionel_speed_per_hour_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Caleb spends $ 68.50 on more than 20 hamburgers for the marching band, \"statement 2\" :Caleb spends $ 68.50 on 50 hamburgers for the marching band, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hamburgers_s1 = 0\nhamburgers_s1 > 20\nhamburgers_s2 = 50\n\nhamburgers_s1 = None\nhamburgers_s2 = None\n\nif hamburgers_s1 is None or hamburgers_s2 is None:\n print(\"Neutral\")\nelif hamburgers_s1 < hamburgers_s2:\n print(\"Entailment\")\nelif hamburgers_s1 != hamburgers_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Renu can do a piece of work in 8 days , but with the help of her friend Suma , she can do it in 4 days, \"statement 2\" :Renu can do a piece of work in 2 days , but with the help of her friend Suma , she can do it in 4 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "renu_can_do_piece_of_work_s1 = 8\nrenu_can_do_piece_of_work_s2 = 2\n\nif renu_can_do_piece_of_work_s1 is None or renu_can_do_piece_of_work_s2 is None:\n print(\"Neutral\")\nelif renu_can_do_piece_of_work_s1 == renu_can_do_piece_of_work_s2:\n print(\"Entailment\")\nelif renu_can_do_piece_of_work_s1 != renu_can_do_piece_of_work_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 10 % people of a village in Sri Lanka died by bombardment , 20 % of the remainder left the village on account of fear, \"statement 2\" :30 % people of a village in Sri Lanka died by bombardment , 20 % of the remainder left the village on account of fear, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_died_srilanka_s1 = 10\npeople_died_srilanka_s2 = 30\n\nif people_died_srilanka_s1 is None or people_died_srilanka_s2 is None:\n print(\"Neutral\")\nelif people_died_srilanka_s1 == people_died_srilanka_s2:\n print(\"Entailment\")\nelif people_died_srilanka_s1 != people_died_srilanka_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Faiza has 9 purses , she gives 3 purse as gift, \"statement 2\" :Faiza has more than 4 purses , she gives 3 purse as gift, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "purses_faiza_have_s1 = 9\npurses_faiza_have_s2 = 0\npurses_faiza_have_s2 > 4\n\nif purses_faiza_have_s1 is None or purses_faiza_have_s2 is None:\n print(\"Neutral\")\nelif purses_faiza_have_s1 > purses_faiza_have_s2:\n print(\"Entailment\")\nelif purses_faiza_have_s1 != purses_faiza_have_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Elena \u2019 s bread recipe calls for 3 ounces of butter for each 4 cups of flour used, \"statement 2\" :Elena \u2019 s bread recipe calls for less than 7 ounces of butter for each 4 cups of flour used, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "recipe_ounces_butter_s1 = 3\nrecipe_ounces_butter_s2 = 0\nrecipe_ounces_butter_s2 < 7\n\nif recipe_ounces_butter_s1 is None or recipe_ounces_butter_s2 is None:\n print(\"Neutral\")\nelif recipe_ounces_butter_s1 > recipe_ounces_butter_s2:\n print(\"Entailment\")\nelif recipe_ounces_butter_s1 != recipe_ounces_butter_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Michael earns $ 7.00 per hour for the first 40 hours he works per week , and twice this rate for overtime, \"statement 2\" :Michael earns $ 7.00 per hour for the first less than 80 hours he works per week , and twice this rate for overtime, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_worked_per_week_s1 = 40\nhours_worked_per_week_s2 = 0\nhours_worked_per_week_s2 < 80\n\nif hours_worked_per_week_s1 is None or hours_worked_per_week_s2 is None:\n print(\"Neutral\")\nelif hours_worked_per_week_s1 > hours_worked_per_week_s2:\n print(\"Entailment\")\nelif hours_worked_per_week_s1 != hours_worked_per_week_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Fifteen percent said they have a favorable view of al Qaeda 's leader , Saudi exile Osama bin Laden , the poll found ., \"statement 2\" :Survey : 10 percent of Saudis polled have a favorable view of al Qaeda, \"options: \" Entailment or neutral?", + "Output Program": [ + "favourable_view_s1 = 15\nfavourable_view_s2 = 10\n\nfavourable_view_s1 = None\nfavourable_view_s2 = None\n\nif favourable_view_s1 is None or favourable_view_s2 is None:\n print(\"Neutral\")\nelif favourable_view_s1 < favourable_view_s2:\n print(\"Entailment\")\nelif favourable_view_s1 != favourable_view_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Police spokesman Maj. Thanassis Kokkalakis added that two suspects arrested in the case are '' domestic terrorists without international connections . '', \"statement 2\" :The government names 2 suspects arrested in connection with the bombs, \"options: \" Entailment or neutral?", + "Output Program": [ + "government_suspects_s1 = 2\ngovernment_suspects_s2 = 2\n\ngovernment_suspects_s1 = None\ngovernment_suspects_s2 = None\n\nif government_suspects_s1 is None or government_suspects_s2 is None:\n print(\"Neutral\")\nelif government_suspects_s1 < government_suspects_s2:\n print(\"Entailment\")\nelif government_suspects_s1 != government_suspects_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Carol ' s rectangle measures 8 inches by 15 inches and Jordan ' s rectangle is 4 inches long , how wide is Jordan ' s rectangle , in inches ?, \"statement 2\" :If Carol ' s rectangle measures more than 4 inches by 15 inches and Jordan ' s rectangle is 4 inches long , how wide is Jordan ' s rectangle , in inches ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rectangle_measures_s1 = 8\nrectangle_measures_s2 = 0\nrectangle_measures_s2 > 4\n\nif rectangle_measures_s1 is None or rectangle_measures_s2 is None:\n print(\"Neutral\")\nelif rectangle_measures_s1 > rectangle_measures_s2:\n print(\"Entailment\")\nelif rectangle_measures_s1 != rectangle_measures_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": '' Historians say U-boats sank at least 50 American ships in the Gulf , one in the very mouth of the Mississippi River ., \"statement 2\" :Nazis sank about 50 American ships in the Gulf during the war, \"options: \" Entailment or neutral?", + "Output Program": [ + "american_ships_s1 = 0\namerican_ships_s1 < 50\namerican_ships_s2 = 50\n\nif american_ships_s1 is None or american_ships_s2 is None:\n print(\"Neutral\")\nelif american_ships_s1 < american_ships_s2:\n print(\"Entailment\")\nelif american_ships_s1 != american_ships_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Karen places a bet with Tom that she will beat Tom in a car race by 4 miles even if Karen starts 4 minutes late, \"statement 2\" :Karen places a bet with Tom that she will beat Tom in a car race by more than 4 miles even if Karen starts 4 minutes late, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "karen_will_beat_tom_s2 = 0\nkaren_will_beat_tom_s1 = 4\nkaren_will_beat_tom_s2 > 4\n\nif karen_will_beat_tom_s1 is None or karen_will_beat_tom_s2 is None:\n print('neutral')\nelif karen_will_beat_tom_s1 < 4:\n print('Entailment')\nelse:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": ( CNN ) -- Argentina booked their place in the second round of the World Cup after a 2-0 win over Greece and were joined by South Korea , who secured their berth with a thrilling 2-2 draw against Nigeria ., \"statement 2\" :South Korea qualify as runners-up after drawing 2-2 with Nigeria, \"options: \" Entailment or neutral?", + "Output Program": [ + "win_over_greece_s1 = 2-0\nwin_over_greece_s2 = 2-2\n\nwin_over_greece_s1 = None\nwin_over_greece_s2 = None\n\nif win_over_greece_s1 is None or win_over_greece_s2 is None:\n print(\"Neutral\")\nelif win_over_greece_s1 < win_over_greece_s2:\n print(\"Entailment\")\nelif win_over_greece_s1 != win_over_greece_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Dravid paid a total of $ 38 , excluding sales tax , to rent the tool , for how many hours did she rent it ?, \"statement 2\" :If Dravid paid a total of $ more than 38 , excluding sales tax , to rent the tool , for how many hours did she rent it ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sales_tax_s1 = 38\nsales_tax_s2 = 0 \nsales_tax_s2 > 38\n\nif sales_tax_s1 is None or sales_tax_s2 is None:\n print(\"Neutral\")\nelif sales_tax_s1 > sales_tax_s2:\n print(\"Entailment\")\nelif sales_tax_s1 != sales_tax_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Murali travelled from city A to city B at a speed of less than 80 kmph and from city B to city C at 60 kmph, \"statement 2\" :Murali travelled from city A to city B at a speed of 40 kmph and from city B to city C at 60 kmph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_s1 = 0\nspeed_s1 < 80\nspeed_s2 = 40\n\nspeed_s1 = None\nspeed_s2 = None\n\nif speed_s1 is None or speed_s2 is None:\n print(\"Neutral\")\nelif speed_s1 < speed_s2:\n print(\"Entailment\")\nelif speed_s1 != speed_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Meanwhile , in Spain , Getafe reached the Copa del Rey semifinals despite losing 1-0 at home to Real Mallorca ., \"statement 2\" :Getafe through to the Spanish Cup semifinals despite losing 1-0 to Mallorca, \"options: \" Entailment or neutral?", + "Output Program": [ + "losing_home_s1 = 1-0\nlosing_home_s2 = 1-0\n\nif losing_home_s1 is None or losing_home_s2 is None:\n print(\"Neutral\")\nelif losing_home_s1 == losing_home_s2:\n print(\"Entailment\")\nelif losing_home_s1 != losing_home_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": City A to city B , Andrew drove for less than 8 hour at 50 mph and for 3 hours at 60 mph, \"statement 2\" :City A to city B , Andrew drove for 1 hour at 50 mph and for 3 hours at 60 mph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_s1 = 0\nspeed_s1 < 8\nspeed_s2 = 1\n\nspeed_s1 = None\nspeed_s2 = None\n\nif speed_s1 is None or speed_s2 is None:\n print(\"Neutral\")\nelif speed_s1 < speed_s2:\n print(\"Entailment\")\nelif speed_s1 != speed_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Ganesh covers the distance from X to Y at an average speed of 44 Km / hr, \"statement 2\" :Ganesh covers the distance from X to Y at an average speed of 84 Km / hr, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_from_x_and_y_s1 = 44\ndistance_from_x_and_y_s2 = 84\n\nif distance_from_x_and_y_s1 is None or distance_from_x_and_y_s2 is None:\n print(\"Neutral\")\nelif distance_from_x_and_y_s1 == distance_from_x_and_y_s2:\n print(\"Entailment\")\nelif distance_from_x_and_y_s1 != distance_from_x_and_y_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ratio of present ages of Nisha and Shilpa is more than 3 : 8 respectively, \"statement 2\" :The ratio of present ages of Nisha and Shilpa is 7 : 8 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_of_ages_s1 = 0\nratio_of_ages_s1 > 3/8\nratio_of_ages_s2 = 7/8\n\nratio_of_ages_s1 = None\nratio_of_ages_s2 = None\n\nif ratio_of_ages_s1 is None or ratio_of_ages_s2 is None:\n print(\"Neutral\")\nelif ratio_of_ages_s1 < ratio_of_ages_s2:\n print(\"Entailment\")\nelif ratio_of_ages_s1 != ratio_of_ages_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Caleb spends $ 64.50 on 50 hamburgers for the marching band, \"statement 2\" :Caleb spends $ 64.50 on less than 80 hamburgers for the marching band, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "spends_hamburger_s1 = 50\nspends_hamburger_s2 = 0\nspends_hamburger_s2 < 80\n\nif spends_hamburger_s1 is None or spends_hamburger_s2 is None:\n print(\"Neutral\")\nelif spends_hamburger_s1 > spends_hamburger_s2:\n print(\"Entailment\")\nelif spends_hamburger_s1 != spends_hamburger_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Winson will arrange 6 people of 6 different heights for photograph by placing them in two rows of three so that each person in the first row is standing is standing in front of someone in the second row, \"statement 2\" :Winson will arrange less than 6 people of 6 different heights for photograph by placing them in two rows of three so that each person in the first row is standing is standing in front of someone in the second row, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_of_different_heights_s1 = 6\npeople_of_different_heights_s2 = 0\npeople_of_different_heights_s2 < 6\n\nif people_of_different_heights_s1 is None or people_of_different_heights_s2 is None:\n print(\"Neutral\")\nelif people_of_different_heights_s1 == people_of_different_heights_s2:\n print(\"Entailment\")\nelif people_of_different_heights_s1 != people_of_different_heights_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the probability that Catherine is adjacent to Caroline is less than 7 / 9 , then what is the value of n ?, \"statement 2\" :If the probability that Catherine is adjacent\nto Caroline is 1 / 9 , then what is the value of n ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "probability_s1 = 0\nprobability_s1 < 7/9\nprobability_s2 = 1/9\n\nprobability_s1 = None\nprobability_s2 = None\n\nif probability_s1 is None or probability_s2 is None:\n print(\"Neutral\")\nelif probability_s1 < probability_s2:\n print(\"Entailment\")\nelif probability_s1 != probability_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": David obtained 76 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"statement 2\" :David obtained more than 26 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "david_obtained_marks_s1 = 375\ndavid_obtained_marks_s2 = 0\ndavid_obtained_marks_s2 > 375\n\nif david_obtained_marks_s1 is None or david_obtained_marks_s2 is None:\n print(\"Neutral\")\nelif david_obtained_marks_s1 > david_obtained_marks_s2:\n print(\"Entailment\")\nelif david_obtained_marks_s1 != david_obtained_marks_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Last year less than 38 members of a certain club traveled to England , 28 members traveled to France , and 30 members traveled to Italy, \"statement 2\" :Last year 28 members of a certain club traveled to England , 28 members traveled to France , and 30 members traveled to Italy, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "members_travelled_to_england_s1 = 0\nmembers_travelled_to_england_s1 < 38\nmembers_travelled_to_england_s2 = 28\n\nmembers_travelled_to_england_s1 = None\nmembers_travelled_to_england_s2 = None\n\nif members_travelled_to_england_s1 is None or members_travelled_to_england_s2 is None:\n print(\"Neutral\")\nelif members_travelled_to_england_s1 < members_travelled_to_england_s2:\n print(\"Entailment\")\nelif members_travelled_to_england_s1 != members_travelled_to_england_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Raman mixed 24 kg of butter at Rs, \"statement 2\" :Raman mixed less than 34 kg of butter at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "raman_mixed_butter_s1 = 24\nraman_mixed_butter_s2 = 0\nraman_mixed_butter_s2 < 34\n\nif raman_mixed_butter_s1 is None or raman_mixed_butter_s2 is None:\n print(\"Neutral\")\nelif raman_mixed_butter_s1 > raman_mixed_butter_s2:\n print(\"Entailment\")\nelif raman_mixed_butter_s1 != raman_mixed_butter_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Gino has 63.0 popsicle sticks and I have 50.0 popsicle sticks, \"statement 2\" :The sum of our popsicle sticks is 113.0, \"options: \" Entailment or contradiction?", + "Output Program": [ + "popsickle_sticks_s1 = 63 + 50\npopsickle_sticks_s2 = 113\n\nif popsickle_sticks_s1 is None or popsickle_sticks_s2 is None:\n print(\"Neutral\")\nelif popsickle_sticks_s1 == popsickle_sticks_s2:\n print(\"Entailment\")\nelif popsickle_sticks_s1 != popsickle_sticks_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Jim pays less than 70 dollars , how much will Joe have to pay ?, \"statement 2\" :If Jim pays 30 dollars , how much will Joe have to pay ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jim_pays_dollar_s1 = 0\njim_pays_dollar_s1 < 70\njim_pays_dollar_s2 = 30\n\njim_pays_dollar_s1 = None\njim_pays_dollar_s2 = None\n\nif jim_pays_dollar_s1 is None or jim_pays_dollar_s2 is None:\n print(\"Neutral\")\nelif jim_pays_dollar_s1 < jim_pays_dollar_s2:\n print(\"Entailment\")\nelif jim_pays_dollar_s1 != jim_pays_dollar_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If less than 7 years are subtracted from the present age of Arun and the remainder is divided by 18 , then the present age of his grandson Gokul is obtained, \"statement 2\" :If 6 years are subtracted from the present age of Arun and the remainder is divided by 18 , then the present age of his grandson Gokul is obtained, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "present_age_s1 = 0\npresent_age_s1 < 7\npresent_age_s2 = 6\n\npresent_age_s1 = None\npresent_age_s2 = None\n\nif present_age_s1 is None or present_age_s2 is None:\n print(\"Neutral\")\nelif present_age_s1 < present_age_s2:\n print(\"Entailment\")\nelif present_age_s1 != present_age_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Cade had 87.0 marbles and he got 8.0 from Dylan, \"statement 2\" :He has 95.0 marbles now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "marbles_cade_have_s1 = 87 + 8\nmarbles_cade_have_s2 = 95\n\nif marbles_cade_have_s1 is None or marbles_cade_have_s2 is None:\n print(\"Neutral\")\nelif marbles_cade_have_s1 == marbles_cade_have_s2:\n print(\"Entailment\")\nelif marbles_cade_have_s1 != marbles_cade_have_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The next day , Alice took the test , and with this grade included , the new average was 79, \"statement 2\" :The next day , Alice took the test , and with this grade included , the new average was 39, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "new_average_s1 = 79\nnew_average_s2 = 39\n\nif new_average_s1 is None or new_average_s2 is None:\n print(\"Neutral\")\nelif new_average_s1 == new_average_s2:\n print(\"Entailment\")\nelif new_average_s1 != new_average_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained 73 , 69 , 92 , 64 and 82 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained 33 , 69 , 92 , 64 and 82 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_obtained_s1 = 73 + 69 + 92 +64 + 82\nmarks_obtained_s2 = 33 + 69 + 92 +64 + 82\n\nif marks_obtained_s1 is None or marks_obtained_s2 is None:\n print(\"Neutral\")\nelif marks_obtained_s1 == marks_obtained_s2:\n print(\"Entailment\")\nelif marks_obtained_s1 != marks_obtained_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John purchased more than 3 kg of grapes at the rate of 70 per kg and 9 kg of mangoes at the rate of 55 per kg, \"statement 2\" :John purchased 8 kg of grapes at the rate of 70 per kg and 9 kg of mangoes at the rate of 55 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "weight_of_grapes_s1 = 0\nweight_of_grapes_s1 > 3\nweight_of_grapes_s2 = 8\n\nweight_of_grapes_s1 = None\nweight_of_grapes_s2 = None\n\nif weight_of_grapes_s1 is None or weight_of_grapes_s2 is None:\n print(\"Neutral\")\nelif weight_of_grapes_s1 < weight_of_grapes_s2:\n print(\"Entailment\")\nelif weight_of_grapes_s1 != weight_of_grapes_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He gave 19 toys to his brother Gourav , while Gourav playing all but 6 got destroyed, \"statement 2\" :He gave less than 89 toys to his brother Gourav , while Gourav playing all but 6 got destroyed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "toys_gave_to_brother_s1 = 19\ntoys_gave_to_brother_s2 = 0\ntoys_gave_to_brother_s2 < 89\n\nif toys_gave_to_brother_s1 is None or toys_gave_to_brother_s2 is None:\n print(\"Neutral\")\nelif toys_gave_to_brother_s1 > toys_gave_to_brother_s2:\n print(\"Entailment\")\nelif toys_gave_to_brother_s1 != toys_gave_to_brother_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Veena ranks more than 43 rd from the top in a class of 182, \"statement 2\" :Veena ranks 73 rd from the top in a class of 182, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "veena_ranks_s1 = 0\nveena_ranks_s1 > 43\nveena_ranks_s2 = 73\n\nveena_ranks_s1 = None\nveena_ranks_s2 = None\n\nif veena_ranks_s1 is None or veena_ranks_s2 is None:\n print(\"Neutral\")\nelif veena_ranks_s1 < veena_ranks_s2:\n print(\"Entailment\")\nelif veena_ranks_s1 != veena_ranks_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 90 students represent x percent of the boys at Jones Elementary School, \"statement 2\" :70 students represent x percent of the boys at Jones Elementary School, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "student_represent_percentage_s1 = 90\nstudent_represent_percentage_s2 = 70\n\nif student_represent_percentage_s1 is None or student_represent_percentage_s2 is None:\n print(\"Neutral\")\nelif student_represent_percentage_s1 == student_represent_percentage_s2:\n print(\"Entailment\")\nelif student_represent_percentage_s1 != student_represent_percentage_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The average number of shirts with Salman , Ambani and Dalmiya is 54 , if all of them reached a shopping mall in Delhi and purchased 8 shirts each of them then average number of shirt each of them now has, \"statement 2\" :The average number of shirts with Salman , Ambani and Dalmiya is more than 24 , if all of them reached a shopping mall in Delhi and purchased 8 shirts each of them then average number of shirt each of them now has, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_number_shirts_s1 = 54\naverage_number_shirts_s2 = 0\naverage_number_shirts_s2 > 24\n\nif average_number_shirts_s1 is None or average_number_shirts_s2 is None:\n print(\"Neutral\")\nelif average_number_shirts_s1 > average_number_shirts_s2:\n print(\"Entailment\")\nelif average_number_shirts_s1 != average_number_shirts_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nitin borrowed some money at the rate of 6 % p, \"statement 2\" :Nitin borrowed some money at the rate of more than 2 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "nitin_borrowed_money_s1 = 6\nnitin_borrowed_money_s2 = 0\nnitin_borrowed_money_s2 > 2\n\nif nitin_borrowed_money_s1 is None or nitin_borrowed_money_s2 is None:\n print(\"Neutral\")\nelif nitin_borrowed_money_s1 > nitin_borrowed_money_s2:\n print(\"Entailment\")\nelif nitin_borrowed_money_s1 != nitin_borrowed_money_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Last year no members of the club traveled to both England and France , 6 members traveled to both England and Italy , and 12 members traveled to both France and Italy, \"statement 2\" :Last year no members of the club traveled to both England and France , less than 7 members traveled to both England and Italy , and 12 members traveled to both France and Italy, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "members_travelled_to_both_england_and_italy_s1 = 6\nmembers_travelled_to_both_england_and_italy_s2 = 0\nmembers_travelled_to_both_england_and_italy_s2 < 7\n\nif members_travelled_to_both_england_and_italy_s1 is None or members_travelled_to_both_england_and_italy_s2 is None:\n print(\"Neutral\")\nelif members_travelled_to_both_england_and_italy_s1 > members_travelled_to_both_england_and_italy_s2:\n print(\"Entailment\")\nelif members_travelled_to_both_england_and_italy_s1 != members_travelled_to_both_england_and_italy_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John traveled 80 % of the way from Yellow - town to Green - fields by train at an average speed of 80 miles per hour, \"statement 2\" :John traveled 20 % of the way from Yellow - town to Green - fields by train at an average speed of 80 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_travelled_by_john_s1 = 80\ndistance_travelled_by_john_s2 = 20\n\nif distance_travelled_by_john_s1 is None or distance_travelled_by_john_s2 is None:\n print(\"Neutral\")\nelif distance_travelled_by_john_s1 == distance_travelled_by_john_s2:\n print(\"Entailment\")\nelif distance_travelled_by_john_s1 != distance_travelled_by_john_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mike had 34.0 peaches left at his roadside fruit stand and he went to the orchard and picked 86.0 more peaches to stock up the stand, \"statement 2\" :He has 115.0 peaches now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "peaches_left_with_mike_s1 = 34 + 86\npeaches_left_with_mike_s2 = 115\n\nif peaches_left_with_mike_s1 is None or peaches_left_with_mike_s2 is None:\n print(\"Neutral\")\nelif peaches_left_with_mike_s1 == peaches_left_with_mike_s2 :\n print(\"Entailment\")\nelif peaches_left_with_mike_s1 != peaches_left_with_mike_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jane is currently less than 54 years old , and she stopped baby - sitting 12 years ago, \"statement 2\" :Jane is currently 34 years old , and she stopped baby - sitting 12 years ago, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_s1 = 0\nyears_s1 < 54\nyears_s2 = 34\n\nyears_s1 = None\nyears_s2 = None\n\nif years_s1 is None or years_s2 is None:\n print(\"Neutral\")\nelif years_s1 < years_s2:\n print(\"Entailment\")\nelif years_s1 != years_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sara has 31.0 red and 15.0 green balloons and she gave Sandy 24.0 red balloons , \"statement 2\" :She has 7.0 red balloons left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "sara_has_ballon_s1 = 31 - 24\nsara_has_ballon_s2 = 7\n\nif sara_has_ballon_s1 is None or sara_has_ballon_s2 is None:\n print(\"Neutral\")\nelif sara_has_ballon_s1 > sara_has_ballon_s2 :\n print(\"Entailment\")\nelif sara_has_ballon_s1 != sara_has_ballon_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shekar scored 76 , 65 , 82 , 67 and 55 marks in Mathematics , Science , Social studies , English and Biology respectively, \"statement 2\" :Shekar scored 66 , 65 , 82 , 67 and 55 marks in Mathematics , Science , Social studies , English and Biology respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shekar_scores_in_maths_s1 = 76\nshekar_scores_in_maths_s2 = 66\n\nif shekar_scores_in_maths_s1 is None or shekar_scores_in_maths_s2 is None:\n print(\"Neutral\")\nelif shekar_scores_in_maths_s1 == shekar_scores_in_maths_s2 :\n print(\"Entailment\")\nelif shekar_scores_in_maths_s1 != shekar_scores_in_maths_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Salley ' s internet provider offers unlimited traffic which costs $ 0.5 per day charged off at 12 a, \"statement 2\" :Salley ' s internet provider offers unlimited traffic which costs $ 0.5 per day charged off at 32 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "salley_per_day_charged_s1= 12\nsalley_per_day_charged_s2= 32\n\nif salley_per_day_charged_s1 is None or salley_per_day_charged_s2 is None:\n print(\"Neutral\")\nelif salley_per_day_charged_s1== salley_per_day_charged_s2:\n print(\"Entailment\")\nelif salley_per_day_charged_s1!= salley_per_day_charged_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 5 % people of a village in Sri Lanka died by bombardment , 20 % of the remainder left the village on account of fear, \"statement 2\" :4 % people of a village in Sri Lanka died by bombardment , 20 % of the remainder left the village on account of fear, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_died_by_bomb_s1= 5\npeople_died_by_bomb_s2= 4\n\nif people_died_by_bomb_s1 is None or people_died_by_bomb_s2 is None:\n print(\"Neutral\")\nelif people_died_by_bomb_s1== people_died_by_bomb_s2:\n print(\"Entailment\")\nelif people_died_by_bomb_s1!= people_died_by_bomb_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": out of them less than 50 % of the employees using i phone and out of them 12 % having BMW car out of them 70 % are boys, \"statement 2\" :out of them 40 % of the employees using i phone and out of them 12 % having BMW car out of them 70 % are boys, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "employees_using_iphone_s1 = 0\nemployees_using_iphone_s1 < 50\nemployees_using_iphone_s2 = 40\n\nemployees_using_iphone_s1 = None\nemployees_using_iphone_s2 = None\n\nif employees_using_iphone_s1 is None or employees_using_iphone_s2 is None:\n print(\"Neutral\")\nelif employees_using_iphone_s1 < employees_using_iphone_s2:\n print(\"Entailment\")\nelif employees_using_iphone_s1 != employees_using_iphone_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The Motion Picture Association of America ( MPAA ) said the civil suits would seek damages of up to $ 30,000 per film ., \"statement 2\" :The law states $ 30,000 damages can be sought per film ., \"options: \" Entailment or neutral?", + "Output Program": [ + "law_states_damages_s1 = 30000\nlaw_states_damages_s2 = 30000\n\nlaw_states_damages_s1 = None\nlaw_states_damages_s2 = None\n\nif law_states_damages_s1 is None or law_states_damages_s2 is None:\n print(\"Neutral\")\nelif law_states_damages_s1 < law_states_damages_s2:\n print(\"Entailment\")\nelif law_states_damages_s1 != law_states_damages_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Vijay sells a cupboard at 14 % below cost price, \"statement 2\" :Vijay sells a cupboard at less than 24 % below cost price, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "vijay_sells_at_price_s1 = 14\nvijay_sells_at_price_s2 = 0\nvijay_sells_at_price_s2 < 24\n\nif vijay_sells_at_price_s1 is None or vijay_sells_at_price_s2 is None:\n print(\"Neutral\")\nelif vijay_sells_at_price_s1 < vijay_sells_at_price_s2 :\n print(\"Entailment\")\nelif vijay_sells_at_price_s1 != vijay_sells_at_price_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary works in a restaurant a maximum of 50 hours, \"statement 2\" :Mary works in a restaurant a maximum of less than 60 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mary_works_in_restaurant_s1 = 50\nmary_works_in_restaurant_s2 = 0\nmary_works_in_restaurant_s2 < 60\n\nif mary_works_in_restaurant_s1 is None or mary_works_in_restaurant_s2 is None:\n print(\"Neutral\")\nelif mary_works_in_restaurant_s1 > mary_works_in_restaurant_s2 :\n print(\"Entailment\")\nelif mary_works_in_restaurant_s1 != mary_works_in_restaurant_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Diane find less than 7 cans of paint are just enough to paint one third of her room, \"statement 2\" :Diane find 6 cans of paint are just enough to paint one third of her room, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "can_of_paint_s1 = 0\ncan_of_paint_s1 < 7\ncan_of_paint_s2 = 6\n\ncan_of_paint_s1 = None\ncan_of_paint_s2 = None\n\nif can_of_paint_s1 is None or can_of_paint_s2 is None:\n print(\"Neutral\")\nelif can_of_paint_s1 < can_of_paint_s2:\n print(\"Entailment\")\nelif can_of_paint_s1 != can_of_paint_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Q : Robert purchased $ 1000 worth of US saving bonds, \"statement 2\" :Q : Robert purchased $ less than 6000 worth of US saving bonds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "robert_purchased_bonds_for_s1= 1000\nrobert_purchased_bonds_for_s2= 0\nrobert_purchased_bonds_for_s2 < 6000\n\nif robert_purchased_bonds_for_s1 is None or robert_purchased_bonds_for_s2 is None:\n print(\"Neutral\")\nelif robert_purchased_bonds_for_s1 > robert_purchased_bonds_for_s2:\n print(\"Entailment\")\nelif robert_purchased_bonds_for_s1 != robert_purchased_bonds_for_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many possible ways can 2 girls ( Rebecca , Kate , Ashley ) go on a date with 3 boys ( Peter , Kyle , Sam ) ?, \"statement 2\" :How many possible ways can 1 girls ( Rebecca , Kate , Ashley ) go on a date with 3 boys ( Peter , Kyle , Sam ) ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_girls_can_go_on_date_s1 = 2\nnumber_of_girls_can_go_on_date_s2 = 1\n\nif number_of_girls_can_go_on_date_s1 is None or number_of_girls_can_go_on_date_s2 is None:\n print(\"Neutral\")\nelif number_of_girls_can_go_on_date_s1 == number_of_girls_can_go_on_date_s2 :\n print(\"Entailment\")\nelif number_of_girls_can_go_on_date_s1 != number_of_girls_can_go_on_date_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Since you ' re nice , you give John 6 baseball cards, \"statement 2\" :Since you ' re nice , you give John 5 baseball cards, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "baseball_given_to_john_s1 = 2\nbaseball_given_to_john_s2 = 1\n\nif baseball_given_to_john_s1 is None or baseball_given_to_john_s2 is None:\n print(\"Neutral\")\nelif baseball_given_to_john_s1 == baseball_given_to_john_s2 :\n print(\"Entailment\")\nelif baseball_given_to_john_s1 != baseball_given_to_john_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The X & co having such a sales structure out of their whole sales more than 40 % of the customers are corporate companies out of these 20 % of them are related to banking sector and 60 % of the corporate companies related to banking sector having their head quarters in USA, \"statement 2\" :The X & co having such a sales structure out of their whole sales 70 % of the customers are corporate companies out of these 20 % of them are related to banking sector and 60 % of the corporate companies related to banking sector having their head quarters in USA, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sales_s1 = 0\nsales_s1 > 40\nsales_s2 = 70\n\nsales_s1 = None\nsales_s2 = None\n\nif sales_s1 is None or sales_s2 is None:\n print(\"Neutral\")\nelif sales_s1 < sales_s2:\n print(\"Entailment\")\nelif sales_s1 != sales_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Peter bought an item at less than 50 % discount on its original price, \"statement 2\" :Peter bought an item at 20 % discount on its original price, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "discount_s1 = 0\ndiscount_s1 < 50\ndiscount_s2 = 20\n\ndiscount_s1 = None\ndiscount_s2 = None\n\nif discount_s1 is None or discount_s2 is None:\n print(\"Neutral\")\nelif discount_s1 < discount_s2:\n print(\"Entailment\")\nelif discount_s1 != discount_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": From a group of 6 boys & 4 girls a Committee of 4 persons is to be formed, \"statement 2\" :From a group of more than 2 boys & 4 girls a Committee of 4 persons is to be formed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boys_from_group_s1 = 6\nboys_from_group_s2= 0\nboys_from_group_s2> 2\n\nif boys_from_group_s1 is None or boys_from_group_s2 is None:\n print(\"Neutral\")\nelif boys_from_group_s1 > boys_from_group_s2:\n print(\"Entailment\")\nelif boys_from_group_s1 != boys_from_group_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Suresh can complete a job in 15 hours, \"statement 2\" :Suresh can complete a job in less than 45 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boys_from_group_s1 = 6\nboys_from_group_s2= 0\nboys_from_group_s2> 2\n\nif boys_from_group_s1 is None or boys_from_group_s2 is None:\n print(\"Neutral\")\nelif boys_from_group_s1 > boys_from_group_s2:\n print(\"Entailment\")\nelif boys_from_group_s1 != boys_from_group_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Six years ago , the ratio of ages of Kunal and Sagar was 6 : 5, \"statement 2\" :Six years ago , the ratio of ages of Kunal and Sagar was less than 6 : 5, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_of_age_of_kunal_and_sagar_s1 = 6/5\nratio_of_age_of_kunal_and_sagar_s2 = 0\nratio_of_age_of_kunal_and_sagar_s2 < 6/5\n\nif ratio_of_age_of_kunal_and_sagar_s1 is None or ratio_of_age_of_kunal_and_sagar_s2 is None:\n print(\"Neutral\")\nelif ratio_of_age_of_kunal_and_sagar_s1 == ratio_of_age_of_kunal_and_sagar_s2 :\n print(\"Entailment\")\nelif ratio_of_age_of_kunal_and_sagar_s1 != ratio_of_age_of_kunal_and_sagar_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jessop also received an $ 8,000 fine , said Sheriff David Doran , of Schleicher County , Texas ., \"statement 2\" :Jessop must also pay $ 8,000 fine, \"options: \" Entailment or neutral?", + "Output Program": [ + "jessop_received_fine= 8000\njessop_pays_fine = 8000\n\nif jessop_received_fine is None or jessop_pays_fine is None:\n print(\"Neutral\")\nelif jessop_received_fine == jessop_pays_fine :\n print(\"Entailment\")\nelif jessop_received_fine!= jessop_pays_fine :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Three people in Raleigh were killed in mobile homes that were destroyed , the weather service said ., \"statement 2\" :At least 7 people are killed in North Carolina , the NWS says, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_killed_in_home = 3\npeople_killed_in_north_california = 0\npeople_killed_in_north_california > 7\n\npeople_killed_in_home = None\npeople_killed_in_north_california = None\n\nif people_killed_in_home is None or people_killed_in_north_california is None:\n print(\"Neutral\")\nelif people_killed_in_home < people_killed_in_north_california :\n print(\"Entailment\")\nelif people_killed_in_home != people_killed_in_north_california :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If bonds are sold in $ 50 or $ 100 denominations only , which of the following CAN NOT be the number of US saving bonds that Robert purchased ?, \"statement 2\" :If bonds are sold in $ 20 or $ 100 denominations only , which of the following CAN NOT be the number of US saving bonds that Robert purchased ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bonds_sold_s1= 50\nbonds_sold_s2 = 20\n\nif bonds_sold_s1 is None or bonds_sold_s2 is None:\n print(\"Neutral\")\nelif bonds_sold_s1 == bonds_sold_s2 :\n print(\"Entailment\")\nelif bonds_sold_s1 != bonds_sold_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If 61 people have visited both Iceland and Norway , how many people have visited neither country ?, \"statement 2\" :If less than 71 people have visited both Iceland and Norway , how many people have visited neither country ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_od_people_visitied_iceland_norway_s1 = 61\nnumber_od_people_visitied_iceland_norway_s2 = 0\nnumber_od_people_visitied_iceland_norway_s2 < 71\n\nif number_od_people_visitied_iceland_norway_s1 is None or number_od_people_visitied_iceland_norway_s2 is None:\n print(\"Neutral\")\nelif number_od_people_visitied_iceland_norway_s1 > number_od_people_visitied_iceland_norway_s2 :\n print(\"Entailment\")\nelif number_od_people_visitied_iceland_norway_s1 != number_od_people_visitied_iceland_norway_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Melanie had 7.0 dimes in her bank and her dad gave her 8.0 dimes, and her mother gave her 4.0 dimes , \"statement 2\" :Melanie has 18.0 dimes now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "bonds_sold_s1= 50\nbonds_sold_s2 = 20\n\nif bonds_sold_s1 is None or bonds_sold_s2 is None:\n print(\"Neutral\")\nelif bonds_sold_s1 == bonds_sold_s2 :\n print(\"Entailment\")\nelif bonds_sold_s1 != bonds_sold_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Martha has more than 1 dogs and 5 cats, \"statement 2\" :Martha has 5 dogs and 5 cats, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_dogs_martha_has_s1 = 0\nnumber_of_dogs_martha_has_s1 > 5\nnumber_of_dogs_martha_has_s2 = 5\n\nnumber_of_dogs_martha_has_s1 = None\nnumber_of_dogs_martha_has_s2 = None\n\nif number_of_dogs_martha_has_s1 is None or number_of_dogs_martha_has_s2 is None:\n print(\"Neutral\")\nelif number_of_dogs_martha_has_s1 < number_of_dogs_martha_has_s2 :\n print(\"Entailment\")\nelif number_of_dogs_martha_has_s1 != number_of_dogs_martha_has_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joe \u2019 s average ( arithmetic mean ) test score across 4 equally weighted tests was 70, \"statement 2\" :Joe \u2019 s average ( arithmetic mean ) test score across less than 4 equally weighted tests was 70, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "joe_average_in_arithmetic_s1 = 4\njoe_average_in_arithmetic_s2 = 0\njoe_average_in_arithmetic_s2 < 4\n\nif joe_average_in_arithmetic_s1 is None or joe_average_in_arithmetic_s2 is None:\n print(\"Neutral\")\nelif joe_average_in_arithmetic_s1 < joe_average_in_arithmetic_s2 :\n print(\"Entailment\")\nelif joe_average_in_arithmetic_s1 != joe_average_in_arithmetic_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Treacherous currents took at least four lives on the Alabama Gulf Coast and led Florida officials to shut down a popular beach ., \"statement 2\" :Rip currents kill four in Alabama , close beaches in Florida, \"options: \" Entailment or neutral?", + "Output Program": [ + "life_taken_on_alabama_beach_s1 = 0\nlife_taken_on_alabama_beach_s1 > 4\nlife_taken_on_alabama_beach_s1 = 4\n\nif life_taken_on_alabama_beach_s1 is None or life_taken_on_alabama_beach_s1 is None:\n print(\"Neutral\")\nelif life_taken_on_alabama_beach_s1 < life_taken_on_alabama_beach_s1 :\n print(\"Entailment\")\nelif life_taken_on_alabama_beach_s1 != life_taken_on_alabama_beach_s1 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jack and Christina are standing 150 feet apart on a level surface, \"statement 2\" :Jack and Christina are standing 250 feet apart on a level surface, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_between_jack_and_christinia_s1 = 150\ndistance_between_jack_and_christinia_s2 = 250\n\nif distance_between_jack_and_christinia_s1 is None or distance_between_jack_and_christinia_s2 is None:\n print(\"Neutral\")\nelif distance_between_jack_and_christinia_s1 == distance_between_jack_and_christinia_s2 :\n print(\"Entailment\")\nelif distance_between_jack_and_christinia_s1 != distance_between_jack_and_christinia_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In Winchard ' s company 60 % of the employees earn less than $ 50,000 a year , 60 % of the employees earn more than $ 40,000 a year , 11 % of the employees earn $ 43,000 a year and 5 % of the employees earn $ 49,000 a year, \"statement 2\" :In Winchard ' s company 30 % of the employees earn less than $ 50,000 a year , 60 % of the employees earn more than $ 40,000 a year , 11 % of the employees earn $ 43,000 a year and 5 % of the employees earn $ 49,000 a year, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "employee_earns_less_amount_s1 = 60\nemployee_earns_less_amount_s2 = 30\n\nif employee_earns_less_amount_s1 is None or employee_earns_less_amount_s2 is None:\n print(\"Neutral\")\nelif employee_earns_less_amount_s1 == employee_earns_less_amount_s2 :\n print(\"Entailment\")\nelif employee_earns_less_amount_s1 != employee_earns_less_amount_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The association says ongoing projects in Libya are worth $ 36.4 billion ., \"statement 2\" :Ongoing construction projects in Libya estimated to be worth $ 36.4 billion, \"options: \" Entailment or neutral?", + "Output Program": [ + "cost_of_project_s1 = 36.4\ncost_of_project_s2 = 36.4\n\nif cost_of_project_s1 is None or cost_of_project_s2 is None:\n print(\"Neutral\")\nelif cost_of_project_s1 == cost_of_project_s2 :\n print(\"Entailment\")\nelif cost_of_project_s1 != cost_of_project_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 3 friends A , B , C went for week end party to McDonald ' s restaurant and there they measure there weights in some order in 7 rounds, \"statement 2\" :7 friends A , B , C went for week end party to McDonald ' s restaurant and there they measure there weights in some order in 7 rounds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_friends_weighs_s1 = 3\nnumber_of_friends_weighs_s2 = 7\n\nif number_of_friends_weighs_s1 is None or number_of_friends_weighs_s2 is None:\n print(\"Neutral\")\nelif number_of_friends_weighs_s1 == number_of_friends_weighs_s2:\n print(\"Entailment\")\nelif number_of_friends_weighs_s1 != number_of_friends_weighs_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Last week James worked a total of 41 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"statement 2\" :Last week James worked a total of 21 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_hours_james_works_s1 = 41\nnumber_of_hours_james_works_s2 = 21\n\nif number_of_hours_james_works_s1 is None or number_of_hours_james_works_s2 is None:\n print(\"Neutral\")\nelif number_of_hours_james_works_s1 == number_of_hours_james_works_s2 :\n print(\"Entailment\")\nelif number_of_hours_james_works_s1 != number_of_hours_james_works_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": It should be placed 75 to 80 inches above the floor and , like all vanity lighting , contain at least 150 watts -- ideally spread over a fixture that 's at least 24 inches long so that the light will wash evenly over the hair and face ., \"statement 2\" :Bath lighting should be at least 150 watts, \"options: \" Entailment or neutral?", + "Output Program": [ + "powerof_light_s1 = 150\npowerof_light_s2 = 0\npowerof_light_s2 > 150\n\nif powerof_light_s1 is None or powerof_light_s2 is None:\n print(\"Neutral\")\nelif powerof_light_s1 > powerof_light_s2 :\n print(\"Entailment\")\nelif powerof_light_s1 != powerof_light_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Two dogsled teams raced across a less than 400 mile course in Wyoming, \"statement 2\" :Two dogsled teams raced across a 300 mile course in Wyoming, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "length_of_race_course_s1 = 0\nlength_of_race_course_s1 < 400\nlength_of_race_course_s2 = 300\n\nlength_of_race_course_s1 = None\nlength_of_race_course_s2 = None\n\nif length_of_race_course_s1 is None or length_of_race_course_s2 is None:\n print(\"Neutral\")\nelif length_of_race_course_s1 < length_of_race_course_s2 :\n print(\"Entailment\")\nelif length_of_race_course_s1 != length_of_race_course_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Murali travelled from city A to city B at a speed of 40 kmph and from city B to city C at 60 kmph, \"statement 2\" :Murali travelled from city A to city B at a speed of 10 kmph and from city B to city C at 60 kmph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "traveling_at_speed_at_s1 = 40\ntraveling_at_speed_at_s2 = 60\n\nif traveling_at_speed_at_s1 is None or traveling_at_speed_at_s2 is None:\n print(\"Neutral\")\nelif traveling_at_speed_at_s1 == traveling_at_speed_at_s2 :\n print(\"Entailment\")\nelif traveling_at_speed_at_s1 != traveling_at_speed_at_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Jake is less than 655 km away from Kay at 6 am , and also 155 km away from Kay at 11 am , then how fast is Kay driving ( in kilometers per hour ) ?, \"statement 2\" :If Jake is 155 km away from Kay at 6 am , and also 155 km away from Kay at 11 am , then how fast is Kay driving ( in kilometers per hour ) ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_between_jake_and_katy_s1 = 0\ndistance_between_jake_and_katy_s1 < 150\ndistance_between_jake_and_katy_s2 = 250\n\ndistance_between_jake_and_katy_s1 = None\ndistance_between_jake_and_katy_s2 = None\n\nif distance_between_jake_and_katy_s1 is None or distance_between_jake_and_katy_s2 is None:\n print(\"Neutral\")\nelif distance_between_jake_and_katy_s1 == distance_between_jake_and_katy_s2 :\n print(\"Entailment\")\nelif distance_between_jake_and_katy_s1 != distance_between_jake_and_katy_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a shop , 40 % socks are white and rest are black, \"statement 2\" :In a shop , less than 50 % socks are white and rest are black, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "percentage_of_white_socks_s1 = 40\npercentage_of_white_socks_s2 = 0\npercentage_of_white_socks_s2 < 50\n\n\nif percentage_of_white_socks_s1 is None or percentage_of_white_socks_s2 is None:\n print(\"Neutral\")\nelif percentage_of_white_socks_s1 > percentage_of_white_socks_s2 :\n print(\"Entailment\")\nelif percentage_of_white_socks_s1 != percentage_of_white_socks_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dawson has to secure more than 20 % marks to clear his exam of class 8 th . He got 30 marks and failed by 36 marks . What is the maximum marks ?, \"statement 2\" :Dawson has to secure 30 % marks to clear his exam of class 8 th .\nHe got 30 marks and failed by 36 marks .\nWhat is the maximum marks ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "minimum_marks_required_s1 = 0\nminimum_marks_required_s1 > 20\nminimum_marks_required_s2 = 300\n\nlength_of_race_course_s1 = None\nlength_of_race_course_s2 = None\n\nif length_of_race_course_s1 is None or length_of_race_course_s2 is None:\n print(\"Neutral\")\nelif length_of_race_course_s1 < length_of_race_course_s2 :\n print(\"Entailment\")\nelif length_of_race_course_s1 != length_of_race_course_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At Veridux Corporation , there are 215 employees, \"statement 2\" :At Veridux Corporation , there are less than 815 employees, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_employees_at_veridux_s1 = 215\nnumber_of_employees_at_veridux_s2 = 0\nnumber_of_employees_at_veridux_s2 < 815\n\n\nif number_of_employees_at_veridux_s1 is None or number_of_employees_at_veridux_s2 is None:\n print(\"Neutral\")\nelif number_of_employees_at_veridux_s1 > number_of_employees_at_veridux_s2 :\n print(\"Entailment\")\nelif number_of_employees_at_veridux_s1 != number_of_employees_at_veridux_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sacha runs at a constant speed of 6 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"statement 2\" :Sacha runs at a constant speed of 3 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "spped_of_sacha_s1 = 6\nspped_of_sacha_s2 = 3\n\nif spped_of_sacha_s1 is None or spped_of_sacha_s2 is None :\n print(\"Neutral\")\nelif spped_of_sacha_s1 == spped_of_sacha_s2 :\n print(\"Entailment\")\nelif spped_of_sacha_s1 != spped_of_sacha_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": James celebrated his less than 43 rd Birthday on 2016 but he was strangely born in 1950, \"statement 2\" :James celebrated his 23 rd Birthday on 2016 but he was strangely born in 1950, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "minimum_marks_required_s1 = 0\nminimum_marks_required_s1 > 20\nminimum_marks_required_s2 = 300\n\nlength_of_race_course_s1 = None\nlength_of_race_course_s2 = None\n\nif length_of_race_course_s1 is None or length_of_race_course_s2 is None:\n print(\"Neutral\")\nelif length_of_race_course_s1 < length_of_race_course_s2 :\n print(\"Entailment\")\nelif length_of_race_course_s1 != length_of_race_course_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Aarti had prior experience in that route and mentioned that the speed of stream was 4 kmph, \"statement 2\" :Aarti had prior experience in that route and mentioned that the speed of stream was more than 2 kmph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_of_stream_s1 = 215\nspeed_of_stream_s2 = 0\nspeed_of_stream_s2 > 2\n\nif speed_of_stream_s1 is None or speed_of_stream_s2 is None:\n print(\"Neutral\")\nelif speed_of_stream_s1 > speed_of_stream_s2 :\n print(\"Entailment\")\nelif speed_of_stream_s1 != speed_of_stream_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mike picked 7.0 apples , Nancy ate 3.0 apples , and Keith picked 6.0 apples and 4.0 pears , at the farm ., \"statement 2\" :10.0 apples were left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_apples_s1 = 7-3+6\ntotal_apples_s2 = 10\n\n\nif total_apples_s1 is None or total_apples_s2 is None:\n print(\"Neutral\")\nelif total_apples_s1 == total_apples_s2 :\n print(\"Entailment\")\nelif total_apples_s1 != total_apples_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jaime earned enough money by selling seashells at less than 70 cents each to buy several used paperback books at 55 cents each, \"statement 2\" :Jaime earned enough money by selling seashells at 30 cents each to buy several used paperback books at 55 cents each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "minimum_marks_required_s1 = 0\nminimum_marks_required_s1 > 20\nminimum_marks_required_s2 = 300\n\nminimum_marks_required_s1 = None\nminimum_marks_required_s2 = None\n\nif minimum_marks_required_s1 is None or minimum_marks_required_s2 is None:\n print(\"Neutral\")\nelif minimum_marks_required_s1 < minimum_marks_required_s2 :\n print(\"Entailment\")\nelif minimum_marks_required_s1 != minimum_marks_required_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Raviraj invested an amount of 10000000 at compound interest rate of 10 pcpa for a period of three years, \"statement 2\" :Raviraj invested an amount of 30000000 at compound interest rate of 10 pcpa for a period of three years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_invested_s1 = 10000000 \namount_invested_s2 = 30000000 \n\nif amount_invested_s1 is None or amount_invested_s2 is None :\n print(\"Neutral\")\nelif amount_invested_s1 == amount_invested_s2 :\n print(\"Entailment\")\nelif amount_invested_s1 != amount_invested_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": James can finish a job in 20 dasy he worked for 10 days alone and completed the remaining part working with David 2 days how many days would both David and James together take to complete the entire job ?, \"statement 2\" :James can finish a job in 50 dasy he worked for 10 days alone and completed the remaining part working with David 2 days how many days would both David and James together take to complete the entire job ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_taken_by_james_s1 = 20\ndays_taken_by_james_s2 = 50\n\nif days_taken_by_james_s1 is None or days_taken_by_james_s2 is None :\n print(\"Neutral\")\nelif days_taken_by_james_s1 == days_taken_by_james_s2 :\n print(\"Entailment\")\nelif days_taken_by_james_s1 != days_taken_by_james_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Today Jennifer , who is less than 60 years old , and her daughter , who is 6 years old , celebrate their birthdays, \"statement 2\" :Today Jennifer , who is 30 years old , and her daughter , who is 6 years old , celebrate their birthdays, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_of_jennifer_s1 = 0\nage_of_jennifer_s1 < 60\nage_of_jennifer_s2 = 30\n\nage_of_jennifer_s1 = None\nage_of_jennifer_s2 = None\n\nif age_of_jennifer_s1 is None or age_of_jennifer_s2 is None:\n print(\"Neutral\")\nelif age_of_jennifer_s1 < age_of_jennifer_s2 :\n print(\"Entailment\")\nelif age_of_jennifer_s1 != age_of_jennifer_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He works at it for 20 days and then Rajesh finished it in 30 days, \"statement 2\" :He works at it for 30 days and then Rajesh finished it in 30 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_taken_by_rajesh_to_complete_work_s1 = 20\ndays_taken_by_rajesh_to_complete_work_s2 = 30\n\nif days_taken_by_rajesh_to_complete_work_s1 is None or days_taken_by_rajesh_to_complete_work_s2 is None :\n print(\"Neutral\")\nelif days_taken_by_rajesh_to_complete_work_s1 == days_taken_by_rajesh_to_complete_work_s2 :\n print(\"Entailment\")\nelif days_taken_by_rajesh_to_complete_work_s1 != days_taken_by_rajesh_to_complete_work_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Wendy uploaded 79.0 pictures to Facebook on Monday and she uploaded 44.0 pictures to Facebook on Tuesday, then split all the pictures into 5.0 different albums, \"statement 2\" :24.6 pictures were in each album , \"options: \" Entailment or contradiction?", + "Output Program": [ + "speed_of_stream_s1 = 215\nspeed_of_stream_s2 = 0\nspeed_of_stream_s2 > 2\n\nif speed_of_stream_s1 is None or speed_of_stream_s2 is None:\n print(\"Neutral\")\nelif speed_of_stream_s1 > speed_of_stream_s2 :\n print(\"Entailment\")\nelif speed_of_stream_s1 != speed_of_stream_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mrs. Hilt impressed 2436.0 fans at the basketball game on Friday, and the fans were seated in equal groups on 3.0 sets of bleachers, \"statement 2\" :814.0 fans were on each set, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_number_of_bleaches_s1 = 2436 / 3\ntotal_number_of_bleaches_s2 = 10\n\n\nif total_number_of_bleaches_s1 is None or total_number_of_bleaches_s2 is None:\n print(\"Neutral\")\nelif total_number_of_bleaches_s1 == total_number_of_bleaches_s2 :\n print(\"Entailment\")\nelif total_number_of_bleaches_s1 != total_number_of_bleaches_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The Super Eagles had earlier booked their place in the final with a convincing 4-1 win over Mali in Durban ., \"statement 2\" :Nigeria thrashed Mali 4-1 in Durban to seal place in final, \"options: \" Entailment or neutral?", + "Output Program": [ + "win_over_mali_s1 = 4-1\nwin_over_mali_s2 = 4-1\n\nif win_over_mali_s1 is None or win_over_mali_s2 is None:\n print('neutral')\n\nelif win_over_mali_s1 == win_over_mali_s2:\n print('Entailment')\n\nelif win_over_mali_s1 != win_over_mali_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are less than 74 stations between Hyderabad and Bangalore, \"statement 2\" :There are 14 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_station_between_hyderabad_and_banglore_s1 = 0\nnumber_of_station_between_hyderabad_and_banglore_s1 <74\nnumber_of_station_between_hyderabad_and_banglore_s2 = 60\n\nnumber_of_station_between_hyderabad_and_banglore_s1 = None\nnumber_of_station_between_hyderabad_and_banglore_s2 = None\n\nif number_of_station_between_hyderabad_and_banglore_s1 is None or number_of_station_between_hyderabad_and_banglore_s2 is None:\n print(\"Neutral\")\nelif number_of_station_between_hyderabad_and_banglore_s1 < number_of_station_between_hyderabad_and_banglore_s2 :\n print(\"Entailment\")\nelif number_of_station_between_hyderabad_and_banglore_s1 != number_of_station_between_hyderabad_and_banglore_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shridhar is less than 6 : 2, \"statement 2\" :Shridhar is 3 : 2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_station_between_hyderabad_and_banglore_s1 = 0\nnumber_of_station_between_hyderabad_and_banglore_s1 < 6\nnumber_of_station_between_hyderabad_and_banglore_s2 = 60\n\nnumber_of_station_between_hyderabad_and_banglore_s1 = None\nnumber_of_station_between_hyderabad_and_banglore_s2 = None\n\nif number_of_station_between_hyderabad_and_banglore_s1 is None or number_of_station_between_hyderabad_and_banglore_s2 is None:\n print(\"Neutral\")\nelif number_of_station_between_hyderabad_and_banglore_s1 < number_of_station_between_hyderabad_and_banglore_s2 :\n print(\"Entailment\")\nelif number_of_station_between_hyderabad_and_banglore_s1 != number_of_station_between_hyderabad_and_banglore_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the trip home took 1 / 2 hour longer than the trip to the beach , how many kilometers k did Carl drive each way ?, \"statement 2\" :If the trip home took more than 1 / 2 hour longer than the trip to the beach , how many kilometers k did Carl drive each way ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "time_taken_for_trip_to_home_s1 = 1/2\ntime_taken_for_trip_to_home_s2 = 0\ntime_taken_for_trip_to_home_s2 > 1/2\n\n\nif time_taken_for_trip_to_home_s1 is None or time_taken_for_trip_to_home_s2 is None:\n print(\"Neutral\")\nelif time_taken_for_trip_to_home_s1 == time_taken_for_trip_to_home_s2 :\n print(\"Entailment\")\nelif time_taken_for_trip_to_home_s1 != time_taken_for_trip_to_home_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 45.0 pounds of oranges and each bag contains 23.0 pounds of oranges, \"statement 2\" :There are 1.95652173913 bags, \"options: \" Entailment or contradiction?", + "Output Program": [ + "speed_of_stream_s1 = round(45.0 / 23.0, 11)\nspeed_of_stream_s2 = 1.95652173913\n\nif speed_of_stream_s1 is None or speed_of_stream_s2 is None:\n print(\"Neutral\")\nelif speed_of_stream_s1 == speed_of_stream_s2 :\n print(\"Entailment\")\nelif speed_of_stream_s1 != speed_of_stream_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bob ' s pizza recipe calls for 2 ounces of baking soda for every 2 cups of flour used, \"statement 2\" :Bob ' s pizza recipe calls for less than 2 ounces of baking soda for every 2 cups of flour used, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ounces_of_required_for_two_soda_cups_s1 = 2\nounces_of_required_for_two_soda_cups_s2 = 0\nounces_of_required_for_two_soda_cups_s2 < 2\n\n\nif ounces_of_required_for_two_soda_cups_s1 is None or ounces_of_required_for_two_soda_cups_s2 is None:\n print(\"Neutral\")\nelif ounces_of_required_for_two_soda_cups_s1 < ounces_of_required_for_two_soda_cups_s2 :\n print(\"Entailment\")\nelif ounces_of_required_for_two_soda_cups_s1 != ounces_of_required_for_two_soda_cups_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": During the first two weeks of June , the total rainfall in Springdale was 40 inches, \"statement 2\" :During the first two weeks of June , the total rainfall in Springdale was more than 20 inches, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_rainfall_in_first_two_weeks_s1 = 40\ntotal_rainfall_in_first_two_weeks_s2 = 0\ntotal_rainfall_in_first_two_weeks_s2 > 20\n\nif total_rainfall_in_first_two_weeks_s1 is None or total_rainfall_in_first_two_weeks_s2 is None:\n print(\"Neutral\")\nelif total_rainfall_in_first_two_weeks_s1 > total_rainfall_in_first_two_weeks_s2 :\n print(\"Entailment\")\nelif total_rainfall_in_first_two_weeks_s1 != total_rainfall_in_first_two_weeks_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A florist had 37.0 roses, and she picked 16.0 more and then later picked another 19.0 more, \"statement 2\" :She would have 72.0 roses , \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_number_of_roses_florist_has_s1 = 37+16+19\ntotal_number_of_roses_florist_has_s2 = 72\n\nif total_number_of_roses_florist_has_s1 is None or total_number_of_roses_florist_has_s2 is None:\n print(\"Neutral\")\nelif total_number_of_roses_florist_has_s1 == total_number_of_roses_florist_has_s2 :\n print(\"Entailment\")\nelif total_number_of_roses_florist_has_s1 != total_number_of_roses_florist_has_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mike picked 7.0 apples , Nancy picked 3.0 apples , and Keith picked 6.0 apples and 4.0 pears , at the farm ., \"statement 2\" :20.0 apples were picked in total, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_number_of_apples_picked_s1 = 7+3+6\ntotal_number_of_apples_picked_s2 = 20\n\n\nif total_number_of_apples_picked_s1 is None or total_number_of_apples_picked_s2 is None:\n print(\"Neutral\")\nelif total_number_of_apples_picked_s1 == total_number_of_apples_picked_s2 :\n print(\"Entailment\")\nelif total_number_of_apples_picked_s1 != total_number_of_apples_picked_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Claire has a total of more than 20 pets consisting of gerbils and hamsters only, \"statement 2\" :Claire has a total of 90 pets consisting of gerbils and hamsters only, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_pets_claire_has_s1 = 0\ntotal_pets_claire_has_s1 > 20\ntotal_pets_claire_has_s2 = 90\n\ntotal_pets_claire_has_s1 = None\ntotal_pets_claire_has_s2 = None\n\nif total_pets_claire_has_s1 is None or total_pets_claire_has_s2 is None:\n print(\"Neutral\")\nelif total_pets_claire_has_s1 < total_pets_claire_has_s2 :\n print(\"Entailment\")\nelif total_pets_claire_has_s1 != total_pets_claire_has_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Shreehari walks in the speed of 4.5 km / hr from his house , in what time will he reach his school which is 750 m long from his house ?, \"statement 2\" :If Shreehari walks in the speed of 4.5 km / hr from his house , in what time will he reach his school which is 550 m long from his house ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_shreehari_is_away_from_his_home_s1 = 750\ndistance_shreehari_is_away_from_his_home_s2 = 550\n\nif distance_shreehari_is_away_from_his_home_s1 is None or distance_shreehari_is_away_from_his_home_s2 is None:\n print(\"Neutral\")\nelif distance_shreehari_is_away_from_his_home_s1 == distance_shreehari_is_away_from_his_home_s2 :\n print(\"Entailment\")\nelif distance_shreehari_is_away_from_his_home_s1 != distance_shreehari_is_away_from_his_home_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 12 parking lots across Santa Barbara that have been set up to accommodate the growing middle-class homelessness ., \"statement 2\" :Santa Barbara , California , allows homeless to sleep in cars in 12 parking lots, \"options: \" Entailment or neutral?", + "Output Program": [ + "total_parking_lots = 12\navaliable_parking_lots = 12\n\nif total_parking_lots is None or avaliable_parking_lots is None:\n print(\"Neutral\")\nelif total_parking_lots == avaliable_parking_lots :\n print(\"Entailment\")\nelif total_parking_lots != avaliable_parking_lots :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shawn invested one half of his savings in a bond that paid simple interest for 2 years and received $ 400 as interest, \"statement 2\" :Shawn invested one half of his savings in a bond that paid simple interest for less than 2 years and received $ 400 as interest, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_shreehari_is_away_from_his_home_s1 = 750\ndistance_shreehari_is_away_from_his_home_s2 = 550\n\nif distance_shreehari_is_away_from_his_home_s1 is None or distance_shreehari_is_away_from_his_home_s2 is None:\n print(\"Neutral\")\nelif distance_shreehari_is_away_from_his_home_s1 == distance_shreehari_is_away_from_his_home_s2 :\n print(\"Entailment\")\nelif distance_shreehari_is_away_from_his_home_s1 != distance_shreehari_is_away_from_his_home_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mike has 35.0 books in his library and he bought 56.0 more books at a yard sale over the weekend, \"statement 2\" :Mike has 91.0 books now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_number_of_books_mike_has_s1 = 35+56\ntotal_number_of_books_mike_has_s2 = 91\n\nif total_number_of_books_mike_has_s1 is None or total_number_of_books_mike_has_s2 is None:\n print(\"Neutral\")\nelif total_number_of_books_mike_has_s1 == total_number_of_books_mike_has_s2 :\n print(\"Entailment\")\nelif total_number_of_books_mike_has_s1 != total_number_of_books_mike_has_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": '' They were truly two of the most amazing guys I have ever had the pleasure to spend time with , '' Firestone wrote on Facebook ., \"statement 2\" :A friend calls them '' two of the most amazing guys '' he has ever spent time with, \"options: \" Entailment or neutral?", + "Output Program": [ + "total_amazing_guy_s1 = 2\ntotal_amazing_guy_s2 = 2\n\nif total_amazing_guy_s1 is None or total_amazing_guy_s2 is None:\n print(\"Neutral\")\nelif total_amazing_guy_s1 == total_amazing_guy_s2 :\n print(\"Entailment\")\nelif total_amazing_guy_s1 != total_amazing_guy_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The total of the ages of Amar , Akbar and Anthony is 80 years, \"statement 2\" :The total of the ages of Amar , Akbar and Anthony is less than 80 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_age_of_amar_akhbar_anthony_s1 = 80\ntotal_age_of_amar_akhbar_anthony_s2 = 0\ntotal_age_of_amar_akhbar_anthony_s2 < 80\n\nif total_age_of_amar_akhbar_anthony_s1 is None or total_age_of_amar_akhbar_anthony_s2 is None:\n print(\"Neutral\")\nelif total_age_of_amar_akhbar_anthony_s1 < total_age_of_amar_akhbar_anthony_s2 :\n print(\"Entailment\")\nelif total_age_of_amar_akhbar_anthony_s1 != total_age_of_amar_akhbar_anthony_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Twelve people were injured in the incident in the Dutch town of Apeldoorn , about 45 miles east of Amsterdam , police spokeswoman Esther Naber told CNN ., \"statement 2\" :Five people killed and five badly injured in incident in Dutch town of Apeldoorn, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_injure_in_incident_s1 = 12\npeople_injure_in_incident_s2 = 5\n\npeople_injure_in_incident_s1 = None\npeople_injure_in_incident_s2 = None\n\nif people_injure_in_incident_s1 is None or people_injure_in_incident_s2 is None:\n print(\"Neutral\")\nelif people_injure_in_incident_s1 == people_injure_in_incident_s2 :\n print(\"Entailment\")\nelif people_injure_in_incident_s1 != people_injure_in_incident_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mark sold 9 boxes less than n and Ann sold 2 boxes less than n, \"statement 2\" :Mark sold more than 5 boxes less than n and Ann sold 2 boxes less than n, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_amazing_guy_s1 = 2\ntotal_amazing_guy_s2 = 2\n\nif total_amazing_guy_s1 is None or total_amazing_guy_s2 is None:\n print(\"Neutral\")\nelif total_amazing_guy_s1 == total_amazing_guy_s2 :\n print(\"Entailment\")\nelif total_amazing_guy_s1 != total_amazing_guy_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jason has 676.0 Pokemon cards and Alyssa bought 224.0 of Jason 's Pokemon cards , \"statement 2\" :Jason has 453.0 Pokemon cards now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_pokemon_cards_jason_has_s1 = 676-224\ntotal_pokemon_cards_jason_has_s2 = 453\n\nif total_pokemon_cards_jason_has_s1 is None or total_pokemon_cards_jason_has_s2 is None:\n print(\"Neutral\")\nelif total_pokemon_cards_jason_has_s1 == total_pokemon_cards_jason_has_s2 :\n print(\"Entailment\")\nelif total_pokemon_cards_jason_has_s1 != total_pokemon_cards_jason_has_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": One hour after Yolanda started walking from X to Y , a distance of less than 62 miles , Bob started walking along the same road from Y to X, \"statement 2\" :One hour after Yolanda started walking from X to Y , a distance of 52 miles , Bob started walking along the same road from Y to X, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_between_x_and_y_s1 = 0\ndistance_between_x_and_y_s1 < 62\ndistance_between_x_and_y_s2= 52\n\ndistance_between_x_and_y_s1 = None\ndistance_between_x_and_y_s2= None\n\nif distance_between_x_and_y_s1 is None or distance_between_x_and_y_s2 is None:\n print(\"Neutral\")\nelif distance_between_x_and_y_s1 == distance_between_x_and_y_s2:\n print(\"Entailment\")\nelif distance_between_x_and_y_s1 != distance_between_x_and_y_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Working independently , Ann can do the same job in more than 7 hours, \"statement 2\" :Working independently , Ann can do\nthe same job in 9 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_between_x_and_y_s1 = 0\ndistance_between_x_and_y_s1 < 62\ndistance_between_x_and_y_s2= 52\n\ndistance_between_x_and_y_s1 = None\ndistance_between_x_and_y_s2= None\n\nif distance_between_x_and_y_s1 is None or distance_between_x_and_y_s2 is None:\n print(\"Neutral\")\nelif distance_between_x_and_y_s1 == distance_between_x_and_y_s2:\n print(\"Entailment\")\nelif distance_between_x_and_y_s1 != distance_between_x_and_y_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Other discoveries include an alabaster bust of Cleopatra , and 22 coins bearing her '' beautiful '' image , according to council Secretary-General Zahi Hawass ., \"statement 2\" :Bust of Cleopatra , 22 coins bearing her image have been found so far, \"options: \" Entailment or neutral?", + "Output Program": [ + "number_of_coins_with_image_s1 = 22\nnumber_of_coins_with_image_s2 = 22\n\nif number_of_coins_with_image_s1 is None or number_of_coins_with_image_s2 is None:\n print(\"Neutral\")\nelif number_of_coins_with_image_s1 == number_of_coins_with_image_s2 :\n print(\"Entailment\")\nelif number_of_coins_with_image_s1 != number_of_coins_with_image_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At more than 4 % per annum simple interest , Rahul borrowed Rs, \"statement 2\" :At 5 % per annum simple interest , Rahul borrowed Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "interest_of_bought_money_s1 = 0\ninterest_of_bought_money_s1 > 4\ninterest_of_bought_money_s2 = 5\n\ninterest_of_bought_money_s1 = None\ninterest_of_bought_money_s2 = None\n\nif interest_of_bought_money_s1 is None or interest_of_bought_money_s2 is None:\n print(\"Neutral\")\nelif interest_of_bought_money_s1 == interest_of_bought_money_s2 :\n print(\"Entailment\")\nelif interest_of_bought_money_s1 != interest_of_bought_money_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Fifteen children between the ages of 6 and 15 have been rescued in the Philippines , the British agency said ., \"statement 2\" :The operation resulted in 15 children in the Philippines being rescued , authorities say, \"options: \" Entailment or neutral?", + "Output Program": [ + "number_of_children_saved_s1 = 15\nnumber_of_children_saved_s2 = 15\n\nif number_of_children_saved_s1 is None or number_of_children_saved_s2 is None:\n print(\"Neutral\")\nelif number_of_children_saved_s1 == number_of_children_saved_s2 :\n print(\"Entailment\")\nelif number_of_children_saved_s1 != number_of_children_saved_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Suraj has a certain average of runs for 9 innings, \"statement 2\" :Suraj has a certain average of runs for 1 innings, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_of_suraj_s1 = 9\naverage_of_suraj_s2 = 1\n\nif average_of_suraj_s1 is None or average_of_suraj_s2 is None:\n print(\"Neutral\")\nelif average_of_suraj_s1 == average_of_suraj_s2 :\n print(\"Entailment\")\nelif average_of_suraj_s1 != average_of_suraj_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The next day , Bob took the test , and with this grade included , the new average was 78, \"statement 2\" :The next day , Bob took the test , and with this grade included , the new average was less than 78, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_of_bob_s1 = 78\naverage_of_bob_s2 = 0\naverage_of_bob_s2 < 78\n\nif average_of_bob_s1 is None or average_of_bob_s2 is None:\n print(\"Neutral\")\nelif average_of_bob_s1 < average_of_bob_s2 :\n print(\"Entailment\")\nelif average_of_bob_s1 != average_of_bob_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": City A to city B , Michael drove for 1 hour at 80 mph and for 3 hours at 60 mph, \"statement 2\" :City A to city B , Michael drove for less than 4 hour at 80 mph and for 3 hours at 60 mph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "time_mike_drove_for_s1 = 1\ntime_mike_drove_for_s2 = 0\ntime_mike_drove_for_s2 < 4\n\nif time_mike_drove_for_s1 is None or time_mike_drove_for_s2 is None:\n print(\"Neutral\")\nelif time_mike_drove_for_s1 > time_mike_drove_for_s2 :\n print(\"Entailment\")\nelif time_mike_drove_for_s1 != time_mike_drove_for_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The herd broke through three strands of high tensile barbed wire to escape the farm , and later swam across the Hudson River , according to Mesick , still surprised ., \"statement 2\" :The herd breaks through three layers of barbed wire fencing and crosses the Hudson River during the escape, \"options: \" Entailment or neutral?", + "Output Program": [ + "layers_of_wire_s1 = 3\nlayers_of_wire_s2 = 3\n\nif layers_of_wire_s1 is None or layers_of_wire_s2 is None:\n print(\"Neutral\")\nelif layers_of_wire_s1 == layers_of_wire_s2 :\n print(\"Entailment\")\nelif layers_of_wire_s1 != layers_of_wire_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Molly can do a task in less than 40 days while Sandy can do the task in 30 days, \"statement 2\" :Molly can do a task in 20 days while Sandy can do the task in 30 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "molly_can_do_task_in_days_s1 = 0\nmolly_can_do_task_in_days_s1 < 40\nmolly_can_do_task_in_days_s2 = 20\n\nmolly_can_do_task_in_days_s1 = None\nmolly_can_do_task_in_days_s2 = None\n\nif molly_can_do_task_in_days_s1 is None or molly_can_do_task_in_days_s2 is None:\n print(\"Neutral\")\nelif molly_can_do_task_in_days_s1 == molly_can_do_task_in_days_s2 :\n print(\"Entailment\")\nelif molly_can_do_task_in_days_s1 != molly_can_do_task_in_days_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Flooding had inundated 32 towns and two cities , Dagupan and Urdaneta , according to Rocky Baraan , provincial administrator of Pangasinan ., \"statement 2\" :Flooding inundates 32 towns , two cities , says Pangasinan administrator, \"options: \" Entailment or neutral?", + "Output Program": [ + "total_inundated_town_s1 = 32\ntotal_inundated_town_s2 = 32\n\nif total_inundated_town_s1 is None or total_inundated_town_s2 is None:\n print(\"Neutral\")\nelif total_inundated_town_s1 == total_inundated_town_s2 :\n print(\"Entailment\")\nelif total_inundated_town_s1 != total_inundated_town_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The sides AB , BC and CA of a triangle ABC having 3,4 and more than 2 interior points receptively on them, \"statement 2\" :The sides AB , BC and CA of a triangle ABC having 3,4 and 5 interior points receptively on them, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "interior_points_of_triangle_s1 = 0\ninterior_points_of_triangle_s1> 2\ninterior_points_of_triangle_s2 = 5\n\ninterior_points_of_triangle_s1 = None\ninterior_points_of_triangle_s2 = None\n\nif interior_points_of_triangle_s1 is None or interior_points_of_triangle_s2 is None:\n print(\"Neutral\")\nelif interior_points_of_triangle_s1 > interior_points_of_triangle_s2 :\n print(\"Entailment\")\nelif interior_points_of_triangle_s1 != interior_points_of_triangle_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Raviraj invested an amount of 1000000 at compound interest rate of 10 pcpa for a period of three years, \"statement 2\" :Raviraj invested an amount of less than 1000000 at compound interest rate of 10 pcpa for a period of three years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_invested_by_raviraj_s1 = 1000000 \namount_invested_by_raviraj_s2 = 0\namount_invested_by_raviraj_s2 < 1000000 \n\nif amount_invested_by_raviraj_s1 is None or amount_invested_by_raviraj_s2 is None:\n print(\"Neutral\")\nelif amount_invested_by_raviraj_s1 < amount_invested_by_raviraj_s2 :\n print(\"Entailment\")\nelif amount_invested_by_raviraj_s1 != amount_invested_by_raviraj_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John has 75 pencils , he distribute 20 pencils to his friends in his class, \"statement 2\" :John has more than 55 pencils , he distribute 20 pencils to his friends in his class, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pencils_john_has_s1 = 75\npencils_john_has_s2 = 0\npencils_john_has_s2 > 55\n\nif pencils_john_has_s1 is None or pencils_john_has_s2 is None:\n print(\"Neutral\")\nelif pencils_john_has_s1 > pencils_john_has_s2 :\n print(\"Entailment\")\nelif pencils_john_has_s1 != pencils_john_has_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If 288 is divided into four parts proportional to 5 , 7 , 4 , 8 then the smallest part is :, \"statement 2\" :If less than 488 is divided into four parts proportional to 5 , 7 , 4 , 8 then the smallest part is :, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_s1 = 288\nnumber_s2 = 0\nnumber_s2 < 488\n\nif number_s1 is None or number_s2 is None:\n print(\"Neutral\")\nelif number_s1 > number_s2 :\n print(\"Entailment\")\nelif number_s1 != number_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jake , Paul and Hari together dig the well in 8 days, \"statement 2\" :Jake , Paul and Hari together dig the well in 4 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_taken_to_dig_well_by_s1 = 8\ndays_taken_to_dig_well_by_s2 = 4\n\nif days_taken_to_dig_well_by_s1 is None or days_taken_to_dig_well_by_s2 is None:\n print(\"Neutral\")\nelif days_taken_to_dig_well_by_s1 < days_taken_to_dig_well_by_s2 :\n print(\"Entailment\")\nelif days_taken_to_dig_well_by_s1 != days_taken_to_dig_well_by_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": For how many days did the trial last , if each patient received a total amount of 145 milligrams of Dosaxin during the whole trial ?, \"statement 2\" :For how many days did the trial last , if each patient received a total amount of less than 545 milligrams of Dosaxin during the whole trial ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dosaxin_given_to_each_plant_s1 = 145\ndosaxin_given_to_each_plant_s2 = 0\ndosaxin_given_to_each_plant_s2 < 545\n\nif dosaxin_given_to_each_plant_s1 is None or dosaxin_given_to_each_plant_s2 is None:\n print(\"Neutral\")\nelif dosaxin_given_to_each_plant_s1 > dosaxin_given_to_each_plant_s2 :\n print(\"Entailment\")\nelif dosaxin_given_to_each_plant_s1 != dosaxin_given_to_each_plant_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 3.0 eggs in each box., \"statement 2\" :2.0 eggs are in 2.0 boxes, \"options: \" Entailment or contradiction?", + "Output Program": [ + "number_of_eggs_s1 = 3\nnumber_of_eggs_s2 = 2\n\nif number_of_eggs_s1 is None or number_of_eggs_s2 is None:\n print(\"Neutral\")\nelif number_of_eggs_s1 < number_of_eggs_s2 :\n print(\"Entailment\")\nelif number_of_eggs_s1 != number_of_eggs_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shekar scored 76 , 65 , 82 , 67 and 85 marks in Mathematics , Science , Social studies , English and Biology respectively, \"statement 2\" :Shekar scored more than 46 , 65 , 82 , 67 and 85 marks in Mathematics , Science , Social studies , English and Biology respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_scored_by_shekhar_s1 = 76\nmarks_scored_by_shekhar_s2 = 0\nmarks_scored_by_shekhar_s2 < 46\n\nif marks_scored_by_shekhar_s1 is None or marks_scored_by_shekhar_s2 is None:\n print(\"Neutral\")\nelif marks_scored_by_shekhar_s1 > marks_scored_by_shekhar_s2 :\n print(\"Entailment\")\nelif marks_scored_by_shekhar_s1 != marks_scored_by_shekhar_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The total marks obtained by a student in Mathematics and Physics is 20 and his score in Chemistry is 20 marks more than that in Physics, \"statement 2\" :The total marks obtained by a student in Mathematics and Physics is less than 20 and his score in Chemistry is 20 marks more than that in Physics, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_obtained_s1 = 20\nmarks_obtained_s2 = 20\n\nif marks_obtained_s1 is None or marks_obtained_s2 is None:\n print('neutral')\n\nelif marks_obtained_s1 < marks_obtained_s2:\n print('Entailment')\n\nelif marks_obtained_s1 != marks_obtained_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jeff has 252 ounces of peanut butter in 16 , 28, \"statement 2\" :Jeff has more than 252 ounces of peanut butter in 16 , 28, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "quantity_of_butter_jack_has_s1 = 252\nquantity_of_butter_jack_has_s2 = 0\nquantity_of_butter_jack_has_s2 < 252\n\nif quantity_of_butter_jack_has_s1 is None or quantity_of_butter_jack_has_s2 is None:\n print(\"Neutral\")\nelif quantity_of_butter_jack_has_s1 < quantity_of_butter_jack_has_s2 :\n print(\"Entailment\")\nelif quantity_of_butter_jack_has_s1 != quantity_of_butter_jack_has_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joe \u2019 s average ( arithmetic mean ) test score across 4 equally weighted tests was 40, \"statement 2\" :Joe \u2019 s average ( arithmetic mean ) test score across less than 5 equally weighted tests was 40, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "joes_average_in_test_s1 = 40\njoes_average_in_test_s2 = 0\njoes_average_in_test_s2 < 5\n\nif joes_average_in_test_s1 is None or joes_average_in_test_s2 is None:\n print(\"Neutral\")\nelif joes_average_in_test_s1 > joes_average_in_test_s2 :\n print(\"Entailment\")\nelif joes_average_in_test_s1 != joes_average_in_test_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is 10 : 5 ?, \"statement 2\" :What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is less than 30 : 5 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "joes_average_in_test_s1 = 40\njoes_average_in_test_s2 = 0\njoes_average_in_test_s2 < 5\n\nif joes_average_in_test_s1 is None or joes_average_in_test_s2 is None:\n print(\"Neutral\")\nelif joes_average_in_test_s1 > joes_average_in_test_s2 :\n print(\"Entailment\")\nelif joes_average_in_test_s1 != joes_average_in_test_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Keith picked 47.0 pears, and Mike picked 12.0 pears from the pear tree and Keith gave away 46.0 pears, \"statement 2\" :Mike has 13.0 pears left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_piers_keith_has_s1 = 47+12-46\ntotal_piers_keith_has_s2 = 13\n\nif total_piers_keith_has_s1 is None or total_piers_keith_has_s2 is None:\n print(\"Neutral\")\nelif total_piers_keith_has_s1 == total_piers_keith_has_s2 :\n print(\"Entailment\")\nelif total_piers_keith_has_s1 != total_piers_keith_has_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sam earns $ 6.00 per hour for the first more than 10 hours he works per week , and twice this rate for overtime, \"statement 2\" :Sam earns $ 6.00 per hour for the first 60 hours he works per week , and twice this rate for overtime, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_hours_sam_works_s1 = 0\nnumber_of_hours_sam_works_s1 > 10\nnumber_of_hours_sam_works_s2 = 60\n\nnumber_of_hours_sam_works_s1 = None\nnumber_of_hours_sam_works_s2 = None\n\nif number_of_hours_sam_works_s1 is None or number_of_hours_sam_works_s2 is None:\n print(\"Neutral\")\nelif number_of_hours_sam_works_s1 > number_of_hours_sam_works_s2 :\n print(\"Entailment\")\nelif number_of_hours_sam_works_s1 != number_of_hours_sam_works_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Susan , John , Daisy , Tim and Kim need to be seated in 5 identical chairs in straight line so that Susan is seated always left to Tim, \"statement 2\" :Susan , John , Daisy , Tim and Kim need to be seated in more than 4 identical chairs in straight line so that Susan is seated always left to Tim, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_chairs_s1 = 5\nnumber_of_chairs_s2 = 0\nnumber_of_chairs_s2 > 4\n\nif number_of_chairs_s1 is None or number_of_chairs_s2 is None:\n print(\"Neutral\")\nelif number_of_chairs_s1 > number_of_chairs_s2 :\n print(\"Entailment\")\nelif number_of_chairs_s1 != number_of_chairs_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Find the area of a rectangular field if John walking at the speed of less than 78 m / min took 20 seconds to cross the field diagonally and Harry walking at a speed of 72 m / min took 15 seconds to cross the field along its sides ., \"statement 2\" :Find the area of a rectangular field if John walking at the speed of 48 m / min took 20 seconds to cross the field diagonally and Harry walking at a speed of 72 m / min took 15 seconds to cross the field along its sides ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_of_john_s1 = 0\nspeed_of_john_s1 < 78\nspeed_of_john_s2 = 48\n\nspeed_of_john_s1 = None\nspeed_of_john_s2 = None\n\nif speed_of_john_s1 is None or speed_of_john_s2 is None:\n print(\"Neutral\")\nelif speed_of_john_s1 > speed_of_john_s2 :\n print(\"Entailment\")\nelif speed_of_john_s1 != speed_of_john_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The product of the ages of Syam and Sunil is 240, \"statement 2\" :The product of the ages of Syam and Sunil is less than 540, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_chairs_s1 = 240\nnumber_of_chairs_s2 = 0\nnumber_of_chairs_s2 < 540\n\nif number_of_chairs_s1 is None or number_of_chairs_s2 is None:\n print(\"Neutral\")\nelif number_of_chairs_s1 > number_of_chairs_s2 :\n print(\"Entailment\")\nelif number_of_chairs_s1 != number_of_chairs_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In another class of less than 600 students there were 19 grades higher than Angela \u2019 s, \"statement 2\" :In another class of 100 students there were 19 grades higher than Angela \u2019 s, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_of_john_s1 = 0\nspeed_of_john_s1 < 78\nspeed_of_john_s2 = 48\n\nspeed_of_john_s1 = None\nspeed_of_john_s2 = None\n\nif speed_of_john_s1 is None or speed_of_john_s2 is None:\n print(\"Neutral\")\nelif speed_of_john_s1 > speed_of_john_s2 :\n print(\"Entailment\")\nelif speed_of_john_s1 != speed_of_john_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Calculate the average mark scored by Adam if he had the following scores in an examination : more than 15 , 67 , 52 , 69 , 56 , 62 , and 59 marks ( out in 100 ) in Spanish Language , Mathematics , Biology , Physics , French Language , Fine art and Chemistry respectively ?, \"statement 2\" :Calculate the average mark scored by Adam if he had the following scores in an examination : 85 , 67 , 52 , 69 , 56 , 62 , and 59 marks ( out in 100 ) in Spanish Language , Mathematics , Biology , Physics , French Language , Fine art and Chemistry respectively ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_marks_scored_by_adam_s1 = 0\naverage_marks_scored_by_adam_s1 < 15\naverage_marks_scored_by_adam_s2 = 85\n\naverage_marks_scored_by_adam_s1 = None\naverage_marks_scored_by_adam_s2 = None\n\nif average_marks_scored_by_adam_s1 is None or average_marks_scored_by_adam_s2 is None:\n print(\"Neutral\")\nelif average_marks_scored_by_adam_s1 > average_marks_scored_by_adam_s2 :\n print(\"Entailment\")\nelif average_marks_scored_by_adam_s1 != average_marks_scored_by_adam_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": George had 28.0 socks, and he threw away 4.0 old ones that didn't fit and bought 36.0 new ones, \"statement 2\" :He would have 60.0 socks , \"options: \" Entailment or contradiction?", + "Output Program": [ + "number_of_socks_george_has_s1 = 28-4+36\nnumber_of_socks_george_has_s2 = 60\n\nif number_of_socks_george_has_s1 is None or number_of_socks_george_has_s2 is None:\n print(\"Neutral\")\nelif number_of_socks_george_has_s1 == number_of_socks_george_has_s2 :\n print(\"Entailment\")\nelif number_of_socks_george_has_s1 != number_of_socks_george_has_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": About 30,000 people from South Ossetia headed to North Ossetia in Russia , Redmond said , citing Russian numbers ., \"statement 2\" :Russian figures in N. Ossetia show 30,000 people entered from S. Ossetia, \"options: \" Entailment or neutral?", + "Output Program": [ + "total_people_headed_to_russia_s1 = 30000\nnumber_of_people_showed = 30000\n\nif total_people_headed_to_russia_s1 is None or number_of_people_showed is None:\n print(\"Neutral\")\nelif total_people_headed_to_russia_s1 == number_of_people_showed :\n print(\"Entailment\")\nelif total_people_headed_to_russia_s1 != number_of_people_showed :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A report from UNAIDS , the Joint United Nations Program on HIV/AIDS , released on Tuesday , shows the number of adults and children living with HIV reached 39.4 million in 2004 ., \"statement 2\" :There is an estimated 39.4 million people living with HIV ., \"options: \" Entailment or neutral?", + "Output Program": [ + "number_of_people_with_hiv_s1 = 39.4\nnumber_of_people_with_hiv_s2 = 39.4\n\nif number_of_people_with_hiv_s1 is None or number_of_people_with_hiv_s2 is None:\n print(\"Neutral\")\nelif number_of_people_with_hiv_s1 == number_of_people_with_hiv_s2 :\n print(\"Entailment\")\nelif number_of_people_with_hiv_s1 != number_of_people_with_hiv_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 10 % people of a village in Sri Lanka died by bombardment , 15 % of the remainder left the village on account of fear, \"statement 2\" :less than 70 % people of a village in Sri Lanka died by bombardment , 15 % of the remainder left the village on account of fear, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_people_died_by_bombardment_s1 = 10\nnumber_of_people_died_by_bombardment_s2 = 0\nnumber_of_people_died_by_bombardment_s2 < 70\n\nif number_of_people_died_by_bombardment_s1 is None or number_of_people_died_by_bombardment_s2 is None:\n print(\"Neutral\")\nelif number_of_people_died_by_bombardment_s1 == number_of_people_died_by_bombardment_s2 :\n print(\"Entailment\")\nelif number_of_people_died_by_bombardment_s1 != number_of_people_died_by_bombardment_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than 60 % ?\nI will see what is the quickest way to solve it then I will provide the explanation, \"statement 2\" :If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than more than 60 % ? I will see what is the quickest way to solve it then I will provide the explanation, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "quantity_of_butter_jack_has_s1 = 252\nquantity_of_butter_jack_has_s2 = 0\nquantity_of_butter_jack_has_s2 < 252\n\nif quantity_of_butter_jack_has_s1 is None or quantity_of_butter_jack_has_s2 is None:\n print(\"Neutral\")\nelif quantity_of_butter_jack_has_s1 < quantity_of_butter_jack_has_s2 :\n print(\"Entailment\")\nelif quantity_of_butter_jack_has_s1 != quantity_of_butter_jack_has_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bruce and Anne can clean their house in 4 hours working together at their respective constant rates, \"statement 2\" :Bruce and Anne can clean their house in less than 7 hours working together at their respective constant rates, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "time_taken_to_clean_house_s1 = 4\ntime_taken_to_clean_house_s2 = 0\ntime_taken_to_clean_house_s2 < 7\n\nif time_taken_to_clean_house_s1 is None or time_taken_to_clean_house_s2 is None:\n print(\"Neutral\")\nelif time_taken_to_clean_house_s1 > time_taken_to_clean_house_s2 :\n print(\"Entailment\")\nelif time_taken_to_clean_house_s1 != time_taken_to_clean_house_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He successfully married his girlfriend Diana after 1 / 7 more of his life, \"statement 2\" :He successfully married his girlfriend Diana after more than 1 / 7 more of his life, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "quantity_of_butter_jack_has_s1 = 252\nquantity_of_butter_jack_has_s2 = 0\nquantity_of_butter_jack_has_s2 < 252\n\nif quantity_of_butter_jack_has_s1 is None or quantity_of_butter_jack_has_s2 is None:\n print(\"Neutral\")\nelif quantity_of_butter_jack_has_s1 < quantity_of_butter_jack_has_s2 :\n print(\"Entailment\")\nelif quantity_of_butter_jack_has_s1 != quantity_of_butter_jack_has_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": AB = 10 and EC = 20, \"statement 2\" :AB = less than 60 and EC = 20, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "length_of_side_s1 = 10\nlength_of_side_s2 = 0\nlength_of_side_s2 < 60\n\nif length_of_side_s1 is None or length_of_side_s2 is None:\n print(\"Neutral\")\nelif length_of_side_s1 > length_of_side_s2 :\n print(\"Entailment\")\nelif length_of_side_s1 != length_of_side_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Kellogg 's ended its Michael Phelps endorsement , so it sent two tons of cereal with his face on it to a food bank ., \"statement 2\" :Kellogg 's donated two tons of cereal to the San Francisco Food Bank, \"options: \" Entailment or neutral?", + "Output Program": [ + "donated_cereal_s1 = 2\ndonated_cereal_s2 = 2\n\nif donated_cereal_s1 is None or donated_cereal_s2 is None:\n print(\"Neutral\")\nelif donated_cereal_s1 > donated_cereal_s2 :\n print(\"Entailment\")\nelif donated_cereal_s1 != donated_cereal_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 2.0 pencils in the drawer and Tim placed 3.0 pencils in the drawer , \"statement 2\" :2.0 pencils are now there in total , \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_pencils_s1 = 2 + 3\ntotal_pencils_s2 = 2\n\nif total_pencils_s1 is None or total_pencils_s2 is None:\n print(\"Neutral\")\nelif total_pencils_s1 < total_pencils_s2 :\n print(\"Entailment\")\nelif total_pencils_s1 != total_pencils_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shawn invested one half of his savings in a bond that paid simple interest for 2 years ( 20 % per anum ) and received $ 600 as interest, \"statement 2\" :Shawn invested one half of his savings in a bond that paid simple interest for less than 5 years ( 20 % per anum ) and received $ 600 as interest, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_years_amount_invested_for_s1 = 2\nnumber_of_years_amount_invested_for_s2 = 0\nnumber_of_years_amount_invested_for_s2 < 5\n\nif number_of_years_amount_invested_for_s1 is None or number_of_years_amount_invested_for_s2 is None:\n print(\"Neutral\")\nelif number_of_years_amount_invested_for_s1 > number_of_years_amount_invested_for_s2 :\n print(\"Entailment\")\nelif number_of_years_amount_invested_for_s1 != number_of_years_amount_invested_for_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": `` The letters were escalating in demands until they reached the $ 50,000 figure ., \"statement 2\" :Spokesman : Letters escalated `` in demands until they reached the $ 50,000 figure '', \"options: \" Entailment or neutral?", + "Output Program": [ + "figure_s1 = 2\nfigure_s2 = 2\n\nif figure_s1 is None or figure_s2 is None:\n print(\"Neutral\")\nelif figure_s1 == figure_s2 :\n print(\"Entailment\")\nelif figure_s1 != figure_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 14.0 birds were sitting in a tree and 21.0 more birds flew up to the tree, \"statement 2\" :35.0 birds were there altogether in the tree, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_birds_s1 = 14+21\ntotal_birds_s2 = 35\n\nif total_birds_s1 is None or total_birds_s2 is None:\n print(\"Neutral\")\nelif total_birds_s1 == total_birds_s2 :\n print(\"Entailment\")\nelif total_birds_s1 != total_birds_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sarah signed 1 / 2 of the Christmas cards , and Richard signed 3 / 8 of them, \"statement 2\" :Sarah signed 6 / 2 of the Christmas cards , and Richard signed 3 / 8 of them, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_cards_sarah_signed_s1 = 1/2\nnumber_of_cards_sarah_signed_s2 = 6/2\n\nif number_of_cards_sarah_signed_s1 is None or number_of_cards_sarah_signed_s2 is None:\n print(\"Neutral\")\nelif number_of_cards_sarah_signed_s1 > number_of_cards_sarah_signed_s2 :\n print(\"Entailment\")\nelif number_of_cards_sarah_signed_s1 != number_of_cards_sarah_signed_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 1035.0 pounds of oranges are in 45.0 bags, \"statement 2\" :Each bag contains 23.0 pounds of oranges, \"options: \" Entailment or contradiction?", + "Output Program": [ + "quantity_of_oranfge_s1 = 1035/45\nquantity_of_oranfge_s2 = 23\n\nif quantity_of_oranfge_s1 is None or quantity_of_oranfge_s2 is None:\n print(\"Neutral\")\nelif quantity_of_oranfge_s1 == quantity_of_oranfge_s2 :\n print(\"Entailment\")\nelif quantity_of_oranfge_s1 != quantity_of_oranfge_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dana borrows less than 8000 pounds annually for her college education, \"statement 2\" :Dana borrows 6000 pounds annually for her college education, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_dana_borrowed_s1 = 0\namount_dana_borrowed_s2 = 78\n\namount_dana_borrowed_s1 = None\namount_dana_borrowed_s2 = None\n\nif amount_dana_borrowed_s1 is None or amount_dana_borrowed_s2 is None:\n print(\"Neutral\")\nelif amount_dana_borrowed_s1 == amount_dana_borrowed_s2 :\n print(\"Entailment\")\nelif amount_dana_borrowed_s1 != amount_dana_borrowed_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Fifty-two percent '' favor '' the war in Afghanistan , with 46 percent in opposition ., \"statement 2\" :A majority of those polled -- 52 percent -- '' favor '' the war in Afghanistan, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_supporting_the_war_s1 = 52\npeople_supporting_the_war_s2 = 52\n\nif people_supporting_the_war_s1 is None or people_supporting_the_war_s2 is None:\n print(\"Neutral\")\nelif people_supporting_the_war_s1 == people_supporting_the_war_s2 :\n print(\"Entailment\")\nelif people_supporting_the_war_s1 != people_supporting_the_war_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 90 students represent x percent of the boys at Jones Elementary School, \"statement 2\" :more than 60 students represent x percent of the boys at Jones Elementary School, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_students_s1 = 90\nnumber_of_students_s2 = 0\nnumber_of_students_s2 > 52\n\nif number_of_students_s1 is None or number_of_students_s2 is None:\n print(\"Neutral\")\nelif number_of_students_s1 > number_of_students_s2 :\n print(\"Entailment\")\nelif number_of_students_s1 != number_of_students_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In one day , Juan sends Keith three times as many messages as he sends Laurence , and Laurence sends Missy 5 times as many messages as he receives from Juan, \"statement 2\" :In one day , Juan sends Keith three times as many messages as he sends Laurence , and Laurence sends Missy 6 times as many messages as he receives from Juan, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_message_laurence_sends_s1 = 5\nnumber_of_message_laurence_sends_s2 = 6\n\nif number_of_message_laurence_sends_s1 is None or number_of_message_laurence_sends_s2 is None:\n print(\"Neutral\")\nelif number_of_message_laurence_sends_s1 > number_of_message_laurence_sends_s2 :\n print(\"Entailment\")\nelif number_of_message_laurence_sends_s1 != number_of_message_laurence_sends_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After his release , the clean-shaven Magdy el-Nashar told reporters outside his home that he had nothing to do with the July 7 transit attacks , which killed 52 people and the four bombers ., \"statement 2\" :52 people and four bombers were killed on July 7 ., \"options: \" Entailment or neutral?", + "Output Program": [ + "number_of_people_died_s1 = 52\nnumber_of_people_died_s2 = 52\n\nif number_of_people_died_s1 is None or number_of_people_died_s2 is None:\n print(\"Neutral\")\nelif number_of_people_died_s1 == number_of_people_died_s2 :\n print(\"Entailment\")\nelif number_of_people_died_s1 != number_of_people_died_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Benjamin skated 80.0 kilometers at 10.0 kilometers per hour, \"statement 2\" :Benjamin skated for 10.0 hours, \"options: \" Entailment or contradiction?", + "Output Program": [ + "number_of_message_laurence_sends_s1 = 5\nnumber_of_message_laurence_sends_s2 = 6\n\nif number_of_message_laurence_sends_s1 is None or number_of_message_laurence_sends_s2 is None:\n print(\"Neutral\")\nelif number_of_message_laurence_sends_s1 > number_of_message_laurence_sends_s2 :\n print(\"Entailment\")\nelif number_of_message_laurence_sends_s1 != number_of_message_laurence_sends_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained 96 , 95 , 82 , 97 and 95 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained more than 46 , 95 , 82 , 97 and 95 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_obtained_by_davic_s1 = 96\nmarks_obtained_by_davic_s2 = 0\nmarks_obtained_by_davic_s2 > 46\n\nif marks_obtained_by_davic_s1 is None or marks_obtained_by_davic_s2 is None:\n print(\"Neutral\")\nelif marks_obtained_by_davic_s1 > marks_obtained_by_davic_s2 :\n print(\"Entailment\")\nelif marks_obtained_by_davic_s1 != marks_obtained_by_davic_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The average number of shirts with Salman , Ambani and Dalmiya is 60 , if all of them reached a shopping mall in Delhi and purchased 2 shirts each of them then average number of shirt each of them now has, \"statement 2\" :The average number of shirts with Salman , Ambani and Dalmiya is 70 , if all of them reached a shopping mall in Delhi and purchased 2 shirts each of them then average number of shirt each of them now has, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_of_number_of_shirts_s1 = 5\naverage_of_number_of_shirts_s2 = 6\n\nif average_of_number_of_shirts_s1 is None or average_of_number_of_shirts_s2 is None:\n print(\"Neutral\")\nelif average_of_number_of_shirts_s1 > average_of_number_of_shirts_s2 :\n print(\"Entailment\")\nelif average_of_number_of_shirts_s1 != average_of_number_of_shirts_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In less than 2979 approximately 1 / 3 of the 37.3 million airline passengers traveling to or from the United States used Kennedy Airport, \"statement 2\" :In 1979 approximately 1 / 3 of the 37.3 million airline passengers traveling to or from the United States used Kennedy Airport, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_passengers_used_kennedy_airport_s1 = 2979\nnumber_of_passengers_used_kennedy_airport_s2 = 1979\n\nnumber_of_passengers_used_kennedy_airport_s1 = None\nnumber_of_passengers_used_kennedy_airport_s2 = None\n\nif number_of_passengers_used_kennedy_airport_s1 is None or number_of_passengers_used_kennedy_airport_s2 is None:\n print(\"Neutral\")\nelif number_of_passengers_used_kennedy_airport_s1 == number_of_passengers_used_kennedy_airport_s2 :\n print(\"Entailment\")\nelif number_of_passengers_used_kennedy_airport_s1 != number_of_passengers_used_kennedy_airport_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Tom drives from town W to town B , driving at a constant speed of 60 miles per hour, \"statement 2\" :Tom drives from town W to town B , driving at a constant speed of more than 40 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_of_tom_s1 = 60\nspeed_of_tom_s2= 0\nspeed_of_tom_s2 > 40\n\nif speed_of_tom_s1 is None or speed_of_tom_s2 is None:\n print(\"Neutral\")\nelif speed_of_tom_s1 > speed_of_tom_s2:\n print(\"Entailment\")\nelif speed_of_tom_s1 != speed_of_tom_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tommy has 60.0 balloons and his mom gave him 34.0 balloons for his birthday, \"statement 2\" :Tommy has 94.0 balloons now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "number_of_ballons_tom_has_s1 = 60+34\nnumber_of_ballons_tom_has_s2 = 94\n\nif number_of_ballons_tom_has_s1 is None or number_of_ballons_tom_has_s2 is None:\n print(\"Neutral\")\nelif number_of_ballons_tom_has_s1 == number_of_ballons_tom_has_s2 :\n print(\"Entailment\")\nelif number_of_ballons_tom_has_s1 != number_of_ballons_tom_has_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary is 14 years younger than Albert, \"statement 2\" :Mary is less than 24 years younger than Albert, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_years_mery_is_younger_than_albert_s1 = 60+34\nnumber_of_years_mery_is_younger_than_albert_s1 = 0\nnumber_of_years_mery_is_younger_than_albert_s1 < 24\n\nif number_of_years_mery_is_younger_than_albert_s1 is None or number_of_years_mery_is_younger_than_albert_s1 is None:\n print(\"Neutral\")\nelif number_of_years_mery_is_younger_than_albert_s1 < number_of_years_mery_is_younger_than_albert_s1 :\n print(\"Entailment\")\nelif number_of_years_mery_is_younger_than_albert_s1 != number_of_years_mery_is_younger_than_albert_s1 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sally wants to bake as many cakes as possible and has less than 37 cups of milk and 18 cups of flour, \"statement 2\" :Sally wants to bake as many cakes as possible and has 27 cups of milk and 18 cups of flour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_cups_of_milk_is_short_s1 = 37\nnumber_of_cups_of_milk_is_short_s2 = 27\n\nnumber_of_cups_of_milk_is_short_s1 = None\nnumber_of_cups_of_milk_is_short_s2 = None\n\nif number_of_cups_of_milk_is_short_s1 is None or number_of_cups_of_milk_is_short_s2 is None:\n print(\"Neutral\")\nelif number_of_cups_of_milk_is_short_s1 == number_of_cups_of_milk_is_short_s2 :\n print(\"Entailment\")\nelif number_of_cups_of_milk_is_short_s1 != number_of_cups_of_milk_is_short_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Robert purchased $ less than 7000 worth of US saving bonds, \"statement 2\" :Robert purchased $ 2000 worth of US saving bonds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_cups_of_milk_is_short_s1 = 37\nnumber_of_cups_of_milk_is_short_s2 = 27\n\nnumber_of_cups_of_milk_is_short_s1 = None\nnumber_of_cups_of_milk_is_short_s2 = None\n\nif number_of_cups_of_milk_is_short_s1 is None or number_of_cups_of_milk_is_short_s2 is None:\n print(\"Neutral\")\nelif number_of_cups_of_milk_is_short_s1 == number_of_cups_of_milk_is_short_s2 :\n print(\"Entailment\")\nelif number_of_cups_of_milk_is_short_s1 != number_of_cups_of_milk_is_short_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A dust storm sweeps across the prairie and it covers 64535.0 acres of the prairie in the dust, and leaves 522.0 acres untouched, \"statement 2\" :65057.0 acres are in the prarie, \"options: \" Entailment or contradiction?", + "Output Program": [ + "acres_untouched_s1 = 64535-522\nacres_untouched_s2 = 65057\n\nif acres_untouched_s1 is None or acres_untouched_s2 is None:\n print(\"Neutral\")\nelif acres_untouched_s1 < acres_untouched_s2 :\n print(\"Entailment\")\nelif acres_untouched_s1 != acres_untouched_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Celtic went into the match in the Russian capital with a record of 11 straight losses on the road in the Champions League and 21 games without a win away from home ., \"statement 2\" :Celtic snap away drought with superb 3-2 win in Moscow, \"options: \" Entailment or neutral?", + "Output Program": [ + "number_of_cups_of_milk_is_short_s1 = 37\nnumber_of_cups_of_milk_is_short_s2 = 27\n\nnumber_of_cups_of_milk_is_short_s1 = None\nnumber_of_cups_of_milk_is_short_s2 = None\n\nif number_of_cups_of_milk_is_short_s1 is None or number_of_cups_of_milk_is_short_s2 is None:\n print(\"Neutral\")\nelif number_of_cups_of_milk_is_short_s1 == number_of_cups_of_milk_is_short_s2 :\n print(\"Entailment\")\nelif number_of_cups_of_milk_is_short_s1 != number_of_cups_of_milk_is_short_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Chang Li has pet cockroaches that multiply at the same rate every week . The first week he had less than 7 , the next week he had 10 , the second week he had 20 , and the fourth week he had 80, \"statement 2\" :Chang Li has pet cockroaches that multiply at the same rate every week .\nThe first week he had 5 , the next week he had 10 , the second week he had 20 , and the fourth week he had 80, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_cockroaces_in_first_week_s1 = 0\nnumber_of_cockroaces_in_first_week_s1 < 7\nnumber_of_cockroaces_in_first_week_s2 = 5\n\nnumber_of_cockroaces_in_first_week_s1 = None\nnumber_of_cockroaces_in_first_week_s2 = None\n\nif number_of_cockroaces_in_first_week_s1 is None or number_of_cockroaces_in_first_week_s2 is None:\n print(\"Neutral\")\nelif number_of_cockroaces_in_first_week_s1 == number_of_cockroaces_in_first_week_s2 :\n print(\"Entailment\")\nelif number_of_cockroaces_in_first_week_s1 != number_of_cockroaces_in_first_week_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jane had an average of 87 on his first 7 tests, \"statement 2\" :Jane had an average of more than 87 on his first 7 tests, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_of_87_in_number_of_test_s1 = 87\naverage_of_87_in_number_of_test_s2 = 0\naverage_of_87_in_number_of_test_s2 > 7\n\nif average_of_87_in_number_of_test_s1 is None or average_of_87_in_number_of_test_s2 is None:\n print(\"Neutral\")\nelif average_of_87_in_number_of_test_s1 < average_of_87_in_number_of_test_s2 :\n print(\"Entailment\")\nelif average_of_87_in_number_of_test_s1 != average_of_87_in_number_of_test_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The compound interest earned by Sunil on a certain amount at the end of two years at the rate of 8 % p, \"statement 2\" :The compound interest earned by Sunil on a certain amount at the end of two years at the rate of more than 5 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "compound_interest_earned_by_sunil_s1 = 8\ncompound_interest_earned_by_sunil_s2 = 0\ncompound_interest_earned_by_sunil_s2 > 5\n\nif compound_interest_earned_by_sunil_s1 is None or compound_interest_earned_by_sunil_s2 is None:\n print(\"Neutral\")\nelif compound_interest_earned_by_sunil_s1 > compound_interest_earned_by_sunil_s2 :\n print(\"Entailment\")\nelif compound_interest_earned_by_sunil_s1 != compound_interest_earned_by_sunil_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Harkamal purchased 8 kg of grapes at the rate of 70 per kg and 9 kg of mangoes at the rate of 55 per kg, \"statement 2\" :Harkamal purchased 1 kg of grapes at the rate of 70 per kg and 9 kg of mangoes at the rate of 55 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "quantity_of_grapes_purchased_s1 = 8\nquantity_of_grapes_purchased_s2 = 1\n\nif quantity_of_grapes_purchased_s1 is None or quantity_of_grapes_purchased_s2 is None:\n print(\"Neutral\")\nelif quantity_of_grapes_purchased_s1 == quantity_of_grapes_purchased_s2 :\n print(\"Entailment\")\nelif quantity_of_grapes_purchased_s1 != quantity_of_grapes_purchased_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bhajan Singh purchased 120 reams of paper at Rs 80 per ream, \"statement 2\" :Bhajan Singh purchased 820 reams of paper at Rs 80 per ream, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_reams_purchased_s1 = 8\ntotal_reams_purchased_s2 = 1\n\nif total_reams_purchased_s1 is None or total_reams_purchased_s2 is None:\n print(\"Neutral\")\nelif total_reams_purchased_s1 == total_reams_purchased_s2 :\n print(\"Entailment\")\nelif total_reams_purchased_s1 != total_reams_purchased_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He will be 5 / 3 times as old as Tom 6 years hence, \"statement 2\" :He will be more than 3 / 3 times as old as Tom 6 years hence, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_times_he_is_older_s1 = 8\nnumber_of_times_he_is_older_s2 = 0\nnumber_of_times_he_is_older_s2 > 3/3\n\nif number_of_times_he_is_older_s1 is None or number_of_times_he_is_older_s2 is None:\n print(\"Neutral\")\nelif number_of_times_he_is_older_s1 > number_of_times_he_is_older_s2 :\n print(\"Entailment\")\nelif number_of_times_he_is_older_s1 != number_of_times_he_is_older_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many different combinations of less than 8 passengers can be formed from John ' s 4 friends ?, \"statement 2\" :How many different combinations of 2 passengers can be formed from John ' s 4 friends ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "different_combinations_s1 = 0\ndifferent_combinations_s1 < 8\ndifferent_combinations_s2 = 2\n\ndifferent_combinations_s1 = None\ndifferent_combinations_s2 = None\n\nif different_combinations_s1 is None or different_combinations_s2 is None:\n print(\"Neutral\")\nelif different_combinations_s1 < different_combinations_s2 :\n print(\"Entailment\")\nelif different_combinations_s1 != different_combinations_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nicole found an orange caterpillar and a green caterpillar in her backyard and the green caterpillar was 3.0 inches long, and the orange caterpillar was 1.1666666666666667 inches long , \"statement 2\" :The green caterpillar and the orange caterpillar were 8.2 inches in total , \"options: \" Entailment or contradiction?", + "Output Program": [ + "length_of_caterpillar_s1 = 3.0+1.66\nlength_of_caterpillar_s2 = 8.2\n\nif length_of_caterpillar_s1 is None or length_of_caterpillar_s2 is None:\n print(\"Neutral\")\nelif length_of_caterpillar_s1 == length_of_caterpillar_s2 :\n print(\"Entailment\")\nelif length_of_caterpillar_s1 != length_of_caterpillar_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At Veridux Corporation , there are 200 employees, \"statement 2\" :At Veridux Corporation , there are more than 200 employees, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_employees_s1 = 3.0+1.66\ntotal_employees_s2 = 8.2\n\nif total_employees_s1 is None or total_employees_s2 is None:\n print(\"Neutral\")\nelif total_employees_s1== total_employees_s2:\n print(\"Entailment\")\nelif total_employees_s1!= total_employees_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rajeev invests some money at the beginning , Lakshmi invests double the amount after more than 2 months , and Muthu invests thrice the amount after 8 months, \"statement 2\" :Rajeev invests some money at the beginning , Lakshmi invests double the amount after 6 months , and Muthu invests thrice the amount after 8 months, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "money_invested_s1 = 0\nmoney_invested_s1 > 2\nmoney_invested_s2 = 6\n\nmoney_invested_s1 = None\nmoney_invested_s2 = None\n\nif money_invested_s1 is None or money_invested_s2 is None:\n print(\"Neutral\")\nelif money_invested_s1 < money_invested_s2:\n print(\"Entailment\")\nelif money_invested_s1 != money_invested_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At Jerri \u2019 s Pet Shop , 60 cups of bird seed are used every 5 days to feed 20 parakeets, \"statement 2\" :At Jerri \u2019 s Pet Shop , more than 20 cups of bird seed are used every 5 days to feed 20 parakeets, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cups_of_bird_seed_s1 = 60\ncups_of_bird_seed_s2 = 0\ncups_of_bird_seed_s2 > 20\n\nif cups_of_bird_seed_s1 is None or cups_of_bird_seed_s2 is None:\n print(\"Neutral\")\nelif cups_of_bird_seed_s1 > cups_of_bird_seed_s2:\n print(\"Entailment\")\nelif cups_of_bird_seed_s1 != cups_of_bird_seed_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Gwen drove an average speed of less than 75 miles per hour for the first 40 miles of a tripthen at a average speed of 30 miles / hr for the remaining 40 miles of the trip if she made no stops during the trip what was Gwen ' s avg speed in miles / hr for the entire trip, \"statement 2\" :Gwen drove an average speed of 15 miles per hour for the first 40 miles of a tripthen at a average speed of 30 miles / hr for the remaining 40 miles of the trip if she made no stops during the trip what was Gwen ' s avg speed in miles / hr for the entire trip, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_miles_per_hour_s1 = 0\nspeed_miles_per_hour_s1 < 75\nspeed_miles_per_hour_s2 = 15\n\nspeed_miles_per_hour_s1 = None\nspeed_miles_per_hour_s2 = None\n\nif speed_miles_per_hour_s1 is None or speed_miles_per_hour_s2 is None:\n print(\"Neutral\")\nelif speed_miles_per_hour_s1 < speed_miles_per_hour_s2:\n print(\"Entailment\")\nelif speed_miles_per_hour_s1 != speed_miles_per_hour_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Two dogsled teams raced across a more than 200 mile course in Wyoming, \"statement 2\" :Two dogsled teams raced across a 300 mile course in Wyoming, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "team_raced_s1 = 0\nteam_raced_s1 > 200\nteam_raced_s2 = 300\n\nteam_raced_s1 = None\nteam_raced_s2 = None\n\nif team_raced_s1 is None or team_raced_s2 is None:\n print(\"Neutral\")\nelif team_raced_s1 < team_raced_s2:\n print(\"Entailment\")\nelif team_raced_s1 != team_raced_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Raman mixed 24 kg of butter at Rs, \"statement 2\" :Raman mixed less than 24 kg of butter at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "quantity_of_butter_mixed_s1 = 24\nquantity_of_butter_mixed_s2 = 0\nquantity_of_butter_mixed_s2 < 24\n\nif quantity_of_butter_mixed_s1 is None or quantity_of_butter_mixed_s2 is None:\n print(\"Neutral\")\nelif quantity_of_butter_mixed_s1 == quantity_of_butter_mixed_s2 :\n print(\"Entailment\")\nelif quantity_of_butter_mixed_s1 != quantity_of_butter_mixed_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At a meeting of the more than 6 Joint Chiefs of Staff , the Chief of Naval Operations does not want to sit next to the Chief of the National Guard Bureau, \"statement 2\" :At a meeting of the 9 Joint Chiefs of Staff , the Chief of Naval Operations does not want to sit next to the Chief of the National Guard Bureau, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "joint_chiefs_s1 = 0\njoint_chiefs_s1 > 6\njoint_chiefs_s2 = 9\n\njoint_chiefs_s1 = None\njoint_chiefs_s2 = None\n\nif joint_chiefs_s1 is None or joint_chiefs_s2 is None:\n print(\"Neutral\")\nelif joint_chiefs_s1 < joint_chiefs_s2:\n print(\"Entailment\")\nelif joint_chiefs_s1 != joint_chiefs_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 504.0 apples and it takes 4.0 apples to make 1.0 pie, \"statement 2\" :There are 129.0 pies, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_pies_s1 = 504/4\ntotal_pies_s2 = 129\n\nif total_pies_s1 is None or total_pies_s2 is None:\n print(\"Neutral\")\nelif total_pies_s1 == total_pies_s2 :\n print(\"Entailment\")\nelif total_pies_s1 != total_pies_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Two of the Spanish nationals arrested were living aboard the yacht and another two were arrested after they were discovered allegedly meeting the yacht in the northeastern coastal town of Bundaberg ., \"statement 2\" :Four Spanish nationals were arrested in connection with the cocaine seizure, \"options: \" Entailment or neutral?", + "Output Program": [ + "spanish_arrested_s1 = 2\nspanish_arrested_s2 = 4\n\nspanish_arrested_s1 = None\nspanish_arrested_s2 = None\n\nif spanish_arrested_s1 is None or spanish_arrested_s2 is None:\n print(\"Neutral\")\nelif spanish_arrested_s1 < spanish_arrested_s2:\n print(\"Entailment\")\nelif spanish_arrested_s1 != spanish_arrested_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": It will take 18 days for Cameron to complete a certain task alone, \"statement 2\" :It will take less than 38 days for Cameron to complete a certain task alone, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_to_complete_task_s1 = 18\ndays_to_complete_task_s2 = 0\ndays_to_complete_task_s2 < 38\n\nif days_to_complete_task_s1 is None or days_to_complete_task_s2 is None:\n print(\"Neutral\")\nelif days_to_complete_task_s1 > days_to_complete_task_s2:\n print(\"Entailment\")\nelif days_to_complete_task_s1 != days_to_complete_task_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Julie has 7 friends, \"statement 2\" :Julie has 8 friends, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "friend_julies_has_s1 = 7\nfriend_julies_has_s2 = 8\n\nif friend_julies_has_s1 is None or friend_julies_has_s2 is None:\n print(\"Neutral\")\nelif friend_julies_has_s1 == friend_julies_has_s2 :\n print(\"Entailment\")\nelif friend_julies_has_s1 != friend_julies_has_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Charges against Alton Alexander Nolen , 30 , will include first-degree murder and assault with a deadly weapon , according to Jeremy Lewis , spokesman for the Moore , Oklahoma , police ., \"statement 2\" :Police say they have interviewed suspect Alton Alexander Nolen , 30, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_accused_of_murder_s1 = 30\npeople_accused_of_murder_s2 = 30\n\nif people_accused_of_murder_s1 is None or people_accused_of_murder_s2 is None:\n print('neutral')\n\nelif people_accused_of_murder_s1 == people_accused_of_murder_s2:\n print('Entailment')\n\nelif people_accused_of_murder_s1 != people_accused_of_murder_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were 10.0 students riding on the school bus and at the first stop, 3.0 students got on the bus, \"statement 2\" :13.0 students are now on the bus, \"options: \" Entailment or contradiction?", + "Output Program": [ + "students_riding_on_bus_s1 = 10+3\nstudents_riding_on_bus_s2 = 13\n\nif students_riding_on_bus_s1 is None or students_riding_on_bus_s2 is None:\n print(\"Neutral\")\nelif students_riding_on_bus_s1 == students_riding_on_bus_s2:\n print(\"Entailment\")\nelif students_riding_on_bus_s1 != students_riding_on_bus_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Olsen , 24 , had seen his share of war in two tours of Iraq as a Marine ., \"statement 2\" :Scott Olsen returned from two tours of Iraq without injury, \"options: \" Entailment or neutral?", + "Output Program": [ + "share_of_wars_s1 = 2\nshare_of_wars_s2 = 2\n\nshare_of_wars_s1 = None\nshare_of_wars_s2 = None\n\nif share_of_wars_s1 is None or share_of_wars_s2 is None:\n print(\"Neutral\")\nelif share_of_wars_s1 < share_of_wars_s2:\n print(\"Entailment\")\nelif share_of_wars_s1 != share_of_wars_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a group of 100 people , 55 have visited Iceland and 43 have visited Norway, \"statement 2\" :In a group of more than 100 people , 55 have visited Iceland and 43 have visited Norway, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "friend_julies_has_s1 = 7\nfriend_julies_has_s2 = 8\n\nif friend_julies_has_s1 is None or friend_julies_has_s2 is None:\n print(\"Neutral\")\nelif friend_julies_has_s1 == friend_julies_has_s2 :\n print(\"Entailment\")\nelif friend_julies_has_s1 != friend_julies_has_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many seconds does Sandy take to cover a distance of 600 meters , if Sandy runs at a speed of 15 km / hr ?, \"statement 2\" :How many seconds does Sandy take to cover a distance of less than 800 meters , if Sandy runs at a speed of 15 km / hr ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_covered_by_sandy_s1 = 600\ndistance_covered_by_sandy_s2 = 0\ndistance_covered_by_sandy_s2 < 800\n\nif distance_covered_by_sandy_s1 is None or distance_covered_by_sandy_s2 is None:\n print(\"Neutral\")\nelif distance_covered_by_sandy_s1 > distance_covered_by_sandy_s2 :\n print(\"Entailment\")\nelif distance_covered_by_sandy_s1 != distance_covered_by_sandy_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Pinky returned four chocolate to the retailer , and the average price of the remaining chocolate was less than 4 \u00a2 , then what is the average price , in cents , of the four returned chocolates ?, \"statement 2\" :If Pinky returned four chocolate to the retailer , and the average price of the remaining chocolate was 2 \u00a2 , then what is the average price , in cents , of the four returned chocolates ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "remaining_chocolates_s1 = 0\nremaining_chocolates_s1 < 4\nremaining_chocolates_s2 = 2\n\nremaining_chocolates_s1 = None\nremaining_chocolates_s2 = None\n\nif remaining_chocolates_s1 is None or remaining_chocolates_s2 is None:\n print(\"Neutral\")\nelif remaining_chocolates_s1 < remaining_chocolates_s2:\n print(\"Entailment\")\nelif remaining_chocolates_s1 != remaining_chocolates_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Experts estimate that only 5 % to 10 % of stolen artworks ever finds its way back to the owners ., \"statement 2\" :Only 5 % to 10 % of stolen art ever gets returned to the owners ., \"options: \" Entailment or neutral?", + "Output Program": [ + "experts_estimate_s1 = 5-10\nexperts_estimate_s2 = 5-10\n\nif experts_estimate_s1 is None or experts_estimate_s2 is None:\n print(\"Neutral\")\nelif experts_estimate_s1 == experts_estimate_s2:\n print(\"Entailment\")\nelif experts_estimate_s1 != experts_estimate_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A waiter had 19.0 customers to wait on, and 14.0 customers left and he got another 36.0 customers, \"statement 2\" :He would have 41.0 customers , \"options: \" Entailment or contradiction?", + "Output Program": [ + "customers_wait_s1 = 19-14+36\ncustomers_wait_s2 = 41\n\nif customers_wait_s1 is None or customers_wait_s2 is None:\n print(\"Neutral\")\nelif customers_wait_s1 == customers_wait_s2:\n print(\"Entailment\")\nelif customers_wait_s1 != customers_wait_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a Facebook video posted by Megan Nolen , two women who say they are Nolen 's mother and sister apologize for his actions ., \"statement 2\" :Two women saying they 're part of suspect 's family apologize in Facebook video, \"options: \" Entailment or neutral?", + "Output Program": [ + "number_women_apologising_s1 = 600\nnumber_women_apologising_s2 = 0\n\n\nif number_women_apologising_s1 is None or number_women_apologising_s2 is None:\n print(\"Neutral\")\nelif number_women_apologising_s1 > number_women_apologising_s2 :\n print(\"Entailment\")\nelif number_women_apologising_s1 != number_women_apologising_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After they have worked together for 12 days Matt stops and Peter completes the remaining work in 10 days, \"statement 2\" :After they have worked together for less than 82 days Matt stops and Peter completes the remaining work in 10 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "work_together_s1 = 12\nwork_together_s2 = 0\nwork_together_s2 < 82\n\nif work_together_s1 is None or work_together_s2 is None:\n print(\"Neutral\")\nelif work_together_s1 > work_together_s2:\n print(\"Entailment\")\nelif work_together_s1 != work_together_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary and Harry enter into a partnership by investing $ more than 400 and $ 300 respectively, \"statement 2\" :Mary and Harry enter into a partnership by investing $ 700 and $ 300 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "partnership_by_investing_s1 = 0\npartnership_by_investing_s1 > 400\npartnership_by_investing_s2 = 700\n\npartnership_by_investing_s1 = None\npartnership_by_investing_s2 = None\n\nif partnership_by_investing_s1 is None or partnership_by_investing_s2 is None:\n print(\"Neutral\")\nelif partnership_by_investing_s1 < partnership_by_investing_s2:\n print(\"Entailment\")\nelif partnership_by_investing_s1 != partnership_by_investing_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If 15 % of all the students at Morse have cars , how many students are in the three lower grades ?, \"statement 2\" :If more than 15 % of all the students at Morse have cars , how many students are in the three lower grades ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "students_has_morse_cars_s1 = 15\nstudents_has_morse_cars_s2 = 0\nstudents_has_morse_cars_s2 < 15\n\nif students_has_morse_cars_s1 is None or students_has_morse_cars_s2 is None:\n print(\"Neutral\")\nelif students_has_morse_cars_s1 < students_has_morse_cars_s2 :\n print(\"Entailment\")\nelif students_has_morse_cars_s1 != students_has_morse_cars_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is 4 : 3 , After 6 Years Rahul age will be 26 years, \"statement 2\" :Ratio between Rahul and Deepak is more than 2 : 3 , After 6 Years Rahul age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_between_rahul_deepak_s1 = 4/3\nratio_between_rahul_deepak_s2 = 0\nratio_between_rahul_deepak_s2 > 2/3\n\nif ratio_between_rahul_deepak_s1 is None or ratio_between_rahul_deepak_s2 is None:\n print(\"Neutral\")\nelif ratio_between_rahul_deepak_s1 > ratio_between_rahul_deepak_s2:\n print(\"Entailment\")\nelif ratio_between_rahul_deepak_s1 != ratio_between_rahul_deepak_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Britain leaves Iraq this time with 179 of its own dead ., \"statement 2\" :British forces leave Iraq with 179 dead, \"options: \" Entailment or neutral?", + "Output Program": [ + "britain_leave_iraq_s1 = 179\nbritain_leave_iraq_s2 = 179\n\nif britain_leave_iraq_s1 is None or britain_leave_iraq_s2 is None:\n print(\"Neutral\")\nelif britain_leave_iraq_s1 == britain_leave_iraq_s2:\n print(\"Entailment\")\nelif britain_leave_iraq_s1 != britain_leave_iraq_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If John received $ 800 more than Mike did , what was the profit made by their business in that year ?, \"statement 2\" :If John received $ more than 400 more than Mike did , what was the profit made by their business in that year ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "profit_made_in_business_s1 = 800\nprofit_made_in_business_s2 = 0\nprofit_made_in_business_s2 > 400\n\nif profit_made_in_business_s1 is None or profit_made_in_business_s2 is None:\n print(\"Neutral\")\nelif profit_made_in_business_s1 > profit_made_in_business_s2:\n print(\"Entailment\")\nelif profit_made_in_business_s1 != profit_made_in_business_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tom and Jerry enter into a partnership by investing $ 700 and $ 300 respectively, \"statement 2\" :Tom and Jerry enter into a partnership by investing $ more than 700 and $ 300 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_invested_by_tom_and_jerry_s1 = 700\namount_invested_by_tom_and_jerry_s2 = 0\namount_invested_by_tom_and_jerry_s1 > 700\n\nif amount_invested_by_tom_and_jerry_s1 is None or amount_invested_by_tom_and_jerry_s2 is None:\n print(\"Neutral\")\nelif amount_invested_by_tom_and_jerry_s1 < amount_invested_by_tom_and_jerry_s2 :\n print(\"Entailment\")\nelif amount_invested_by_tom_and_jerry_s1 != amount_invested_by_tom_and_jerry_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The farmers reported that they harvest 45.0 sacks of apples from each of the 8.0 sections of the orchard daily., \"statement 2\" :361.0 sacks are harvested every day, \"options: \" Entailment or contradiction?", + "Output Program": [ + "number_of_sacks_harvested_s1 = 45*8\nnumber_of_sacks_harvested_s2 = 361\n\nif number_of_sacks_harvested_s1 is None or number_of_sacks_harvested_s2 is None:\n print(\"Neutral\")\nelif number_of_sacks_harvested_s1 < number_of_sacks_harvested_s2 :\n print(\"Entailment\")\nelif number_of_sacks_harvested_s1 != number_of_sacks_harvested_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jones gave more than 10 % of the money he had to his wife, \"statement 2\" :Jones gave 40 % of the money he had to his wife, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jones_gave_money_s1 = 0\njones_gave_money_s1 > 10\njones_gave_money_s2 = 40\n\njones_gave_money_s1 = None\njones_gave_money_s2 = None\n\nif jones_gave_money_s1 is None or jones_gave_money_s2 is None:\n print(\"Neutral\")\nelif jones_gave_money_s1 < jones_gave_money_s2:\n print(\"Entailment\")\nelif jones_gave_money_s1 != jones_gave_money_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The Rwanda News Agency reported that Rwanda has dispatched 1,917 soldiers ., \"statement 2\" :Rwanda has dispatched some 1,900 soldiers , Rwanda News Agency reports, \"options: \" Entailment or neutral?", + "Output Program": [ + "dispatched_soldiers_s1 = 1917\ndispatched_soldiers_s2 = 1900\n\nif dispatched_soldiers_s1 is None or dispatched_soldiers_s2 is None:\n print(\"Neutral\")\nelif dispatched_soldiers_s1 > dispatched_soldiers_s2:\n print(\"Entailment\")\nelif dispatched_soldiers_s1 != dispatched_soldiers_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Four tractor-trailer cargo containers hold the incinerated mementos , Moreno said ., \"statement 2\" :Four tractor trailer cargo containers hold ashes of incinerated mementos, \"options: \" Entailment or neutral?", + "Output Program": [ + "containers_hold_mementos_s1 = 4\ncontainers_hold_mementos_s2 = 4\n\nif containers_hold_mementos_s1 is None or containers_hold_mementos_s2 is None:\n print(\"Neutral\")\nelif containers_hold_mementos_s1 == containers_hold_mementos_s2:\n print(\"Entailment\")\nelif containers_hold_mementos_s1 != containers_hold_mementos_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Yesterday it took Robert less than 8 hours to drive from City A to City B, \"statement 2\" :Yesterday it took Robert 3 hours to drive from City A to City B, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "robert_drives_s1 = 0\nrobert_drives_s1 < 8\nrobert_drives_s2 = 3\n\nrobert_drives_s1 = None\nrobert_drives_s2 = None\n\nif robert_drives_s1 is None or robert_drives_s2 is None:\n print(\"Neutral\")\nelif robert_drives_s1 < robert_drives_s2:\n print(\"Entailment\")\nelif robert_drives_s1 != robert_drives_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The more than 22 parents participating in the Smithville PTA have been assigned to at least 1 of 3 committees : festival planning , classroom aid , and teacher relations, \"statement 2\" :The 42 parents participating in the Smithville PTA have been assigned to at least 1 of 3 committees : festival planning , classroom aid , and teacher relations, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "parents_participating_s1 = 0\nparents_participating_s1 > 22\nparents_participating_s2 = 42\n\nparents_participating_s1 = None\nparents_participating_s2 = None\n\nif parents_participating_s1 is None or parents_participating_s2 is None:\n print(\"Neutral\")\nelif parents_participating_s1 < parents_participating_s2:\n print(\"Entailment\")\nelif parents_participating_s1 != parents_participating_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained 90 , 92 , 85 , 87 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained 60 , 92 , 85 , 87 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_In_english_s1 = 90\nmarks_In_english_s2 = 60\n\nif marks_In_english_s1 is None or marks_In_english_s2 is None:\n print(\"Neutral\")\nelif marks_In_english_s1 == marks_In_english_s2 :\n print(\"Entailment\")\nelif marks_In_english_s1 != marks_In_english_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Today Jennifer , who is 30 years old , and her daughter , who is 6 years old , celebrate their birthdays, \"statement 2\" :Today Jennifer , who is less than 60 years old , and her daughter , who is 6 years old , celebrate their birthdays, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_old_s1 = 30\nyears_old_s2 = 0\nyears_old_s2 < 60\n\nif years_old_s1 is None or years_old_s2 is None:\n print(\"Neutral\")\nelif years_old_s1 > years_old_s2:\n print(\"Entailment\")\nelif years_old_s1 != years_old_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 8 defeated Caroline Wozniacki 6-3 6-4 to set up a clash for the title against Italy 's Sara Errani ., \"statement 2\" :World No. 8 defeated Caroline Wozniacki 6-3 6-4, \"options: \" Entailment or neutral?", + "Output Program": [ + "defeated_caroline_s1 = 8\ndefeated_caroline_s2 = 8\n\nif defeated_caroline_s1 is None or defeated_caroline_s2 is None:\n print(\"Neutral\")\nelif defeated_caroline_s1 == defeated_caroline_s2:\n print(\"Entailment\")\nelif defeated_caroline_s1 != defeated_caroline_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nearly two-thirds ( 62 % ) said they oppose U.S.-led efforts to fight terrorism ., \"statement 2\" :Nearly two-thirds ( 63 % ) expressed disapproval of the raid, \"options: \" Entailment or neutral?", + "Output Program": [ + "oppose_US_s1 = 62\noppose_US_s2 = 63\n\noppose_US_s1 = None\noppose_US_s2 = None\n\nif oppose_US_s1 is None or oppose_US_s2 is None:\n print(\"Neutral\")\nelif oppose_US_s1 < oppose_US_s2:\n print(\"Entailment\")\nelif oppose_US_s1 != oppose_US_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The next day , Alice took the test , and with this grade included , the new average was 79, \"statement 2\" :The next day , Alice took the test , and with this grade included , the new average was more than 29, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_s1 = 79\naverage_s2 = 0\naverage_s2 > 29\n\nif average_s1 is None or average_s2 is None:\n print(\"Neutral\")\nelif average_s1 > average_s2:\n print(\"Entailment\")\nelif average_s1 != average_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Frank is less than 63 years younger then John, \"statement 2\" :Frank is 13 years younger then John, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "frank_younger_than_john_s1 = 0\nfrank_younger_than_john_s1 < 63\nfrank_younger_than_john_s2 = 13\n\nfrank_younger_than_john_s1 = None\nfrank_younger_than_john_s2 = None\n\nif frank_younger_than_john_s1 is None or frank_younger_than_john_s2 is None:\n print(\"Neutral\")\nelif frank_younger_than_john_s1 < frank_younger_than_john_s2:\n print(\"Entailment\")\nelif frank_younger_than_john_s1 != frank_younger_than_john_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the number of such passengers that used Miami Airport was 1 / 2 the number that used Kennedy Airport and 5 times the number that used Logan Airport , approximately how many millions of these passengers used Logan Airport that year ?, \"statement 2\" :If the number of such passengers that used Miami Airport was less than 2 / 2 the number that used Kennedy Airport and 5 times the number that used Logan Airport , approximately how many millions of these passengers used Logan Airport that year ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "no_of_passengers_s1 = 1/2\nno_of_passengers_s2 = 0\nno_of_passengers_s2 < 2/2\n\nif no_of_passengers_s1 is None or no_of_passengers_s2 is None:\n print(\"Neutral\")\nelif no_of_passengers_s1 > no_of_passengers_s2:\n print(\"Entailment\")\nelif no_of_passengers_s1 != no_of_passengers_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are more than 15 males altogether , how many gerbils does Claire have ?, \"statement 2\" :If there are 25 males altogether , how many gerbils does Claire have ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "males_altogether_s1 = 0\nmales_altogether_s1 >15\nmales_altogether_s2 = 25\n\nmales_altogether_s1 = None\nmales_altogether_s2 = None\n\nif males_altogether_s1 is None or males_altogether_s2 is None:\n print(\"Neutral\")\nelif males_altogether_s1 < males_altogether_s2:\n print(\"Entailment\")\nelif males_altogether_s1 != males_altogether_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A dust storm sweeps across the prairie and it covers 64535.0 acres of the prairie in the dust, and leaves 522.0 acres untouched, \"statement 2\" :65056.0 acres are in the prarie, \"options: \" Entailment or contradiction?", + "Output Program": [ + "acres_untouched_s1 = 64535-522\nacres_untouched_s2 = 65056\n\nif acres_untouched_s1 is None or acres_untouched_s2 is None:\n print(\"Neutral\")\nelif acres_untouched_s1 == acres_untouched_s2 :\n print(\"Entailment\")\nelif acres_untouched_s1 != acres_untouched_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were 6.0 roses in the vase and Mary cut some roses from her flower garden and put 16.0 more roses in the vase, \"statement 2\" :22.0 roses are now in the vase, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_roses_s1 = 6+16\ntotal_roses_s2 = 22\n\nif total_roses_s1 is None or total_roses_s2 is None:\n print(\"Neutral\")\nelif total_roses_s1 == total_roses_s2 :\n print(\"Entailment\")\nelif total_roses_s1 != total_roses_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 4 more women than men on Centerville ' s board of education, \"statement 2\" :There are less than 5 more women than men on Centerville ' s board of education, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "women_than_men_s1 = 4\nwomen_than_men_s2 = 0\nwomen_than_men_s2 < 5\n\nif women_than_men_s1 is None or women_than_men_s2 is None:\n print(\"Neutral\")\nelif women_than_men_s1 > women_than_men_s2:\n print(\"Entailment\")\nelif women_than_men_s1 != women_than_men_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The investigation involving Mr Lopez and three associates are primarily concerned with suspicions of the systematic theft of secrets ., \"statement 2\" :Seven other GM executives left with Lopez ., \"options: \" Entailment or neutral?", + "Output Program": [ + "investigation_involving_executives_s1 = 4\ninvestigation_involving_executives_s2 = 7\n\ninvestigation_involving_executives_s1 = None\ninvestigation_involving_executives_s2 = None\n\nif investigation_involving_executives_s1 is None or investigation_involving_executives_s2 is None:\n print(\"Neutral\")\nelif investigation_involving_executives_s1 < investigation_involving_executives_s2:\n print(\"Entailment\")\nelif investigation_involving_executives_s1 != investigation_involving_executives_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jerry alone cleans the entire house in 6 hours, \"statement 2\" :Jerry alone cleans the entire house in more than 4 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "time_reuied_by_jerry_to_cclean_house_s1 = 6+16\ntime_reuied_by_jerry_to_cclean_house_s2 = 0\ntime_reuied_by_jerry_to_cclean_house_s2 > 4\n\nif time_reuied_by_jerry_to_cclean_house_s1 is None or time_reuied_by_jerry_to_cclean_house_s2 is None:\n print(\"Neutral\")\nelif time_reuied_by_jerry_to_cclean_house_s1 > time_reuied_by_jerry_to_cclean_house_s2 :\n print(\"Entailment\")\nelif time_reuied_by_jerry_to_cclean_house_s1 != time_reuied_by_jerry_to_cclean_house_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": And regardless of how safe we make oil drilling , tankers , or pipelines , we 'll never reduce spill risk to zero ., \"statement 2\" :She says no matter how we make drilling , tankers , pipelines safe , risk will never be zero, \"options: \" Entailment or neutral?", + "Output Program": [ + "risk_of_spilling_s1 = 0\nrisk_of_spilling_s2 = 0\n\n\nif risk_of_spilling_s1 is None or risk_of_spilling_s2 is None:\n print(\"Neutral\")\nelif risk_of_spilling_s1 == risk_of_spilling_s2 :\n print(\"Entailment\")\nelif risk_of_spilling_s1 != risk_of_spilling_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rebecca ' s annual income is $ 15 , and Jimmy ' s annual income is $ 18, \"statement 2\" :Rebecca ' s annual income is $ less than 45 , and Jimmy ' s annual income is $ 18, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rebecca_annual_income_s1 = 15\nrebecca_annual_income_s2 = 0\nrebecca_annual_income_s2 > 45\n\n\nif rebecca_annual_income_s1 is None or rebecca_annual_income_s2 is None:\n print(\"Neutral\")\nelif rebecca_annual_income_s1 > rebecca_annual_income_s2 :\n print(\"Entailment\")\nelif rebecca_annual_income_s1 != rebecca_annual_income_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If , five years from now , the sum E of their ages will be 51 , how old is Stephanie ?, \"statement 2\" :If , five years from now , the sum E of their ages will be 21 , how old is Stephanie ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sum_of_age_after_five_years_s1 = 51\nsum_of_age_after_five_years_s2 = 21\n\n\nif sum_of_age_after_five_years_s1 is None or sum_of_age_after_five_years_s2 is None:\n print(\"Neutral\")\nelif sum_of_age_after_five_years_s1 == sum_of_age_after_five_years_s2 :\n print(\"Entailment\")\nelif sum_of_age_after_five_years_s1 != sum_of_age_after_five_years_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A circle of radius 10 inches has its center at the vertex C of an equilateral triangle ABC and passes through the other two vertices, \"statement 2\" :A circle of radius less than 10 inches has its center at the vertex C of an equilateral triangle ABC and passes through the other two vertices, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sum_of_age_after_five_years_s1 = 51\nsum_of_age_after_five_years_s2 = 21\n\n\nif sum_of_age_after_five_years_s1 is None or sum_of_age_after_five_years_s2 is None:\n print(\"Neutral\")\nelif sum_of_age_after_five_years_s1 == sum_of_age_after_five_years_s2 :\n print(\"Entailment\")\nelif sum_of_age_after_five_years_s1 != sum_of_age_after_five_years_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jason picked 46.0 pears , Keith picked 47.0 pears , and Mike picked 12.0 pears from the pear tree ., \"statement 2\" :101.0 pears were picked in total, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_pears_picked_s1 = 46+47+12\ntotal_pears_picked_s2 = 101\n\n\nif total_pears_picked_s1 is None or total_pears_picked_s2 is None:\n print(\"Neutral\")\nelif total_pears_picked_s1 == total_pears_picked_s2 :\n print(\"Entailment\")\nelif total_pears_picked_s1 != total_pears_picked_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 300 tax added to Harini ' s pet cost, \"statement 2\" :less than 300 tax added to Harini ' s pet cost, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_pears_picked_s1 = 46+47+12\ntotal_pears_picked_s2 = 101\n\n\nif total_pears_picked_s1 is None or total_pears_picked_s2 is None:\n print(\"Neutral\")\nelif total_pears_picked_s1 == total_pears_picked_s2 :\n print(\"Entailment\")\nelif total_pears_picked_s1 != total_pears_picked_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Faiza has more than 4 purses , she gives 3 purse as gift, \"statement 2\" :Faiza has 9 purses , she gives 3 purse as gift, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_purses_faiza_has_s1 = 7\ntotal_purses_faiza_has_s1 > 4\ntotal_purses_faiza_has_s2 = 9\n\ntotal_purses_faiza_has_s1 = None\ntotal_purses_faiza_has_s2 = None\n\nif total_purses_faiza_has_s1 is None or total_purses_faiza_has_s2 is None:\n print(\"Neutral\")\nelif total_purses_faiza_has_s1 < total_purses_faiza_has_s2 :\n print(\"Entailment\")\nelif total_purses_faiza_has_s1 != total_purses_faiza_has_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": less than 8200 among John , Jose & Binoy in the ration 2 : 4 : 6, \"statement 2\" :4200 among John , Jose & Binoy in the ration 2 : 4 : 6, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_s1 = 0\nratio_s1 < 8200\nratio_s2 = 4200\n\nratio_s1 = None\nratio_s2 = None\n\nif ratio_s1 is None or ratio_s2 is None:\n print(\"Neutral\")\nelif ratio_s1 < ratio_s2 :\n print(\"Entailment\")\nelif ratio_s1 != ratio_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a certain town , the ratio of NY Yankees fans to NY Mets fans is less than 8 : 2 , and the ratio of NY Mets fans to Boston Red Sox fans is 4 : 5, \"statement 2\" :In a certain town , the ratio of NY Yankees fans to NY Mets fans is 3 : 2 , and the ratio of NY Mets fans to Boston Red Sox fans is 4 : 5, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_of_yankees_fan_s1 = 0\nratio_of_yankees_fan_s1 < 8/2\nratio_of_yankees_fan_s2 = 3/2\n\nratio_of_yankees_fan_s1 = None\nratio_of_yankees_fan_s2 = None\n\nif ratio_of_yankees_fan_s1 is None or ratio_of_yankees_fan_s2 is None:\n print(\"Neutral\")\nelif ratio_of_yankees_fan_s1 < ratio_of_yankees_fan_s2 :\n print(\"Entailment\")\nelif ratio_of_yankees_fan_s1 != ratio_of_yankees_fan_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Yesterday it took Robert 3 hours to drive from City A to City B, \"statement 2\" :Yesterday it took Robert less than 8 hours to drive from City A to City B, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "time_required_to_drive_from_a_to_b_s1 = 3\ntime_required_to_drive_from_a_to_b_s2 = 0\ntime_required_to_drive_from_a_to_b_s2 < 8\n\n\nif time_required_to_drive_from_a_to_b_s1 is None or time_required_to_drive_from_a_to_b_s2 is None:\n print(\"Neutral\")\nelif time_required_to_drive_from_a_to_b_s1 > time_required_to_drive_from_a_to_b_s2 :\n print(\"Entailment\")\nelif time_required_to_drive_from_a_to_b_s1 != time_required_to_drive_from_a_to_b_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dan found 56.0 seashells on the beach, Jessica gave him some of her seashells and she gave him 22.0 seashells, \"statement 2\" :Dan has 78.0 seashells now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_shells_den_has_s1 = 56+22\ntotal_shells_den_has_s2 = 78\n\n\nif total_shells_den_has_s1 is None or total_shells_den_has_s2 is None:\n print(\"Neutral\")\nelif total_shells_den_has_s1 == total_shells_den_has_s2 :\n print(\"Entailment\")\nelif total_shells_den_has_s1 != total_shells_den_has_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": On the first day of her vacation , Louisa traveled less than 300 miles, \"statement 2\" :On the first day of her vacation , Louisa traveled 100 miles, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_of_yankees_fan_s1 = 0\nratio_of_yankees_fan_s1 < 8/2\nratio_of_yankees_fan_s2 = 3/2\n\nratio_of_yankees_fan_s1 = None\nratio_of_yankees_fan_s2 = None\n\nif ratio_of_yankees_fan_s1 is None or ratio_of_yankees_fan_s2 is None:\n print(\"Neutral\")\nelif ratio_of_yankees_fan_s1 < ratio_of_yankees_fan_s2 :\n print(\"Entailment\")\nelif ratio_of_yankees_fan_s1 != ratio_of_yankees_fan_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are 22 more FGH supermarkets in the US than in Canada , how many FGH supermarkets are there in the US ?, \"statement 2\" :If there are less than 52 more FGH supermarkets in the US than in Canada , how many FGH supermarkets are there in the US ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_shells_den_has_s1 = 56+22\ntotal_shells_den_has_s2 = 78\n\nif total_shells_den_has_s1 is None or total_shells_den_has_s2 is None:\n print(\"Neutral\")\nelif total_shells_den_has_s1 == total_shells_den_has_s2 :\n print(\"Entailment\")\nelif total_shells_den_has_s1 != total_shells_den_has_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 5 years ago Kate was 5 times as old as her Son, \"statement 2\" :more than 5 years ago Kate was 5 times as old as her Son, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "numbers_of_years_s1 = 5\nnumbers_of_years_s2 = 0\nnumbers_of_years_s2 > 5\n\nif numbers_of_years_s1 is None or numbers_of_years_s2 is None:\n print(\"Neutral\")\nelif numbers_of_years_s1 < numbers_of_years_s2 :\n print(\"Entailment\")\nelif numbers_of_years_s1 != numbers_of_years_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Guna has 8 flavors of ice cream in him parlor, \"statement 2\" :Guna has more than 2 flavors of ice cream in him parlor, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "flavours_of_ice_cream_s1 = 8\nflavours_of_ice_cream_s2 = 0\nflavours_of_ice_cream_s2 > 2\n\nif flavours_of_ice_cream_s1 is None or flavours_of_ice_cream_s2 is None:\n print(\"Neutral\")\nelif flavours_of_ice_cream_s1 > flavours_of_ice_cream_s2 :\n print(\"Entailment\")\nelif flavours_of_ice_cream_s1 != flavours_of_ice_cream_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A restaurant serves 6.0 cakes during lunch and 9.0 during dinner today., \"statement 2\" :3.0 more cakes are served during dinner than lunch, \"options: \" Entailment or contradiction?", + "Output Program": [ + "flavours_of_ice_cream_s1 = 56+22\nflavours_of_ice_cream_s2 = 0\nflavours_of_ice_cream_s2 > 2\n\nif flavours_of_ice_cream_s1 is None or flavours_of_ice_cream_s2 is None:\n print(\"Neutral\")\nelif flavours_of_ice_cream_s1 > flavours_of_ice_cream_s2 :\n print(\"Entailment\")\nelif flavours_of_ice_cream_s1 != flavours_of_ice_cream_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sacha runs at a constant speed of more than 4 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"statement 2\" :Sacha runs at a constant speed of 8 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_of_sacha_s1 = 0\nspeed_of_sacha_s1 > 4\nspeed_of_sacha_s2 = 5\n\nspeed_of_sacha_s1 = None\nspeed_of_sacha_s2 = None\n\nif speed_of_sacha_s1 is None or speed_of_sacha_s2 is None:\n print(\"Neutral\")\nelif speed_of_sacha_s1 > speed_of_sacha_s2 :\n print(\"Entailment\")\nelif speed_of_sacha_s1 != speed_of_sacha_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nitin borrowed some money at the rate of more than 4 % p, \"statement 2\" :Nitin borrowed some money at the rate of 6 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "money_borrowed_at_rate_s1 = 4\nmoney_borrowed_at_rate_s1 > 1\nmoney_borrowed_at_rate_s2 = 6\n\nmoney_borrowed_at_rate_s1 = None\nmoney_borrowed_at_rate_s2 = None\n\nif money_borrowed_at_rate_s1 is None or money_borrowed_at_rate_s2 is None:\n print(\"Neutral\")\nelif money_borrowed_at_rate_s1 > money_borrowed_at_rate_s2 :\n print(\"Entailment\")\nelif money_borrowed_at_rate_s1 != money_borrowed_at_rate_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bookman purchased 55 copies of a new book released recently , 10 of which are hardback and sold for $ 20 each , and rest are paperback and sold for $ 10 each, \"statement 2\" :Bookman purchased less than 75 copies of a new book released recently , 10 of which are hardback and sold for $ 20 each , and rest are paperback and sold for $ 10 each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "purchased_new_books_s1 = 56+22\npurchased_new_books_s2 = 0\npurchased_new_books_s2 < 75\n\nif purchased_new_books_s1 is None or purchased_new_books_s2 is None:\n print(\"Neutral\")\nelif purchased_new_books_s1 > purchased_new_books_s2 :\n print(\"Entailment\")\nelif purchased_new_books_s1 != purchased_new_books_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": George ' s drawer has 10 loose black socks , 15 loose blue socks , and 8 loose white socks, \"statement 2\" :George ' s drawer has less than 80 loose black socks , 15 loose blue socks , and 8 loose white socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_black_socks_s1 = 10\nnumber_of_black_socks_s2 = 0\nnumber_of_black_socks_s2 < 80\n\nif number_of_black_socks_s1 is None or number_of_black_socks_s2 is None:\n print(\"Neutral\")\nelif number_of_black_socks_s1 > number_of_black_socks_s2 :\n print(\"Entailment\")\nelif number_of_black_socks_s1 != number_of_black_socks_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Still , the CDC wants to interview all 132 passengers who were on the plane with her ., \"statement 2\" :Officials want to interview all 132 passengers on her flight, \"options: \" Entailment or neutral?", + "Output Program": [ + "number_of_people_to_be_interviewed_s1 = 132\nnumber_of_people_to_be_interviewed_s2 = 132\n\nif number_of_people_to_be_interviewed_s1 is None or number_of_people_to_be_interviewed_s2 is None:\n print(\"Neutral\")\nelif number_of_people_to_be_interviewed_s1 == number_of_people_to_be_interviewed_s2 :\n print(\"Entailment\")\nelif number_of_people_to_be_interviewed_s1 != number_of_people_to_be_interviewed_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bobby had 26.0 pieces of candy and he ate 17.0 pieces of candy, \"statement 2\" :Bobby has 9.0 pieces of candy left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "candies_bobby_has_s1 = 132\ncandies_bobby_has_s2 = 132\n\nif candies_bobby_has_s1 is None or candies_bobby_has_s2 is None:\n print(\"Neutral\")\nelif candies_bobby_has_s1 == candies_bobby_has_s2 :\n print(\"Entailment\")\nelif candies_bobby_has_s1 != candies_bobby_has_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What will be Rakesh \u2019 s share in the profit of 150000 earned at the end of three years from the start of the business in 1996 ?, \"statement 2\" :What will be Rakesh \u2019 s share in the profit of more than 150000 earned at the end of three years from the start of the business in 1996 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rakesh_profit_s1 = 150000\nrakesh_profit_s2 = 0\nrakesh_profit_s2 > 150000\n\nif rakesh_profit_s1 is None or rakesh_profit_s2 is None:\n print(\"Neutral\")\nelif rakesh_profit_s1 < rakesh_profit_s2 :\n print(\"Entailment\")\nelif rakesh_profit_s1 != rakesh_profit_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Snyder has less than 5 more men and 6 more women than Leigh , how many men ' s are in the Snyder choir ?, \"statement 2\" :If Snyder has 4 more men and 6 more women than Leigh , how many men ' s are in the Snyder choir ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_men_s1 = 5\nnumber_of_men_s2 = 0\nnumber_of_men_s2 > 4\n\nnumber_of_men_s1 = None\nmoney_borrowed_at_rate_s2 = None\n\nif number_of_men_s1 is None or number_of_men_s2 is None:\n print(\"Neutral\")\nelif number_of_men_s1 > number_of_men_s2 :\n print(\"Entailment\")\nelif number_of_men_s1 != number_of_men_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John has more than 5 friends who want to ride in his new car that can accommodate only 3 people at a time ( John plus 2 passengers ), \"statement 2\" :John has 6 friends who want to ride in his new car that can accommodate only 3 people at a time ( John plus 2 passengers ), \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "friends_of_john_s1 = 0\nfriends_of_john_s1 > 5\nfriends_of_john_s2 = 6\n\nfriends_of_john_s1 = None\nfriends_of_john_s2 = None\n\nif friends_of_john_s1 is None or friends_of_john_s2 is None:\n print(\"Neutral\")\nelif friends_of_john_s1 > friends_of_john_s2 :\n print(\"Entailment\")\nelif friends_of_john_s1 != friends_of_john_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": When Professor Wang looked at the rosters for this term ' s classes , she saw that the roster for her economics class ( E ) had 26 names , the roster for her marketing class ( M ) had 28 , and the roster for her statistics class ( S ) had 18, \"statement 2\" :When Professor Wang looked at the rosters for this term ' s classes , she saw that the roster for her economics class ( E ) had less than 66 names , the roster for her marketing class ( M ) had 28 , and the roster for her statistics class ( S ) had 18, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "candies_bobby_has_s1 = 132\ncandies_bobby_has_s2 = 132\n\nif candies_bobby_has_s1 is None or candies_bobby_has_s2 is None:\n print(\"Neutral\")\nelif candies_bobby_has_s1 == candies_bobby_has_s2 :\n print(\"Entailment\")\nelif candies_bobby_has_s1 != candies_bobby_has_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Milford Lake was originally blue because it only had 3263.0 algae plants and now there are 809.0 more algae plants, and the lake has turned green, \"statement 2\" :4074.0 algae plants are in Milford Lake now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_algae_plants_s1 = 3263+809\ntotal_algae_plants_s2 = 40474\n\nif total_algae_plants_s1 is None or total_algae_plants_s2 is None:\n print(\"Neutral\")\nelif total_algae_plants_s1 == total_algae_plants_s2 :\n print(\"Entailment\")\nelif total_algae_plants_s1 != total_algae_plants_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Suraj has a certain average of runs for 14 innings, \"statement 2\" :Suraj has a certain average of runs for 84 innings, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_innings_s1 = 14\ntotal_innings_s2 = 84\n\nif total_innings_s1 is None or total_innings_s2 is None:\n print(\"Neutral\")\nelif total_innings_s1 == total_innings_s2 :\n print(\"Entailment\")\nelif total_innings_s1 != total_innings_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If exactly less than 7 of the packages Steve bought contained 7 pens , how many pens did Steve buy ?, \"statement 2\" :If exactly 4 of the packages Steve bought contained 7 pens , how many pens did Steve buy ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_packages_s1 = 0\ntotal_packages_s1 < 7\ntotal_packages_s2 = 4\n\ntotal_packages_s1 = None\ntotal_packages_s2 = None\n\nif total_packages_s1 is None or total_packages_s2 is None:\n print(\"Neutral\")\nelif total_packages_s1 < total_packages_s2 :\n print(\"Entailment\")\nelif total_packages_s1 != total_packages_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill , who lives in City C , plans to visit 5 different cities , M , L , S , N , and O, \"statement 2\" :Jill , who lives in City C , plans to visit more than 5 different cities , M , L , S , N , and O, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cities_visited_s1 = 5\ncities_visited_s2 = 0\ncities_visited_s2 > 5\n\nif cities_visited_s1 is None or cities_visited_s2 is None:\n print(\"Neutral\")\nelif cities_visited_s1 < cities_visited_s2 :\n print(\"Entailment\")\nelif cities_visited_s1 != cities_visited_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Third-grade students went to a concert in 8.0 buses and each bus took 45.0 students, \"statement 2\" :360.0 students went to the concert, \"options: \" Entailment or contradiction?", + "Output Program": [ + "students_in_concert_s1 = 8*45\nstudents_in_concert_s2 = 360\n\nif students_in_concert_s1 is None or students_in_concert_s2 is None:\n print(\"Neutral\")\nelif students_in_concert_s1 == students_in_concert_s2 :\n print(\"Entailment\")\nelif students_in_concert_s1 != students_in_concert_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If , five years from now , the sum G of their ages will be less than 71 , how old is Stephanie ?, \"statement 2\" :If , five years from now , the sum G of their ages will be 51 , how old is Stephanie ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sum_of_ages_s1 = 0\nsum_of_ages_s1 < 71\nsum_of_ages_s2 = 51\n\nsum_of_ages_s1 = None\nsum_of_ages_s2 = None\n\nif sum_of_ages_s1 is None or sum_of_ages_s2 is None:\n print(\"Neutral\")\nelif sum_of_ages_s1 < sum_of_ages_s2 :\n print(\"Entailment\")\nelif sum_of_ages_s1 != sum_of_ages_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a shop , 40 % socks are white and rest are black, \"statement 2\" :In a shop , 60 % socks are white and rest are black, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "white_socks_s1 = 40\nwhite_socks_s2 = 60\n\nif white_socks_s1 is None or white_socks_s2 is None:\n print(\"Neutral\")\nelif white_socks_s1 == white_socks_s2 :\n print(\"Entailment\")\nelif white_socks_s1 != white_socks_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ben runs the second leg of the course in 53 seconds, \"statement 2\" :Ben runs the second leg of the course in 83 seconds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "time_taken_to_run_course_s1 = 53\ntime_taken_to_run_course_s2 = 83\n\nif time_taken_to_run_course_s1 is None or time_taken_to_run_course_s2 is None:\n print(\"Neutral\")\nelif time_taken_to_run_course_s1 == time_taken_to_run_course_s2 :\n print(\"Entailment\")\nelif time_taken_to_run_course_s1 != time_taken_to_run_course_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After 7 years , Arun ' s age will be 19 years, \"statement 2\" :After 4 years , Arun ' s age will be 19 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_at_age_19_s1 = 7\nyears_at_age_19_s2 = 4\n\nif years_at_age_19_s1 is None or years_at_age_19_s2 is None:\n print(\"Neutral\")\nelif years_at_age_19_s1 == years_at_age_19_s2 :\n print(\"Entailment\")\nelif years_at_age_19_s1 != years_at_age_19_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Gokul is less than 8 years younger to Madan whose age is 5 years , then what is the age of Arun ?, \"statement 2\" :If Gokul is 2 years younger to Madan whose age is 5 years , then what is the age of Arun ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_years_gokul_is_younger_s1 = 0\nnumber_of_years_gokul_is_younger_s1 < 8\nnumber_of_years_gokul_is_younger_s2 = 2\n\nnumber_of_years_gokul_is_younger_s1 = None\nnumber_of_years_gokul_is_younger_s2 = None\n\nif number_of_years_gokul_is_younger_s1 is None or number_of_years_gokul_is_younger_s2 is None:\n print(\"Neutral\")\nelif number_of_years_gokul_is_younger_s1 < number_of_years_gokul_is_younger_s2 :\n print(\"Entailment\")\nelif number_of_years_gokul_is_younger_s1 != number_of_years_gokul_is_younger_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After 2 years , Arun ' s age will be 26 years, \"statement 2\" :After less than 3 years , Arun ' s age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_at_age_26_s1 = 2\nyears_at_age_26_s2 = 0\nyears_at_age_26_s2 < 3\n\nif years_at_age_26_s1 is None or years_at_age_26_s2 is None:\n print(\"Neutral\")\nelif years_at_age_26_s1 > years_at_age_26_s2 :\n print(\"Entailment\")\nelif years_at_age_26_s1 != years_at_age_26_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Among the nations seeking him was the United States , which had offered a $ 5 million reward to anyone who helped bring about his capture ., \"statement 2\" :U.S. State Department had offered a $ 5 million reward for his arrest ., \"options: \" Entailment or neutral?", + "Output Program": [ + "amount_offered_s1 = 5\namount_offered_s2 = 5\n\nif amount_offered_s1 is None or amount_offered_s2 is None:\n print(\"Neutral\")\nelif amount_offered_s1 == amount_offered_s2 :\n print(\"Entailment\")\nelif amount_offered_s1 != amount_offered_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ratio of men to women in the Snyder community choir is 4 to 5, \"statement 2\" :The ratio of men to women in the Snyder community choir is less than 4 to 5, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rati_of_men_women_s1 = 4/5\nrati_of_men_women_s2 = 0\nrati_of_men_women_s2 < 4/5\n\nif rati_of_men_women_s1 is None or rati_of_men_women_s2 is None:\n print(\"Neutral\")\nelif rati_of_men_women_s1 == rati_of_men_women_s2 :\n print(\"Entailment\")\nelif rati_of_men_women_s1 != rati_of_men_women_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": That was up from 3 percent in 2003 and marked the best showing since 1999 , when the economy grew by 4.5 percent ., \"statement 2\" :That was up from 3 % in 2003 and marked the best showing since 1999 , when the growth was 4.5 % ., \"options: \" Entailment or neutral?", + "Output Program": [ + "up_by_percentage_s1 = 3\nup_by_percentage_s2 = 3\n\nif up_by_percentage_s1 is None or up_by_percentage_s2 is None:\n print(\"Neutral\")\nelif up_by_percentage_s1 == up_by_percentage_s2 :\n print(\"Entailment\")\nelif up_by_percentage_s1 != up_by_percentage_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many possible ways can 1 girls ( Rebecca , Kate , Ashley ) go on a date with 3 boys ( Peter , Kyle , Sam ) ?, \"statement 2\" :How many possible ways can 5 girls ( Rebecca , Kate , Ashley ) go on a date with 3 boys ( Peter , Kyle , Sam ) ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_number_of_girls_to_go_on_date_s1 = 1\ntotal_number_of_girls_to_go_on_date_s2 = 5\n\nif total_number_of_girls_to_go_on_date_s1 is None or total_number_of_girls_to_go_on_date_s2 is None:\n print(\"Neutral\")\nelif total_number_of_girls_to_go_on_date_s1 == total_number_of_girls_to_go_on_date_s2 :\n print(\"Entailment\")\nelif total_number_of_girls_to_go_on_date_s1 != total_number_of_girls_to_go_on_date_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Peter has 9 candies , rina has 5 candies, \"statement 2\" :Peter has more than 3 candies , rina has 5 candies, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "candies_peter_has_s1 = 9\ncandies_peter_has_s2 = 0\ncandies_peter_has_s2 > 3\n\nif candies_peter_has_s1 is None or candies_peter_has_s2 is None:\n print(\"Neutral\")\nelif candies_peter_has_s1 > candies_peter_has_s2 :\n print(\"Entailment\")\nelif candies_peter_has_s1 != candies_peter_has_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The points E and F are on the diagonal AC as shown ,\nand 2 ( AE + FC ) = 3 EF, \"statement 2\" :The points E and F are on the diagonal AC as shown , and less than 7 ( AE + FC ) = 3 EF, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "size_of_diagonal_s1 = 2\nsize_of_diagonal_s2 = 0\nsize_of_diagonal_s2 < 7\n\nif size_of_diagonal_s1 is None or size_of_diagonal_s2 is None:\n print(\"Neutral\")\nelif size_of_diagonal_s1 > size_of_diagonal_s2 :\n print(\"Entailment\")\nelif size_of_diagonal_s1 != size_of_diagonal_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tarun got 30 % concession on the labelled price of an article and sold it for Rs, \"statement 2\" :Tarun got more than 30 % concession on the labelled price of an article and sold it for Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "concession_tarun_got_s1 = 30\nconcession_tarun_got_s2 = 0\nconcession_tarun_got_s2 > 30\n\nif concession_tarun_got_s1 is None or concession_tarun_got_s2 is None:\n print(\"Neutral\")\nelif concession_tarun_got_s1 < concession_tarun_got_s2 :\n print(\"Entailment\")\nelif concession_tarun_got_s1 != concession_tarun_got_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Adams ' s internet provider offers unlimited traffic which costs $ 0.5 per day charged off at 12 a, \"statement 2\" :Adams ' s internet provider offers unlimited traffic which costs $ 0.5 per day charged off at more than 12 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "one_day_charge_of_internet_provider_s1 = 12\none_day_charge_of_internet_provider_s2 = 0\none_day_charge_of_internet_provider_s2 > 12\n\nif one_day_charge_of_internet_provider_s1 is None or one_day_charge_of_internet_provider_s2 is None:\n print(\"Neutral\")\nelif one_day_charge_of_internet_provider_s1 < one_day_charge_of_internet_provider_s2 :\n print(\"Entailment\")\nelif one_day_charge_of_internet_provider_s1 != one_day_charge_of_internet_provider_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 13 stations between Hyderabad and Bangalore, \"statement 2\" :There are 23 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "one_day_charge_of_internet_provider_s1 = 12\none_day_charge_of_internet_provider_s2 = 0\none_day_charge_of_internet_provider_s2 > 12\n\nif one_day_charge_of_internet_provider_s1 is None or one_day_charge_of_internet_provider_s2 is None:\n print(\"Neutral\")\nelif one_day_charge_of_internet_provider_s1 < one_day_charge_of_internet_provider_s2 :\n print(\"Entailment\")\nelif one_day_charge_of_internet_provider_s1 != one_day_charge_of_internet_provider_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At least 21 deaths are confirmed in Pakistan , said Maj. Iftikhar Ahmed Taj of the National Disaster Management Authority ., \"statement 2\" :At least 21 people are confirmed dead , says disaster official Maj. Iftikhar Ahmed Taj, \"options: \" Entailment or neutral?", + "Output Program": [ + "total_confirmed_deaths_s1 = 21\ntotal_confirmed_deaths_s2 = 21\n\nif total_confirmed_deaths_s1 is None or total_confirmed_deaths_s2 is None:\n print(\"Neutral\")\nelif total_confirmed_deaths_s1 == total_confirmed_deaths_s2 :\n print(\"Entailment\")\nelif total_confirmed_deaths_s1 != total_confirmed_deaths_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 3.0 eggs in each box., \"statement 2\" :6.0 eggs are in 2.0 boxes, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_confirmed_deaths_s1 = 21\ntotal_confirmed_deaths_s2 = 21\n\nif total_confirmed_deaths_s1 is None or total_confirmed_deaths_s2 is None:\n print(\"Neutral\")\nelif total_confirmed_deaths_s1 == total_confirmed_deaths_s2 :\n print(\"Entailment\")\nelif total_confirmed_deaths_s1 != total_confirmed_deaths_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ramesh can finish a work in more than 10 days and Sushil in 25 days, \"statement 2\" :Ramesh can finish a work in 20 days and Sushil in 25 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "time_taken_to_finifsh_work_by_ramesh_s1 = 0\ntime_taken_to_finifsh_work_by_ramesh_s1 > 10\ntime_taken_to_finifsh_work_by_ramesh_s1 = 20\n\ntime_taken_to_finifsh_work_by_ramesh_s1 = None\ntime_taken_to_finifsh_work_by_ramesh_s1 = None\n\nif time_taken_to_finifsh_work_by_ramesh_s1 is None or time_taken_to_finifsh_work_by_ramesh_s1 is None:\n print(\"Neutral\")\nelif time_taken_to_finifsh_work_by_ramesh_s1 < time_taken_to_finifsh_work_by_ramesh_s1 :\n print(\"Entailment\")\nelif time_taken_to_finifsh_work_by_ramesh_s1 != time_taken_to_finifsh_work_by_ramesh_s1 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Murali travelled from city A to city B at a speed of 40 kmph and from city B to city C at 60 kmph, \"statement 2\" :Murali travelled from city A to city B at a speed of more than 10 kmph and from city B to city C at 60 kmph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_s1 = 40\nspeed_s2 = 0\nspeed_s2 > 20\n\nif speed_s1 is None or speed_s2 is None:\n print(\"Neutral\")\nelif speed_s1 > speed_s2 :\n print(\"Entailment\")\nelif speed_s1 != speed_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Suraj has a certain average of runs for less than 62 innings, \"statement 2\" :Suraj has a certain average of runs for 12 innings, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "certain_average_s1 = 0\ncertain_average_s1 < 52\ncertain_average_s2 = 12\n\ncertain_average_s1 = None\ncertain_average_s2 = None\n\nif certain_average_s1 is None or certain_average_s2 is None:\n print(\"Neutral\")\nelif certain_average_s1 < certain_average_s2:\n print(\"Entailment\")\nelif certain_average_s1 != certain_average_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": more than 15000 respectively , after three months Mitra invested Rs, \"statement 2\" :55000 respectively , after three months Mitra invested Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "certain_average_s1 = 0\ncertain_average_s1 < 52\ncertain_average_s2 = 12\n\ncertain_average_s1 = None\ncertain_average_s2 = None\n\nif certain_average_s1 is None or certain_average_s2 is None:\n print(\"Neutral\")\nelif certain_average_s1 < certain_average_s2:\n print(\"Entailment\")\nelif certain_average_s1 != certain_average_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After the deal closes , Teva will generate sales of about $ 7 billion a year , the company said ., \"statement 2\" :Teva earns $ 7 billion a year ., \"options: \" Entailment or neutral?", + "Output Program": [ + "genrated_sales_s1 = 0\ngenrated_sales_s2 = 52\n\ngenrated_sales_s1 = None\ngenrated_sales_s2 = None\n\nif genrated_sales_s1 is None or genrated_sales_s2 is None:\n print(\"Neutral\")\nelif genrated_sales_s1 < genrated_sales_s2 :\n print(\"Entailment\")\nelif genrated_sales_s1 != genrated_sales_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A Harris Interactive poll ( no relation to John Harris ) found 87 percent of Americans want to know more about their family background ., \"statement 2\" :Poll finds 87 percent of Americans have interest in their family roots, \"options: \" Entailment or neutral?", + "Output Program": [ + "amount_of_people_wants_to_know_s1 = 87\namount_of_people_wants_to_know_s2 = 87\n\nif amount_of_people_wants_to_know_s1 is None or amount_of_people_wants_to_know_s2 is None:\n print(\"Neutral\")\nelif amount_of_people_wants_to_know_s1 == amount_of_people_wants_to_know_s2 :\n print(\"Entailment\")\nelif amount_of_people_wants_to_know_s1 != amount_of_people_wants_to_know_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Suresh works for 9 hours and then the remaining job is completed by Ashutosh, \"statement 2\" :Suresh works for more than 6 hours and then the remaining job is completed by Ashutosh, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "time_suresh_works_for_s1 = 9\ntime_suresh_works_for_s2 = 0\ntime_suresh_works_for_s2 > 6\n\nif time_suresh_works_for_s1 is None or time_suresh_works_for_s2 is None:\n print(\"Neutral\")\nelif time_suresh_works_for_s1 > time_suresh_works_for_s2 :\n print(\"Entailment\")\nelif time_suresh_works_for_s1 != time_suresh_works_for_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nancy is standing in the middle of the row at the less than 7 th position . Can you find out the total number of girls in that row ?, \"statement 2\" :Nancy is standing in the middle of the row at the 6 th position .\nCan you find out the total number of girls in that row ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "genrated_sales_s1 = 0\ngenrated_sales_s2 = 52\n\ngenrated_sales_s1 = None\ngenrated_sales_s2 = None\n\nif genrated_sales_s1 is None or genrated_sales_s2 is None:\n print(\"Neutral\")\nelif genrated_sales_s1 < genrated_sales_s2 :\n print(\"Entailment\")\nelif genrated_sales_s1 != genrated_sales_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The product of all the possible units digits of Sophie Germain primes greater than 4 is, \"statement 2\" :The product of all the possible units digits of Sophie Germain primes greater than more than 1 is, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "produc_of_unit_s1 = 4\nproduc_of_unit_s2 = 1\n\nif produc_of_unit_s1 is None or produc_of_unit_s2 is None:\n print('neutral')\n\nelif produc_of_unit_s1 > produc_of_unit_s2:\n print('Entailment')\n\nelif produc_of_unit_s1 != produc_of_unit_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 40,000 -- Number of people who claimed the Social Security number 078-05-1120 , when they found it printed on a sample insert in wallets sold at Woolworths ., \"statement 2\" :40,000 -- People who claimed SSN 078-05-1120 after finding it on a sample wallet insert, \"options: \" Entailment or neutral?", + "Output Program": [ + "time_suresh_works_for_s1 = 9\ntime_suresh_works_for_s2 = 0\ntime_suresh_works_for_s2 > 6\n\nif time_suresh_works_for_s1 is None or time_suresh_works_for_s2 is None:\n print(\"Neutral\")\nelif time_suresh_works_for_s1 > time_suresh_works_for_s2 :\n print(\"Entailment\")\nelif time_suresh_works_for_s1 != time_suresh_works_for_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mike had 33.0 quarters and 87.0 nickels in his bank and his dad borrowed 75.0 nickels from Mike , \"statement 2\" :He has 12.0 nickels now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "time_suresh_works_for_s1 = 9\ntime_suresh_works_for_s2 = 0\ntime_suresh_works_for_s2 > 6\n\nif time_suresh_works_for_s1 is None or time_suresh_works_for_s2 is None:\n print(\"Neutral\")\nelif time_suresh_works_for_s1 > time_suresh_works_for_s2 :\n print(\"Entailment\")\nelif time_suresh_works_for_s1 != time_suresh_works_for_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A teacher had 6.0 worksheets to grade, and she graded 4.0 but then another 18.0 were turned in, \"statement 2\" :She would have 21.0 worksheets to grade, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_worksheet_s1 = 6+4+18\ntotal_worksheet_s2 = 21\n\nif total_worksheet_s1 is None or total_worksheet_s2 is None:\n print(\"Neutral\")\nelif total_worksheet_s1 == total_worksheet_s2 :\n print(\"Entailment\")\nelif total_worksheet_s1 != total_worksheet_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 261.0 fish and each fishbowl has 23.0 fish, \"statement 2\" :11.347826087 fishbowls are there, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_fish_bowls_s1 = round(261 / 23, 9)\ntotal_fish_bowls_s2 = 11.347826087\n\nif total_fish_bowls_s1 is None or total_fish_bowls_s2 is None:\n print(\"Neutral\")\nelif total_fish_bowls_s1 == total_fish_bowls_s2 :\n print(\"Entailment\")\nelif total_fish_bowls_s1 != total_fish_bowls_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The farmer had 127.0 apples and the farmer gave 88.0 apples to his neighbor, \"statement 2\" :Farmer has 37.0 apples now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_apples_s1 = 127/88\ntotal_apples_s2 = 37\n\nif total_apples_s1 is None or total_apples_s2 is None:\n print(\"Neutral\")\nelif total_apples_s1 == total_apples_s2 :\n print(\"Entailment\")\nelif total_apples_s1 != total_apples_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Cara drives at a constant speed of 32 km per hour, \"statement 2\" :Cara drives at a constant speed of more than 12 km per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cara_drives_at_constant_spped_s1 = 32\ncara_drives_at_constant_spped_s2 = 0\ncara_drives_at_constant_spped_s2 > 12\n\nif cara_drives_at_constant_spped_s1 is None or cara_drives_at_constant_spped_s2 is None:\n print(\"Neutral\")\nelif cara_drives_at_constant_spped_s1 > cara_drives_at_constant_spped_s2 :\n print(\"Entailment\")\nelif cara_drives_at_constant_spped_s1 != cara_drives_at_constant_spped_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": San Diego Gas and Electric said all of its 1.4 million customers were without power ., \"statement 2\" :San Diego-area utility says 1.4 million customers are without power, \"options: \" Entailment or neutral?", + "Output Program": [ + "cara_drives_at_constant_spped_s1 = 32\ncara_drives_at_constant_spped_s2 = 0\ncara_drives_at_constant_spped_s2 > 12\n\nif cara_drives_at_constant_spped_s1 is None or cara_drives_at_constant_spped_s2 is None:\n print(\"Neutral\")\nelif cara_drives_at_constant_spped_s1 > cara_drives_at_constant_spped_s2 :\n print(\"Entailment\")\nelif cara_drives_at_constant_spped_s1 != cara_drives_at_constant_spped_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": An investor can sell her MicroTron stock for 36 $ per share and her Dynaco stock for 56 $ per share , If she sells 300 shares altogether , some of each stock , at an average price per share of 40 $ , how many shares of Dynaco stock has she sold ?, \"statement 2\" :An investor can sell her MicroTron stock for 46 $ per share and her Dynaco stock for 56 $ per share , If she sells 300 shares altogether , some of each stock , at an average price per share of 40 $ , how many shares of Dynaco stock has she sold ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "price_of_selling_stock_s1 = 36\nprice_of_selling_stock_s2 = 46\n\nif price_of_selling_stock_s1 is None or price_of_selling_stock_s2 is None:\n print(\"Neutral\")\nelif price_of_selling_stock_s1 == price_of_selling_stock_s2 :\n print(\"Entailment\")\nelif price_of_selling_stock_s1 != price_of_selling_stock_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 3450 from Anwar at 6 % p, \"statement 2\" :5450 from Anwar at 6 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amunt_at_6_percent_s1 = 3450\namunt_at_6_percent_s2 = 5450\n\nif amunt_at_6_percent_s1 is None or amunt_at_6_percent_s2 is None:\n print(\"Neutral\")\nelif amunt_at_6_percent_s1 == amunt_at_6_percent_s2 :\n print(\"Entailment\")\nelif amunt_at_6_percent_s1 != amunt_at_6_percent_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": ( CNN ) -- An alleged would-be smuggler was caught at a Thailand airport with dozens of rare wildlife -- including snakes , squirrels and tortoises -- stuffed into three suitcases , a wildlife monitoring organization says ., \"statement 2\" :He had three suitcases stuffed with rare creatures , Traffic says, \"options: \" Entailment or neutral?", + "Output Program": [ + "total_s1 = 3\ntotal_s2 = 3\n\ntotal_s1 = None\ntotal_s2 = None\n\nif total_s1 is None or total_s2 is None:\n print(\"Neutral\")\nelif total_s1 == total_s2 :\n print(\"Entailment\")\nelif total_s1 != total_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": '' We hope these two advisers are freed quickly , but we are shocked that they were passing themselves off as journalists , '' Reporters Without Borders said ., \"statement 2\" :The two advisers had apparently told the hotel they were journalists, \"options: \" Entailment or neutral?", + "Output Program": [ + "total_adviser = 3\ntotal_journalist = 3\n\ntotal_adviser= None\ntotal_journalist = None\n\nif total_adviser is None or total_journalist is None:\n print(\"Neutral\")\nelif total_adviser == total_journalist :\n print(\"Entailment\")\nelif total_adviser != total_journalist :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jerry travels more than 3 miles at an average speed of 40 miles per hour , stops for 13 minutes , and then travels another 20 miles at an average speed of 60 miles per hour, \"statement 2\" :Jerry travels 8 miles at an average speed of 40 miles per hour , stops for 13 minutes , and then travels another 20 miles at an average speed of 60 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_travelled_by_jerry_s1 = 0\ndistance_travelled_by_jerry_s1 > 3\ndistance_travelled_by_jerry_s2 = 8\n\ndistance_travelled_by_jerry_s1 = None\ndistance_travelled_by_jerry_s2 = None\n\nif distance_travelled_by_jerry_s1 is None or distance_travelled_by_jerry_s2 is None:\n print(\"Neutral\")\nelif distance_travelled_by_jerry_s1 == distance_travelled_by_jerry_s2 :\n print(\"Entailment\")\nelif distance_travelled_by_jerry_s1 != distance_travelled_by_jerry_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John paid a 15 % tip over the original price of the dish , while Jane paid the tip over the discounted price for the coupon, \"statement 2\" :John paid a less than 75 % tip over the original price of the dish , while Jane paid the tip over the discounted price for the coupon, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tip_john_paid_s1 = 32\ntip_john_paid_s2 = 0\ntip_john_paid_s2 < 75\n\nif tip_john_paid_s1 is None or tip_john_paid_s2 is None:\n print(\"Neutral\")\nelif tip_john_paid_s1 > tip_john_paid_s2 :\n print(\"Entailment\")\nelif tip_john_paid_s1 != tip_john_paid_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In an exam , Amar scored 84 percent , Bhavan scored 36 percent and Chetan 44 percent, \"statement 2\" :In an exam , Amar scored more than 54 percent , Bhavan scored 36 percent and Chetan 44 percent, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tip_john_paid_s1 = 32\ntip_john_paid_s2 = 0\ntip_john_paid_s2 < 75\n\nif tip_john_paid_s1 is None or tip_john_paid_s2 is None:\n print(\"Neutral\")\nelif tip_john_paid_s1 > tip_john_paid_s2 :\n print(\"Entailment\")\nelif tip_john_paid_s1 != tip_john_paid_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Cobb declined two requests from CNN to respond to the complaints ., \"statement 2\" :Cobb declined two requests to speak with CNN for this report, \"options: \" Entailment or neutral?", + "Output Program": [ + "request_responsded_s1 = 2\nrequest_responsded_s2 = 2\n\nif request_responsded_s1 is None or request_responsded_s2 is None:\n print(\"Neutral\")\nelif request_responsded_s1 == request_responsded_s2 :\n print(\"Entailment\")\nelif request_responsded_s1 != request_responsded_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Between Tom in line 1 and Jack in line 2 there ' s a distance of 1.2 meters , the same as in the subsequent lanes, \"statement 2\" :Between Tom in line less than 6 and Jack in line 2 there ' s a distance of 1.2 meters , the same as in the subsequent lanes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_line_s1 = 2\nnumber_of_line_s2 = 2\nnumber_of_line_s2 < 6\n\nif number_of_line_s1 is None or number_of_line_s2 is None:\n print(\"Neutral\")\nelif number_of_line_s1 == number_of_line_s2 :\n print(\"Entailment\")\nelif number_of_line_s1 != number_of_line_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The 8,568-meter Mt . Kanchenjunga , the third highest in the world , is located in the border area of Nepal , India and China ., \"statement 2\" :Kanchenjunga is 8586 meters high ., \"options: \" Entailment or neutral?", + "Output Program": [ + "height_of_third_highest_peak_s1 = 8568\nheight_of_third_highest_peak_s2 = 8568\n\nheight_of_third_highest_peak_s1 = None\nheight_of_third_highest_peak_s2 = None\n\nif height_of_third_highest_peak_s1 is None or height_of_third_highest_peak_s2 is None:\n print(\"Neutral\")\nelif height_of_third_highest_peak_s1 == height_of_third_highest_peak_s2 :\n print(\"Entailment\")\nelif height_of_third_highest_peak_s1 != height_of_third_highest_peak_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jessica can text 95 words per minute , while Maurice can text 10 words per minute, \"statement 2\" :Jessica can text 15 words per minute , while Maurice can text 10 words per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_words_jessica_can_text_s1 = 95\nnumber_of_words_jessica_can_text_s2 = 15\n\nif number_of_words_jessica_can_text_s1 is None or number_of_words_jessica_can_text_s2 is None:\n print(\"Neutral\")\nelif number_of_words_jessica_can_text_s1 == number_of_words_jessica_can_text_s2 :\n print(\"Entailment\")\nelif number_of_words_jessica_can_text_s1 != number_of_words_jessica_can_text_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Our class got 54.0 books from the library and then we gave 23.0 away to a different class, \"statement 2\" :Class has 31.0 books from the library left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_books_s1 = 54-23\ntotal_books_s2 = 31\n\nif total_books_s1 is None or total_books_s2 is None:\n print(\"Neutral\")\nelif total_books_s1 == total_books_s2 :\n print(\"Entailment\")\nelif total_books_s1 != total_books_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Anne \u2019 s speed were doubled , they could clean their house in 3 hours working at their respective rates, \"statement 2\" :If Anne \u2019 s speed were doubled , they could clean their house in 2 hours working at their respective rates, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "toal_time_taken_to_clean_house_s1 = 3\ntoal_time_taken_to_clean_house_s2 = 2\n\nif toal_time_taken_to_clean_house_s1 is None or toal_time_taken_to_clean_house_s2 is None:\n print(\"Neutral\")\nelif toal_time_taken_to_clean_house_s1 == toal_time_taken_to_clean_house_s2 :\n print(\"Entailment\")\nelif toal_time_taken_to_clean_house_s1 != toal_time_taken_to_clean_house_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A restaurant made 9.0 hamburgers and 4.0 hot dogs to serve during lunch and only 3.0 hamburgers were actually served , \"statement 2\" :6.0 hamburgers were left over , \"options: \" Entailment or contradiction?", + "Output Program": [ + "hamburgers_left_s1 = 9-6\nhamburgers_left_s2 = 6\n\nif hamburgers_left_s1 is None or hamburgers_left_s2 is None:\n print(\"Neutral\")\nelif hamburgers_left_s1 == hamburgers_left_s2 :\n print(\"Entailment\")\nelif hamburgers_left_s1 != hamburgers_left_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Albert \u2019 s monthly earnings rise by 36 % , he would earn $ 495, \"statement 2\" :If Albert \u2019 s monthly earnings rise by more than 36 % , he would earn $ 495, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "monthly_earning_of_albert_rise_by_s1 = 36\nmonthly_earning_of_albert_rise_by_s2 = 0\nmonthly_earning_of_albert_rise_by_s2 > 36\n\nif monthly_earning_of_albert_rise_by_s1 is None or monthly_earning_of_albert_rise_by_s2 is None:\n print(\"Neutral\")\nelif monthly_earning_of_albert_rise_by_s1 == monthly_earning_of_albert_rise_by_s2 :\n print(\"Entailment\")\nelif monthly_earning_of_albert_rise_by_s1 != monthly_earning_of_albert_rise_by_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nancy has 7.0 black balloons and Mary has 4.0 times more black balloons than Nancy, \"statement 2\" :Mary has 28.0 black balloons now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_black_ballons_s1 = 7*4\ntotal_black_ballons_s2 = 28\n\nif total_black_ballons_s1 is None or total_black_ballons_s2 is None:\n print(\"Neutral\")\nelif total_black_ballons_s1 == total_black_ballons_s2 :\n print(\"Entailment\")\nelif total_black_ballons_s1 != total_black_ballons_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are 55 possible combinations in which Michael is not selected , what is the value of t ?, \"statement 2\" :If there are more than 15 possible combinations in which Michael is not selected , what is the value of t ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "possible_combinations_s1 = 55\npossible_combinations_s2 = 0\npossible_combinations_s2 > 15\n\nif possible_combinations_s1 is None or possible_combinations_s2 is None:\n print(\"Neutral\")\nelif possible_combinations_s1 > possible_combinations_s2 :\n print(\"Entailment\")\nelif possible_combinations_s1 != possible_combinations_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary selects a total of less than 30 apples and oranges from the food stand , and the average ( arithmetic mean ) price of the 10 pieces of fruit is 52 \u00a2, \"statement 2\" :Mary selects a total of 10 apples and oranges from the food stand , and the average ( arithmetic mean ) price of the 10 pieces of fruit is 52 \u00a2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_apple_selected_by_mary_s1 = 0\ntotal_apple_selected_by_mary_s1 < 30\ntotal_apple_selected_by_mary_s2 = 10\n\ntotal_apple_selected_by_mary_s1 = None\ntotal_apple_selected_by_mary_s2 = None\n\nif total_apple_selected_by_mary_s1 is None or total_apple_selected_by_mary_s2 is None:\n print(\"Neutral\")\nelif total_apple_selected_by_mary_s1 < total_apple_selected_by_mary_s2 :\n print(\"Entailment\")\nelif total_apple_selected_by_mary_s1 != total_apple_selected_by_mary_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alice leaves City A 30 minutes after Bob, \"statement 2\" :Alice leaves City A more than 30 minutes after Bob, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "minutes_alice_leaves_before_s1 = 36\nminutes_alice_leaves_before_s2 = 0\nminutes_alice_leaves_before_s2 > 36\n\nif minutes_alice_leaves_before_s1 is None or minutes_alice_leaves_before_s2 is None:\n print(\"Neutral\")\nelif minutes_alice_leaves_before_s1 == minutes_alice_leaves_before_s2 :\n print(\"Entailment\")\nelif minutes_alice_leaves_before_s1 != minutes_alice_leaves_before_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Calculate and compare the maturity values of $ 1000 invested in each type of GIC, \"statement 2\" :Calculate and compare the maturity values of $ more than 1000 invested in each type of GIC, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "maturity_of_value_s1 = 1000\nmaturity_of_value_s2 = 0\nmaturity_of_value_s2 > 1000\n\nif maturity_of_value_s1 is None or maturity_of_value_s2 is None:\n print(\"Neutral\")\nelif maturity_of_value_s1 < maturity_of_value_s2 :\n print(\"Entailment\")\nelif maturity_of_value_s1 != maturity_of_value_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lewis saved checking on the grapevines for his last stop and he was told by 1.0 of the pickers that they fill 324.0 drums of grapes per day, \"statement 2\" :2914.0 drums of grapes would be filled in 9.0 days, \"options: \" Entailment or contradiction?", + "Output Program": [ + "drums_filled_s1 = 49\ndrums_filled_s2 = 2914/9\n\nif drums_filled_s1 is None or drums_filled_s2 is None:\n print(\"Neutral\")\nelif drums_filled_s1 == drums_filled_s2 :\n print(\"Entailment\")\nelif drums_filled_s1 != drums_filled_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Anup was asked to find the value of 7 / 12 of a sum of money R, \"statement 2\" :Anup was asked to find the value of less than 7 / 12 of a sum of money R, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "value_of_sum_of_money_s1 = 7/12\nvalue_of_sum_of_money_s2 = 0\nvalue_of_sum_of_money_s2 < 7/12\n\nif value_of_sum_of_money_s1 is None or value_of_sum_of_money_s2 is None:\n print(\"Neutral\")\nelif value_of_sum_of_money_s1 < value_of_sum_of_money_s2 :\n print(\"Entailment\")\nelif value_of_sum_of_money_s1 != value_of_sum_of_money_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A train leaves Delhi at 7 a, \"statement 2\" :A train leaves Delhi at less than 8 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "time_trains_leaves_at_s1 = 7\ntime_trains_leaves_at_s2 = 0\ntime_trains_leaves_at_s2 < 8\n\nif time_trains_leaves_at_s1 is None or time_trains_leaves_at_s2 is None:\n print(\"Neutral\")\nelif time_trains_leaves_at_s1 > time_trains_leaves_at_s2 :\n print(\"Entailment\")\nelif time_trains_leaves_at_s1 != time_trains_leaves_at_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": While driving from City A to City B , Cara drives at a constant speed of 30 miles per hour, \"statement 2\" :While driving from City A to City B , Cara drives at a constant speed of less than 60 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_of_car_s1 = 7\nspeed_of_car_s2 = 0\nspeed_of_car_s2 < 8\n\nif speed_of_car_s1 is None or speed_of_car_s2 is None:\n print(\"Neutral\")\nelif speed_of_car_s1 > speed_of_car_s2 :\n print(\"Entailment\")\nelif speed_of_car_s1 != speed_of_car_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 28 stations between Ernakulam and Chennai, \"statement 2\" :There are less than 58 stations between Ernakulam and Chennai, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_station_between_ernakulam_and_chennai_s1 = 28\ntotal_station_between_ernakulam_and_chennai_s2 = 0\ntotal_station_between_ernakulam_and_chennai_s2 < 58\n\nif total_station_between_ernakulam_and_chennai_s1 is None or total_station_between_ernakulam_and_chennai_s2 is None:\n print(\"Neutral\")\nelif total_station_between_ernakulam_and_chennai_s1 > total_station_between_ernakulam_and_chennai_s2 :\n print(\"Entailment\")\nelif total_station_between_ernakulam_and_chennai_s1 != total_station_between_ernakulam_and_chennai_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ratio between the number of sheep and the number of horses at the Stewart farm is less than 7 to 7 , If each horse is fed 230 ounces of horse food per day and the farm needs a total 12,880 ounces of horse food per day , what is the number of sheep in the farm ?, \"statement 2\" :The ratio between the number of sheep and the number of horses at the Stewart farm is 5 to 7 , If each horse is fed 230 ounces of horse food per day and the farm needs a total 12,880 ounces of horse food per day , what is the number of sheep in the farm ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_between_sheep_and_horses_s1 = 0\nratio_between_sheep_and_horses_s1 < 7/7\nratio_between_sheep_and_horses_s2 = 5/7\n\nratio_between_sheep_and_horses_s1 = None\nratio_between_sheep_and_horses_s2 = None\n\nif ratio_between_sheep_and_horses_s1 is None or ratio_between_sheep_and_horses_s2 is None:\n print(\"Neutral\")\nelif ratio_between_sheep_and_horses_s1 < ratio_between_sheep_and_horses_s2:\n print(\"Entailment\")\nelif ratio_between_sheep_and_horses_s1 != ratio_between_sheep_and_horses_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In Kaya ' s teacher ' s desk there are 24 pink highlighters , 28 yellow highlighters , and 25 blue highlighters, \"statement 2\" :In Kaya ' s teacher ' s desk there are less than 64 pink highlighters , 28 yellow highlighters , and 25 blue highlighters, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pink_highlighters_s1 = 24\npink_highlighters_s2 = 0\npink_highlighters_s2 < 64\n\nif pink_highlighters_s1 is None or pink_highlighters_s2 is None:\n print(\"Neutral\")\nelif pink_highlighters_s1 > pink_highlighters_s2 :\n print(\"Entailment\")\nelif pink_highlighters_s1 != pink_highlighters_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many minutes does it take Dhoni to type 64 words if he types at the rate of 16 words per minute ?, \"statement 2\" :How many minutes does it take Dhoni to type 54 words if he types at the rate of 16 words per minute ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "words_per_minute_s1 = 64\nwords_per_minute_s2 = 54\n\nif words_per_minute_s1 is None or words_per_minute_s2 is None:\n print('neutral')\n\nelif words_per_minute_s1 == words_per_minute_s2:\n print('Entailment')\n\nelif words_per_minute_s1 != words_per_minute_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Thompson had the following scores in an exam ( out of 100 ) :\nSocial Studies : 60\nScience : 89\nArt : 62\nMusic : 69\nSpanish : 84\nBiology : 89\nWhat are his average marks ?, \"statement 2\" :Thompson had the following scores in an exam ( out of less than 400 ) : Social Studies : 60 Science : 89 Art : 62 Music : 69 Spanish : 84 Biology : 89 What are his average marks ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_marks_s1 = 100\naverage_marks_s2 = 0\naverage_marks_s2 < 400\n\nif average_marks_s1 is None or average_marks_s2 is None:\n print(\"Neutral\")\nelif average_marks_s1 > average_marks_s2 :\n print(\"Entailment\")\nelif average_marks_s1 != average_marks_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Last year no members of the club traveled to both England and France , 6 members traveled to both England and Italy , and 12 members traveled to both France and Italy, \"statement 2\" :Last year no members of the club traveled to both England and France , 4 members traveled to both England and Italy , and 12 members traveled to both France and Italy, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "members_travelled_to_both_england_and_italy_s1 = 6\nmembers_travelled_to_both_england_and_italy_s2 = 4\n\nif members_travelled_to_both_england_and_italy_s1 is None or members_travelled_to_both_england_and_italy_s2 is None:\n print('neutral')\n\nelif members_travelled_to_both_england_and_italy_s1 == members_travelled_to_both_england_and_italy_s2:\n print('Entailment')\n\nelif members_travelled_to_both_england_and_italy_s1 != members_travelled_to_both_england_and_italy_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ratio between the school ages of Neelam and Shaan is 5 : 6 respectively, \"statement 2\" :The ratio between the school ages of Neelam and Shaan is more than 4 : 6 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_between_neelam_and_shaan_s1 = 5/6\nratio_between_neelam_and_shaan_s2 = 0\nratio_between_neelam_and_shaan_s2 > 4/6\n\nif ratio_between_neelam_and_shaan_s1 is None or ratio_between_neelam_and_shaan_s2 is None:\n print(\"Neutral\")\nelif ratio_between_neelam_and_shaan_s1 > ratio_between_neelam_and_shaan_s2 :\n print(\"Entailment\")\nelif ratio_between_neelam_and_shaan_s1 != ratio_between_neelam_and_shaan_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rasik walked less than 80 m towards north, \"statement 2\" :Rasik walked 20 m towards north, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rasik_walked_north_s1 = 0\nrasik_walked_north_s1 < 80\nrasik_walked_north_s2 = 20\n\nrasik_walked_north_s1 = None\nrasik_walked_north_s2 = None\n\nif rasik_walked_north_s1 is None or rasik_walked_north_s2 is None:\n print(\"Neutral\")\nelif rasik_walked_north_s1 < rasik_walked_north_s2:\n print(\"Entailment\")\nelif rasik_walked_north_s1 != rasik_walked_north_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Snyder has 4 more men and 6 more women than Leigh , how many women are in the Snyder choir ?, \"statement 2\" :If Snyder has less than 4 more men and 6 more women than Leigh , how many women are in the Snyder choir ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "men_and_women_in_synder_s1 = 4\nmen_and_women_in_synder_s2 = 0\n\nif men_and_women_in_synder_s1 is None or men_and_women_in_synder_s2 is None:\n print('neutral')\n\nelif men_and_women_in_synder_s1 == men_and_women_in_synder_s2:\n print('Entailment')\n\nelif men_and_women_in_synder_s1 != men_and_women_in_synder_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sam had 98.0 pennies in his bank and he found 93.0 more pennies , \"statement 2\" :He has 190.0 pennies now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "pennies_in_bank_s1 = 98+93\npennies_in_bank_s2 = 190\n\nif pennies_in_bank_s1 is None or pennies_in_bank_s2 is None:\n print('neutral')\n\nelif pennies_in_bank_s1 == pennies_in_bank_s2:\n print('Entailment')\n\nelif pennies_in_bank_s1 != pennies_in_bank_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jagtap purchases 30 kg of wheat at the rate of 11.50 per kg and 20 kg of wheat at the rate of 14.25 per kg, \"statement 2\" :Jagtap purchases more than 20 kg of wheat at the rate of 11.50 per kg and 20 kg of wheat at the rate of 14.25 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rate_of_wheat_per_kg_s1 = 30\nrate_of_wheat_per_kg_s2 = 0\nrate_of_wheat_per_kg_s2 > 20\n\nif rate_of_wheat_per_kg_s1 is None or rate_of_wheat_per_kg_s2 is None:\n print(\"Neutral\")\nelif rate_of_wheat_per_kg_s1 > rate_of_wheat_per_kg_s2 :\n print(\"Entailment\")\nelif rate_of_wheat_per_kg_s1 != rate_of_wheat_per_kg_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": While planning their outing , Abhishek understood that their boat could travel with a speed of less than 22 kmph in still water, \"statement 2\" :While planning their outing , Abhishek understood that their boat could travel with a speed of 12 kmph in still water, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_of_boat_in_still_water_s1 = 0\nspeed_of_boat_in_still_water_s1 < 22\nspeed_of_boat_in_still_water_s2 = 12\n\nspeed_of_boat_in_still_water_s1 = None\nspeed_of_boat_in_still_water_s2 = None\n\nif speed_of_boat_in_still_water_s1 is None or speed_of_boat_in_still_water_s2 is None:\n print(\"Neutral\")\nelif speed_of_boat_in_still_water_s1 < speed_of_boat_in_still_water_s2:\n print(\"Entailment\")\nelif speed_of_boat_in_still_water_s1 != speed_of_boat_in_still_water_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jason is 4 times older than Bob at present, \"statement 2\" :Jason is less than 6 times older than Bob at present, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jason_older_than_bob_s1 = 4\njason_older_than_bob_s2 = 0\njason_older_than_bob_s2 > 20\n\nif jason_older_than_bob_s1 is None or jason_older_than_bob_s2 is None:\n print(\"Neutral\")\nelif jason_older_than_bob_s1 > jason_older_than_bob_s2 :\n print(\"Entailment\")\nelif jason_older_than_bob_s1 != jason_older_than_bob_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A restaurant made 9.0 hamburgers and 4.0 hot dogs to serve during lunch and only 3.0 hamburgers were actually served , \"statement 2\" :10.0 hamburgers were left over , \"options: \" Entailment or contradiction?", + "Output Program": [ + "height_difference_between_state_building_s1 = 443\nheight_difference_between_state_building_s2 = 743\n\nif height_difference_between_state_building_s1 is None or height_difference_between_state_building_s2 is None:\n print('neutral')\n\nelif height_difference_between_state_building_s1 == height_difference_between_state_building_s2:\n print('Entailment')\n\nelif height_difference_between_state_building_s1 != height_difference_between_state_building_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the height difference between the two if the Empire\nState Building is 443 m tall and the Petronas Towers is 452 m tall ?, \"statement 2\" :What is the height difference between the two if the Empire State Building is less than 743 m tall and the Petronas Towers is 452 m tall ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "height_difference_in_state_building_s1 = 443\nheight_difference_in_state_building_s2 = 0\nheight_difference_in_state_building_s2 < 743\n\nif height_difference_in_state_building_s1 is None or height_difference_in_state_building_s2 is None:\n print(\"Neutral\")\nelif height_difference_in_state_building_s1 > height_difference_in_state_building_s2 :\n print(\"Entailment\")\nelif height_difference_in_state_building_s1 != height_difference_in_state_building_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The idea that schizophrenia is not one single disorder is not really new , says Dr. Charles Raison , a professor of psychiatry at the University of Arizona ., \"statement 2\" :Researchers say schizophrenia is not one disorder , but eight, \"options: \" Entailment or neutral?", + "Output Program": [ + "disorder_s1 = 1\ndisorder_s2 = 1\n\ndisorder_s1 = None\ndisorder_s2 = None\n\nif disorder_s1 is None or disorder_s2 is None:\n print(\"Neutral\")\nelif disorder_s1 < disorder_s2:\n print(\"Entailment\")\nelif disorder_s1 != disorder_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill has 14 gallons of water stored in quart , half - gallon , and one gallon jars, \"statement 2\" :Jill has less than 54 gallons of water stored in quart , half - gallon , and one gallon jars, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gallons_of_water_s1 = 14\ngallons_of_water_s2 = 0\ngallons_of_water_s2 < 54\n\nif gallons_of_water_s1 is None or gallons_of_water_s2 is None:\n print(\"Neutral\")\nelif gallons_of_water_s1 > gallons_of_water_s2 :\n print(\"Entailment\")\nelif gallons_of_water_s1 != gallons_of_water_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jake , Paul and Hari together dig the well in 8 days, \"statement 2\" :Jake , Paul and Hari together dig the well in more than 3 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dig_the_well_s1 = 8\ndig_the_well_s2 = 0\ndig_the_well_s2 > 3\n\nif dig_the_well_s1 is None or dig_the_well_s2 is None:\n print(\"Neutral\")\nelif dig_the_well_s1 > dig_the_well_s2 :\n print(\"Entailment\")\nelif dig_the_well_s1 != dig_the_well_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": more than 2 % people of a village in Sri Lanka died by bombardment , 15 % of the remainder left the village on account of fear, \"statement 2\" :5 % people of a village in Sri Lanka died by bombardment , 15 % of the remainder left the village on account of fear, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_died_in_sri_lanka_s1 = 0\npeople_died_in_sri_lanka_s1 > 2\npeople_died_in_sri_lanka_s2 = 5\n\npeople_died_in_sri_lanka_s1 = None\npeople_died_in_sri_lanka_s2 = None\n\nif people_died_in_sri_lanka_s1 is None or people_died_in_sri_lanka_s2 is None:\n print(\"Neutral\")\nelif people_died_in_sri_lanka_s1 < people_died_in_sri_lanka_s2:\n print(\"Entailment\")\nelif people_died_in_sri_lanka_s1 != people_died_in_sri_lanka_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jake can dig a well in less than 66 days, \"statement 2\" :Jake can dig a well in 16 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "well_can_be_dig_in_days_s1 = 0\nwell_can_be_dig_in_days_s1 < 66\nwell_can_be_dig_in_days_s2 = 16\n\nwell_can_be_dig_in_days_s1 = None\nwell_can_be_dig_in_days_s2 = None\n\nif well_can_be_dig_in_days_s1 is None or well_can_be_dig_in_days_s2 is None:\n print(\"Neutral\")\nelif well_can_be_dig_in_days_s1 < well_can_be_dig_in_days_s2:\n print(\"Entailment\")\nelif well_can_be_dig_in_days_s1 != well_can_be_dig_in_days_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Richard will arrange 6 people of 6 different heights for photograph by placing them in two rows of three so that each person in the first row is standing is standing in front of someone in the second row, \"statement 2\" :Richard will arrange less than 7 people of 6 different heights for photograph by placing them in two rows of three so that each person in the first row is standing is standing in front of someone in the second row, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "arrange_different_heights_s1 = 6\narrange_different_heights_s2 = 0\narrange_different_heights_s2 < 7\n\nif arrange_different_heights_s1 is None or arrange_different_heights_s2 is None:\n print(\"Neutral\")\nelif arrange_different_heights_s1 > arrange_different_heights_s2 :\n print(\"Entailment\")\nelif arrange_different_heights_s1 != arrange_different_heights_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Zimmer has 237 papers to hand out to his class, \"statement 2\" :Zimmer has 137 papers to hand out to his class, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "papers_to_hand_out_s1 = 237\npapers_to_hand_out_s2 = 137\n\nif papers_to_hand_out_s1 is None or papers_to_hand_out_s2 is None:\n print('neutral')\n\nelif papers_to_hand_out_s1 == papers_to_hand_out_s2:\n print('Entailment')\n\nelif papers_to_hand_out_s1 != papers_to_hand_out_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Shreehari walks in the speed of 4.5 km / hr from his house , in what time will he reach his school which is less than 850 m long from his house ?, \"statement 2\" :If Shreehari walks in the speed of 4.5 km / hr from his house , in what time will he reach his school which is 750 m long from his house ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_from_house_to_school_s1 = 0\ndistance_from_house_to_school_s1 < 850\ndistance_from_house_to_school_s2 = 750\n\ndistance_from_house_to_school_s1 = None\ndistance_from_house_to_school_s2 = None\n\nif distance_from_house_to_school_s1 is None or distance_from_house_to_school_s2 is None:\n print(\"Neutral\")\nelif distance_from_house_to_school_s1 < distance_from_house_to_school_s2:\n print(\"Entailment\")\nelif distance_from_house_to_school_s1 != distance_from_house_to_school_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Aaron will jog from home at more than 4 miles per hour and then walk back home by the same route at 12 miles per hour, \"statement 2\" :Aaron will jog from home at 6 miles per hour and then walk back home by the same route at 12 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jog_from_home_s1 = 0\njog_from_home_s1 > 4 \njog_from_home_s2 = 6\n\njog_from_home_s1 = None\njog_from_home_s2 = None\n\nif jog_from_home_s1 is None or jog_from_home_s2 is None:\n print(\"Neutral\")\nelif jog_from_home_s1 < jog_from_home_s2:\n print(\"Entailment\")\nelif jog_from_home_s1 != jog_from_home_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Today John is more than 1 times older than Mark, \"statement 2\" :Today John is 3 times older than Mark, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_older_than_mark_s1 = 0\njohn_older_than_mark_s1 > 1\njohn_older_than_mark_s2 = 3\n\njohn_older_than_mark_s1 = None\njohn_older_than_mark_s2 = None\n\nif john_older_than_mark_s1 is None or john_older_than_mark_s2 is None:\n print(\"Neutral\")\nelif john_older_than_mark_s1 < john_older_than_mark_s2:\n print(\"Entailment\")\nelif john_older_than_mark_s1 != john_older_than_mark_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The 40 parents participating in the Smithville PTA have been assigned to at least 1 of 3 committees : festival planning , classroom aid , and teacher relations, \"statement 2\" :The less than 80 parents participating in the Smithville PTA have been assigned to at least 1 of 3 committees : festival planning , classroom aid , and teacher relations, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "parents_participating_s1 = 40\nparents_participating_s2 = 0\nparents_participating_s2 < 80\n\nif parents_participating_s1 is None or parents_participating_s2 is None:\n print(\"Neutral\")\nelif parents_participating_s1 > parents_participating_s2 :\n print(\"Entailment\")\nelif parents_participating_s1 != parents_participating_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Three of those arrested are still in custody , including the two men who allegedly hacked to death British soldier Lee Rigby ., \"statement 2\" :Two men in Grimsby , England , are arrested on suspicion of arson, \"options: \" Entailment or neutral?", + "Output Program": [ + "arrested_s1 = 2\narrested_s2 = 2\n\narrested_s1 = None\narrested_s2 = None\n\nif arrested_s1 is None or arrested_s2 is None:\n print(\"Neutral\")\nelif arrested_s1 < arrested_s2:\n print(\"Entailment\")\nelif arrested_s1 != arrested_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 6.0 birds and 3.0 nests., \"statement 2\" :There are 0.0 more birds than nests, \"options: \" Entailment or contradiction?", + "Output Program": [ + "birds_than_nest_s1 = 6\nbirds_than_nest_s2 = 0\n\nif birds_than_nest_s1 is None or birds_than_nest_s2 is None:\n print('neutral')\n\nelif birds_than_nest_s1 == birds_than_nest_s2:\n print('Entailment')\n\nelif birds_than_nest_s1 != birds_than_nest_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ratio of the ages of Hema and Her brother is less than 8 : 2, \"statement 2\" :The ratio of the ages of Hema and Her brother is 3 : 2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_of_ages_s1 = 0\nratio_of_ages_s1 < 8/2\nratio_of_ages_s2 = 3/2\n\nratio_of_ages_s1 = None\nratio_of_ages_s2 = None\n\nif ratio_of_ages_s1 is None or ratio_of_ages_s2 is None:\n print(\"Neutral\")\nelif ratio_of_ages_s1 < ratio_of_ages_s2:\n print(\"Entailment\")\nelif ratio_of_ages_s1 != ratio_of_ages_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many miles from home can Aaron jog so that he spends a total of 3 hours jogging and walking ?, \"statement 2\" :How many miles from home can Aaron jog so that he spends a total of more than 3 hours jogging and walking ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_hours_for_jogging_and_walking_s1 = 3\ntotal_hours_for_jogging_and_walking_s2 = 0\n\nif total_hours_for_jogging_and_walking_s1 is None or total_hours_for_jogging_and_walking_s2 is None:\n print('neutral')\n\nelif total_hours_for_jogging_and_walking_s1 == total_hours_for_jogging_and_walking_s2:\n print('Entailment')\n\nelif total_hours_for_jogging_and_walking_s1 != total_hours_for_jogging_and_walking_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John invests some money at the beginning , David invests double the amount after 6 months , and Xavier invests thrice the amount after 8 months, \"statement 2\" :John invests some money at the beginning , David invests double the amount after less than 7 months , and Xavier invests thrice the amount after 8 months, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "double_invests_amount_s1 = 6\ndouble_invests_amount_s2 = 0\ndouble_invests_amount_s2 < 7\n\nif double_invests_amount_s1 is None or double_invests_amount_s2 is None:\n print(\"Neutral\")\nelif double_invests_amount_s1 > double_invests_amount_s2 :\n print(\"Entailment\")\nelif double_invests_amount_s1 != double_invests_amount_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Maria had 14.0 bottles of water in her fridge, and she drank 8.0 of them and then bought 45.0 more, \"statement 2\" :She would have 54.0 bottles , \"options: \" Entailment or contradiction?", + "Output Program": [ + "bottles_of_water_s1 = 14-8+45\nbottles_of_water_s2 = 54\n\nif bottles_of_water_s1 is None or bottles_of_water_s2 is None:\n print('neutral')\n\nelif bottles_of_water_s1 == bottles_of_water_s2:\n print('Entailment')\n\nelif bottles_of_water_s1 != bottles_of_water_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If gas costs $ 4 / gallon , then how many miles can Dan \u2019 s car go on $ 58 of gas ?, \"statement 2\" :If gas costs $ 1 / gallon , then how many miles can Dan \u2019 s car go on $ 58 of gas ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gas_costs_gallon_s1 = 4\ngas_costs_gallon_s2 = 1\n\nif gas_costs_gallon_s1 is None or gas_costs_gallon_s2 is None:\n print('neutral')\n\nelif gas_costs_gallon_s1 == gas_costs_gallon_s2:\n print('Entailment')\n\nelif gas_costs_gallon_s1 != gas_costs_gallon_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": James took a 3 - hour bike ride, \"statement 2\" :James took a more than 1 - hour bike ride, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bike_ride_hour_s1 = 3\nbike_ride_hour_s2 = 0\nbike_ride_hour_s2 > 1\n\nif bike_ride_hour_s1 is None or bike_ride_hour_s2 is None:\n print(\"Neutral\")\nelif bike_ride_hour_s1 > bike_ride_hour_s2 :\n print(\"Entailment\")\nelif bike_ride_hour_s1 != bike_ride_hour_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": These will include an appearance by a Qatar-outfitted Boeing 787 Dreamliner -- the first time the much-delayed flagship has appeared in airline livery ., \"statement 2\" :Boeing 's long-delayed 787 Dreamliner is expected to make an appearance in Qatar colors, \"options: \" Entailment or neutral?", + "Output Program": [ + "boeing_long_delayed_s1 = 787\nboeing_long_delayed_s2 = 787\n\nboeing_long_delayed_s1 = None\nboeing_long_delayed_s2 = None\n\nif boeing_long_delayed_s1 is None or boeing_long_delayed_s2 is None:\n print(\"Neutral\")\nelif boeing_long_delayed_s1 < boeing_long_delayed_s2:\n print(\"Entailment\")\nelif boeing_long_delayed_s1 != boeing_long_delayed_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy is younger than Molly by less than 62 years, \"statement 2\" :Sandy is younger than Molly by 12 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_younger_than_molly_s1 = 0\nsandy_younger_than_molly_s1 < 62\nsandy_younger_than_molly_s2 = 12\n\nsandy_younger_than_molly_s1 = None\nsandy_younger_than_molly_s2 = None\n\nif sandy_younger_than_molly_s1 is None or sandy_younger_than_molly_s2 is None:\n print(\"Neutral\")\nelif sandy_younger_than_molly_s1 < sandy_younger_than_molly_s2:\n print(\"Entailment\")\nelif sandy_younger_than_molly_s1 != sandy_younger_than_molly_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy attempts 30 sums and obtains 60 marks, \"statement 2\" :Sandy attempts 40 sums and obtains 60 marks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_attempts_sum_s1 = 30\nsandy_attempts_sum_s2 = 40\n\nif sandy_attempts_sum_s1 is None or sandy_attempts_sum_s2 is None:\n print('neutral')\n\nelif sandy_attempts_sum_s1 == sandy_attempts_sum_s2:\n print('Entailment')\n\nelif sandy_attempts_sum_s1 != sandy_attempts_sum_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": New York ( CNN ) -- Social media site Pinterest just received another $ 225 million in funding ., \"statement 2\" :Social media site Pinterest secures extra investment worth $ 225 million, \"options: \" Entailment or neutral?", + "Output Program": [ + "pinterest_received_funding_s1 = 225\npinterest_received_funding_s2 = 225\n\npinterest_received_funding_s1 = None\npinterest_received_funding_s2 = None\n\nif pinterest_received_funding_s1 is None or pinterest_received_funding_s2 is None:\n print(\"Neutral\")\nelif pinterest_received_funding_s1 < pinterest_received_funding_s2:\n print(\"Entailment\")\nelif pinterest_received_funding_s1 != pinterest_received_funding_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The distance between Delhi and Mathura is less than 530 kms, \"statement 2\" :The distance between Delhi and Mathura is 130 kms, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_between_delhi_and_mathura_s1 = 0\ndistance_between_delhi_and_mathura_s1 < 530\ndistance_between_delhi_and_mathura_s2 = 130\n\ndistance_between_delhi_and_mathura_s1 = None\ndistance_between_delhi_and_mathura_s2 = None\n\nif distance_between_delhi_and_mathura_s1 is None or distance_between_delhi_and_mathura_s2 is None:\n print(\"Neutral\")\nelif distance_between_delhi_and_mathura_s1 < distance_between_delhi_and_mathura_s2:\n print(\"Entailment\")\nelif distance_between_delhi_and_mathura_s1 != distance_between_delhi_and_mathura_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dan \u2019 s car gets less than 52 miles per gallon, \"statement 2\" :Dan \u2019 s car gets 32 miles per gallon, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_per_gallon_s1 = 0\nmiles_per_gallon_s1 < 52\nmiles_per_gallon_s2 = 32\n\nmiles_per_gallon_s1 = None\nmiles_per_gallon_s2 = None\n\nif miles_per_gallon_s1 is None or miles_per_gallon_s2 is None:\n print(\"Neutral\")\nelif miles_per_gallon_s1 < miles_per_gallon_s2:\n print(\"Entailment\")\nelif miles_per_gallon_s1 != miles_per_gallon_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sakshi can do a piece of work in 20 days, \"statement 2\" :Sakshi can do a piece of work in more than 20 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "piece_of_work_can_be_done_in_days_s1 = 20\npiece_of_work_can_be_done_in_days_s2 = 0\n\nif piece_of_work_can_be_done_in_days_s1 is None or piece_of_work_can_be_done_in_days_s2 is None:\n print('neutral')\n\nelif piece_of_work_can_be_done_in_days_s1 == piece_of_work_can_be_done_in_days_s2:\n print('Entailment')\n\nelif piece_of_work_can_be_done_in_days_s1 != piece_of_work_can_be_done_in_days_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alice leaves City A 30 minutes after Bob, \"statement 2\" :Alice leaves City A less than 70 minutes after Bob, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "alice_leaves_after_bob_s1 = 30\nalice_leaves_after_bob_s2 = 0\nalice_leaves_after_bob_s2 < 70\n\nif alice_leaves_after_bob_s1 is None or alice_leaves_after_bob_s2 is None:\n print(\"Neutral\")\nelif alice_leaves_after_bob_s1 > alice_leaves_after_bob_s2 :\n print(\"Entailment\")\nelif alice_leaves_after_bob_s1 != alice_leaves_after_bob_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tom alone cleans the entire house in 6 hours, \"statement 2\" :Tom alone cleans the entire house in more than 2 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tom_cleans_house_s1 = 6\ntom_cleans_house_s2 = 0\ntom_cleans_house_s2 > 2\n\nif tom_cleans_house_s1 is None or tom_cleans_house_s2 is None:\n print(\"Neutral\")\nelif tom_cleans_house_s1 > tom_cleans_house_s2 :\n print(\"Entailment\")\nelif tom_cleans_house_s1 != tom_cleans_house_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jazmin had 1209.0 dolls and Geraldine had 2186.0 dolls, and they put their dolls together, \"statement 2\" :They would have 3395.0 dolls , \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_dolls_s1 = 1209+2186\ntotal_dolls_s2 = 3395\n\nif total_dolls_s1 is None or total_dolls_s2 is None:\n print(\"Neutral\")\nelif total_dolls_s1 == total_dolls_s2 :\n print(\"Entailment\")\nelif total_dolls_s1 != total_dolls_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At Veridux Corporation , there are less than 300 employees, \"statement 2\" :At Veridux Corporation , there are 200 employees, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "employees_s1 = 0\nemployees_s1 < 300\nemployees_s2 = 200\n\nemployees_s1 = None\nemployees_s2 = None\n\nif employees_s1 is None or employees_s2 is None:\n print(\"Neutral\")\nelif employees_s1 < employees_s2:\n print(\"Entailment\")\nelif employees_s1 != employees_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alice leaves City A less than 70 minutes after Bob, \"statement 2\" :Alice leaves City A 30 minutes after Bob, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "time_alice_takes_to_leave_city_s1 = 0\ntime_alice_takes_to_leave_city_s1 < 70\ntime_alice_takes_to_leave_city_s2 = 30\n\ntime_alice_takes_to_leave_city_s1 = None\ntime_alice_takes_to_leave_city_s2 = None\n\nif time_alice_takes_to_leave_city_s1 is None or time_alice_takes_to_leave_city_s2 is None:\n print(\"Neutral\")\nelif time_alice_takes_to_leave_city_s1 < time_alice_takes_to_leave_city_s2:\n print(\"Entailment\")\nelif time_alice_takes_to_leave_city_s1 != time_alice_takes_to_leave_city_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The pitcher finished the season with a 15-6 record , 197 strikeouts and a 3.16 ERA ., \"statement 2\" :He was 15-6 with a 3.16 ERA . He recorded 197 strikeouts, \"options: \" Entailment or neutral?", + "Output Program": [ + "ERA_s1 = 13.6\nERA_s2 = 13.6\n\nif ERA_s1 is None or ERA_s2 is None:\n print('neutral')\n\nelif ERA_s1 == ERA_s2:\n print('Entailment')\n\nelif ERA_s1 != ERA_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Among the crew members , five are South Korean and 18 are from the Philippines , the ministry said ., \"statement 2\" :Japanese ship carrying 23 crew , including five South Koreans and 18 Filipinos, \"options: \" Entailment or neutral?", + "Output Program": [ + "crew_from_south_korea_s1 = 5\ncrew_from_south_korea_s2 = 5\n\ncrew_from_south_korea_s1 = None\ncrew_from_south_korea_s2 = None\n\nif crew_from_south_korea_s1 is None or crew_from_south_korea_s2 is None:\n print(\"Neutral\")\nelif crew_from_south_korea_s1 < crew_from_south_korea_s2:\n print(\"Entailment\")\nelif crew_from_south_korea_s1 != crew_from_south_korea_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tina has 12 shirts and 9 pants, \"statement 2\" :Tina has less than 22 shirts and 9 pants, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tina_has_shirts_s1 = 12\ntina_has_shirts_s2 = 0\ntina_has_shirts_s2 < 22\n\nif tina_has_shirts_s1 is None or tina_has_shirts_s2 is None:\n print(\"Neutral\")\nelif tina_has_shirts_s1 > tina_has_shirts_s2 :\n print(\"Entailment\")\nelif tina_has_shirts_s1 != tina_has_shirts_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ganesh covers the distance from X to Y at an average speed of 54 Km / hr, \"statement 2\" :Ganesh covers the distance from X to Y at an average speed of more than 44 Km / hr, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_speed_s1 = 54\naverage_speed_s2 = 0\naverage_speed_s2 > 44\n\nif average_speed_s1 is None or average_speed_s2 is None:\n print(\"Neutral\")\nelif average_speed_s1 > average_speed_s2 :\n print(\"Entailment\")\nelif average_speed_s1 != average_speed_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Level - 1 college graduates account for 15 % of Listco ' s sales staff, \"statement 2\" :Level - more than 1 college graduates account for 15 % of Listco ' s sales staff, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "level_of_college_graduates_s1 = 1\nlevel_of_college_graduates_s2 = 0\n\nif level_of_college_graduates_s1 is None or level_of_college_graduates_s2 is None:\n print('neutral')\n\nelif level_of_college_graduates_s1 == level_of_college_graduates_s2:\n print('Entailment')\n\nelif level_of_college_graduates_s1 != level_of_college_graduates_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The distance between Delhi and Mathura is 110 kms, \"statement 2\" :The distance between Delhi and Mathura is less than 210 kms, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_between_delhi_and_mathura_s1 = 110\ndistance_between_delhi_and_mathura_s2 = 0\ndistance_between_delhi_and_mathura_s2 < 210\n\nif distance_between_delhi_and_mathura_s1 is None or distance_between_delhi_and_mathura_s2 is None:\n print(\"Neutral\")\nelif distance_between_delhi_and_mathura_s1 > distance_between_delhi_and_mathura_s2 :\n print(\"Entailment\")\nelif distance_between_delhi_and_mathura_s1 != distance_between_delhi_and_mathura_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Angela has less than 72 pairs of matched socks, \"statement 2\" :Angela has 12 pairs of matched socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pair_of_matched_shoes_s1 = 0\npair_of_matched_shoes_s1 < 72\npair_of_matched_shoes_s2 = 12\n\npair_of_matched_shoes_s1 = None\npair_of_matched_shoes_s2 = None\n\nif pair_of_matched_shoes_s1 is None or pair_of_matched_shoes_s2 is None:\n print(\"Neutral\")\nelif pair_of_matched_shoes_s1 < pair_of_matched_shoes_s2:\n print(\"Entailment\")\nelif pair_of_matched_shoes_s1 != pair_of_matched_shoes_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bruce and Anne can clean their house in more than 2 hours working together at their respective constant rates, \"statement 2\" :Bruce and Anne can clean their house in 4 hours working together at their respective constant rates, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "both_clean_their_house_s1 = 0\nboth_clean_their_house_s1 > 2\nboth_clean_their_house_s2 = 4\n\nboth_clean_their_house_s1 = None\nboth_clean_their_house_s2 = None\n\nif both_clean_their_house_s1 is None or both_clean_their_house_s2 is None:\n print(\"Neutral\")\nelif both_clean_their_house_s1 < both_clean_their_house_s2:\n print(\"Entailment\")\nelif both_clean_their_house_s1 != both_clean_their_house_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Each CD rack holds 8.0 CDs and a shelf can hold 4.0 racks, \"statement 2\" :36.0 total CDs can fit on the shelf, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_CD_s1 = 8*4\ntotal_CD_s2 = 36\n\nif total_CD_s1 is None or total_CD_s2 is None:\n print('neutral')\n\nelif total_CD_s1 == total_CD_s2:\n print('Entailment')\n\nelif total_CD_s1 != total_CD_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Raman invests some money at the beginning , Lakshmi invests double the amount after 6 months , and Muthu invests thrice the amount after 8 months, \"statement 2\" :Raman invests some money at the beginning , Lakshmi invests double the amount after more than 5 months , and Muthu invests thrice the amount after 8 months, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_between_delhi_and_mathura_s1 = 110\ndistance_between_delhi_and_mathura_s2 = 0\ndistance_between_delhi_and_mathura_s2 < 210\n\nif distance_between_delhi_and_mathura_s1 is None or distance_between_delhi_and_mathura_s2 is None:\n print(\"Neutral\")\nelif distance_between_delhi_and_mathura_s1 > distance_between_delhi_and_mathura_s2 :\n print(\"Entailment\")\nelif distance_between_delhi_and_mathura_s1 != distance_between_delhi_and_mathura_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": '' The bank notes we tested harbored an average of 26,000 bacteria , which , for a number of pathogenic organisms , is sufficient for passing on infection . '', \"statement 2\" :An Oxford University study found an average of 26,000 bacteria on bank notes, \"options: \" Entailment or neutral?", + "Output Program": [ + "average_of_bacteria_s1 = 26000\naverage_of_bacteria_s2 = 26000\n\naverage_of_bacteria_s1 = None\naverage_of_bacteria_s2 = None\n\nif average_of_bacteria_s1 is None or average_of_bacteria_s2 is None:\n print(\"Neutral\")\nelif average_of_bacteria_s1 < average_of_bacteria_s2:\n print(\"Entailment\")\nelif average_of_bacteria_s1 != average_of_bacteria_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Find the area of a rectangular field if John walking at the speed of 48 m / min took 20 seconds to cross the field diagonally and Harry walking at a speed of 72 m / min took 15 seconds to cross the field along its sides ., \"statement 2\" :Find the area of a rectangular field if John walking at the speed of less than 78 m / min took 20 seconds to cross the field diagonally and Harry walking at a speed of 72 m / min took 15 seconds to cross the field along its sides ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "walking_speed_s1 = 48\nwalking_speed_s2 = 0\nwalking_speed_s2 < 78\n\nif walking_speed_s1 is None or walking_speed_s2 is None:\n print(\"Neutral\")\nelif walking_speed_s1 > walking_speed_s2 :\n print(\"Entailment\")\nelif walking_speed_s1 != walking_speed_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A runner runs the less than 60 miles from Marathon to Athens at a constant speed, \"statement 2\" :A runner runs the 40 miles from Marathon to Athens at a constant speed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_runner_runs_in_marathon_s1 = 0\nmiles_runner_runs_in_marathon_s1 < 60\nmiles_runner_runs_in_marathon_2 = 40\n\nmiles_runner_runs_in_marathon_s1 = None\nmiles_runner_runs_in_marathon_s2 = None\n\nif miles_runner_runs_in_marathon_s1 is None or miles_runner_runs_in_marathon_s2 is None:\n print(\"Neutral\")\nelif miles_runner_runs_in_marathon_s1 < miles_runner_runs_in_marathon_s2:\n print(\"Entailment\")\nelif miles_runner_runs_in_marathon_s1 != miles_runner_runs_in_marathon_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are 25 males altogether , how many gerbils does Claire have ?, \"statement 2\" :If there are more than 15 males altogether , how many gerbils does Claire have ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "males_altogether_s1 = 48\nmales_altogether_s2 = 0\nmales_altogether_s2 < 78\n\nif males_altogether_s1 is None or males_altogether_s2 is None:\n print(\"Neutral\")\nelif males_altogether_s1 > males_altogether_s2 :\n print(\"Entailment\")\nelif males_altogether_s1 != males_altogether_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary is more than 1 years younger than Albert, \"statement 2\" :Mary is 8 years younger than Albert, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mary_younger_than_albert_s1 = 0\nmary_younger_than_albert_s1 > 1\nmary_younger_than_albert_s2 = 8\n\nmary_younger_than_albert_s1 = None\nmary_younger_than_albert_s2 = None\n\nif mary_younger_than_albert_s1 is None or mary_younger_than_albert_s2 is None:\n print(\"Neutral\")\nelif mary_younger_than_albert_s1 < mary_younger_than_albert_s2:\n print(\"Entailment\")\nelif mary_younger_than_albert_s1 != mary_younger_than_albert_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The government estimates around 80,000 people are involved in prostitution in Britain , with about 4,000 women having been trafficked for sexual exploitation ., \"statement 2\" :UK government : Around 4,000 women trafficked in the UK for sexual exploitation, \"options: \" Entailment or neutral?", + "Output Program": [ + "women_trafficked_s1 = 4000\nwomen_trafficked_s2 = 4000\n\nif women_trafficked_s1 is None or women_trafficked_s2 is None:\n print(\"Neutral\")\nelif women_trafficked_s1 == women_trafficked_s2 :\n print(\"Entailment\")\nelif women_trafficked_s1 != women_trafficked_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Carol ' s rectangle measures 12 inches by 15 inches and Jordan ' s rectangle is 6 inches long , how wide is Jordan ' s rectangle , in inches ?, \"statement 2\" :If Carol ' s rectangle measures 42 inches by 15 inches and Jordan ' s rectangle is 6 inches long , how wide is Jordan ' s rectangle , in inches ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "inches_rectangle_measures_s1 = 12\ninches_rectangle_measures_s2 = 42\n\nif inches_rectangle_measures_s1 is None or inches_rectangle_measures_s2 is None:\n print('neutral')\n\nelif inches_rectangle_measures_s1 == inches_rectangle_measures_s2:\n print('Entailment')\n\nelif inches_rectangle_measures_s1 != inches_rectangle_measures_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary can do a piece of work in 28 days, \"statement 2\" :Mary can do a piece of work in less than 28 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_taken_to_finish_work_s1 = 28\ndays_taken_to_finish_work_s2 = 0\n\nif days_taken_to_finish_work_s1 is None or days_taken_to_finish_work_s2 is None:\n print('neutral')\n\nelif days_taken_to_finish_work_s1 < days_taken_to_finish_work_s2:\n print('Entailment')\n\nelif days_taken_to_finish_work_s1 != days_taken_to_finish_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Before December, customers bought 6444.0 ear muffs from the mall and During December, they bought 1346.0 less earmuffs than before, \"statement 2\" :5098.0 earmuffs were sold in December, \"options: \" Entailment or contradiction?", + "Output Program": [ + "earpuffs_sold_s1 = 6444+6444-1346\nearpuffs_sold_s2 = 5098\n\nif earpuffs_sold_s1 is None or earpuffs_sold_s2 is None:\n print(\"Neutral\")\nelif earpuffs_sold_s1 > earpuffs_sold_s2:\n print(\"Entailment\")\nelif earpuffs_sold_s1 != earpuffs_sold_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Aarti had prior experience in that route and mentioned that the speed of stream was more than 2 kmph, \"statement 2\" :Aarti had prior experience in that route and mentioned that the speed of stream was 4 kmph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_of_stream_s1 = 0\nspeed_of_stream_s1 > 2\nspeed_of_stream_s2 = 4\n\nspeed_of_stream_s1 = None\nspeed_of_stream_s2 = None\n\nif speed_of_stream_s1 is None or speed_of_stream_s2 is None:\n print(\"Neutral\")\nelif speed_of_stream_s1 < speed_of_stream_s2:\n print(\"Entailment\")\nelif speed_of_stream_s1 != speed_of_stream_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Donald carries a total of 42 notes ( of either $ 10 or \u20ac 10 , ) then what is the total number of notes ( of either $ 10 or \u20ac 10 , ) they take ?, \"statement 2\" :If Donald carries a total of more than 42 notes ( of either $ 10 or \u20ac 10 , ) then what is the total number of notes ( of either $ 10 or \u20ac 10 , ) they take ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_notes_s1 = 42\ntotal_notes_s2 = 0\n\nif total_notes_s1 is None or total_notes_s2 is None:\n print('neutral')\n\nelif total_notes_s1 == total_notes_s2:\n print('Entailment')\n\nelif total_notes_s1 != total_notes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary had 33.0 Pokemon cards , and 6.0 were torn and Mary gave Sam 23.0 of her Pokemon cards , \"statement 2\" :Mary has 5.0 Pokemon cards now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "pokemon_cards_s1 = 33-6-23\npokemon_cards_s2 = 5\n\nif pokemon_cards_s1 is None or pokemon_cards_s2 is None:\n print('neutral')\n\nelif pokemon_cards_s1 == pokemon_cards_s2:\n print('Entailment')\n\nelif pokemon_cards_s1 != pokemon_cards_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The same storm has caused more than 125,000 people to lose power near St. Louis , Missouri and power officials say that they are `` still losing people , '' said Springfield 's City Utilities spokesman , Ern DeCamp ., \"statement 2\" :125,000 were killed by a storm ., \"options: \" Entailment or neutral?", + "Output Program": [ + "killed_by_storm_s1 = 0\nkilled_by_storm_s1 > 125000\nkilled_by_storm_s2 = 125000\n\nkilled_by_storm_s1 = None\nkilled_by_storm_s2 = None\n\nif killed_by_storm_s1 is None or killed_by_storm_s2 is None:\n print(\"Neutral\")\nelif killed_by_storm_s1 < killed_by_storm_s2:\n print(\"Entailment\")\nelif killed_by_storm_s1 != killed_by_storm_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": David obtained 76 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"statement 2\" :David obtained more than 76 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_obtained_s1 = 76+65+82+67+85\nmarks_obtained_s2 = 0\n\nif marks_obtained_s1 is None or marks_obtained_s2 is None:\n print('neutral')\n\nelif marks_obtained_s1 == marks_obtained_s2:\n print('Entailment')\n\nelif marks_obtained_s1 != marks_obtained_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Caleb spends $ 70.50 on 50 hamburgers for the marching band, \"statement 2\" :Caleb spends $ 70.50 on less than 60 hamburgers for the marching band, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hamburgers_s1 = 50\nhamburgers_s2 = 0\nhamburgers_s2 < 60\n\nif hamburgers_s1 is None or hamburgers_s2 is None:\n print(\"Neutral\")\nelif hamburgers_s1 > hamburgers_s2:\n print(\"Entailment\")\nelif hamburgers_s1 != hamburgers_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jacob ' s age less than 28 years hence will be thrice his age four years ago, \"statement 2\" :Jacob ' s age 18 years hence will be thrice his age four years ago, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jacob_age_s1 = 0\njacob_age_s1 < 28\njacob_age_s2 = 18\n\njacob_age_s1 = None\njacob_age_s2 = None\n\nif jacob_age_s1 is None or jacob_age_s2 is None:\n print(\"Neutral\")\nelif jacob_age_s1 < jacob_age_s2:\n print(\"Entailment\")\nelif jacob_age_s1 != jacob_age_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mira is making telescopes , each consisting of 2 lenses , 1 tube , and 1 eyepiece, \"statement 2\" :Mira is making telescopes , each consisting of less than 6 lenses , 1 tube , and 1 eyepiece, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "lens_of_telescope_s1 = 2\nlens_of_telescope_s2 = 0\nlens_of_telescope_s2 < 6\n\nif lens_of_telescope_s1 is None or lens_of_telescope_s2 is None:\n print(\"Neutral\")\nelif lens_of_telescope_s1 > lens_of_telescope_s2:\n print(\"Entailment\")\nelif lens_of_telescope_s1 != lens_of_telescope_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the ratio between the one - third age of Neelam and half of Shaan ' s age of less than 6 : 9 , then what is the school age of Shaan ?, \"statement 2\" :If the ratio between the one - third age of Neelam and half of Shaan ' s age of 5 : 9 , then what is the school age of Shaan ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_between_neelam_and_shaan_s1 = 0\nratio_between_neelam_and_shaan_s1 < 6/9\nratio_between_neelam_and_shaan_s2 = 5/9\n\nratio_between_neelam_and_shaan_s1 = None\nratio_between_neelam_and_shaan_s2 = None\n\nif ratio_between_neelam_and_shaan_s1 is None or ratio_between_neelam_and_shaan_s2 is None:\n print(\"Neutral\")\nelif ratio_between_neelam_and_shaan_s1 < ratio_between_neelam_and_shaan_s2:\n print(\"Entailment\")\nelif ratio_between_neelam_and_shaan_s1 != ratio_between_neelam_and_shaan_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Raman mixed 24 kg of butter at Rs, \"statement 2\" :Raman mixed 44 kg of butter at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kg_of_butter_s1 = 24\nkg_of_butter_s2 = 44\n\nif kg_of_butter_s1 is None or kg_of_butter_s2 is None:\n print('neutral')\n\nelif kg_of_butter_s1 == kg_of_butter_s2:\n print('Entailment')\n\nelif kg_of_butter_s1 != kg_of_butter_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the height difference between the two if the Empire\nState Building is 480 m tall and the Petronas Towers is 516 m tall ?, \"statement 2\" :What is the height difference between the two if the Empire State Building is more than 280 m tall and the Petronas Towers is 516 m tall ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "height_difference_in_state_building_s1 = 480\nheight_difference_in_state_building_s2 = 0\nheight_difference_in_state_building_s2 > 280\n\nif height_difference_in_state_building_s1 is None or height_difference_in_state_building_s2 is None:\n print(\"Neutral\")\nelif height_difference_in_state_building_s1 > height_difference_in_state_building_s2:\n print(\"Entailment\")\nelif height_difference_in_state_building_s1 != height_difference_in_state_building_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Samsung , however , built the Galaxy Note 10.1 from the ground up for pen use ., \"statement 2\" :On the Saumsung Galaxy Note 10.1 tablet , the stylus pen is the key, \"options: \" Entailment or neutral?", + "Output Program": [ + "pen_use_s1 = 10.1\npen_use_s2 = 10.1\n\nif pen_use_s1 is None or pen_use_s2 is None:\n print('neutral')\n\nelif pen_use_s1 == pen_use_s2:\n print('Entailment')\n\nelif pen_use_s1 != pen_use_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ratio of Gomati \u2019 s and Rashmi \u2019 s ages is 3 : 5 respectively, \"statement 2\" :The ratio of Gomati \u2019 s and Rashmi \u2019 s ages is less than 4 : 5 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_of_gomati_and_rashmi_s1 = 3/5\nratio_of_gomati_and_rashmi_s2 = 4/5\n\nif ratio_of_gomati_and_rashmi_s1 is None or ratio_of_gomati_and_rashmi_s2 is None:\n print('neutral')\n\nelif ratio_of_gomati_and_rashmi_s1 < ratio_of_gomati_and_rashmi_s2:\n print('Entailment')\n\nelif ratio_of_gomati_and_rashmi_s1 != ratio_of_gomati_and_rashmi_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Caleb spends $ 68.50 on 50 hamburgers for the marching band, \"statement 2\" :Caleb spends $ 68.50 on more than 20 hamburgers for the marching band, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hamburgers_s1 = 50\nhamburgers_s2 = 20\n\nif hamburgers_s1 is None or hamburgers_s2 is None:\n print('neutral')\n\nelif hamburgers_s1 > hamburgers_s2:\n print('Entailment')\n\nelif hamburgers_s1 != hamburgers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A runner runs the 40 miles from Marathon to Athens at a constant speed, \"statement 2\" :A runner runs the more than 10 miles from Marathon to Athens at a constant speed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_runner_run_s1 = 40\nmiles_runner_run_s2 = 10\n\nif miles_runner_run_s1 is None or miles_runner_run_s2 is None:\n print('neutral')\n\nelif miles_runner_run_s1 > miles_runner_run_s2:\n print('Entailment')\n\nelif miles_runner_run_s1 != miles_runner_run_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than 40 % ?, \"statement 2\" :If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than 70 % ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "required_rate_of_departure_s1 = 40\nrequired_rate_of_departure_s2 = 70\n\nif required_rate_of_departure_s1 is None or required_rate_of_departure_s2 is None:\n print('neutral')\n\nelif required_rate_of_departure_s1 > required_rate_of_departure_s2:\n print('Entailment')\n\nelif required_rate_of_departure_s1 != required_rate_of_departure_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Five U.S. states allow civil unions for same-sex couples , but not marriage ., \"statement 2\" :Five states allow civil unions , a legal status short of marriage , for same-sex couples, \"options: \" Entailment or neutral?", + "Output Program": [ + "civil_union_s1 = 5\ncivil_union_s2 = 5\n\nif civil_union_s1 is None or civil_union_s2 is None:\n print('neutral')\n\nelif civil_union_s1 == civil_union_s2:\n print('Entailment')\n\nelif civil_union_s1 != civil_union_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The less than 80 parents participating in the Smithville PTA have been assigned to at least 1 of 3 committees : festival planning , classroom aid , and teacher relations, \"statement 2\" :The 40 parents participating in the Smithville PTA have been assigned to at least 1 of 3 committees : festival planning , classroom aid , and teacher relations, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "parents_participating_s1 = 0\nparents_participating_s1 < 80\nparents_participating_s2 = 40\n\nparents_participating_s1 = None\nparents_participating_s2 = None\n\nif parents_participating_s1 is None or parents_participating_s2 is None:\n print(\"Neutral\")\nelif parents_participating_s1 < parents_participating_s2:\n print(\"Entailment\")\nelif parents_participating_s1 != parents_participating_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The pool of 84 potential jurors in court appeared diverse , although only six were African-American ., \"statement 2\" :84 potential jurors , including six African-Americans , remain in the jury pool, \"options: \" Entailment or neutral?", + "Output Program": [ + "potential_jurors_s1 = None\npotential_jurors_s2 = 84\n\nif potential_jurors_s1 is None or potential_jurors_s2 is None:\n print('neutral')\n\nelif potential_jurors_s1 == potential_jurors_s2:\n print('Entailment')\n\nelif potential_jurors_s1 != potential_jurors_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Snyder has less than 6 more men and 6 more women than Leigh , how many women are in the Snyder choir ?, \"statement 2\" :If Snyder has 4 more men and 6 more women than Leigh , how many women are in the Snyder choir ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "synder_has_men_and_women_s1 = 0\nsynder_has_men_and_women_s1 < 6\nsynder_has_men_and_women_s2 = 4\n\nsynder_has_men_and_women_s1 = None\nsynder_has_men_and_women_s2 = None\n\nif synder_has_men_and_women_s1 is None or synder_has_men_and_women_s2 is None:\n print(\"Neutral\")\nelif synder_has_men_and_women_s1 < synder_has_men_and_women_s2:\n print(\"Entailment\")\nelif synder_has_men_and_women_s1 != synder_has_men_and_women_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were originally 20817.0 houses in Lincoln County and there was a housing boom and now there are 97741.0 houses in the county, \"statement 2\" :76923.0 houses were built from the original to the present, \"options: \" Entailment or contradiction?", + "Output Program": [ + "houses_built_in_s1 = 97741-20817\nhouses_built_in_s2 = 76923\n\nif houses_built_in_s1 is None or houses_built_in_s2 is None:\n print('neutral')\n\nelif houses_built_in_s1 == houses_built_in_s2:\n print('Entailment')\n\nelif houses_built_in_s1 != houses_built_in_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Reeya obtained 55 , 67 , 76 , 82 and 55 out of 100 in different subjects , What will be the average, \"statement 2\" :Reeya obtained more than 55 , 67 , 76 , 82 and 55 out of 100 in different subjects , What will be the average, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "houses_built_in_s1 = 55+67+76+82+55\nhouses_built_in_s2 = 0\n\nif houses_built_in_s1 is None or houses_built_in_s2 is None:\n print('neutral')\n\nelif houses_built_in_s1 == houses_built_in_s2:\n print('Entailment')\n\nelif houses_built_in_s1 != houses_built_in_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary is 16 years younger than Albert, \"statement 2\" :Mary is less than 56 years younger than Albert, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mary_younger_than_albert_s1 = 16\nmary_younger_than_albert_s2 = 56\n\nif mary_younger_than_albert_s1 is None or mary_younger_than_albert_s2 is None:\n print('neutral')\n\nelif mary_younger_than_albert_s1 < mary_younger_than_albert_s2:\n print('Entailment')\n\nelif mary_younger_than_albert_s1 != mary_younger_than_albert_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": City A to city B , Andrew drove for 1 hr at 48 mph and for 3 hours at 60 mph, \"statement 2\" :City A to city B , Andrew drove for less than 5 hr at 48 mph and for 3 hours at 60 mph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "andrew_drove_s1 = 3\nandrew_drove_s2 = 5\n\nif andrew_drove_s1 is None or andrew_drove_s2 is None:\n print('neutral')\n\nelif andrew_drove_s1 < andrew_drove_s2:\n print('Entailment')\n\nelif andrew_drove_s1 != andrew_drove_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Andy has 20 pairs of matched gloves, \"statement 2\" :Andy has more than 20 pairs of matched gloves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pair_of_matched_gloves_s1 = 20\npair_of_matched_gloves_s2 = 0\n\nif pair_of_matched_gloves_s1 is None or pair_of_matched_gloves_s2 is None:\n print('neutral')\n\nelif pair_of_matched_gloves_s1 == pair_of_matched_gloves_s2:\n print('Entailment')\n\nelif pair_of_matched_gloves_s1 != pair_of_matched_gloves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": How many oranges must Mary put back so that the average price of the pieces of fruit that she keeps is 48 \u00a2 ?, \"statement 2\" :How many oranges must Mary put back so that the average price of the pieces of fruit that she keeps is 38 \u00a2 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_price_of_fruit_pieces_s1 = 48\naverage_price_of_fruit_pieces_s2 = 38\n\nif average_price_of_fruit_pieces_s1 is None or average_price_of_fruit_pieces_s2 is None:\n print('neutral')\n\nelif average_price_of_fruit_pieces_s1 == average_price_of_fruit_pieces_s2:\n print('Entailment')\n\nelif average_price_of_fruit_pieces_s1 != average_price_of_fruit_pieces_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bookman purchased less than 75 copies of a new book released recently , 10 of which are hardback and sold for $ 20 each , and rest are paperback and sold for $ 10 each, \"statement 2\" :Bookman purchased 55 copies of a new book released recently , 10 of which are hardback and sold for $ 20 each , and rest are paperback and sold for $ 10 each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "copies_of_new_book_s1 = 0\ncopies_of_new_book_s1 < 75\ncopies_of_new_book_s2 = 55\n\ncopies_of_new_book_s1 = None\ncopies_of_new_book_s2 = None\n\nif copies_of_new_book_s1 is None or copies_of_new_book_s2 is None:\n print(\"Neutral\")\nelif copies_of_new_book_s1 < copies_of_new_book_s2:\n print(\"Entailment\")\nelif copies_of_new_book_s1 != copies_of_new_book_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Upon their return , Medunjanin and his two friends hatched a plan to rig backpacks with explosives and blow them up , prosecutors said ., \"statement 2\" :Prosecutors said Medunjanin traveled to Pakistan 's tribal region with two friends, \"options: \" Entailment or neutral?", + "Output Program": [ + "friends_hatched_plan_s1 = 2\nfriends_hatched_plan_s2 = 2\n\nfriends_hatched_plan_s1 = None\nfriends_hatched_plan_s2 = None\n\nif friends_hatched_plan_s1 is None or friends_hatched_plan_s2 is None:\n print(\"Neutral\")\nelif friends_hatched_plan_s1 < friends_hatched_plan_s2:\n print(\"Entailment\")\nelif friends_hatched_plan_s1 != friends_hatched_plan_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Indonesia 's tin industry is expected to return to profit in 1992 with the dominant state-owned tin mine , Tambang Timah , having cut production costs by 25 per cent since 1990 ., \"statement 2\" :Indonesia cut tin production costs by 25 % ., \"options: \" Entailment or neutral?", + "Output Program": [ + "tin_production_costs_s1 = None\ntin_production_costs_s2 = 25\n\nif tin_production_costs_s1 is None or tin_production_costs_s2 is None:\n print('neutral')\n\nelif tin_production_costs_s1 == tin_production_costs_s2:\n print('Entailment')\n\nelif tin_production_costs_s1 != tin_production_costs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Marcella has more than 10 pairs of shoes, \"statement 2\" :Marcella has 20 pairs of shoes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pairs_of_shoes_s1 = 0\npairs_of_shoes_s1 > 10\npairs_of_shoes_s2 = 20\n\npairs_of_shoes_s1 = None\npairs_of_shoes_s2 = None\n\nif pairs_of_shoes_s1 is None or pairs_of_shoes_s2 is None:\n print(\"Neutral\")\nelif pairs_of_shoes_s1 < pairs_of_shoes_s2:\n print(\"Entailment\")\nelif pairs_of_shoes_s1 != pairs_of_shoes_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Adams ' s internet provider offers unlimited traffic which costs $ 0.5 per day charged off at 12 a, \"statement 2\" :Adams ' s internet provider offers unlimited traffic which costs $ 0.5 per day charged off at less than 42 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tin_production_costs_s1 = None\ntin_production_costs_s2 = 25\n\nif tin_production_costs_s1 is None or tin_production_costs_s2 is None:\n print('neutral')\n\nelif tin_production_costs_s1 == tin_production_costs_s2:\n print('Entailment')\n\nelif tin_production_costs_s1 != tin_production_costs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": When Professor Wang looked at the rosters for this term ' s classes , she saw that the roster for her economics class ( E ) had less than 30 names , the roster for her marketing class ( M ) had 28 , and the roster for her statistics class ( S ) had 18, \"statement 2\" :When Professor Wang looked at the rosters for this term ' s classes , she saw that the roster for her economics class ( E ) had 20 names , the roster for her marketing class ( M ) had 28 , and the roster for her statistics class ( S ) had 18, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "economic_class_names_s1 = 0\neconomic_class_names_s1 < 30\neconomic_class_names_s2 = 20\n\neconomic_class_names_s1 = None\neconomic_class_names_s2 = None\n\nif economic_class_names_s1 is None or economic_class_names_s2 is None:\n print(\"Neutral\")\nelif economic_class_names_s1 < economic_class_names_s2:\n print(\"Entailment\")\nelif economic_class_names_s1 != economic_class_names_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many ways are there for 6 males and 3 females to sit ( around a circular table ) if no male should sit next to a male ( and no female next to female ) and Mary wants to sit with her back on the wall ?, \"statement 2\" :How many ways are there for less than 7 males and 3 females to sit ( around a circular table ) if no male should sit next to a male ( and no female next to female ) and Mary wants to sit with her back on the wall ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "men_and_women_sit_s1 = 6\nmen_and_women_sit_s2 = 7\n\nif men_and_women_sit_s1 is None or men_and_women_sit_s2 is None:\n print('neutral')\n\nelif men_and_women_sit_s1 < men_and_women_sit_s2:\n print('Entailment')\n\nelif men_and_women_sit_s1 != men_and_women_sit_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Last year no members of the club traveled to both England and France , 6 members traveled to both England and Italy , and 11 members traveled to both France and Italy, \"statement 2\" :Last year no members of the club traveled to both England and France , more than 6 members traveled to both England and Italy , and 11 members traveled to both France and Italy, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "members_travelled_to_both_england_and_italy_s1 = 6\nmembers_travelled_to_both_england_and_italy_s2 = 0\n\nif members_travelled_to_both_england_and_italy_s1 is None or members_travelled_to_both_england_and_italy_s2 is None:\n print('neutral')\n\nelif members_travelled_to_both_england_and_italy_s1 == members_travelled_to_both_england_and_italy_s2:\n print('Entailment')\n\nelif members_travelled_to_both_england_and_italy_s1 != members_travelled_to_both_england_and_italy_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If an outfit consists of 1 shirt , 1 pair of jeans , and 1 pair of sneakers , how many different outfits does Jordan have ?, \"statement 2\" :If an outfit consists of 3 shirt , 1 pair of jeans , and 1 pair of sneakers , how many different outfits does Jordan have ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "outfit_consists_of_shirt_s1 = 1\noutfit_consists_of_shirt_s2 = 3\n\nif outfit_consists_of_shirt_s1 is None or outfit_consists_of_shirt_s2 is None:\n print('neutral')\n\nelif outfit_consists_of_shirt_s1 == outfit_consists_of_shirt_s2:\n print('Entailment')\n\nelif outfit_consists_of_shirt_s1 != outfit_consists_of_shirt_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Patrick purchased more than 50 pencils and sold them at a loss equal to the selling price of 40 pencils, \"statement 2\" :Patrick purchased 90 pencils and sold them at a loss equal to the selling price of 40 pencils, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pencils_purchased_s1 = 0\npencils_purchased_s1 > 50\npencils_purchased_s2 = 90\n\npencils_purchased_s1 = None\npencils_purchased_s2 = None\n\nif pencils_purchased_s1 is None or pencils_purchased_s2 is None:\n print(\"Neutral\")\nelif pencils_purchased_s1 < pencils_purchased_s2:\n print(\"Entailment\")\nelif pencils_purchased_s1 != pencils_purchased_s2:\n print(\"Contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 1620 in 8 % stock , Michael earns Rs, \"statement 2\" :less than 7620 in 8 % stock , Michael earns Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_at_8_percent_s1 = 1620\namount_at_8_percent_s2 = 0\namount_at_8_percent_s2 < 7620\n\nif amount_at_8_percent_s1 is None or amount_at_8_percent_s2 is None:\n print(\"Neutral\")\nelif amount_at_8_percent_s1 > amount_at_8_percent_s2 :\n print(\"Entailment\")\nelif amount_at_8_percent_s1 != amount_at_8_percent_s2 :\n print(\"Contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were 58.0 geese and 37.0 ducks in the marsh., \"statement 2\" :95.0 birds were in the marsh, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_birds_s1 = 58+37\ntotal_birds_s2 = 95\n\nif total_birds_s1 is None or total_birds_s2 is None:\n print('neutral')\n\nelif total_birds_s1 == total_birds_s2:\n print('Entailment')\n\nelif total_birds_s1 != total_birds_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is 4 : 3 , After 6 Years Rahul age will be 22 years, \"statement 2\" :Ratio between Rahul and Deepak is more than 3 : 3 , After 6 Years Rahul age will be 22 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_of_deepak_and_rahul_s1 = 4/3\nratio_of_deepak_and_rahul_s2 = 3/3\n\nif ratio_of_deepak_and_rahul_s1 is None or ratio_of_deepak_and_rahul_s2 is None:\n print('neutral')\n\nelif ratio_of_deepak_and_rahul_s1 > ratio_of_deepak_and_rahul_s2:\n print('Entailment')\n\nelif ratio_of_deepak_and_rahul_s1 != ratio_of_deepak_and_rahul_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": From a group of 6 boys & 4 girls a Committee of 4 persons is to be formed, \"statement 2\" :From a group of more than 1 boys & 4 girls a Committee of 4 persons is to be formed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_boys_in_group_s1 = 6\ntotal_boys_in_group_s2 = 3\n\nif total_boys_in_group_s1 is None or total_boys_in_group_s2 is None:\n print('neutral')\n\nelif total_boys_in_group_s1 > total_boys_in_group_s2:\n print('Entailment')\n\nelif total_boys_in_group_s1 != total_boys_in_group_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": There were a total of 13.0 hockey games a month and the season is played for 14.0 months, \"statement 2\" :182.0 hockey games are played in the season , \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_hockey_games_played_s1 = 13*14\ntotal_hockey_games_played_s2 = 182\n\nif total_hockey_games_played_s1 is None or total_hockey_games_played_s2 is None:\n print('neutral')\n\nelif total_hockey_games_played_s1 == total_hockey_games_played_s2:\n print('Entailment')\n\nelif total_hockey_games_played_s1 != total_hockey_games_played_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The sides AB , BC and CA of a triangle ABC having 3,4 and 5 interior points receptively on them, \"statement 2\" :The sides AB , BC and CA of a triangle ABC having 3,4 and less than 5 interior points receptively on them, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "length_of_triangle_s1 = 5\nlength_of_triangle_s2 = 0\n\nif length_of_triangle_s1 is None or length_of_triangle_s2 is None:\n print('neutral')\n\nelif length_of_triangle_s1 == length_of_triangle_s2:\n print('Entailment')\n\nelif length_of_triangle_s1 != length_of_triangle_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He died of a brain tumor ; he was 68, \"statement 2\" :He was 68 ., \"options: \" Entailment or neutral?", + "Output Program": [ + "age_at_which_he_died_s1 = 68\nage_at_which_he_died_s2 = 68\n\nif age_at_which_he_died_s1 is None or age_at_which_he_died_s2 is None:\n print('neutral')\n\nelif age_at_which_he_died_s1 == age_at_which_he_died_s2:\n print('Entailment')\n\nelif age_at_which_he_died_s1 != age_at_which_he_died_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy can do a job in 21 days and Molly can do the same job in 42 days, \"statement 2\" :Sandy can do a job in less than 41 days and Molly can do the same job in 42 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_at_which_he_died_s1 = 68\nage_at_which_he_died_s2 = 68\n\nif age_at_which_he_died_s1 is None or age_at_which_he_died_s2 is None:\n print('neutral')\n\nelif age_at_which_he_died_s1 == age_at_which_he_died_s2:\n print('Entailment')\n\nelif age_at_which_he_died_s1 != age_at_which_he_died_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A train leaves Delhi at 7 a, \"statement 2\" :A train leaves Delhi at 2 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "time_at_which_train_leaves_s1 = 7\ntime_at_which_train_leaves_s2 = 2\n\nif time_at_which_train_leaves_s1 is None or time_at_which_train_leaves_s2 is None:\n print('neutral')\n\nelif time_at_which_train_leaves_s1 == time_at_which_train_leaves_s2:\n print('Entailment')\n\nelif time_at_which_train_leaves_s1 != time_at_which_train_leaves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The sides of right triangle ABC are such that the length of side AC is 1.25 times the length of side AB , which itself is 4 units more than the length of side BC, \"statement 2\" :The sides of right triangle ABC are such that the length of side AC is 1.25 times the length of side AB , which itself is more than 4 units more than the length of side BC, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "length_of_side_s1 = 4\nlength_of_side_s2 = 0\n\nif length_of_side_s1 is None or length_of_side_s2 is None:\n print('neutral')\n\nelif length_of_side_s1 == length_of_side_s2:\n print('Entailment')\n\nelif length_of_side_s1 != length_of_side_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy attempts 30 sums and obtains 45 marks, \"statement 2\" :Sandy attempts less than 30 sums and obtains 45 marks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_number_of_sums_attempted_s1 = 30\ntotal_number_of_sums_attempted_s2 = 0\n\nif total_number_of_sums_attempted_s1 is None or total_number_of_sums_attempted_s2 is None:\n print('neutral')\n\nelif total_number_of_sums_attempted_s1 == total_number_of_sums_attempted_s2:\n print('Entailment')\n\nelif total_number_of_sums_attempted_s1 != total_number_of_sums_attempted_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Oil from tar sands spews 17 % more greenhouse gas than the average crude oil refined in the United States ., \"statement 2\" :They say tar sands oil spews 17 % more greenhouse gas than crude oil refined in the U.S., \"options: \" Entailment or neutral?", + "Output Program": [ + "gas_split_from_tar_sands_s1 = 17\ngas_split_from_tar_sands_s2 = 17\n\nif gas_split_from_tar_sands_s1 is None or gas_split_from_tar_sands_s2 is None:\n print('neutral')\n\nelif gas_split_from_tar_sands_s1 == gas_split_from_tar_sands_s2:\n print('Entailment')\n\nelif gas_split_from_tar_sands_s1 != gas_split_from_tar_sands_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a recent election , James received less than 35 percent of the 10000 votes cast, \"statement 2\" :In a recent election , James received 15 percent of the 10000 votes cast, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_votes_received_s1 = None\ntotal_votes_received_s2 = 15\n\nif total_votes_received_s1 is None or total_votes_received_s2 is None:\n print('neutral')\n\nelif total_votes_received_s1 < total_votes_received_s2:\n print('Entailment')\n\nelif total_votes_received_s1 != total_votes_received_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": ( CNN ) -- Dan Hyatt 's wife , Shelley , had been worried for a while by the time he hit 337 pounds ., \"statement 2\" :Dan Hyatt went from 337 pounds to 202 pounds, \"options: \" Entailment or neutral?", + "Output Program": [ + "weight_of_shelley_s1 = 337\nweight_of_shelley_s2 = 202\n\nif weight_of_shelley_s1 is None or weight_of_shelley_s2 is None:\n print('neutral')\n\nelif weight_of_shelley_s1 > weight_of_shelley_s2:\n print('Entailment')\n\nelif weight_of_shelley_s1 != weight_of_shelley_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At the end of ' n ' years , Sandy got back more than 2 times the original investment, \"statement 2\" :At the end of ' n ' years , Sandy got back 4 times the original investment, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_times_money_returned_s1 = None\nnumber_of_times_money_returned_s2 = 2\n\nif number_of_times_money_returned_s1 is None or number_of_times_money_returned_s2 is None:\n print('neutral')\n\nelif number_of_times_money_returned_s1 < number_of_times_money_returned_s2:\n print('Entailment')\n\nelif number_of_times_money_returned_s1 != number_of_times_money_returned_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At the same time Joyce gets on an elevator on the 41 st floor of the same building and rides down at a rate of 63 floors per minute, \"statement 2\" :At the same time Joyce gets on an elevator on the more than 11 st floor of the same building and rides down at a rate of 63 floors per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "floor_s1 = 41\nfloor_s2 = 11\n\nif floor_s1 is None or floor_s2 is None:\n print('neutral')\n\nelif floor_s1 > floor_s2:\n print('Entailment')\n\nelif floor_s1 != floor_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joke is faster than Paul , Joke and Paul each walk 24 KM, \"statement 2\" :Joke is faster than Paul , Joke and Paul each walk more than 14 KM, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "both_walks_s1 = 24\nboth_walks_s2 = 14\n\nif both_walks_s1 is None or both_walks_s2 is None:\n print('neutral')\n\nelif both_walks_s1 > both_walks_s2:\n print('Entailment')\n\nelif both_walks_s1 != both_walks_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John was thrice as old as Tom 6 years ago, \"statement 2\" :John was thrice as old as Tom more than 2 years ago, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_ago_s1 = 6\nyears_ago_s2 = 2\n\nif years_ago_s1 is None or years_ago_s2 is None:\n print('neutral')\n\nelif years_ago_s1 > years_ago_s2:\n print('Entailment')\n\nelif years_ago_s1 != years_ago_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The identification of Yarnell puts the total number of identifications from the World Trade Center at 1,640 , meaning there are still 1,113 more to go ., \"statement 2\" :Matthew Yarnell , 26 , is the 1,640 victim ID 'd from the World Trade Center, \"options: \" Entailment or neutral?", + "Output Program": [ + "total_no_of_identification_s1 = 1640\ntotal_no_of_identification_s2 = 1640\n\nif total_no_of_identification_s1 is None or total_no_of_identification_s2 is None:\n print('neutral')\n\nelif total_no_of_identification_s1 == total_no_of_identification_s2:\n print('Entailment')\n\nelif total_no_of_identification_s1 != total_no_of_identification_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": ( CNN ) -- One tornado stayed on the ground for 95 miles as it tore through towns in Kentucky and West Virginia ., \"statement 2\" :A twister that hit West Liberty , Kentucky , stayed on the ground for 95 miles, \"options: \" Entailment or neutral?", + "Output Program": [ + "distance_tornado_stayed_for_s1 = 95\ndistance_tornado_stayed_for_s2 = 95\n\nif distance_tornado_stayed_for_s1 is None or distance_tornado_stayed_for_s2 is None:\n print('neutral')\n\nelif distance_tornado_stayed_for_s1 == distance_tornado_stayed_for_s2:\n print('Entailment')\n\nelif distance_tornado_stayed_for_s1 != distance_tornado_stayed_for_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Aamir saves 32 % of his monthly salary, \"statement 2\" :Aamir saves 12 % of his monthly salary, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "percentage_of_salary_amir_saves_s1 = 32\npercentage_of_salary_amir_saves_s2 = 12\n\nif percentage_of_salary_amir_saves_s1 is None or percentage_of_salary_amir_saves_s2 is None:\n print('neutral')\n\nelif percentage_of_salary_amir_saves_s1 == percentage_of_salary_amir_saves_s2:\n print('Entailment')\n\nelif percentage_of_salary_amir_saves_s1 != percentage_of_salary_amir_saves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Armed officers were confronted by a pack of dogs , described as '' aggressive . '', \"statement 2\" :Four dogs were shot by armed police officers and a fifth was secured, \"options: \" Entailment or neutral?", + "Output Program": [ + "number_of_dogs_shot_s1 = None\nnumber_of_dogs_shot_s2 = 4\n\nif number_of_dogs_shot_s1 is None or number_of_dogs_shot_s2 is None:\n print('neutral')\n\nelif number_of_dogs_shot_s1 < number_of_dogs_shot_s2:\n print('Entailment')\n\nelif number_of_dogs_shot_s1 != number_of_dogs_shot_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A treasure hunter discovered a buried treasure chest filled with a total of 5155.0 gems and 45.0 of the gems were diamonds , and the rest were rubies , \"statement 2\" :5110.0 of the gems were rubies , \"options: \" Entailment or contradiction?", + "Output Program": [ + "number_of_rubies_gems_s1 = 5155-45\nnumber_of_rubies_gems_s2 = 5110\n\nif number_of_rubies_gems_s1 is None or number_of_rubies_gems_s2 is None:\n print('neutral')\n\nelif number_of_rubies_gems_s1 == number_of_rubies_gems_s2:\n print('Entailment')\n\nelif number_of_rubies_gems_s1 != number_of_rubies_gems_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Thomas worked in the factory @ 4550 / - per week .\nOwner told him to give the amount after one month, \"statement 2\" :Thomas worked in the factory @ less than 7550 / - per week . Owner told him to give the amount after one month, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_thomas_get_s1 = 4550\namount_thomas_get_s2 = 7550\n\nif amount_thomas_get_s1 is None or amount_thomas_get_s2 is None:\n print('neutral')\n\nelif amount_thomas_get_s1 < amount_thomas_get_s2:\n print('Entailment')\n\nelif amount_thomas_get_s1 != amount_thomas_get_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In less than 3998 , Mr Shivkumar invested another additional amount of 10000 and Mr Suresh joined them with an amount of 35000, \"statement 2\" :In 1998 , Mr Shivkumar invested another additional amount of 10000 and Mr Suresh joined them with an amount of 35000, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "year_in_which_amount_was_invested_s1 = None\nyear_in_which_amount_was_invested_s2 = 1998\n\nif year_in_which_amount_was_invested_s1 is None or year_in_which_amount_was_invested_s2 is None:\n print('neutral')\n\nelif year_in_which_amount_was_invested_s1 == year_in_which_amount_was_invested_s2:\n print('Entailment')\n\nelif year_in_which_amount_was_invested_s1 != year_in_which_amount_was_invested_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A car company produced 3884.0 cars in North America but 2871.0 cars in Europe were recalled., \"statement 2\" :1013.0 cars were successfully produced, \"options: \" Entailment or contradiction?", + "Output Program": [ + "number_of_car_successfully_produced_s1 = 3884-2871\nnumber_of_car_successfully_produced_s2 = 1013\n\nif number_of_car_successfully_produced_s1 is None or number_of_car_successfully_produced_s2 is None:\n print('neutral')\n\nelif number_of_car_successfully_produced_s1 == number_of_car_successfully_produced_s2:\n print('Entailment')\n\nelif number_of_car_successfully_produced_s1 != number_of_car_successfully_produced_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Vijay sells a cupboard at less than 24 % below cost price, \"statement 2\" :Vijay sells a cupboard at 14 % below cost price, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sells_cupboard_less_than_s1 = None\nsells_cupboard_less_than_s2 = 14\n\nif sells_cupboard_less_than_s1 is None or sells_cupboard_less_than_s2 is None:\n print('neutral')\n\nelif sells_cupboard_less_than_s1 == sells_cupboard_less_than_s2:\n print('Entailment')\n\nelif sells_cupboard_less_than_s1 != sells_cupboard_less_than_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Burj Khalifa stands at 830 meters high and\nSears stands at 527 meters high , how much higher is Burj Khalifa than Sears ?, \"statement 2\" :If Burj Khalifa stands at more than 730 meters high and Sears stands at 527 meters high , how much higher is Burj Khalifa than Sears ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "size_of_burj_khalifa_s1 = 830\nsize_of_burj_khalifa_s2 = 730\n\nif size_of_burj_khalifa_s1 is None or size_of_burj_khalifa_s2 is None:\n print('neutral')\n\nelif size_of_burj_khalifa_s1 > size_of_burj_khalifa_s2:\n print('Entailment')\n\nelif size_of_burj_khalifa_s1 != size_of_burj_khalifa_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 4000 more and Bhavan withdraws Rs, \"statement 2\" :8000 more and Bhavan withdraws Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Bhavan_withdraws_s1 = 4000\nBhavan_withdraws_s2 = 8000\n\nif Bhavan_withdraws_s1 is None or Bhavan_withdraws_s2 is None:\n print('neutral')\n\nelif Bhavan_withdraws_s1 == Bhavan_withdraws_s2:\n print('Entailment')\n\nelif Bhavan_withdraws_s1 != Bhavan_withdraws_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After the recall of defective by Telvin inc 2 years ago , its share price has since lost 12 %, \"statement 2\" :After the recall of defective by Telvin inc less than 4 years ago , its share price has since lost 12 %, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "size_of_burj_khalifa_s1 = 830\nsize_of_burj_khalifa_s2 = 730\n\nif size_of_burj_khalifa_s1 is None or size_of_burj_khalifa_s2 is None:\n print('neutral')\n\nelif size_of_burj_khalifa_s1 > size_of_burj_khalifa_s2:\n print('Entailment')\n\nelif size_of_burj_khalifa_s1 != size_of_burj_khalifa_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ayesha ' s father was more than 24 years of age when she was born while her mother was 30 years old when her brother four years younger to her was born, \"statement 2\" :Ayesha ' s father was 34 years of age when she was born while her mother was 30 years old when her brother four years younger to her was born, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_of_ayesha_father_s1 = None\nage_of_ayesha_father_s2 = 34\n\nif age_of_ayesha_father_s1 is None or age_of_ayesha_father_s2 is None:\n print('neutral')\n\nelif age_of_ayesha_father_s1 == age_of_ayesha_father_s2:\n print('Entailment')\n\nelif age_of_ayesha_father_s1 != age_of_ayesha_father_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Vijay bought less than 660 shirts at the rate of Rs, \"statement 2\" :Vijay bought 160 shirts at the rate of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_shirts_vijay_bought_s1 = None\nnumber_of_shirts_vijay_bought_s2 = 160\n\nif number_of_shirts_vijay_bought_s1 is None or number_of_shirts_vijay_bought_s2 is None:\n print('neutral')\n\nelif number_of_shirts_vijay_bought_s1 == number_of_shirts_vijay_bought_s2:\n print('Entailment')\n\nelif number_of_shirts_vijay_bought_s1 != number_of_shirts_vijay_bought_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Fred walks at a constant speed of 4 miles per hour and Sam walks at a constant speed of 4 miles per hour , how many miles has Sam walked when they meet ?, \"statement 2\" :If Fred walks at a constant speed of 7 miles per hour and Sam walks at a constant speed of 4 miles per hour , how many miles has Sam walked when they meet ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_of_fred_s1 = 4\nspeed_of_fred_s2 = 7\n\nif speed_of_fred_s1 is None or speed_of_fred_s2 is None:\n print('neutral')\n\nelif speed_of_fred_s1 == speed_of_fred_s2:\n print('Entailment')\n\nelif speed_of_fred_s1 != speed_of_fred_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary selects a total of 10 apples and oranges from the food stand , and the average ( arithmetic mean ) price of the 10 pieces of fruit is 54 \u00a2, \"statement 2\" :Mary selects a total of less than 80 apples and oranges from the food stand , and the average ( arithmetic mean ) price of the 10 pieces of fruit is 54 \u00a2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_number_of_fruits_mary_selects_s1 = 10\ntotal_number_of_fruits_mary_selects_s2 = 80\n\nif total_number_of_fruits_mary_selects_s1 is None or total_number_of_fruits_mary_selects_s2 is None:\n print('neutral')\n\nelif total_number_of_fruits_mary_selects_s1 < total_number_of_fruits_mary_selects_s2:\n print('Entailment')\n\nelif total_number_of_fruits_mary_selects_s1 != total_number_of_fruits_mary_selects_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alice deposited Rs more than 1 million in bank at 4 % simple interest per year, \"statement 2\" :Alice deposited Rs 2 million in bank at 4 % simple interest per year, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_alice_invested_s1 = None\namount_alice_invested_s2 = 2\n\nif amount_alice_invested_s1 is None or amount_alice_invested_s2 is None:\n print('neutral')\n\nelif amount_alice_invested_s1 == amount_alice_invested_s2:\n print('Entailment')\n\nelif amount_alice_invested_s1 != amount_alice_invested_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is 4 : 3 , After 10 Years Rahul age will be 26 years, \"statement 2\" :Ratio between Rahul and Deepak is 1 : 3 , After 10 Years Rahul age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_between_rahul_and_deepak_s1 = 4/3\nratio_between_rahul_and_deepak_s2 = 1/3\n\nif ratio_between_rahul_and_deepak_s1 is None or ratio_between_rahul_and_deepak_s2 is None:\n print('neutral')\n\nelif ratio_between_rahul_and_deepak_s1 == ratio_between_rahul_and_deepak_s2:\n print('Entailment')\n\nelif ratio_between_rahul_and_deepak_s1 != ratio_between_rahul_and_deepak_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained 61 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained more than 61 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_obtaiend_s1 = 85\nmarks_obtaiend_s2 = 0\n\nif marks_obtaiend_s1 is None or marks_obtaiend_s2 is None:\n print('neutral')\n\nelif marks_obtaiend_s1 == marks_obtaiend_s2:\n print('Entailment')\n\nelif marks_obtaiend_s1 != marks_obtaiend_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Kerri leaves City A 60 minutes after Jim, \"statement 2\" :Kerri leaves City A more than 30 minutes after Jim, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "time_after_kerri_s1 = 60\ntime_after_kerri_s2 = 30\n\nif time_after_kerri_s1 is None or time_after_kerri_s2 is None:\n print('neutral')\n\nelif time_after_kerri_s1 > time_after_kerri_s2:\n print('Entailment')\n\nelif time_after_kerri_s1 != time_after_kerri_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Jerry wants to raise his average by less than 8 points , what score must he earn on the fourth test ?, \"statement 2\" :If Jerry wants to raise his average by 2 points , what score must he earn on the fourth test ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_points_s1 = None\naverage_points_s2 = 2\n\nif average_points_s1 is None or average_points_s2 is None:\n print('neutral')\n\nelif average_points_s1 == average_points_s2:\n print('Entailment')\n\nelif average_points_s1 != average_points_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The average marks scored by Ganesh in English , Science , Mathematics and History is less than less than 46 from that scored by him in English , History , Geography and Mathematics, \"statement 2\" :The average marks scored by Ganesh in English , Science , Mathematics and History is less than 16 from that scored by him in English , History , Geography and Mathematics, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_scored_s1 = None\naverage_scored_s2 = 16\n\nif average_scored_s1 is None or average_scored_s2 is None:\n print('neutral')\n\nelif average_scored_s1 == average_scored_s2:\n print('Entailment')\n\nelif average_scored_s1 != average_scored_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": From its original 12 member states , CERN has now grown to 20 , including a number of countries ( Bulgaria , Hungary , the Czech and Slovak republics , and Poland ) of the new Europe ., \"statement 2\" :CERN has 20 member states ., \"options: \" Entailment or neutral?", + "Output Program": [ + "time_after_kerri_s1 = 60\ntime_after_kerri_s2 = 30\n\nif time_after_kerri_s1 is None or time_after_kerri_s2 is None:\n print('neutral')\n\nelif time_after_kerri_s1 > time_after_kerri_s2:\n print('Entailment')\n\nelif time_after_kerri_s1 != time_after_kerri_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Diana is more than 3 years older than Rashid is , then how old is Rashid ?, \"statement 2\" :If Diana is 4 years older than Rashid is , then how old is Rashid ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_diana_older_than_rashid_s1 = None\nyears_diana_older_than_rashid_s2 = 4\n\nif years_diana_older_than_rashid_s1 is None or years_diana_older_than_rashid_s2 is None:\n print('neutral')\n\nelif years_diana_older_than_rashid_s1 == years_diana_older_than_rashid_s2:\n print('Entailment')\n\nelif years_diana_older_than_rashid_s1 != years_diana_older_than_rashid_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were 105.0 parents in the program and 698.0 pupils, too., \"statement 2\" :803.0 people were present in the program, \"options: \" Entailment or contradiction?", + "Output Program": [ + "number_of_people_s1 = 105+698\nnumber_of_people_s2 = 803\n\nif number_of_people_s1 is None or number_of_people_s2 is None:\n print('neutral')\n\nelif number_of_people_s1 == number_of_people_s2:\n print('Entailment')\n\nelif number_of_people_s1 != number_of_people_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dr. Kermit Gosnell is charged with seven first-degree murder charges related to the deaths of seven viable babies , and one third-degree murder in the death of Mongar ., \"statement 2\" :Philadelphia doctor Kermit Gosnell is being held on eight murder charges, \"options: \" Entailment or neutral?", + "Output Program": [ + "murder_charges_s1 = None\nmurder_charges_s2 = 8\n\nif murder_charges_s1 is None or murder_charges_s2 is None:\n print('neutral')\n\nelif murder_charges_s1 == murder_charges_s2:\n print('Entailment')\n\nelif murder_charges_s1 != murder_charges_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Level - 1 college graduates account for 15 % of Listco ' s sales staff, \"statement 2\" :Level - less than 2 college graduates account for 15 % of Listco ' s sales staff, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_collge_accounting_for_lisco_sales_s1 = 15\nnumber_of_collge_accounting_for_lisco_sales_s2 = 2\n\nif number_of_collge_accounting_for_lisco_sales_s1 is None or number_of_collge_accounting_for_lisco_sales_s2 is None:\n print('neutral')\n\nelif number_of_collge_accounting_for_lisco_sales_s1 > number_of_collge_accounting_for_lisco_sales_s2:\n print('Entailment')\n\nelif number_of_collge_accounting_for_lisco_sales_s1 != number_of_collge_accounting_for_lisco_sales_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 60 percent of Andrea ' s living room floor is covered by a carpet that is 4 feet by 9 feet, \"statement 2\" :more than 60 percent of Andrea ' s living room floor is covered by a carpet that is 4 feet by 9 feet, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "percent_floor_covered_with_carpet_s1 = 60\npercent_floor_covered_with_carpet_s2 = 0\n\nif percent_floor_covered_with_carpet_s1 is None or percent_floor_covered_with_carpet_s2 is None:\n print('neutral')\n\nelif percent_floor_covered_with_carpet_s1 == percent_floor_covered_with_carpet_s2:\n print('Entailment')\n\nelif percent_floor_covered_with_carpet_s1 != percent_floor_covered_with_carpet_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were 11 people with moderate injuries and 19 with minor injuries , according to Kings County EMS Director Dan Lynch ., \"statement 2\" :11 people suffered moderate injuries , while 19 have minor injuries , an EMS official says, \"options: \" Entailment or neutral?", + "Output Program": [ + "moderate_injuries_s1 = None\nmoderate_injuries_s2 = 11\n\nif moderate_injuries_s1 is None or moderate_injuries_s2 is None:\n print('neutral')\n\nelif moderate_injuries_s1 == moderate_injuries_s2:\n print('Entailment')\n\nelif moderate_injuries_s1 != moderate_injuries_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ages of Patrick and Michael are in the ratio of 3 : 5 and that of Michael and Monica are in the ratio of 3 : 5, \"statement 2\" :The ages of Patrick and Michael are in the ratio of more than 1 : 5 and that of Michael and Monica are in the ratio of 3 : 5, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_of_age_of_patrick_Micheal_s1 = 3/5\nratio_of_age_of_patrick_Micheal_s2 = 1/5\n\nif ratio_of_age_of_patrick_Micheal_s1 is None or ratio_of_age_of_patrick_Micheal_s2 is None:\n print('neutral')\n\nelif ratio_of_age_of_patrick_Micheal_s1 > ratio_of_age_of_patrick_Micheal_s2:\n print('Entailment')\n\nelif ratio_of_age_of_patrick_Micheal_s1 != ratio_of_age_of_patrick_Micheal_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tommy has 60.0 balloons and his mom gave him 34.0 balloons for his birthday, \"statement 2\" :Tommy has 91.0 balloons now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "ballons_tommy_has_s1 = 66+34\nballons_tommy_has_s2 = 91\n\nif ballons_tommy_has_s1 is None or ballons_tommy_has_s2 is None:\n print('neutral')\n\nelif ballons_tommy_has_s1 == ballons_tommy_has_s2:\n print('Entailment')\n\nelif ballons_tommy_has_s1 != ballons_tommy_has_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Investigators said the three arrested in Thailand are accused of directing the operation in Spain ., \"statement 2\" :Two Pakistani men and a Thai woman are arrested in Thailand, \"options: \" Entailment or neutral?", + "Output Program": [ + "arrested_person_s1 = None\narrested_person_s2 = 2+1\n\nif arrested_person_s1 is None or arrested_person_s2 is None:\n print('neutral')\n\nelif arrested_person_s1 == arrested_person_s2:\n print('Entailment')\n\nelif arrested_person_s1 != arrested_person_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than 50 % ?\nI will see what is the quickest way to solve it then I will provide the explanation, \"statement 2\" :If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than more than 30 % ? I will see what is the quickest way to solve it then I will provide the explanation, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rate_of_departure_s1 = 50\nrate_of_departure_s2 = 30\n\nif rate_of_departure_s1 is None or rate_of_departure_s2 is None:\n print('neutral')\n\nelif rate_of_departure_s1 > rate_of_departure_s2:\n print('Entailment')\n\nelif rate_of_departure_s1 != rate_of_departure_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Assuming that Karen drives at an average speed of 60 mph and Tom drives at an average speed of 45 mph , how many H miles will Tom drive before Karen wins the bet ?, \"statement 2\" :Assuming that Karen drives at an average speed of more than 60 mph and Tom drives at an average speed of 45 mph , how many H miles will Tom drive before Karen wins the bet ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_speed_s1 = 60\naverage_speed_s2 = 0\n\nif average_speed_s1 is None or average_speed_s2 is None:\n print('neutral')\n\nelif average_speed_s1 == average_speed_s2:\n print('Entailment')\n\nelif average_speed_s1 != average_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mr Vishwas got an amount of less than 80920 as an interest at the end of eight years, \"statement 2\" :Mr Vishwas got an amount of 10920 as an interest at the end of eight years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "interest_amount_s1 = None\ninterest_amount_s2 = 10920\n\nif interest_amount_s1 is None or interest_amount_s2 is None:\n print('neutral')\n\nelif interest_amount_s1 == interest_amount_s2:\n print('Entailment')\n\nelif interest_amount_s1 != interest_amount_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If , five years from now , the sum W of their ages will be 51 , how old is Stephanie ?, \"statement 2\" :If , five years from now , the sum W of their ages will be 61 , how old is Stephanie ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sum_of_ages_s1 = 51\nsum_of_ages_s2 = 61\n\nif sum_of_ages_s1 is None or sum_of_ages_s2 is None:\n print('neutral')\n\nelif sum_of_ages_s1 == sum_of_ages_s2:\n print('Entailment')\n\nelif sum_of_ages_s1 != sum_of_ages_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is 4 : 3 , After 6 Years Rahul age will be 26 years, \"statement 2\" :Ratio between Rahul and Deepak is 6 : 3 , After 6 Years Rahul age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_between_rahul_and_deepak_s1 = 4/3\nratio_between_rahul_and_deepak_s2 = 6/3\n\nif ratio_between_rahul_and_deepak_s1 is None or ratio_between_rahul_and_deepak_s2 is None:\n print('neutral')\n\nelif ratio_between_rahul_and_deepak_s1 == ratio_between_rahul_and_deepak_s2:\n print('Entailment')\n\nelif ratio_between_rahul_and_deepak_s1 != ratio_between_rahul_and_deepak_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Andy solves problems 75 to 125 inclusive in a Math exercise, \"statement 2\" :Andy solves problems more than 35 to 125 inclusive in a Math exercise, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "andy_solves_problem_s1 = 75\nandy_solves_problem_s2 = 35\n\nif andy_solves_problem_s1 is None or andy_solves_problem_s2 is None:\n print('neutral')\n\nelif andy_solves_problem_s1 > andy_solves_problem_s2:\n print('Entailment')\n\nelif andy_solves_problem_s1 != andy_solves_problem_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shekar scored 76 , 65 , 82 , 62 and 85 marks in Mathematics , Science , Social studies , English and Biology respectively, \"statement 2\" :Shekar scored more than 16 , 65 , 82 , 62 and 85 marks in Mathematics , Science , Social studies , English and Biology respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_scored_s1 = 76+65+82+62+85\nmarks_scored_s2 = 16+65+82+62+85\n\nif marks_scored_s1 is None or marks_scored_s2 is None:\n print('neutral')\n\nelif marks_scored_s1 > marks_scored_s2:\n print('Entailment')\n\nelif marks_scored_s1 != marks_scored_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": From a group of 6 boys & 4 girls a Committee of 4 persons is to be formed, \"statement 2\" :From a group of more than 4 boys & 4 girls a Committee of 4 persons is to be formed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "group_of_boys_s1 = 6\ngroup_of_boys_s2 = 4\n\nif group_of_boys_s1 is None or group_of_boys_s2 is None:\n print('neutral')\n\nelif group_of_boys_s1 > group_of_boys_s2:\n print('Entailment')\n\nelif group_of_boys_s1 != group_of_boys_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Marcella has 20 pairs of shoes, \"statement 2\" :Marcella has more than 10 pairs of shoes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pair_of_shoes_s1 = 20\npair_of_shoes_s2 = 10\n\nif pair_of_shoes_s1 is None or pair_of_shoes_s2 is None:\n print('neutral')\n\nelif pair_of_shoes_s1 > pair_of_shoes_s2:\n print('Entailment')\n\nelif pair_of_shoes_s1 != pair_of_shoes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy attempts less than 80 sums and obtains 55 marks, \"statement 2\" :Sandy attempts 30 sums and obtains 55 marks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sums_attempts_s1 = None\nsums_attempts_s2 = 30\n\nif sums_attempts_s1 is None or sums_attempts_s2 is None:\n print('neutral')\n\nelif sums_attempts_s1 == sums_attempts_s2:\n print('Entailment')\n\nelif sums_attempts_s1 != sums_attempts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sony and Johnny caught 80 fishes, \"statement 2\" :Sony and Johnny caught 20 fishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "both_caught_fishes_s1 = 80\nboth_caught_fishes_s2 = 20\n\nif both_caught_fishes_s1 is None or both_caught_fishes_s2 is None:\n print('neutral')\n\nelif both_caught_fishes_s1 == both_caught_fishes_s2:\n print('Entailment')\n\nelif both_caught_fishes_s1 != both_caught_fishes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Cristiano Ronaldo for Real Madrid and Paris Saint Germain 's Zlatan Ibrahimovic topped the bill for a prestige friendly , which Real won 1-0 ., \"statement 2\" :Real Madrid beat Paris Saint Germain 1-0 in friendly in Qatar, \"options: \" Entailment or neutral?", + "Output Program": [ + "real_won_s1 = None\nreal_won_s2 = 1-0\n\nif real_won_s1 is None or real_won_s2 is None:\n print('neutral')\n\nelif real_won_s1 == real_won_s2:\n print('Entailment')\n\nelif real_won_s1 != real_won_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If in 12 years , John will be one year younger than twice the age of Mark on that day , how old is Mark today ?, \"statement 2\" :If in less than 22 years , John will be one year younger than twice the age of Mark on that day , how old is Mark today ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_age_s1 = 12\njohn_age_s2 = 22\n\nif john_age_s1 is None or john_age_s2 is None:\n print('neutral')\n\nelif john_age_s1 < john_age_s2:\n print('Entailment')\n\nelif john_age_s1 != john_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Mel saved more than $ less than 30 by purchasing a sweater at a 15 percent discount , what is the smallest amount the original price of the sweater could be , to the nearest dollar ?, \"statement 2\" :If Mel saved more than $ 10 by purchasing a sweater at a 15 percent discount , what is the smallest amount the original price of the sweater could be , to the nearest dollar ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mel_saved_dollar_s1 = None\nmel_saved_dollar_s2 = 10\n\nif mel_saved_dollar_s1 is None or mel_saved_dollar_s2 is None:\n print('neutral')\n\nelif mel_saved_dollar_s1 == mel_saved_dollar_s2:\n print('Entailment')\n\nelif mel_saved_dollar_s1 != mel_saved_dollar_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jenny sold 24.0 boxes of Trefoils., \"statement 2\" :Jenny needed 3.0 cases of 8.0 boxes , plus extra boxes, \"options: \" Entailment or contradiction?", + "Output Program": [ + "jenny_sold_boxes_s1 = 24\njenny_sold_boxes_s2 = 8*3\n\nif jenny_sold_boxes_s1 is None or jenny_sold_boxes_s2 is None:\n print('neutral')\n\nelif jenny_sold_boxes_s1 == jenny_sold_boxes_s2:\n print('Entailment')\n\nelif jenny_sold_boxes_s1 != jenny_sold_boxes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Yesterday it took Robert 3 hours to drive from City X to City Y, \"statement 2\" :Yesterday it took Robert more than 1 hours to drive from City X to City Y, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_drive_s1 = 3\nhours_drive_s2 = 1\n\nif hours_drive_s1 is None or hours_drive_s2 is None:\n print('neutral')\n\nelif hours_drive_s1 > hours_drive_s2:\n print('Entailment')\n\nelif hours_drive_s1 != hours_drive_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Raviraj invested an amount of less than 5000000000 at compound interest rate of 10 pcpa for a period of three years, \"statement 2\" :Raviraj invested an amount of 1000000000 at compound interest rate of 10 pcpa for a period of three years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_invested_s1 = None\namount_invested_s2 = 1000000000\n\nif amount_invested_s1 is None or amount_invested_s2 is None:\n print('neutral')\n\nelif amount_invested_s1 == amount_invested_s2:\n print('Entailment')\n\nelif amount_invested_s1 != amount_invested_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jane started baby - sitting when she was less than 58 years old, \"statement 2\" :Jane started baby - sitting when she was 18 years old, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "year_jane_started_baby_sitting_s1 = None\nyear_jane_started_baby_sitting_s2 = 18\n\nif year_jane_started_baby_sitting_s1 is None or year_jane_started_baby_sitting_s2 is None:\n print('neutral')\n\nelif year_jane_started_baby_sitting_s1 == year_jane_started_baby_sitting_s2:\n print('Entailment')\n\nelif year_jane_started_baby_sitting_s1 != year_jane_started_baby_sitting_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rihanna brought home 150 pens but while packing them , she misplaced some of them, \"statement 2\" :Rihanna brought home less than 550 pens but while packing them , she misplaced some of them, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bought_pen_s1 = 150\nbought_pen_s2 = 550\n\nif bought_pen_s1 is None or bought_pen_s2 is None:\n print('neutral')\n\nelif bought_pen_s1 < bought_pen_s2:\n print('Entailment')\n\nelif bought_pen_s1 != bought_pen_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Seven school employees have been placed on paid emergency leave by the Texas Department of Aging and Disability Services , according to spokeswoman Cecilia Fedorov ., \"statement 2\" :Seven school employees placed on leave ; arrest warrants are pending, \"options: \" Entailment or neutral?", + "Output Program": [ + "employees_on_leave_s1 = None\nemployees_on_leave_s2 = 7\n\nif employees_on_leave_s1 is None or employees_on_leave_s2 is None:\n print('neutral')\n\nelif employees_on_leave_s1 == employees_on_leave_s2:\n print('Entailment')\n\nelif employees_on_leave_s1 != employees_on_leave_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary is less than 56 years younger than Albert, \"statement 2\" :Mary is 16 years younger than Albert, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_mary_younger_s1 = None\nyears_mary_younger_s2 = 16\n\nif years_mary_younger_s1 is None or years_mary_younger_s2 is None:\n print('neutral')\n\nelif years_mary_younger_s1 == years_mary_younger_s2:\n print('Entailment')\n\nelif years_mary_younger_s1 != years_mary_younger_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sacha runs at a constant speed of 10 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"statement 2\" :Sacha runs at a constant speed of 80 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_per_second_s1 = 10\nspeed_per_second_s2 = 80\n\nif speed_per_second_s1 is None or speed_per_second_s2 is None:\n print('neutral')\n\nelif speed_per_second_s1 == speed_per_second_s2:\n print('Entailment')\n\nelif speed_per_second_s1 != speed_per_second_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sony and Johnny caught more than 30 fishes, \"statement 2\" :Sony and Johnny caught 80 fishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "both_caught_fishes_s1 = None\nboth_caught_fishes_s2 = 80\n\nif both_caught_fishes_s1 is None or both_caught_fishes_s2 is None:\n print('neutral')\n\nelif both_caught_fishes_s1 == both_caught_fishes_s2:\n print('Entailment')\n\nelif both_caught_fishes_s1 != both_caught_fishes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": His wife Maggie can wash all the windows in 6 hours, \"statement 2\" :His wife Maggie can wash all the windows in 2 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "window_wash_in_hours_s1 = 6\nwindow_wash_in_hours_s2 = 2\n\nif window_wash_in_hours_s1 is None or window_wash_in_hours_s2 is None:\n print('neutral')\n\nelif window_wash_in_hours_s1 == window_wash_in_hours_s2:\n print('Entailment')\n\nelif window_wash_in_hours_s1 != window_wash_in_hours_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nitin ranks less than 82 th in a class of 56 students, \"statement 2\" :Nitin ranks 12 th in a class of 56 students, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "nitin_ranks_s1 = None\nnitin_ranks_s2 = 12\n\nif nitin_ranks_s1 is None or nitin_ranks_s2 is None:\n print('neutral')\n\nelif nitin_ranks_s1 == nitin_ranks_s2:\n print('Entailment')\n\nelif nitin_ranks_s1 != nitin_ranks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 4.0 CDs fit on a shelf, \"statement 2\" :2.0 shelves are needed to hold 8.0 CDs, \"options: \" Entailment or contradiction?", + "Output Program": [ + "fit_CD_s1 = 4\nfit_CD_s2 = 8/2\n\nif fit_CD_s1 is None or fit_CD_s2 is None:\n print('neutral')\n\nelif fit_CD_s1 == fit_CD_s2:\n print('Entailment')\n\nelif fit_CD_s1 != fit_CD_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill is dividing her 12 - person class into two teams of equal size for a basketball game, \"statement 2\" :Jill is dividing her 62 - person class into two teams of equal size for a basketball game, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "divide_person_class_in_2_teams_s1 = 12\ndivide_person_class_in_2_teams_s2 = 62\n\nif divide_person_class_in_2_teams_s1 is None or divide_person_class_in_2_teams_s2 is None:\n print('neutral')\n\nelif divide_person_class_in_2_teams_s1 == divide_person_class_in_2_teams_s2:\n print('Entailment')\n\nelif divide_person_class_in_2_teams_s1 != divide_person_class_in_2_teams_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jack and Christina are standing less than 450 feet apart on a level surface, \"statement 2\" :Jack and Christina are standing 150 feet apart on a level surface, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "feet_apart_on_level_surface_s1 = None\nfeet_apart_on_level_surface_s2 = 150\n\nif feet_apart_on_level_surface_s1 is None or feet_apart_on_level_surface_s2 is None:\n print('neutral')\n\nelif feet_apart_on_level_surface_s1 == feet_apart_on_level_surface_s2:\n print('Entailment')\n\nelif feet_apart_on_level_surface_s1 != feet_apart_on_level_surface_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sharper is wanted in New Orleans in connection with the alleged rapes of two women ., \"statement 2\" :The former NFL star faces two counts of aggravated rape in New Orleans, \"options: \" Entailment or neutral?", + "Output Program": [ + "feet_apart_on_level_surface_s1 = None\nfeet_apart_on_level_surface_s2 = 150\n\nif feet_apart_on_level_surface_s1 is None or feet_apart_on_level_surface_s2 is None:\n print('neutral')\n\nelif feet_apart_on_level_surface_s1 == feet_apart_on_level_surface_s2:\n print('Entailment')\n\nelif feet_apart_on_level_surface_s1 != feet_apart_on_level_surface_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alyssa picked 25.0 limes, and Mike picked 32.0 limes and Tom picked 12.0 plums , \"statement 2\" :61.0 limes were picked in all , \"options: \" Entailment or contradiction?", + "Output Program": [ + "limes_picked_s1 = 25+32+12\nlimes_picked_s2 = 61\n\nif limes_picked_s1 is None or limes_picked_s2 is None:\n print('neutral')\n\nelif limes_picked_s1 == limes_picked_s2:\n print('Entailment')\n\nelif limes_picked_s1 != limes_picked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bhajan Singh purchased less than 220 reams of paper at Rs 80 per ream, \"statement 2\" :Bhajan Singh purchased 120 reams of paper at Rs 80 per ream, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "reams_of_papers_purchased_s1 = None\nreams_of_papers_purchased_s2 = 120\n\nif reams_of_papers_purchased_s1 is None or reams_of_papers_purchased_s2 is None:\n print('neutral')\n\nelif reams_of_papers_purchased_s1 == reams_of_papers_purchased_s2:\n print('Entailment')\n\nelif reams_of_papers_purchased_s1 != reams_of_papers_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Missy received 25 messages from Laurence , how many messages does Keith receive from Juan ?, \"statement 2\" :If Missy received 85 messages from Laurence , how many messages does Keith receive from Juan ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "messages_missy_received_s1 = 25\nmessages_missy_received_s2 = 85\n\nif messages_missy_received_s1 is None or messages_missy_received_s2 is None:\n print('neutral')\n\nelif messages_missy_received_s1 == messages_missy_received_s2:\n print('Entailment')\n\nelif messages_missy_received_s1 != messages_missy_received_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 8 -- Number of Ohioans who have been elected president ., \"statement 2\" :8 -- Number of Buckeye State residents who have been elected president, \"options: \" Entailment or neutral?", + "Output Program": [ + "elected_president_s1 = 8\nelected_president_s2 = 8\n\nif elected_president_s1 is None or elected_president_s2 is None:\n print('neutral')\n\nelif elected_president_s1 == elected_president_s2:\n print('Entailment')\n\nelif elected_president_s1 != elected_president_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Raman invests some money at the beginning , Lakshmi invests double the amount after more than 5 months , and Muthu invests thrice the amount after 8 months, \"statement 2\" :Raman invests some money at the beginning , Lakshmi invests double the amount after 6 months , and Muthu invests thrice the amount after 8 months, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "months_amount_invest_s1 = None\nmonths_amount_invest_s2 = 6\n\nif months_amount_invest_s1 is None or months_amount_invest_s2 is None:\n print('neutral')\n\nelif months_amount_invest_s1 == months_amount_invest_s2:\n print('Entailment')\n\nelif months_amount_invest_s1 != months_amount_invest_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In less than 6 years John will be twice as old as Frank, \"statement 2\" :In 3 years John will be twice as old as Frank, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_age_in_years_s1 = None\njohn_age_in_years_s2 = 3\n\nif john_age_in_years_s1 is None or john_age_in_years_s2 is None:\n print('neutral')\n\nelif john_age_in_years_s1 == john_age_in_years_s2:\n print('Entailment')\n\nelif john_age_in_years_s1 != john_age_in_years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Let \u2019 s assume such rumors to be true and that in a match between Ghana and Bolivia ; Ghana the stronger team has a probability of less than 8 / 3 of winning the game, \"statement 2\" :Let \u2019 s assume such rumors to be true and that in a match between Ghana and Bolivia ; Ghana the stronger team has a probability of 2 / 3 of winning the game, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "probability_in_winning_s1 = None\nprobability_in_winning_s2 = 2/3\n\nif probability_in_winning_s1 is None or probability_in_winning_s2 is None:\n print('neutral')\n\nelif probability_in_winning_s1 == probability_in_winning_s2:\n print('Entailment')\n\nelif probability_in_winning_s1 != probability_in_winning_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Paul got a box of 479.0 crayons for his birthday and at the end of the school year, he only had 134.0 left, \"statement 2\" :340.0 crayons had been lost or given away, \"options: \" Entailment or contradiction?", + "Output Program": [ + "crayons_left_s1 = 479-134\ncrayons_left_s2 = 340\n\nif crayons_left_s1 is None or crayons_left_s2 is None:\n print('neutral')\n\nelif crayons_left_s1 == crayons_left_s2:\n print('Entailment')\n\nelif crayons_left_s1 != crayons_left_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Evan ran a mile in less than 40 minutes Monday morning , and he ran the same mile in 8 minutes on Tuesday morning, \"statement 2\" :Evan ran a mile in 10 minutes Monday morning , and he ran the same mile in 8 minutes on Tuesday morning, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "minutes_evan_ran_s1 = None\nminutes_evan_ran_s2 = 10\n\nif minutes_evan_ran_s1 is None or minutes_evan_ran_s2 is None:\n print('neutral')\n\nelif minutes_evan_ran_s1 == minutes_evan_ran_s2:\n print('Entailment')\n\nelif minutes_evan_ran_s1 != minutes_evan_ran_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Martin bought 10 concert tickets , some at the full price of $ 2.00 per ticket , and some at a discounted price of $ 1.60 per ticket, \"statement 2\" :Martin bought 70 concert tickets , some at the full price of $ 2.00 per ticket , and some at a discounted price of $ 1.60 per ticket, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "concert_tickets_s1 = 10\nconcert_tickets_s2 = 70\n\nif concert_tickets_s1 is None or concert_tickets_s2 is None:\n print('neutral')\n\nelif concert_tickets_s1 == concert_tickets_s2:\n print('Entailment')\n\nelif concert_tickets_s1 != concert_tickets_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary works in a restaurant a maximum of 45 hours, \"statement 2\" :Mary works in a restaurant a maximum of more than 15 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_worked_in_restaurant_s1 = 45\nhours_worked_in_restaurant_s2 = 15\n\nif hours_worked_in_restaurant_s1 is None or hours_worked_in_restaurant_s2 is None:\n print('neutral')\n\nelif hours_worked_in_restaurant_s1 > hours_worked_in_restaurant_s2:\n print('Entailment')\n\nelif hours_worked_in_restaurant_s1 != hours_worked_in_restaurant_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 10 % people of a village in Sri Lanka died by bombardment , 20 % of the remainder left the village on account of fear, \"statement 2\" :less than 70 % people of a village in Sri Lanka died by bombardment , 20 % of the remainder left the village on account of fear, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_died_srilanka_s1 = 10\npeople_died_srilanka_s2 = 70\n\nif people_died_srilanka_s1 is None or people_died_srilanka_s2 is None:\n print('neutral')\n\nelif people_died_srilanka_s1 < people_died_srilanka_s2:\n print('Entailment')\n\nelif people_died_srilanka_s1 != people_died_srilanka_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were 28.0 girls and 35.0 boys on the playground at recess., \"statement 2\" :61.0 children were there in all, \"options: \" Entailment or contradiction?", + "Output Program": [ + "children_on_playground_s1 = 28+35\nchildren_on_playground_s2 = 61\n\nif children_on_playground_s1 is None or children_on_playground_s2 is None:\n print('neutral')\n\nelif children_on_playground_s1 == children_on_playground_s2:\n print('Entailment')\n\nelif children_on_playground_s1 != children_on_playground_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A restaurant served 9 pizzas but 6 were returned., \"statement 2\" :3.0 pizzas were successfully served, \"options: \" Entailment or contradiction?", + "Output Program": [ + "children_on_playground_s1 = 28+35\nchildren_on_playground_s2 = 61\n\nif children_on_playground_s1 is None or children_on_playground_s2 is None:\n print('neutral')\n\nelif children_on_playground_s1 == children_on_playground_s2:\n print('Entailment')\n\nelif children_on_playground_s1 != children_on_playground_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many possible ways can more than 2 girls ( Rebecca , Kate , Ashley ) go on a date with 4 boys ( Peter , Kyle , Sam ) ?, \"statement 2\" :How many possible ways can 4 girls ( Rebecca , Kate , Ashley ) go on a date with 4 boys ( Peter , Kyle , Sam ) ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ways_girls_can_go_on_date_s1 = None\nways_girls_can_go_on_date_s2 = 4\n\nif ways_girls_can_go_on_date_s1 is None or ways_girls_can_go_on_date_s2 is None:\n print('neutral')\n\nelif ways_girls_can_go_on_date_s1 == ways_girls_can_go_on_date_s2:\n print('Entailment')\n\nelif ways_girls_can_go_on_date_s1 != ways_girls_can_go_on_date_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alice leaves City A 30 minutes after Bob, \"statement 2\" :Alice leaves City A 60 minutes after Bob, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "alice_leaves_city_s1 = 30\nalice_leaves_city_s2 = 60\n\nif alice_leaves_city_s1 is None or alice_leaves_city_s2 is None:\n print('neutral')\n\nelif alice_leaves_city_s1 == alice_leaves_city_s2:\n print('Entailment')\n\nelif alice_leaves_city_s1 != alice_leaves_city_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Craig Hicks , 46 , was indicted on three counts of first-degree murder , according to the Durham County Clerk 's office ., \"statement 2\" :Clerk 's office : Craig Hicks has been indicted on three counts of first-degree murder, \"options: \" Entailment or neutral?", + "Output Program": [ + "murder_counts_s1 = 3\nmurder_counts_s2 = 3\n\nif murder_counts_s1 is None or murder_counts_s2 is None:\n print('neutral')\n\nelif murder_counts_s1 == murder_counts_s2:\n print('Entailment')\n\nelif murder_counts_s1 != murder_counts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": By how much must Rebecca ' s yearly income increase so that it constitutes 55 % of Rebecca and Jimmy ' s combined income ?, \"statement 2\" :By how much must Rebecca ' s yearly income increase so that it constitutes less than 55 % of Rebecca and Jimmy ' s combined income ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "yearly_income_s1 = 55\nyearly_income_s2 = 0\n\nif yearly_income_s1 is None or yearly_income_s2 is None:\n print('neutral')\n\nelif yearly_income_s1 == yearly_income_s2:\n print('Entailment')\n\nelif yearly_income_s1 != yearly_income_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ramesh is less than 6 : 1 while that between Mr, \"statement 2\" :Ramesh is 2 : 1 while that between Mr, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ramesh_between_mr_s1 = None\nramesh_between_mr_s2 = 2/1\n\nif ramesh_between_mr_s1 is None or ramesh_between_mr_s2 is None:\n print('neutral')\n\nelif ramesh_between_mr_s1 == ramesh_between_mr_s2:\n print('Entailment')\n\nelif ramesh_between_mr_s1 != ramesh_between_mr_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Johnny takes night school and scores an more than 18 in the course , what will his new average be ?, \"statement 2\" :If Johnny takes night school and scores an 88 in the course , what will his new average be ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jonny_scores_s1 = None\njonny_scores_s2 = 88\n\nif jonny_scores_s1 is None or jonny_scores_s2 is None:\n print('neutral')\n\nelif jonny_scores_s1 == jonny_scores_s2:\n print('Entailment')\n\nelif jonny_scores_s1 != jonny_scores_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained 76 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained 86 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_obtained_s1 = 76+65+67+82+85\nmarks_obtained_s2 = 86+65+67+82+85\n\nif marks_obtained_s1 is None or marks_obtained_s2 is None:\n print('neutral')\n\nelif marks_obtained_s1 == marks_obtained_s2:\n print('Entailment')\n\nelif marks_obtained_s1 != marks_obtained_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Albert completes a piece of work in 20 days , Rose completes the same work in 30 days, \"statement 2\" :Albert completes a piece of work in less than 20 days , Rose completes the same work in 30 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "albert_completes_work_s1 = 20\nalbert_completes_work_s2 = 0\n\nif albert_completes_work_s1 is None or albert_completes_work_s2 is None:\n print('neutral')\n\nelif albert_completes_work_s1 == albert_completes_work_s2:\n print('Entailment')\n\nelif albert_completes_work_s1 != albert_completes_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Calculate the average mark scored by Nancy if she obtained the following scores in an examination : 65 , 78 , 89 , 51 and 69 marks ( out of 100 ) in English Language , Physics , Mathematics , Chemistry and Biology ?, \"statement 2\" :Calculate the average mark scored by Nancy if she obtained the following scores in an examination : less than 65 , 78 , 89 , 51 and 69 marks ( out of 100 ) in English Language , Physics , Mathematics , Chemistry and Biology ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_marks_s1 = 65+78+89+51+69\naverage_marks_s2 = 0\n\nif average_marks_s1 is None or average_marks_s2 is None:\n print('neutral')\n\nelif average_marks_s1 == average_marks_s2:\n print('Entailment')\n\nelif average_marks_s1 != average_marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At the end of ' n ' years , Sandy got back more than 4 times the original investment, \"statement 2\" :At the end of ' n ' years , Sandy got back 7 times the original investment, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_original_investment_s1 = None\nsandy_original_investment_s2 = 7\n\nif sandy_original_investment_s1 is None or sandy_original_investment_s2 is None:\n print('neutral')\n\nelif sandy_original_investment_s1 == sandy_original_investment_s2:\n print('Entailment')\n\nelif sandy_original_investment_s1 != sandy_original_investment_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Defense Secretary Robert Gates earlier this month recommended that the Army 's troop strength be increased by 65,000 soldiers , to a total of 547,000 worldwide and the Marines be increased by 27,000 to 202,000 ., \"statement 2\" :The Defense Secretary suggested that the Army 's troop should be increased to 547,000 soldiers ., \"options: \" Entailment or neutral?", + "Output Program": [ + "increased_troop_strength_s1 = 547000\nincreased_troop_strength_s2 = 547000\n\nif increased_troop_strength_s1 is None or increased_troop_strength_s2 is None:\n print('neutral')\n\nelif increased_troop_strength_s1 == increased_troop_strength_s2:\n print('Entailment')\n\nelif increased_troop_strength_s1 != increased_troop_strength_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": However , after Mary and Alan eat four apples , the ratio changes to less than 5 to 2, \"statement 2\" :However , after Mary and Alan eat four apples , the ratio changes to 3 to 2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_change_s1 = None\nratio_change_s2 = 3/2\n\nif ratio_change_s1 is None or ratio_change_s2 is None:\n print('neutral')\n\nelif ratio_change_s1 == ratio_change_s2:\n print('Entailment')\n\nelif ratio_change_s1 != ratio_change_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If TRAIN is coded as 12 and PANDA is coded as 18 , then CURED is coded as, \"statement 2\" :If TRAIN is coded as less than 62 and PANDA is coded as 18 , then CURED is coded as, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "train_coded_s1 = 12\ntrain_coded_s2 = 62\n\nif train_coded_s1 is None or train_coded_s2 is None:\n print('neutral')\n\nelif train_coded_s1 < train_coded_s2:\n print('Entailment')\n\nelif train_coded_s1 != train_coded_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": CERN has now grown to include 20 member states and enjoys the active participation of many other countries world-wide ., \"statement 2\" :CERN has 20 member states ., \"options: \" Entailment or neutral?", + "Output Program": [ + "member_states_s1 = 20\nmember_states_s2 = 20\n\nif member_states_s1 is None or member_states_s2 is None:\n print('neutral')\n\nelif member_states_s1 == member_states_s2:\n print('Entailment')\n\nelif member_states_s1 != member_states_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the speed of Mohan \u2019 s Mercedes is less than 65 km / hr and the distance traveled by the Ferrari is 490 km , find the total time taken for Rohit to drive that distance ., \"statement 2\" :If the speed of Mohan \u2019 s Mercedes is 35 km / hr and the distance traveled by the Ferrari is 490 km , find the total time taken for Rohit to drive that distance ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "x = 'speed_of_mercedes'\na = 'None'\nb = '35'\nsign_1 = '=='\nsign_2 = '!='\n\nmy_code = f'''\n{x}_s1 = {a}\n{x}_s2 = {b}\n\nif {x}_s1 is None or {x}_s2 is None:\n print('neutral')\n\nelif {x}_s1 {sign_1} {x}_s2:\n print('Entailment')\n\nelif {x}_s1 {sign_2} {x}_s2:\n print('contradiction')\n'''\n\nexec(my_code)\nprint(my_code)" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Snyder has less than 5 more men and 6 more women than Leigh , how many women are in the Snyder choir ?, \"statement 2\" :If Snyder has 4 more men and 6 more women than Leigh , how many women are in the Snyder choir ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "men_women_in_synder_s1 = None\nmen_women_in_synder_s2 = 4\n\nif men_women_in_synder_s1 is None or men_women_in_synder_s2 is None:\n print('neutral')\n\nelif men_women_in_synder_s1 == men_women_in_synder_s2:\n print('Entailment')\n\nelif men_women_in_synder_s1 != men_women_in_synder_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The school is planning a field trip and there are 14.0 students and 2.0 seats on each school bus, \"statement 2\" :4.0 buses are needed to take the trip, \"options: \" Entailment or contradiction?", + "Output Program": [ + "bus_needed_s1 = 14/2\nbus_needed_s2 = 4\n\nif bus_needed_s1 is None or bus_needed_s2 is None:\n print('neutral')\n\nelif bus_needed_s1 == bus_needed_s2:\n print('Entailment')\n\nelif bus_needed_s1 != bus_needed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Angela has 14 pairs of matched socks, \"statement 2\" :Angela has less than 34 pairs of matched socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pairs_of_matcched_socks_s1 = 14\npairs_of_matcched_socks_s2 = 34\n\nif pairs_of_matcched_socks_s1 is None or pairs_of_matcched_socks_s2 is None:\n print('neutral')\n\nelif pairs_of_matcched_socks_s1 < pairs_of_matcched_socks_s2:\n print('Entailment')\n\nelif pairs_of_matcched_socks_s1 != pairs_of_matcched_socks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Karen places a bet with Tom that she will beat Tom in a car race by 4 miles even if Karen starts 4 minutes late, \"statement 2\" :Karen places a bet with Tom that she will beat Tom in a car race by less than 4 miles even if Karen starts 4 minutes late, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "karen_bet_with_tom_s1 = 4\nkaren_bet_with_tom_s2 = 0\n\nif karen_bet_with_tom_s1 is None or karen_bet_with_tom_s2 is None:\n print('neutral')\n\nelif karen_bet_with_tom_s1 == karen_bet_with_tom_s2:\n print('Entailment')\n\nelif karen_bet_with_tom_s1 != karen_bet_with_tom_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At present , the ratio between the ages of Arun and Deepak is 4 : 5, \"statement 2\" :At present , the ratio between the ages of Arun and Deepak is less than 4 : 5, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_in_ages_between_arun_deepak_s1 = 4/5\nratio_in_ages_between_arun_deepak_s2 = 0\n\nif ratio_in_ages_between_arun_deepak_s1 is None or ratio_in_ages_between_arun_deepak_s2 is None:\n print('neutral')\n\nelif ratio_in_ages_between_arun_deepak_s1 == ratio_in_ages_between_arun_deepak_s2:\n print('Entailment')\n\nelif ratio_in_ages_between_arun_deepak_s1 != ratio_in_ages_between_arun_deepak_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Real Madrid failed to capitalize on their rivals slip up , drawing 1-1 at Zaragoza ., \"statement 2\" :Real Madrid also draw at Zaragoza ; Malaga win 3-1 at Rayo Vallecano, \"options: \" Entailment or neutral?", + "Output Program": [ + "malaga_win_s1 = None\nmalaga_win_s2 = 3-1\n\nif malaga_win_s1 is None or malaga_win_s2 is None:\n print('neutral')\n\nelif malaga_win_s1 == malaga_win_s2:\n print('Entailment')\n\nelif malaga_win_s1 != malaga_win_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ganesh covers the distance from X to Y at an average speed of 60 Km / hr, \"statement 2\" :Ganesh covers the distance from X to Y at an average speed of 70 Km / hr, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_speed_s1 = 60\naverage_speed_s2 = 70\n\nif average_speed_s1 is None or average_speed_s2 is None:\n print('neutral')\n\nelif average_speed_s1 == average_speed_s2:\n print('Entailment')\n\nelif average_speed_s1 != average_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Anup was asked to find the value of 7 / 12 of a sum of money Q, \"statement 2\" :Anup was asked to find the value of more than 4 / 12 of a sum of money Q, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sum_of_money_s1 = 7/12\nsum_of_money_s2 = 4/12\n\nif sum_of_money_s1 is None or sum_of_money_s2 is None:\n print('neutral')\n\nelif sum_of_money_s1 > sum_of_money_s2:\n print('Entailment')\n\nelif sum_of_money_s1 != sum_of_money_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The Ferris wheel in Paradise Park has 14.0 seats and each seat can hold 6.0 people, \"statement 2\" :84.0 people can ride the Ferris wheel at the same time, \"options: \" Entailment or contradiction?", + "Output Program": [ + "people_can_ride_s1 = 14*6\npeople_can_ride_s2 = 84\n\nif people_can_ride_s1 is None or people_can_ride_s2 is None:\n print('neutral')\n\nelif people_can_ride_s1 == people_can_ride_s2:\n print('Entailment')\n\nelif people_can_ride_s1 != people_can_ride_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dan can do a job alone in less than 32 hours, \"statement 2\" :Dan can do a job alone in 12 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dan_can_do_job_alone_s1 = None\ndan_can_do_job_alone_s2 = 12\n\nif dan_can_do_job_alone_s1 is None or dan_can_do_job_alone_s2 is None:\n print('neutral')\n\nelif dan_can_do_job_alone_s1 == dan_can_do_job_alone_s2:\n print('Entailment')\n\nelif dan_can_do_job_alone_s1 != dan_can_do_job_alone_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": On a business trip , 30 percent of 60 sales representatives will be given accommodations at Hotel XYZ and the remaining 70 percent will be given accommodations at Hotel ABC, \"statement 2\" :On a business trip , more than 10 percent of 60 sales representatives will be given accommodations at Hotel XYZ and the remaining 70 percent will be given accommodations at Hotel ABC, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sales_percent_s1 = 30\nsales_percent_s2 = 10\n\nif sales_percent_s1 is None or sales_percent_s2 is None:\n print('neutral')\n\nelif sales_percent_s1 > sales_percent_s2:\n print('Entailment')\n\nelif sales_percent_s1 != sales_percent_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many miles from home can Aaron jog so that he spends a total of 3 hours jogging and walking ?, \"statement 2\" :How many miles from home can Aaron jog so that he spends a total of less than 7 hours jogging and walking ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "walking_and_jogging_hours_s1 = 3\nwalking_and_jogging_hours_s2 = 7\n\nif walking_and_jogging_hours_s1 is None or walking_and_jogging_hours_s2 is None:\n print('neutral')\n\nelif walking_and_jogging_hours_s1 < walking_and_jogging_hours_s2:\n print('Entailment')\n\nelif walking_and_jogging_hours_s1 != walking_and_jogging_hours_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A \u201c Sophie Germain \u201d prime is any positive prime number p for which 2 p + 1 is also prime, \"statement 2\" :A \u201c Sophie Germain \u201d prime is any positive prime number p for which less than 5 p + 1 is also prime, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "prime_no_s1 = 2\nprime_no_s2 = 5\n\nif prime_no_s1 is None or prime_no_s2 is None:\n print('neutral')\n\nelif prime_no_s1 < prime_no_s2:\n print('Entailment')\n\nelif prime_no_s1 != prime_no_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John completes a piece of work in 320 days , Rose completes the same work in 480 days, \"statement 2\" :John completes a piece of work in more than 320 days , Rose completes the same work in 480 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_completes_piece_of_work_s1 = 320\njohn_completes_piece_of_work_s2 = 0\n\nif john_completes_piece_of_work_s1 is None or john_completes_piece_of_work_s2 is None:\n print('neutral')\n\nelif john_completes_piece_of_work_s1 == john_completes_piece_of_work_s2:\n print('Entailment')\n\nelif john_completes_piece_of_work_s1 != john_completes_piece_of_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sourav walks 20 meters towards North, \"statement 2\" :Sourav walks more than 20 meters towards North, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "walks_m_north_s1 = 20\nwalks_m_north_s2 = 0\n\nif walks_m_north_s1 is None or walks_m_north_s2 is None:\n print('neutral')\n\nelif walks_m_north_s1 == walks_m_north_s2:\n print('Entailment')\n\nelif walks_m_north_s1 != walks_m_north_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The compound interest earned by Sunil on a certain amount at the end of two years at the rate of more than 5 % p, \"statement 2\" :The compound interest earned by Sunil on a certain amount at the end of two years at the rate of 8 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rate_of_interest_s1 = None\nrate_of_interest_s2 = 8\n\nif rate_of_interest_s1 is None or rate_of_interest_s2 is None:\n print('neutral')\n\nelif rate_of_interest_s1 == rate_of_interest_s2:\n print('Entailment')\n\nelif rate_of_interest_s1 != rate_of_interest_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy attempts less than 80 sums and obtains 65 marks, \"statement 2\" :Sandy attempts 30 sums and obtains 65 marks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sum_attempts_s1 = None\nsum_attempts_s2 = 30\n\nif sum_attempts_s1 is None or sum_attempts_s2 is None:\n print('neutral')\n\nelif sum_attempts_s1 == sum_attempts_s2:\n print('Entailment')\n\nelif sum_attempts_s1 != sum_attempts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nicole found an orange caterpillar and a green caterpillar in her backyard and the green caterpillar was 3.0 inches long, and the orange caterpillar was 1.1666666666666667 inches long , \"statement 2\" :The green caterpillar and orange caterpillar were 4.16666666667 inches in total, \"options: \" Entailment or contradiction?", + "Output Program": [ + "long_caterpillar_s1 = 3*1.1666\nlong_caterpillar_s2 = 4.1666\n\nif long_caterpillar_s1 is None or long_caterpillar_s2 is None:\n print('neutral')\n\nelif long_caterpillar_s1 < long_caterpillar_s2:\n print('Entailment')\n\nelif long_caterpillar_s1 != long_caterpillar_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Melvin ' s GMAT score is twice his monthly electric bill , and his life expectancy is 100 , what is his shoe size ?, \"statement 2\" :If Melvin ' s GMAT score is twice his monthly electric bill , and his life expectancy is less than 800 , what is his shoe size ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "GMAT_score_s1 = 100\nGMAT_score_s2 = 800\n\nif GMAT_score_s1 is None or GMAT_score_s2 is None:\n print('neutral')\n\nelif GMAT_score_s1 < GMAT_score_s2:\n print('Entailment')\n\nelif GMAT_score_s1 != GMAT_score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": less than 30000 after 8 months , Sravan advances Rs, \"statement 2\" :20000 after 8 months , Sravan advances Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rs_after_month_s1 = None\nrs_after_month_s2 = 20000\n\nif rs_after_month_s1 is None or rs_after_month_s2 is None:\n print('neutral')\n\nelif rs_after_month_s1 == rs_after_month_s2:\n print('Entailment')\n\nelif rs_after_month_s1 != rs_after_month_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill is dividing her 16 - person class into two teams of equal size for a basketball game, \"statement 2\" :Jill is dividing her less than 66 - person class into two teams of equal size for a basketball game, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "person_in_two_teams_s1 = 16\nperson_in_two_teams_s2 = 66\n\nif person_in_two_teams_s1 is None or person_in_two_teams_s2 is None:\n print('neutral')\n\nelif person_in_two_teams_s1 < person_in_two_teams_s2:\n print('Entailment')\n\nelif person_in_two_teams_s1 != person_in_two_teams_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Albert borrowed a total of $ 6000 from john and Charlie, \"statement 2\" :Albert borrowed a total of $ more than 4000 from john and Charlie, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_borrowed_dollar_s1 = 6000\ntotal_borrowed_dollar_s2 = 4000\n\nif total_borrowed_dollar_s1 is None or total_borrowed_dollar_s2 is None:\n print('neutral')\n\nelif total_borrowed_dollar_s1 > total_borrowed_dollar_s2:\n print('Entailment')\n\nelif total_borrowed_dollar_s1 != total_borrowed_dollar_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A waiter had 19.0 customers to wait on, and 14.0 customers left and he got another 36.0 customers, \"statement 2\" :He would have 37.0 customers , \"options: \" Entailment or contradiction?", + "Output Program": [ + "customers_to_wait_on_s1 = 19-14+36\ncustomers_to_wait_on_s2 = 37\n\nif customers_to_wait_on_s1 is None or customers_to_wait_on_s2 is None:\n print('neutral')\n\nelif customers_to_wait_on_s1 == customers_to_wait_on_s2:\n print('Entailment')\n\nelif customers_to_wait_on_s1 != customers_to_wait_on_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Jack walked 8 miles in 1 hour and 15 minutes , what was his rate of walking in miles per hour ?, \"statement 2\" :If Jack walked more than 4 miles in 1 hour and 15 minutes , what was his rate of walking in miles per hour ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jack_walked_miles_s1 = 8\njack_walked_miles_s2 = 4\n\nif jack_walked_miles_s1 is None or jack_walked_miles_s2 is None:\n print('neutral')\n\nelif jack_walked_miles_s1 > jack_walked_miles_s2:\n print('Entailment')\n\nelif jack_walked_miles_s1 != jack_walked_miles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He will be more than 1 / 3 times as old as Tom 6 years hence, \"statement 2\" :He will be 5 / 3 times as old as Tom 6 years hence, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_in_years_s1 = None\nage_in_years_s2 = 5/3\n\nif age_in_years_s1 is None or age_in_years_s2 is None:\n print('neutral')\n\nelif age_in_years_s1 == age_in_years_s2:\n print('Entailment')\n\nelif age_in_years_s1 != age_in_years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In another class of 100 students there were 19 grades higher than Angela \u2019 s, \"statement 2\" :In another class of 800 students there were 19 grades higher than Angela \u2019 s, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "students_in_other_class_s1 = 100\nstudents_in_other_class_s2 = 800\n\nif students_in_other_class_s1 is None or students_in_other_class_s2 is None:\n print('neutral')\n\nelif students_in_other_class_s1 == students_in_other_class_s2:\n print('Entailment')\n\nelif students_in_other_class_s1 != students_in_other_class_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Meanwhile , South Korea beat Iran 1-0 in in the later quarterfinal , again after extra-time , to set up a last-four meeting with Japan ., \"statement 2\" :South Korea score in extra-time to beat Iran 1-0 in Asian Cup quarterfinals, \"options: \" Entailment or neutral?", + "Output Program": [ + "south_korea_beat_iran_s1 = None\nsouth_korea_beat_iran_s2 = 1-0\n\nif south_korea_beat_iran_s1 is None or south_korea_beat_iran_s2 is None:\n print('neutral')\n\nelif south_korea_beat_iran_s1 == south_korea_beat_iran_s2:\n print('Entailment')\n\nelif south_korea_beat_iran_s1 != south_korea_beat_iran_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Google is hoping to make it a little simpler by providing easy-to-see nutrition info for more than 1,000 foods ., \"statement 2\" :Google will showcase nutrition info for more than 1,000 foods in search, \"options: \" Entailment or neutral?", + "Output Program": [ + "nutrition_in_food_s1 = 1000\nnutrition_in_food_s2 = 1000\n\nif nutrition_in_food_s1 is None or nutrition_in_food_s2 is None:\n print('neutral')\n\nelif nutrition_in_food_s1 == nutrition_in_food_s2:\n print('Entailment')\n\nelif nutrition_in_food_s1 != nutrition_in_food_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The agreement calls for $ 1.5 billion to be distributed among those who were part of the lawsuit ., \"statement 2\" :Under the finalized settlement , $ 1.5 billion will be distributed among individuals, \"options: \" Entailment or neutral?", + "Output Program": [ + "billion_distributed_s1 = 1.5\nbillion_distributed_s2 = 1.5\n\nif billion_distributed_s1 is None or billion_distributed_s2 is None:\n print('neutral')\n\nelif billion_distributed_s1 == billion_distributed_s2:\n print('Entailment')\n\nelif billion_distributed_s1 != billion_distributed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Teresa jogged 25.0 kilometers at 5.0 kilometers per hour, \"statement 2\" :Teresa jogged for 4.0 hours, \"options: \" Entailment or contradiction?", + "Output Program": [ + "teresa_jogged_hour_s1 = 25/5\nteresa_jogged_hour_s2 = 4\n\nif teresa_jogged_hour_s1 is None or teresa_jogged_hour_s2 is None:\n print('neutral')\n\nelif teresa_jogged_hour_s1 == teresa_jogged_hour_s2:\n print('Entailment')\n\nelif teresa_jogged_hour_s1 != teresa_jogged_hour_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Harkamal purchased 8 kg of grapes at the rate of 70 per kg and 9 kg of mangoes at the rate of 55 per kg, \"statement 2\" :Harkamal purchased more than 8 kg of grapes at the rate of 70 per kg and 9 kg of mangoes at the rate of 55 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "grapes_rate_per_kg_s1 = 8\ngrapes_rate_per_kg_s2 = 0\n\nif grapes_rate_per_kg_s1 is None or grapes_rate_per_kg_s2 is None:\n print('neutral')\n\nelif grapes_rate_per_kg_s1 == grapes_rate_per_kg_s2:\n print('Entailment')\n\nelif grapes_rate_per_kg_s1 != grapes_rate_per_kg_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": On her way back , Swetha drives 30 miles per hour and stops in Town Y which is midway between Town A and Town C, \"statement 2\" :On her way back , Swetha drives less than 80 miles per hour and stops in Town Y which is midway between Town A and Town C, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "drives_miles_per_hour_s1 = 30\ndrives_miles_per_hour_s2 = 80\n\nif drives_miles_per_hour_s1 is None or drives_miles_per_hour_s2 is None:\n print('neutral')\n\nelif drives_miles_per_hour_s1 < drives_miles_per_hour_s2:\n print('Entailment')\n\nelif drives_miles_per_hour_s1 != drives_miles_per_hour_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The present ages of Lewis and Brown are in the ratio 1 : 2, \"statement 2\" :The present ages of Lewis and Brown are in the ratio less than 8 : 2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "present_age_ratio_s1 = 1/2\npresent_age_ratio_s2 = 8/2\n\nif present_age_ratio_s1 is None or present_age_ratio_s2 is None:\n print('neutral')\n\nelif present_age_ratio_s1 < present_age_ratio_s2:\n print('Entailment')\n\nelif present_age_ratio_s1 != present_age_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Glen is 130 km away from Hannah at 6 am , and also 130 km away from Hannah at 11 am , then how fast is Hannah driving ( in kilometers per hour ) ?, \"statement 2\" :If Glen is 430 km away from Hannah at 6 am , and also 130 km away from Hannah at 11 am , then how fast is Hannah driving ( in kilometers per hour ) ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "glen_away_from_hannah_s1 = 130\nglen_away_from_hannah_s2 = 430\n\nif glen_away_from_hannah_s1 is None or glen_away_from_hannah_s2 is None:\n print('neutral')\n\nelif glen_away_from_hannah_s1 == glen_away_from_hannah_s2:\n print('Entailment')\n\nelif glen_away_from_hannah_s1 != glen_away_from_hannah_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": An investor can sell her MicroTron stock for less than 56 $ per share and her Dynaco stock for 60 $ per share , If she sells 300 shares altogether , some of each stock , at an average price per share of 40 $ , how many shares of Dynaco stock has she sold ?, \"statement 2\" :An investor can sell her MicroTron stock for 36 $ per share and her Dynaco stock for 60 $ per share , If she sells 300 shares altogether , some of each stock , at an average price per share of 40 $ , how many shares of Dynaco stock has she sold ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sell_stock_s1 = None\nsell_stock_s2 = 36\n\nif sell_stock_s1 is None or sell_stock_s2 is None:\n print('neutral')\n\nelif sell_stock_s1 == sell_stock_s2:\n print('Entailment')\n\nelif sell_stock_s1 != sell_stock_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Steve bought a total of 6 packages of pens , and each package contained either 3 or 7 pens, \"statement 2\" :Steve bought a total of 7 packages of pens , and each package contained either 3 or 7 pens, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "packages_of_pen_s1 = 6\npackages_of_pen_s2 = 7\n\nif packages_of_pen_s1 is None or packages_of_pen_s2 is None:\n print('neutral')\n\nelif packages_of_pen_s1 == packages_of_pen_s2:\n print('Entailment')\n\nelif packages_of_pen_s1 != packages_of_pen_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tanya is 25 % more efficient than Sakshi, \"statement 2\" :Tanya is 15 % more efficient than Sakshi, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tanya_sufficient_than_sakshi_s1 = 25\ntanya_sufficient_than_sakshi_s2 = 15\n\nif tanya_sufficient_than_sakshi_s1 is None or tanya_sufficient_than_sakshi_s2 is None:\n print('neutral')\n\nelif tanya_sufficient_than_sakshi_s1 == tanya_sufficient_than_sakshi_s2:\n print('Entailment')\n\nelif tanya_sufficient_than_sakshi_s1 != tanya_sufficient_than_sakshi_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tony alone can paint a wall in more than 6 days and his friend Roy alone can paint the same wall in 9 days, \"statement 2\" :Tony alone can paint a wall in 7 days and his friend Roy alone can paint the same wall in 9 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tony_alone_can_paint_wall_s1 = None\ntony_alone_can_paint_wall_s2 = 7\n\nif tony_alone_can_paint_wall_s1 is None or tony_alone_can_paint_wall_s2 is None:\n print('neutral')\n\nelif tony_alone_can_paint_wall_s1 == tony_alone_can_paint_wall_s2:\n print('Entailment')\n\nelif tony_alone_can_paint_wall_s1 != tony_alone_can_paint_wall_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Authorities said they have committed more than 20,000 military personnel and 2.5 tons of insecticide to combat the disease ., \"statement 2\" :Bolivia fights disease with 20,000-plus in military , 2.5 tons of insecticide, \"options: \" Entailment or neutral?", + "Output Program": [ + "authorities_committed_military_s1 = None\nauthorities_committed_military_s2 = 20000\n\nif authorities_committed_military_s1 is None or authorities_committed_military_s2 is None:\n print('neutral')\n\nelif authorities_committed_military_s1 == authorities_committed_military_s2:\n print('Entailment')\n\nelif authorities_committed_military_s1 != authorities_committed_military_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": On a business trip , 30 percent of 60 sales representatives will be given accommodations at Hotel XYZ and the remaining 70 percent will be given accommodations at Hotel ABC, \"statement 2\" :On a business trip , 80 percent of 60 sales representatives will be given accommodations at Hotel XYZ and the remaining 70 percent will be given accommodations at Hotel ABC, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sales_percent_s1 = 30\nsales_percent_s2 = 80\n\nif sales_percent_s1 is None or sales_percent_s2 is None:\n print('neutral')\n\nelif sales_percent_s1 == sales_percent_s2:\n print('Entailment')\n\nelif sales_percent_s1 != sales_percent_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jerry has 3 flavors of ice cream in his parlor, \"statement 2\" :Jerry has less than 7 flavors of ice cream in his parlor, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "flavours_of_ice_cream_s1 = 3\nflavours_of_ice_cream_s2 = 7\n\nif flavours_of_ice_cream_s1 is None or flavours_of_ice_cream_s2 is None:\n print('neutral')\n\nelif flavours_of_ice_cream_s1 < flavours_of_ice_cream_s2:\n print('Entailment')\n\nelif flavours_of_ice_cream_s1 != flavours_of_ice_cream_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The farmer had 127.0 apples and his neighbor gave him 88.0 pounds of apples, \"statement 2\" :He has 210.0 pounds of apples now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "pounds_of_apples_s1 = 127+88\npounds_of_apples_s2 = 210\n\nif pounds_of_apples_s1 is None or pounds_of_apples_s2 is None:\n print('neutral')\n\nelif pounds_of_apples_s1 == pounds_of_apples_s2:\n print('Entailment')\n\nelif pounds_of_apples_s1 != pounds_of_apples_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Albert \u2019 s monthly earnings rise by 30 % , he would earn $ 598, \"statement 2\" :If Albert \u2019 s monthly earnings rise by 50 % , he would earn $ 598, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "monthly_earning_s1 = 30\nmonthly_earning_s2 = 50\n\nif monthly_earning_s1 is None or monthly_earning_s2 is None:\n print('neutral')\n\nelif monthly_earning_s1 == monthly_earning_s2:\n print('Entailment')\n\nelif monthly_earning_s1 != monthly_earning_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Robin Van Persie scored four as the Netherlands put San Marino to the sword with an 11-0 thrashing ., \"statement 2\" :Robin Van Persie scores four as Netherlands destroy San Marino 11-0, \"options: \" Entailment or neutral?", + "Output Program": [ + "destroy_san_merino_s1 = 11-0\ndestroy_san_merino_s2 = 11-0\n\nif destroy_san_merino_s1 is None or destroy_san_merino_s2 is None:\n print('neutral')\n\nelif destroy_san_merino_s1 == destroy_san_merino_s2:\n print('Entailment')\n\nelif destroy_san_merino_s1 != destroy_san_merino_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Efrida and Frazer who live 12 miles apart , meet at a restaurant that is directly north of Efrida ' s home and directly east of Frazer ' s home, \"statement 2\" :Efrida and Frazer who live more than 12 miles apart , meet at a restaurant that is directly north of Efrida ' s home and directly east of Frazer ' s home, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_apart_s1 = 12\nmiles_apart_s2 = 0\n\nif miles_apart_s1 is None or miles_apart_s2 is None:\n print('neutral')\n\nelif miles_apart_s1 == miles_apart_s2:\n print('Entailment')\n\nelif miles_apart_s1 != miles_apart_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many oranges must Mary put back so that the average price of the pieces of fruit that she keeps is less than 75 \u00a2 ?, \"statement 2\" :How many oranges must Mary put back so that the average price of the pieces of fruit that she keeps is 45 \u00a2 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_price_of_piece_of_fruit_s1 = None\naverage_price_of_piece_of_fruit_s2 = 45\n\nif average_price_of_piece_of_fruit_s1 is None or average_price_of_piece_of_fruit_s2 is None:\n print('neutral')\n\nelif average_price_of_piece_of_fruit_s1 == average_price_of_piece_of_fruit_s2:\n print('Entailment')\n\nelif average_price_of_piece_of_fruit_s1 != average_price_of_piece_of_fruit_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 180 , calculate the dividend from Carol ' s stock ., \"statement 2\" :380 , calculate the dividend from Carol ' s stock ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dividend_from_stock_s1 = 180\ndividend_from_stock_s2 = 380\n\nif dividend_from_stock_s1 is None or dividend_from_stock_s2 is None:\n print('neutral')\n\nelif dividend_from_stock_s1 == dividend_from_stock_s2:\n print('Entailment')\n\nelif dividend_from_stock_s1 != dividend_from_stock_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Too Short 's manager David Weintraub acknowledged to CNN that Short 's breath test at the scene tested '' 0.01 above the limit in California . '', \"statement 2\" :Too Short 's breath tested '' 0.01 above the limit in California '' for alcohol , manager says, \"options: \" Entailment or neutral?", + "Output Program": [ + "short_breath_tested_s1 = 0.01\nshort_breath_tested_s2 = 0.01\n\nif short_breath_tested_s1 is None or short_breath_tested_s2 is None:\n print('neutral')\n\nelif short_breath_tested_s1 == short_breath_tested_s2:\n print('Entailment')\n\nelif short_breath_tested_s1 != short_breath_tested_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A box of books weighs 42 pounds, and each book weighs 3 pounds, \"statement 2\" :130.0 books are there in the box, \"options: \" Entailment or contradiction?", + "Output Program": [ + "pounds_book_weighs_s1 = 42*3\npounds_book_weighs_s2 = 130\n\nif pounds_book_weighs_s1 is None or pounds_book_weighs_s2 is None:\n print('neutral')\n\nelif pounds_book_weighs_s1 == pounds_book_weighs_s2:\n print('Entailment')\n\nelif pounds_book_weighs_s1 != pounds_book_weighs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 700 '' terrorists '' and their families flee Syria for Turkey , general says, \"statement 2\" :He also has said 700 people , whom he described as terrorists , and their families had fled Syrian authorities for Turkey ., \"options: \" Entailment or neutral?", + "Output Program": [ + "terrorist_s1 = 700\nterrorist_s2 = 700\n\nif terrorist_s1 is None or terrorist_s2 is None:\n print('neutral')\n\nelif terrorist_s1 == terrorist_s2:\n print('Entailment')\n\nelif terrorist_s1 != terrorist_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Victor has 15 cups if flour , 16 cups of sugar and 8 cups of milk, \"statement 2\" :Victor has less than 75 cups if flour , 16 cups of sugar and 8 cups of milk, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cups_of_flour_s1 = 15\ncups_of_flour_s2 = 75\n\nif cups_of_flour_s1 is None or cups_of_flour_s2 is None:\n print('neutral')\n\nelif cups_of_flour_s1 < cups_of_flour_s2:\n print('Entailment')\n\nelif cups_of_flour_s1 != cups_of_flour_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Josh had 142.0 pencils and he gave 31.0 pencils to Dorothy, \"statement 2\" :Josh has 111.0 pencils left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "josh_have_pencils_s1 = 142-31\njosh_have_pencils_s2 = 111\n\nif josh_have_pencils_s1 is None or josh_have_pencils_s2 is None:\n print('neutral')\n\nelif josh_have_pencils_s1 == josh_have_pencils_s2:\n print('Entailment')\n\nelif josh_have_pencils_s1 != josh_have_pencils_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are less than 65 possible combinations in which Michael is not selected , what is the value of r ?, \"statement 2\" :If there are 55 possible combinations in which Michael is not selected , what is the value of r ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "possible_combination_s1 = None\npossible_combination_s2 = 55\n\nif possible_combination_s1 is None or possible_combination_s2 is None:\n print('neutral')\n\nelif possible_combination_s1 == possible_combination_s2:\n print('Entailment')\n\nelif possible_combination_s1 != possible_combination_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Martin bought 5 packet milk at an average price ( arithmetic mean ) of 20 \u00a2, \"statement 2\" :Martin bought 7 packet milk at an average price ( arithmetic mean ) of 20 \u00a2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "packet_milk_s1 = 5\npacket_milk_s2 = 7\n\nif packet_milk_s1 is None or packet_milk_s2 is None:\n print('neutral')\n\nelif packet_milk_s1 == packet_milk_s2:\n print('Entailment')\n\nelif packet_milk_s1 != packet_milk_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Marlee has 3.0 tables for her Halloween party and each table will hold 12.0 guests, \"statement 2\" :She can invite 36.0 guests, \"options: \" Entailment or contradiction?", + "Output Program": [ + "invite_guests_s1 = 12*3\ninvite_guests_s2 = 36\n\nif invite_guests_s1 is None or invite_guests_s2 is None:\n print('neutral')\n\nelif invite_guests_s1 == invite_guests_s2:\n print('Entailment')\n\nelif invite_guests_s1 != invite_guests_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Leo gains 10 pounds , he will weigh 50 % more than his sister Kendra, \"statement 2\" :If Leo gains more than 10 pounds , he will weigh 50 % more than his sister Kendra, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "leo_gains_pounds_s1 = 10\nleo_gains_pounds_s2 = 0\n\nif leo_gains_pounds_s1 is None or leo_gains_pounds_s2 is None:\n print('neutral')\n\nelif leo_gains_pounds_s1 == leo_gains_pounds_s2:\n print('Entailment')\n\nelif leo_gains_pounds_s1 != leo_gains_pounds_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Dacid obtained 76 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained 26 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_obtained_s1 = 76+65+82+67+85\nmarks_obtained_s2 = 26+65+82+67+85\n\nif marks_obtained_s1 is None or marks_obtained_s2 is None:\n print('neutral')\n\nelif marks_obtained_s1 == marks_obtained_s2:\n print('Entailment')\n\nelif marks_obtained_s1 != marks_obtained_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 4.0 CDs fit on a shelf, \"statement 2\" :4.0 shelves are needed to hold 8.0 CDs, \"options: \" Entailment or contradiction?", + "Output Program": [ + "fit_CD_s1 = 4\nfit_CD_s2 = 8/4\n\nif fit_CD_s1 is None or fit_CD_s2 is None:\n print('neutral')\n\nelif fit_CD_s1 == fit_CD_s2:\n print('Entailment')\n\nelif fit_CD_s1 != fit_CD_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jane and Thomas are among the more than 8 people from which a committee of 4 people is to be selected, \"statement 2\" :Jane and Thomas are among the 9 people from which a committee of 4 people is to be selected, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_committee_s1 = None\npeople_committee_s2 = 9\n\nif people_committee_s1 is None or people_committee_s2 is None:\n print('neutral')\n\nelif people_committee_s1 == people_committee_s2:\n print('Entailment')\n\nelif people_committee_s1 != people_committee_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After 6.0 days of harvesting, Lewis found they had 83.0 sacks of oranges., \"statement 2\" :They harvest 18.0 sacks of oranges per day, \"options: \" Entailment or contradiction?", + "Output Program": [ + "sacks_of_oranges_per_day_s1 = 6\nsacks_of_oranges_per_day_s2 = 18\n\nif sacks_of_oranges_per_day_s1 is None or sacks_of_oranges_per_day_s2 is None:\n print('neutral')\n\nelif sacks_of_oranges_per_day_s1 == sacks_of_oranges_per_day_s2:\n print('Entailment')\n\nelif sacks_of_oranges_per_day_s1 != sacks_of_oranges_per_day_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If 6 yrs are subtracted from the present age of John & the remainder is divided by 18 , then the presentage of his grandson Anup is obtained, \"statement 2\" :If 2 yrs are subtracted from the present age of John & the remainder is divided by 18 , then the presentage of his grandson Anup is obtained, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "present_age_of_john_s1 = 6\npresent_age_of_john_s2 = 2\n\nif present_age_of_john_s1 is None or present_age_of_john_s2 is None:\n print('neutral')\n\nelif present_age_of_john_s1 == present_age_of_john_s2:\n print('Entailment')\n\nelif present_age_of_john_s1 != present_age_of_john_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jose joined him 2 months later , investing Rs, \"statement 2\" :Jose joined him less than 8 months later , investing Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "joined_month_later_s1 = 2\njoined_month_later_s2 = 8\n\nif joined_month_later_s1 is None or joined_month_later_s2 is None:\n print('neutral')\n\nelif joined_month_later_s1 < joined_month_later_s2:\n print('Entailment')\n\nelif joined_month_later_s1 != joined_month_later_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": loyd wants to fence his Square shaped land of 120 Sqft each side, \"statement 2\" :loyd wants to fence his Square shaped land of less than 720 Sqft each side, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "land_of_sqrt_s1 = 120\nland_of_sqrt_s2 = 720\n\nif land_of_sqrt_s1 is None or land_of_sqrt_s2 is None:\n print('neutral')\n\nelif land_of_sqrt_s1 < land_of_sqrt_s2:\n print('Entailment')\n\nelif land_of_sqrt_s1 != land_of_sqrt_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jerry alone cleans the entire house in more than 4 hours, \"statement 2\" :Jerry alone cleans the entire house in 6 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jerry_alone_clean_house_s1 = None\njerry_alone_clean_house_s2 = 6\n\nif jerry_alone_clean_house_s1 is None or jerry_alone_clean_house_s2 is None:\n print('neutral')\n\nelif jerry_alone_clean_house_s1 == jerry_alone_clean_house_s2:\n print('Entailment')\n\nelif jerry_alone_clean_house_s1 != jerry_alone_clean_house_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary has 9.0 yellow marbles and she gave Joan 3.0 yellow marbles, \"statement 2\" :Mary has 7.0 yellow marbles left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "yellow_marbles_left_s1 = 9-3\nyellow_marbles_left_s2 = 7\n\nif yellow_marbles_left_s1 is None or yellow_marbles_left_s2 is None:\n print('neutral')\n\nelif yellow_marbles_left_s1 == yellow_marbles_left_s2:\n print('Entailment')\n\nelif yellow_marbles_left_s1 != yellow_marbles_left_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the ratio of their ages is 7 : 9 , how old is Sandy ?, \"statement 2\" :If the ratio of their ages is 5 : 9 , how old is Sandy ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_ratio_s1 = 7/9\nage_ratio_s2 = 5/9\n\nif age_ratio_s1 is None or age_ratio_s2 is None:\n print('neutral')\n\nelif age_ratio_s1 == age_ratio_s2:\n print('Entailment')\n\nelif age_ratio_s1 != age_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Dan works alone for 4 hours and then stops , how many hours will it take Annie , working alone , to complete the job ?, \"statement 2\" :If Dan works alone for less than 7 hours and then stops , how many hours will it take Annie , working alone , to complete the job ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_dan_worked_alone_s1 = 4\nhours_dan_worked_alone_s2 = 7\n\nif hours_dan_worked_alone_s1 is None or hours_dan_worked_alone_s2 is None:\n print('neutral')\n\nelif hours_dan_worked_alone_s1 < hours_dan_worked_alone_s2:\n print('Entailment')\n\nelif hours_dan_worked_alone_s1 != hours_dan_worked_alone_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Find by how much percentage Raj \u2019 s age is more than Hema \u2019 s when Raj will be less than 30 years old ., \"statement 2\" :Find by how much percentage Raj \u2019 s age\nis more than Hema \u2019 s when Raj will be 20 years old ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "raj_years_old_s1 = None\nraj_years_old_s2 = 20\n\nif raj_years_old_s1 is None or raj_years_old_s2 is None:\n print('neutral')\n\nelif raj_years_old_s1 == raj_years_old_s2:\n print('Entailment')\n\nelif raj_years_old_s1 != raj_years_old_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Connie had 73 marbles and she gave 70.0 to Juan, \"statement 2\" :Connie has 4.0 marbles now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "connie_has_marbles_s1 = 73-70\nconnie_has_marbles_s2 = 74\n\nif connie_has_marbles_s1 is None or connie_has_marbles_s2 is None:\n print('neutral')\n\nelif connie_has_marbles_s1 == connie_has_marbles_s2:\n print('Entailment')\n\nelif connie_has_marbles_s1 != connie_has_marbles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": On the first day of her vacation , Louisa traveled 100 miles, \"statement 2\" :On the first day of her vacation , Louisa traveled less than 300 miles, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_travelled_s1 = 100\nmiles_travelled_s2 = 300\n\nif miles_travelled_s1 is None or miles_travelled_s2 is None:\n print('neutral')\n\nelif miles_travelled_s1 < miles_travelled_s2:\n print('Entailment')\n\nelif miles_travelled_s1 != miles_travelled_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After 6.0 days of harvesting, Lewis found they had 83.0 sacks of oranges., \"statement 2\" :They harvest 13.8333333333 sacks of oranges per day, \"options: \" Entailment or contradiction?", + "Output Program": [ + "x = 'sacks_of_oranges_per_day'\na = '83/6'\nb = '13.8333'\nsign_1 = '=='\nsign_2 = '!='\n\nmy_code = f'''\n{x}_s1 = {a}\n{x}_s2 = {b}\n\nif {x}_s1 is None or {x}_s2 is None:\n print('neutral')\n\nelif {x}_s1 {sign_1} {x}_s2:\n print('Entailment')\n\nelif {x}_s1 {sign_2} {x}_s2:\n print('contradiction')\n'''\n\nexec(my_code)\nprint(my_code)" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If neha is less than 70 Both Sonali and priyanka is 15 Both sadaf and tanu is 10 . how much is prinka by the same system ?, \"statement 2\" :If neha is 10\nBoth Sonali and priyanka is 15\nBoth sadaf and tanu is 10 .\nhow much is prinka by the same system ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "priyanka_by_same_system_s1 = None\npriyanka_by_same_system_s2 = 10\n\nif priyanka_by_same_system_s1 is None or priyanka_by_same_system_s2 is None:\n print('neutral')\n\nelif priyanka_by_same_system_s1 == priyanka_by_same_system_s2:\n print('Entailment')\n\nelif priyanka_by_same_system_s1 != priyanka_by_same_system_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He worked for more than 8 days before she was joined by Sandra, \"statement 2\" :He worked for 9 days before she was joined by Sandra, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_he_worked_s1 = None\ndays_he_worked_s2 = 9\n\nif days_he_worked_s1 is None or days_he_worked_s2 is None:\n print('neutral')\n\nelif days_he_worked_s1 == days_he_worked_s2:\n print('Entailment')\n\nelif days_he_worked_s1 != days_he_worked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At present , the ratio between the ages of Arun and Deepak is less than 8 : 3, \"statement 2\" :At present , the ratio between the ages of Arun and Deepak is 4 : 3, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_ratio_s1 = None\nage_ratio_s2 = 4/3\n\nif age_ratio_s1 is None or age_ratio_s2 is None:\n print('neutral')\n\nelif age_ratio_s1 == age_ratio_s2:\n print('Entailment')\n\nelif age_ratio_s1 != age_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shekar scored 76 , 65 , 82 , 62 and 85 marks in Mathematics , Science , Social studies , English and Biology respectively, \"statement 2\" :Shekar scored 46 , 65 , 82 , 62 and 85 marks in Mathematics , Science , Social studies , English and Biology respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_scored_s1 = 76+65+82+85+62\nmarks_scored_s2 = 46+65+82+85+62\n\nif marks_scored_s1 is None or marks_scored_s2 is None:\n print('neutral')\n\nelif marks_scored_s1 == marks_scored_s2:\n print('Entailment')\n\nelif marks_scored_s1 != marks_scored_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Authorities have identified 22 bodies so far , the agency reported ., \"statement 2\" :22 bodies have been identified , it says, \"options: \" Entailment or neutral?", + "Output Program": [ + "bodies_identified_s1 = 22\nbodies_identified_s2 = 22\n\nif bodies_identified_s1 is None or bodies_identified_s2 is None:\n print('neutral')\n\nelif bodies_identified_s1 == bodies_identified_s2:\n print('Entailment')\n\nelif bodies_identified_s1 != bodies_identified_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Molly ' s age in 18 years will be four times her age three years ago, \"statement 2\" :Molly ' s age in less than 58 years will be four times her age three years ago, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "molly_age_s1 = 18\nmolly_age_s2 = 58\n\nif molly_age_s1 is None or molly_age_s2 is None:\n print('neutral')\n\nelif molly_age_s1 < molly_age_s2:\n print('Entailment')\n\nelif molly_age_s1 != molly_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Amy had 4.0 music files and 21.0 video files on her flash drive, and she deleted 23.0 of the files, \"statement 2\" :0.0 files were still on her flash drive, \"options: \" Entailment or contradiction?", + "Output Program": [ + "video_files_s1 = 4+21-23\nvideo_files_s2 = 0\n\nif video_files_s1 is None or video_files_s2 is None:\n print('neutral')\n\nelif video_files_s1 == video_files_s2:\n print('Entailment')\n\nelif video_files_s1 != video_files_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Veena ranks 44 rd from the top in a class of 182, \"statement 2\" :Veena ranks less than 84 rd from the top in a class of 182, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "veena_ranks_s1 = 44\nveena_ranks_s2 = 84\n\nif veena_ranks_s1 is None or veena_ranks_s2 is None:\n print('neutral')\n\nelif veena_ranks_s1 < veena_ranks_s2:\n print('Entailment')\n\nelif veena_ranks_s1 != veena_ranks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Reeya obtained more than 45 , 67 , 76 , 82 and 85 out of 100 in different subjects , What will be the average, \"statement 2\" :Reeya obtained 65 , 67 , 76 , 82 and 85 out of 100 in different subjects , What will be the average, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_obtained_s1 = None\nmarks_obtained_s2 = 65+67+76+82+85\n\nif marks_obtained_s1 is None or marks_obtained_s2 is None:\n print('neutral')\n\nelif marks_obtained_s1 == marks_obtained_s2:\n print('Entailment')\n\nelif marks_obtained_s1 != marks_obtained_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In Kaya ' s teacher ' s desk there are 3 pink highlighters , 7 yellow highlighters , and 5 blue highlighters, \"statement 2\" :In Kaya ' s teacher ' s desk there are less than 4 pink highlighters , 7 yellow highlighters , and 5 blue highlighters, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pink_highlighters_s1 = 3\npink_highlighters_s2 = 4\n\nif pink_highlighters_s1 is None or pink_highlighters_s2 is None:\n print('neutral')\n\nelif pink_highlighters_s1 < pink_highlighters_s2:\n print('Entailment')\n\nelif pink_highlighters_s1 != pink_highlighters_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alok ordered less than 46 chapatis , 5 plates of rice , 7 plates of mixed vegetable and 6 ice - cream cups, \"statement 2\" :Alok ordered 16 chapatis , 5 plates of rice , 7 plates of mixed vegetable and 6 ice - cream cups, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "alok_ordered_chapati_s1 = None\nalok_ordered_chapati_s2 = 16\n\nif alok_ordered_chapati_s1 is None or alok_ordered_chapati_s2 is None:\n print('neutral')\n\nelif alok_ordered_chapati_s1 == alok_ordered_chapati_s2:\n print('Entailment')\n\nelif alok_ordered_chapati_s1 != alok_ordered_chapati_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": On the first day of her vacation , Louisa traveled 250 miles, \"statement 2\" :On the first day of her vacation , Louisa traveled more than 250 miles, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_louis_travels_s1 = 250\ndistance_louis_travels_s2 = 0\n\nif distance_louis_travels_s1 is None or distance_louis_travels_s2 is None:\n print('neutral')\n\nelif distance_louis_travels_s1 == distance_louis_travels_s2:\n print('Entailment')\n\nelif distance_louis_travels_s1 != distance_louis_travels_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ajay bought 15 kg of dal at the rate of Rs 14.50 per kg and 10 kg at the rate of Rs 13 per kg, \"statement 2\" :Ajay bought less than 15 kg of dal at the rate of Rs 14.50 per kg and 10 kg at the rate of Rs 13 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "quantity_of_dal_ajay_bought_s1 = 15\nquantity_of_dal_ajay_bought_s2 = 0\n\nif quantity_of_dal_ajay_bought_s1 is None or quantity_of_dal_ajay_bought_s2 is None:\n print('neutral')\n\nelif quantity_of_dal_ajay_bought_s1 == quantity_of_dal_ajay_bought_s2:\n print('Entailment')\n\nelif quantity_of_dal_ajay_bought_s1 != quantity_of_dal_ajay_bought_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 58.0 geese and 37.0 ducks in the marsh., \"statement 2\" :21.0 more geese are there than ducks, \"options: \" Entailment or contradiction?", + "Output Program": [ + "geese_than_ducks_s1 = 58-37\ngeese_than_ducks_s2 = 21\n\nif geese_than_ducks_s1 is None or geese_than_ducks_s2 is None:\n print('neutral')\n\nelif geese_than_ducks_s1 == geese_than_ducks_s2:\n print('Entailment')\n\nelif geese_than_ducks_s1 != geese_than_ducks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tim has 350 pounds of cement in 100 , 50 , and 25 pound bags, \"statement 2\" :Tim has less than 350 pounds of cement in 100 , 50 , and 25 pound bags, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "quantity_of_cement_tim_has_s1 = 350\nquantity_of_cement_tim_has_s2 = 0\n\nif quantity_of_cement_tim_has_s1 is None or quantity_of_cement_tim_has_s2 is None:\n print('neutral')\n\nelif quantity_of_cement_tim_has_s1 == quantity_of_cement_tim_has_s2:\n print('Entailment')\n\nelif quantity_of_cement_tim_has_s1 != quantity_of_cement_tim_has_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many different combinations of 2 passengers can be formed from John ' s 6 friends ?, \"statement 2\" :How many different combinations of 5 passengers can be formed from John ' s 6 friends ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_passengers_s1 = 2\nnumber_of_passengers_s2 = 5\n\nif number_of_passengers_s1 is None or number_of_passengers_s2 is None:\n print('neutral')\n\nelif number_of_passengers_s1 == number_of_passengers_s2:\n print('Entailment')\n\nelif number_of_passengers_s1 != number_of_passengers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He worked for 9 days before she was joined by Sandra, \"statement 2\" :He worked for more than 9 days before she was joined by Sandra, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_passengers_s1 = 2\nnumber_of_passengers_s2 = 5\n\nif number_of_passengers_s1 is None or number_of_passengers_s2 is None:\n print('neutral')\n\nelif number_of_passengers_s1 == number_of_passengers_s2:\n print('Entailment')\n\nelif number_of_passengers_s1 != number_of_passengers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jeff has 252 ounces of peanut butter in 16 , 28, \"statement 2\" :Jeff has more than 152 ounces of peanut butter in 16 , 28, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ounces_of_peanut_butter__s1 = 252\nounces_of_peanut_butter__s2 = 152\n\nif ounces_of_peanut_butter__s1 is None or ounces_of_peanut_butter__s2 is None:\n print('neutral')\n\nelif ounces_of_peanut_butter__s1 > ounces_of_peanut_butter__s2:\n print('Entailment')\n\nelif ounces_of_peanut_butter__s1 != ounces_of_peanut_butter__s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are 360 baseball fans in the town , each of whom is a fan of exactly one of those three teams , how many NY Mets fans are there in this town ?, \"statement 2\" :If there are less than 560 baseball fans in the town , each of whom is a fan of exactly one of those three teams , how many NY Mets fans are there in this town ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_baseball_fans_s1 = 360\ntotal_baseball_fans_s2 = 560\n\nif total_baseball_fans_s1 is None or total_baseball_fans_s2 is None:\n print('neutral')\n\nelif total_baseball_fans_s1 < total_baseball_fans_s2:\n print('Entailment')\n\nelif total_baseball_fans_s1 != total_baseball_fans_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": By how much must Rebecca ' s annual income increase so that it constitutes 55 % of Rebecca and Jimmy ' s combined income ?, \"statement 2\" :By how much must Rebecca ' s annual income increase so that it constitutes more than 45 % of Rebecca and Jimmy ' s combined income ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "annual_income_of_rebeeca_to_increase_s1 = 55\nannual_income_of_rebeeca_to_increase_s2 = 45\n\nif annual_income_of_rebeeca_to_increase_s1 is None or annual_income_of_rebeeca_to_increase_s2 is None:\n print('neutral')\n\nelif annual_income_of_rebeeca_to_increase_s1 > annual_income_of_rebeeca_to_increase_s2:\n print('Entailment')\n\nelif annual_income_of_rebeeca_to_increase_s1 != annual_income_of_rebeeca_to_increase_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many possible ways can 2 girls ( Rebecca , Kate , Ashley ) go on a date with 3 boys ( Peter , Kyle , Sam ) ?, \"statement 2\" :How many possible ways can less than 6 girls ( Rebecca , Kate , Ashley ) go on a date with 3 boys ( Peter , Kyle , Sam ) ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_girls_s1 = 2\nnumber_of_girls_s2 = 6\n\nif number_of_girls_s1 is None or number_of_girls_s2 is None:\n print('neutral')\n\nelif number_of_girls_s1 < number_of_girls_s2:\n print('Entailment')\n\nelif number_of_girls_s1 != number_of_girls_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Thirty NTC fighters sustained injuries in the push , Ghuleak said ., \"statement 2\" :NTC fighters suffer 30 injuries in the offensive, \"options: \" Entailment or neutral?", + "Output Program": [ + "fighters_sustained_s1 = 30\nfighters_sustained_s2 = 30\n\nif fighters_sustained_s1 is None or fighters_sustained_s2 is None:\n print('neutral')\n\nelif fighters_sustained_s1 == fighters_sustained_s2:\n print('Entailment')\n\nelif fighters_sustained_s1 != fighters_sustained_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 6522.0 liters of oil, minus 5165.0 liters of oil, leaked into the water from a broken oil pipe in the sea., \"statement 2\" :1358.0 liters of oil were leaked into the water, \"options: \" Entailment or contradiction?", + "Output Program": [ + "quantity_of_oil_s1 = 6522-5165\nquantity_of_oil_s2 = 1358\n\nif quantity_of_oil_s1 is None or quantity_of_oil_s2 is None:\n print('neutral')\n\nelif quantity_of_oil_s1 == quantity_of_oil_s2:\n print('Entailment')\n\nelif quantity_of_oil_s1 != quantity_of_oil_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": less than 7535 find the share of Sravan ., \"statement 2\" :5535 find the share of Sravan ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "share_of_sravan_s1 = None\nshare_of_sravan_s2 = 5535\n\nif share_of_sravan_s1 is None or share_of_sravan_s2 is None:\n print('neutral')\n\nelif share_of_sravan_s1 == share_of_sravan_s2:\n print('Entailment')\n\nelif share_of_sravan_s1 != share_of_sravan_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joan has 8.0 orange balloons and her friend gives her 2.0 more , \"statement 2\" :Joan has 10.0 orange balloons now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "orange_ballons_joans_has_s1 = 8+2\norange_ballons_joans_has_s2 = 10\n\nif orange_ballons_joans_has_s1 is None or orange_ballons_joans_has_s2 is None:\n print('neutral')\n\nelif orange_ballons_joans_has_s1 == orange_ballons_joans_has_s2:\n print('Entailment')\n\nelif orange_ballons_joans_has_s1 != orange_ballons_joans_has_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ticket sales for maiden passenger trip between Singapore and Sydney Top ticket price : US$ 100,380 The bargain : US$ 560 for a single economy seat E-mail to a friend, \"statement 2\" :One passenger paid $ 100,000 for the first Singapore to Sydney trip, \"options: \" Entailment or neutral?", + "Output Program": [ + "passengers_paid_singapore_to_singapore_s1 = None\npassengers_paid_singapore_to_singapore_s2 = 100000\n\nif passengers_paid_singapore_to_singapore_s1 is None or passengers_paid_singapore_to_singapore_s2 is None:\n print('neutral')\n\nelif passengers_paid_singapore_to_singapore_s1 == passengers_paid_singapore_to_singapore_s2:\n print('Entailment')\n\nelif passengers_paid_singapore_to_singapore_s1 != passengers_paid_singapore_to_singapore_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jason picked 46.0 pears , Keith picked 47.0 pears , and Mike picked 12.0 pears from the pear tree ., \"statement 2\" :105.0 pears were picked in total, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_pears_s1 = 46+47+12\ntotal_pears_s2 = 105\n\nif total_pears_s1 is None or total_pears_s2 is None:\n print('neutral')\n\nelif total_pears_s1 == total_pears_s2:\n print('Entailment')\n\nelif total_pears_s1 != total_pears_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 15 stations between Hyderabad and Bangalore, \"statement 2\" :There are less than 45 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_stations_between_hyderabad_and_banglore_s1 = 15\ntotal_stations_between_hyderabad_and_banglore_s2 = 45\n\nif total_stations_between_hyderabad_and_banglore_s1 is None or total_stations_between_hyderabad_and_banglore_s2 is None:\n print('neutral')\n\nelif total_stations_between_hyderabad_and_banglore_s1 < total_stations_between_hyderabad_and_banglore_s2:\n print('Entailment')\n\nelif total_stations_between_hyderabad_and_banglore_s1 != total_stations_between_hyderabad_and_banglore_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Adam sat with his friends in the Chinnaswamy stadium at Madurai to watch the 100 metres running race organized by the Asian athletics Association, \"statement 2\" :Adam sat with his friends in the Chinnaswamy stadium at Madurai to watch the less than 700 metres running race organized by the Asian athletics Association, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "length_of_race_s1 = 100\nlength_of_race_s2 = 700\n\nif length_of_race_s1 is None or length_of_race_s2 is None:\n print('neutral')\n\nelif length_of_race_s1 < length_of_race_s2:\n print('Entailment')\n\nelif length_of_race_s1 != length_of_race_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": This has left more than 1 million people in the area in peril , the United Nations food agency said ., \"statement 2\" :The United Nations say more than 1 million people going hungry, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_in_area_s1 = 1\npeople_in_area_s2 = 1\n\nif people_in_area_s1 is None or people_in_area_s2 is None:\n print('neutral')\n\nelif people_in_area_s1 == people_in_area_s2:\n print('Entailment')\n\nelif people_in_area_s1 != people_in_area_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rose has 9.0 apples and 12.0 erasers, and she shares the apples among 3.0 friends, \"statement 2\" :Each friend got 7.0 apples, \"options: \" Entailment or contradiction?", + "Output Program": [ + "quantity_of_apples_rose_s1 = 9-3\nquantity_of_apples_rose_s2 = 7\n\nif quantity_of_apples_rose_s1 is None or quantity_of_apples_rose_s2 is None:\n print('neutral')\n\nelif quantity_of_apples_rose_s1 == quantity_of_apples_rose_s2:\n print('Entailment')\n\nelif quantity_of_apples_rose_s1 != quantity_of_apples_rose_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Speed of Arjun is less than 40 m / s and that of Bhishma is 20 m / s, \"statement 2\" :Speed of Arjun is 30 m / s and that of Bhishma is 20 m / s, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_of_arjun_s1 = None\nspeed_of_arjun_s2 = 30\n\nif speed_of_arjun_s1 is None or speed_of_arjun_s2 is None:\n print('neutral')\n\nelif speed_of_arjun_s1 == speed_of_arjun_s2:\n print('Entailment')\n\nelif speed_of_arjun_s1 != speed_of_arjun_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Another survey of 130 people in the town of Angie found that 60 % preferred Brand A, \"statement 2\" :Another survey of more than 130 people in the town of Angie found that 60 % preferred Brand A, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "quantity_of_apples_rose_has_s1 = 9-3\nquantity_of_apples_rose_has_s2 = 7\n\nif quantity_of_apples_rose_has_s1 is None or quantity_of_apples_rose_has_s2 is None:\n print('neutral')\n\nelif quantity_of_apples_rose_has_s1 == quantity_of_apples_rose_has_s2:\n print('Entailment')\n\nelif quantity_of_apples_rose_has_s1 != quantity_of_apples_rose_has_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mark sold 11 boxes less than n and Ann sold 2 boxes less than n, \"statement 2\" :Mark sold less than 81 boxes less than n and Ann sold 2 boxes less than n, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boxes_mark_sold_s1 = 11\nboxes_mark_sold_s2 = 81\n\nif boxes_mark_sold_s1 is None or boxes_mark_sold_s2 is None:\n print('neutral')\n\nelif boxes_mark_sold_s1 < boxes_mark_sold_s2:\n print('Entailment')\n\nelif boxes_mark_sold_s1 != boxes_mark_sold_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Raju has scored 250 marks and was declared failed by 22 marks, \"statement 2\" :Raju has scored less than 650 marks and was declared failed by 22 marks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_raju_scored_s1 = 250\nmarks_raju_scored_s2 = 650\n\nif marks_raju_scored_s1 is None or marks_raju_scored_s2 is None:\n print('neutral')\n\nelif marks_raju_scored_s1 < marks_raju_scored_s2:\n print('Entailment')\n\nelif marks_raju_scored_s1 != marks_raju_scored_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jerry \u2019 s average ( arithmetic mean ) score on the first less than 8 of 4 tests is 85, \"statement 2\" :Jerry \u2019 s average ( arithmetic mean ) score on the first 3 of 4 tests is 85, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_score_s1 = None\naverage_score_s2 = 85\n\nif average_score_s1 is None or average_score_s2 is None:\n print('neutral')\n\nelif average_score_s1 == average_score_s2:\n print('Entailment')\n\nelif average_score_s1 != average_score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is less than 7 : 3 , After 2 Years Rahul age will be 26 years, \"statement 2\" :Ratio between Rahul and Deepak is 4 : 3 , After 2 Years Rahul age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_between_rahul_and_deepak_s1 = None\nratio_between_rahul_and_deepak_s2 = 4/3\n\nif ratio_between_rahul_and_deepak_s1 is None or ratio_between_rahul_and_deepak_s2 is None:\n print('neutral')\n\nelif ratio_between_rahul_and_deepak_s1 == ratio_between_rahul_and_deepak_s2:\n print('Entailment')\n\nelif ratio_between_rahul_and_deepak_s1 != ratio_between_rahul_and_deepak_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are less than 560 baseball fans in the town , each of whom is a fan of exactly one of those three teams , how many NY Mets fans are there in this town ?, \"statement 2\" :If there are 360 baseball fans in the town , each of whom is a fan of exactly one of those three teams , how many NY Mets fans are there in this town ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "baseball_fan_in_town_s1 = None\nbaseball_fan_in_town_s2 = 360\n\nif baseball_fan_in_town_s1 is None or baseball_fan_in_town_s2 is None:\n print('neutral')\n\nelif baseball_fan_in_town_s1 == baseball_fan_in_town_s2:\n print('Entailment')\n\nelif baseball_fan_in_town_s1 != baseball_fan_in_town_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are 10 Pens , the number of Markers in Jenna ' s desk is :, \"statement 2\" :If there are 80 Pens , the number of Markers in Jenna ' s desk is :, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_pens_s1 = 10\nnumber_of_pens_s2 = 80\n\nif number_of_pens_s1 is None or number_of_pens_s2 is None:\n print('neutral')\n\nelif number_of_pens_s1 == number_of_pens_s2:\n print('Entailment')\n\nelif number_of_pens_s1 != number_of_pens_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Suresh can complete a job in 15 hours, \"statement 2\" :Suresh can complete a job in less than 35 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "time_taken_by_suresh_s1 = 15\ntime_taken_by_suresh_s2 = 35\n\nif time_taken_by_suresh_s1 is None or time_taken_by_suresh_s2 is None:\n print('neutral')\n\nelif time_taken_by_suresh_s1 < time_taken_by_suresh_s2:\n print('Entailment')\n\nelif time_taken_by_suresh_s1 != time_taken_by_suresh_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary is 8 years younger than Albert, \"statement 2\" :Mary is more than 8 years younger than Albert, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_years_mary_is_younger_than_albert_s1 = 8\nnumber_of_years_mary_is_younger_than_albert_s2 = 0\n\nif number_of_years_mary_is_younger_than_albert_s1 is None or number_of_years_mary_is_younger_than_albert_s2 is None:\n print('neutral')\n\nelif number_of_years_mary_is_younger_than_albert_s1 == number_of_years_mary_is_younger_than_albert_s2:\n print('Entailment')\n\nelif number_of_years_mary_is_younger_than_albert_s1 != number_of_years_mary_is_younger_than_albert_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is 2 : 3 ?, \"statement 2\" :What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is 5 : 3 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_of_speed_of_murali_s1 = 2/3\nratio_of_speed_of_murali_s2 = 5/3\n\nif ratio_of_speed_of_murali_s1 is None or ratio_of_speed_of_murali_s2 is None:\n print('neutral')\n\nelif ratio_of_speed_of_murali_s1 == ratio_of_speed_of_murali_s2:\n print('Entailment')\n\nelif ratio_of_speed_of_murali_s1 != ratio_of_speed_of_murali_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Billy has 12 apples, \"statement 2\" :Billy has less than 72 apples, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "apples_billy_has_s1 = 12\napples_billy_has_s2 = 72\n\nif apples_billy_has_s1 is None or apples_billy_has_s2 is None:\n print('neutral')\n\nelif apples_billy_has_s1 < apples_billy_has_s2:\n print('Entailment')\n\nelif apples_billy_has_s1 != apples_billy_has_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary works in a restaurant a maximum of more than 10 hours, \"statement 2\" :Mary works in a restaurant a maximum of 60 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_mary_works_s1 = None\nhours_mary_works_s2 = 60\n\nif hours_mary_works_s1 is None or hours_mary_works_s2 is None:\n print('neutral')\n\nelif hours_mary_works_s1 == hours_mary_works_s2:\n print('Entailment')\n\nelif hours_mary_works_s1 != hours_mary_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 8 % people of a village in Sri Lanka died by bombardment , 15 % of the remainder left the village on account of fear, \"statement 2\" :more than 4 % people of a village in Sri Lanka died by bombardment , 15 % of the remainder left the village on account of fear, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_of_people_dies_by_bombardment_s1 = 8\namount_of_people_dies_by_bombardment_s2 = 4\n\nif amount_of_people_dies_by_bombardment_s1 is None or amount_of_people_dies_by_bombardment_s2 is None:\n print('neutral')\n\nelif amount_of_people_dies_by_bombardment_s1 > amount_of_people_dies_by_bombardment_s2:\n print('Entailment')\n\nelif amount_of_people_dies_by_bombardment_s1 != amount_of_people_dies_by_bombardment_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is less than 6 : 2 , After 10 Years Rahul age will be 26 years, \"statement 2\" :Ratio between Rahul and Deepak is 4 : 2 , After 10 Years Rahul age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_between_rahul_and_deepak_s1 = None\nratio_between_rahul_and_deepak_s2 = 4/2\n\nif ratio_between_rahul_and_deepak_s1 is None or ratio_between_rahul_and_deepak_s2 is None:\n print('neutral')\n\nelif ratio_between_rahul_and_deepak_s1 == ratio_between_rahul_and_deepak_s2:\n print('Entailment')\n\nelif ratio_between_rahul_and_deepak_s1 != ratio_between_rahul_and_deepak_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill works as a waitress at the local diner where she earns an hourly wage of $ 4.00 per hour and a standard tip rate of 15 % of the cost of the orders she serves, \"statement 2\" :Jill works as a waitress at the local diner where she earns an hourly wage of $ 4.00 per hour and a standard tip rate of less than 45 % of the cost of the orders she serves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rate_of_tip_s1 = 15\nrate_of_tip_s2 = 45\n\nif rate_of_tip_s1 is None or rate_of_tip_s2 is None:\n print('neutral')\n\nelif rate_of_tip_s1 < rate_of_tip_s2:\n print('Entailment')\n\nelif rate_of_tip_s1 != rate_of_tip_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Sanoop returned less than 6 t - shirts to the retailer , and the average price of the remaining t - shirts was Rs, \"statement 2\" :If Sanoop returned 3 t - shirts to the retailer , and the average price of the remaining t - shirts was Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sanoop_returned_tshirts_s1 = None\nsanoop_returned_tshirts_s2 = 3\n\nif sanoop_returned_tshirts_s1 is None or sanoop_returned_tshirts_s2 is None:\n print('neutral')\n\nelif sanoop_returned_tshirts_s1 == sanoop_returned_tshirts_s2:\n print('Entailment')\n\nelif sanoop_returned_tshirts_s1 != sanoop_returned_tshirts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Excluding those items , the company reported a net income of 79 cents per share , handily beating the estimate of 72 cents per share carried by analysts surveyed by Thomson First Call ., \"statement 2\" :Analysts surveyed by Thomson First call were expecting earnings of 72 cents a share ., \"options: \" Entailment or neutral?", + "Output Program": [ + "expected_earnings_s1 = 72\nexpected_earnings_s2 = 72\n\nif expected_earnings_s1 is None or expected_earnings_s2 is None:\n print('neutral')\n\nelif expected_earnings_s1 == expected_earnings_s2:\n print('Entailment')\n\nelif expected_earnings_s1 != expected_earnings_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dardick tried to conceive via IVF six times and seriously considered adoption , but at 51 , she was n't ready to let go of her desire to have a baby ., \"statement 2\" :Florida woman was able to have her miracle baby at 51, \"options: \" Entailment or neutral?", + "Output Program": [ + "age_having_miracle_baby_s1 = None\nage_having_miracle_baby_s2 = 51\n\nif age_having_miracle_baby_s1 is None or age_having_miracle_baby_s2 is None:\n print('neutral')\n\nelif age_having_miracle_baby_s1 == age_having_miracle_baby_s2:\n print('Entailment')\n\nelif age_having_miracle_baby_s1 != age_having_miracle_baby_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": For dinner , Sue ate less than 460 grams of fruit which was five times as much fruit as she ate for lunch , and three times as much fruit as she ate for breakfast, \"statement 2\" :For dinner , Sue ate 360 grams of fruit which was five times as much fruit as she ate for lunch , and three times as much fruit as she ate for breakfast, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "grams_of_fruit_s1 = None\ngrams_of_fruit_s2 = 360\n\nif grams_of_fruit_s1 is None or grams_of_fruit_s2 is None:\n print('neutral')\n\nelif grams_of_fruit_s1 == grams_of_fruit_s2:\n print('Entailment')\n\nelif grams_of_fruit_s1 != grams_of_fruit_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Caleb spends $ 64.50 on less than 80 hamburgers for the marching band, \"statement 2\" :Caleb spends $ 64.50 on 50 hamburgers for the marching band, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hamburgers_s1 = None\nhamburgers_s2 = 50\n\nif hamburgers_s1 is None or hamburgers_s2 is None:\n print('neutral')\n\nelif hamburgers_s1 == hamburgers_s2:\n print('Entailment')\n\nelif hamburgers_s1 != hamburgers_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If 61 people have visited both Iceland and Norway , how many people have visited neither country ?, \"statement 2\" :If more than 61 people have visited both Iceland and Norway , how many people have visited neither country ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_people_has_visited_iceland_and_norway_s1 = 61\nnumber_of_people_has_visited_iceland_and_norway_s2 = 0\n\nif number_of_people_has_visited_iceland_and_norway_s1 is None or number_of_people_has_visited_iceland_and_norway_s2 is None:\n print('neutral')\n\nelif number_of_people_has_visited_iceland_and_norway_s1 == number_of_people_has_visited_iceland_and_norway_s2:\n print('Entailment')\n\nelif number_of_people_has_visited_iceland_and_norway_s1 != number_of_people_has_visited_iceland_and_norway_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are 55 possible combinations in which Michael is not selected , what is the value of e ?, \"statement 2\" :If there are less than 55 possible combinations in which Michael is not selected , what is the value of e ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_possible_combinations_s1 = 55\ntotal_possible_combinations_s2 = 0\n\nif total_possible_combinations_s1 is None or total_possible_combinations_s2 is None:\n print('neutral')\n\nelif total_possible_combinations_s1 == total_possible_combinations_s2:\n print('Entailment')\n\nelif total_possible_combinations_s1 != total_possible_combinations_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": '' We call on Iranian authorities to immediately explain why Jason Rezaian , Yeganeh Salehi , and two other journalists have been detained , and we call for their immediate release , '' said Sherif Mansour , its Middle East and North Africa program coordinator ., \"statement 2\" :Iranian official says Jason Rezaian and Yeganeh Salehi are among three journalists held, \"options: \" Entailment or neutral?", + "Output Program": [ + "journalist_held_s1 = None\njournalist_held_s2 = 3\n\nif journalist_held_s1 is None or journalist_held_s2 is None:\n print('neutral')\n\nelif journalist_held_s1 == journalist_held_s2:\n print('Entailment')\n\nelif journalist_held_s1 != journalist_held_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": It added that 80 per cent of broadband lines in the EU had download speeds of two mbs or greater ., \"statement 2\" :European Union : 80 per cent of broadband lines in EU have download speeds of two mbs-plus, \"options: \" Entailment or neutral?", + "Output Program": [ + "expected_earnings_s1 = 72\nexpected_earnings_s2 = 72\n\nif expected_earnings_s1 is None or expected_earnings_s2 is None:\n print('neutral')\n\nelif expected_earnings_s1 == expected_earnings_s2:\n print('Entailment')\n\nelif expected_earnings_s1 != expected_earnings_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": While Kiran playing all but less than 8 got destroyed, \"statement 2\" :While Kiran playing all but 3 got destroyed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "playing_all_got_destroyed_s1 = None\nplaying_all_got_destroyed_s2 = 3\n\nif playing_all_got_destroyed_s1 is None or playing_all_got_destroyed_s2 is None:\n print('neutral')\n\nelif playing_all_got_destroyed_s1 == playing_all_got_destroyed_s2:\n print('Entailment')\n\nelif playing_all_got_destroyed_s1 != playing_all_got_destroyed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Kishore saved 10 % of his monthly salary, \"statement 2\" :Kishore saved 40 % of his monthly salary, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "percentage_of_salary_kishor_saved_s1 = 10\npercentage_of_salary_kishor_saved_s2 = 40\n\nif percentage_of_salary_kishor_saved_s1 is None or percentage_of_salary_kishor_saved_s2 is None:\n print('neutral')\n\nelif percentage_of_salary_kishor_saved_s1 == percentage_of_salary_kishor_saved_s2:\n print('Entailment')\n\nelif percentage_of_salary_kishor_saved_s1 != percentage_of_salary_kishor_saved_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": less than 8250 , what is Ben ' s capital ?, \"statement 2\" :1250 , what is Ben ' s capital ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bens_capital_s1 = None\nbens_capital_s2 = 1250\n\nif bens_capital_s1 is None or bens_capital_s2 is None:\n print('neutral')\n\nelif bens_capital_s1 == bens_capital_s2:\n print('Entailment')\n\nelif bens_capital_s1 != bens_capital_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jasmine has a toaster with two slots that toasts one side of each piece of bread at a time , and it takes one minute to do so .\nIf she wants to make 3 pieces of toast , what is the least amount of time she needs to toast them on both sides ?, \"statement 2\" :Jasmine has a toaster with two slots that toasts one side of each piece of bread at a time , and it takes one minute to do so . If she wants to make less than 8 pieces of toast , what is the least amount of time she needs to toast them on both sides ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pieces_of_toast_she_wants_to_make_s1 = 3\npieces_of_toast_she_wants_to_make_s2 = 8\n\nif pieces_of_toast_she_wants_to_make_s1 is None or pieces_of_toast_she_wants_to_make_s2 is None:\n print('neutral')\n\nelif pieces_of_toast_she_wants_to_make_s1 < pieces_of_toast_she_wants_to_make_s2:\n print('Entailment')\n\nelif pieces_of_toast_she_wants_to_make_s1 != pieces_of_toast_she_wants_to_make_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": By how much must Rebecca ' s annual income increase so that it constitutes 50 % of Rebecca and Jimmy ' s combined income ?, \"statement 2\" :By how much must Rebecca ' s annual income increase so that it constitutes less than 50 % of Rebecca and Jimmy ' s combined income ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "percentage_of_salary_to_be_increased_s1 = 50\npercentage_of_salary_to_be_increased_s2 = 0\n\nif percentage_of_salary_to_be_increased_s1 is None or percentage_of_salary_to_be_increased_s2 is None:\n print('neutral')\n\nelif percentage_of_salary_to_be_increased_s1 == percentage_of_salary_to_be_increased_s2:\n print('Entailment')\n\nelif percentage_of_salary_to_be_increased_s1 != percentage_of_salary_to_be_increased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Adam spent 1 / 6 of his lifetime in adolescence, \"statement 2\" :Adam spent less than 6 / 6 of his lifetime in adolescence, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "time_spent_in_adolescence_s1 = 1/6\ntime_spent_in_adolescence_s2 = 6/6\n\nif time_spent_in_adolescence_s1 is None or time_spent_in_adolescence_s2 is None:\n print('neutral')\n\nelif time_spent_in_adolescence_s1 < time_spent_in_adolescence_s2:\n print('Entailment')\n\nelif time_spent_in_adolescence_s1 != time_spent_in_adolescence_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alice deposited Rs 2 million in bank at 4 % simple interest per year, \"statement 2\" :Alice deposited Rs 6 million in bank at 4 % simple interest per year, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "percentage_of_salary_to_be_increased_s1 = 50\npercentage_of_salary_to_be_increased_s2 = 0\n\nif percentage_of_salary_to_be_increased_s1 is None or percentage_of_salary_to_be_increased_s2 is None:\n print('neutral')\n\nelif percentage_of_salary_to_be_increased_s1 == percentage_of_salary_to_be_increased_s2:\n print('Entailment')\n\nelif percentage_of_salary_to_be_increased_s1 != percentage_of_salary_to_be_increased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mark has 13.0 trees in his backyard, and he plants 12.0 more, \"statement 2\" :He will have 25.0 trees , \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_trees_marks_has_s1 = 13+12\ntotal_trees_marks_has_s2 = 25\n\nif total_trees_marks_has_s1 is None or total_trees_marks_has_s2 is None:\n print('neutral')\n\nelif total_trees_marks_has_s1 == total_trees_marks_has_s2:\n print('Entailment')\n\nelif total_trees_marks_has_s1 != total_trees_marks_has_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After 30 minutes , Pat stops to stretch, \"statement 2\" :After less than 50 minutes , Pat stops to stretch, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "time_after_pat_stops_to_search_s1 = 30\ntime_after_pat_stops_to_search_s2 = 50\n\nif time_after_pat_stops_to_search_s1 is None or time_after_pat_stops_to_search_s2 is None:\n print('neutral')\n\nelif time_after_pat_stops_to_search_s1 < time_after_pat_stops_to_search_s2:\n print('Entailment')\n\nelif time_after_pat_stops_to_search_s1 != time_after_pat_stops_to_search_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He works at it for less than 30 days and then Rajesh finished it in 30 days, \"statement 2\" :He works at it for 20 days and then Rajesh finished it in 30 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_worked_s1 = None\ndays_worked_s2 = 20\n\nif days_worked_s1 is None or days_worked_s2 is None:\n print('neutral')\n\nelif days_worked_s1 == days_worked_s2:\n print('Entailment')\n\nelif days_worked_s1 != days_worked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If 36 of the photographs in the exhibition were taken by Octavia , how many photographs were either framed by Jack or taken by Octavia ?, \"statement 2\" :If less than 86 of the photographs in the exhibition were taken by Octavia , how many photographs were either framed by Jack or taken by Octavia ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "photographs_taken_s1 = 36\nphotographs_taken_s2 = 86\n\nif photographs_taken_s1 is None or photographs_taken_s2 is None:\n print('neutral')\n\nelif photographs_taken_s1 < photographs_taken_s2:\n print('Entailment')\n\nelif photographs_taken_s1 != photographs_taken_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": One hour after Yolanda started walking from X to Y , a distance of less than 77 miles , Bob started walking along the same road from Y to X, \"statement 2\" :One hour after Yolanda started walking from X to Y , a distance of 17 miles , Bob started walking along the same road from Y to X, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_in_miles_s1 = None\ndistance_in_miles_s2 = 17\n\nif distance_in_miles_s1 is None or distance_in_miles_s2 is None:\n print('neutral')\n\nelif distance_in_miles_s1 == distance_in_miles_s2:\n print('Entailment')\n\nelif distance_in_miles_s1 != distance_in_miles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A candy store has 6.0 boxes of chocolates and each box has 500.0 pieces, \"statement 2\" :3000.0 pieces are there altogether in the boxes, \"options: \" Entailment or contradiction?", + "Output Program": [ + "peices_of_choclate_s1 = 6*500\npeices_of_choclate_s2 = 3000\n\nif peices_of_choclate_s1 is None or peices_of_choclate_s2 is None:\n print('neutral')\n\nelif peices_of_choclate_s1 == peices_of_choclate_s2:\n print('Entailment')\n\nelif peices_of_choclate_s1 != peices_of_choclate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The number of hours that Pat , a resident of Town X , watched television last week was between less than 5 and 2 standard deviations below the mean, \"statement 2\" :The number of hours that Pat , a resident of Town X , watched television last week was between 1 and 2 standard deviations below the mean, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "watched_television_s1 = None\nwatched_television_s2 = 1-2\n\nif watched_television_s1 is None or watched_television_s2 is None:\n print('neutral')\n\nelif watched_television_s1 == watched_television_s2:\n print('Entailment')\n\nelif watched_television_s1 != watched_television_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sacha runs at a constant speed of 8 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"statement 2\" :Sacha runs at a constant speed of 5 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_of_sacha_s1 = 8\nspeed_of_sacha_s2 = 5\n\nif speed_of_sacha_s1 is None or speed_of_sacha_s2 is None:\n print('neutral')\n\nelif speed_of_sacha_s1 == speed_of_sacha_s2:\n print('Entailment')\n\nelif speed_of_sacha_s1 != speed_of_sacha_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill is dividing her less than 44 - person class into two teams of equal size for a basketball game, \"statement 2\" :Jill is dividing her 14 - person class into two teams of equal size for a basketball game, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dividing_person_class_in_two_teams_s1 = None\ndividing_person_class_in_two_teams_s2 = 14\n\nif dividing_person_class_in_two_teams_s1 is None or dividing_person_class_in_two_teams_s2 is None:\n print('neutral')\n\nelif dividing_person_class_in_two_teams_s1 == dividing_person_class_in_two_teams_s2:\n print('Entailment')\n\nelif dividing_person_class_in_two_teams_s1 != dividing_person_class_in_two_teams_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Vijay bought 160 shirts at the rate of Rs, \"statement 2\" :Vijay bought less than 660 shirts at the rate of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_shirts_vijay_bought_s1 = 160\nnumber_of_shirts_vijay_bought_s2 = 660\n\nif number_of_shirts_vijay_bought_s1 is None or number_of_shirts_vijay_bought_s2 is None:\n print('neutral')\n\nelif number_of_shirts_vijay_bought_s1 < number_of_shirts_vijay_bought_s2:\n print('Entailment')\n\nelif number_of_shirts_vijay_bought_s1 != number_of_shirts_vijay_bought_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Dana gives her parents less than 3 % of that amount back each month , how much will she still owe her parents after three years of college ?, \"statement 2\" :If Dana gives her parents 2 % of that amount back each month , how much will she still owe her parents after three years of college ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_back_each_month_s1 = None\namount_back_each_month_s2 = 2\n\nif amount_back_each_month_s1 is None or amount_back_each_month_s2 is None:\n print('neutral')\n\nelif amount_back_each_month_s1 == amount_back_each_month_s2:\n print('Entailment')\n\nelif amount_back_each_month_s1 != amount_back_each_month_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": While driving from City A to City B , Bob drives at a constant speed of 40 miles per hour, \"statement 2\" :While driving from City A to City B , Bob drives at a constant speed of less than 70 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "driving_speed_s1 = 40\ndriving_speed_s2 = 70\n\nif driving_speed_s1 is None or driving_speed_s2 is None:\n print('neutral')\n\nelif driving_speed_s1 < driving_speed_s2:\n print('Entailment')\n\nelif driving_speed_s1 != driving_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": It is outstripped only by Denmark , the Netherlands , Belgium , Sweden , Finland and France , and thus ranks 7th in the 25-member European Union in terms of broadband Internet penetration ., \"statement 2\" :12 members of the European Union use the Euro instead of their own national currencies ., \"options: \" Entailment or neutral?", + "Output Program": [ + "members_in_european_union_s1 = None\nmembers_in_european_union_s2 = 12\n\nif members_in_european_union_s1 is None or members_in_european_union_s2 is None:\n print('neutral')\n\nelif members_in_european_union_s1 == members_in_european_union_s2:\n print('Entailment')\n\nelif members_in_european_union_s1 != members_in_european_union_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a group of more than 60 people , 55 have visited Iceland and 33 have visited Norway, \"statement 2\" :In a group of 90 people , 55 have visited Iceland and 33 have visited Norway, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "group_of_people_s1 = None\ngroup_of_people_s2 = 90\n\nif group_of_people_s1 is None or group_of_people_s2 is None:\n print('neutral')\n\nelif group_of_people_s1 == group_of_people_s2:\n print('Entailment')\n\nelif group_of_people_s1 != group_of_people_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Susan , John , Peter , Jack , Daisy , Tim , Matt and Kim need to be seated in 8 identical chairs in straight line so that Susan is seated always left to Tim, \"statement 2\" :Susan , John , Peter , Jack , Daisy , Tim , Matt and Kim need to be seated in 3 identical chairs in straight line so that Susan is seated always left to Tim, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_identical_chair_s1 = 8\nnumber_of_identical_chair_s2 = 5\n\nif number_of_identical_chair_s1 is None or number_of_identical_chair_s2 is None:\n print('neutral')\n\nelif number_of_identical_chair_s1 == number_of_identical_chair_s2:\n print('Entailment')\n\nelif number_of_identical_chair_s1 != number_of_identical_chair_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Josh had 16.0 marbles in his collection and he found 7.0 more marbles, \"statement 2\" :He has 25.0 marbles now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "number_of_marbles_josh_has_s1 = 16+7\nnumber_of_marbles_josh_has_s2 = 25\n\nif number_of_marbles_josh_has_s1 is None or number_of_marbles_josh_has_s2 is None:\n print('neutral')\n\nelif number_of_marbles_josh_has_s1 == number_of_marbles_josh_has_s2:\n print('Entailment')\n\nelif number_of_marbles_josh_has_s1 != number_of_marbles_josh_has_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If A and B are digits and less than 7 AB is a 3 - digit number that is divisible by 10 , which of the following is a possible product of A and C ?, \"statement 2\" :If A and B are digits and 5 AB is a 3 - digit number that is divisible by 10 , which of the following is a possible product of A and C ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "digit_divisible_by_10_s1 = None\ndigit_divisible_by_10_s2 = 3\n\nif digit_divisible_by_10_s1 is None or digit_divisible_by_10_s2 is None:\n print('neutral')\n\nelif digit_divisible_by_10_s1 == digit_divisible_by_10_s2:\n print('Entailment')\n\nelif digit_divisible_by_10_s1 != digit_divisible_by_10_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In how many ways can you seat more than 1 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"statement 2\" :In how many ways can you seat 4 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_can_seat_on_bench_s1 = None\npeople_can_seat_on_bench_s2 = 4\n\nif people_can_seat_on_bench_s1 is None or people_can_seat_on_bench_s2 is None:\n print('neutral')\n\nelif people_can_seat_on_bench_s1 == people_can_seat_on_bench_s2:\n print('Entailment')\n\nelif people_can_seat_on_bench_s1 != people_can_seat_on_bench_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John has 5 flavors of chocolate in him shop, \"statement 2\" :John has less than 5 flavors of chocolate in him shop, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_choclate_flavours_john_has_s1 = 5\nnumber_of_choclate_flavours_john_has_s2 = 0\n\nif number_of_choclate_flavours_john_has_s1 is None or number_of_choclate_flavours_john_has_s2 is None:\n print('neutral')\n\nelif number_of_choclate_flavours_john_has_s1 == number_of_choclate_flavours_john_has_s2:\n print('Entailment')\n\nelif number_of_choclate_flavours_john_has_s1 != number_of_choclate_flavours_john_has_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In addition to sex abuse , McDonald said that his team '' is also investigating the possible murder of three young boys . '', \"statement 2\" :Police are investigating the possible murder of three boys and claims of sexual abuse, \"options: \" Entailment or neutral?", + "Output Program": [ + "possible_number_of_murders_s1 = 3\npossible_number_of_murders_s2 = 3\n\nif possible_number_of_murders_s1 is None or possible_number_of_murders_s2 is None:\n print('neutral')\n\nelif possible_number_of_murders_s1 == possible_number_of_murders_s2:\n print('Entailment')\n\nelif possible_number_of_murders_s1 != possible_number_of_murders_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Vijay bought 160 shirts at the rate of Rs, \"statement 2\" :Vijay bought 860 shirts at the rate of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_choclate_flavours_john_has_s1 = 5\nnumber_of_choclate_flavours_john_has_s2 = 0\n\nif number_of_choclate_flavours_john_has_s1 is None or number_of_choclate_flavours_john_has_s2 is None:\n print('neutral')\n\nelif number_of_choclate_flavours_john_has_s1 == number_of_choclate_flavours_john_has_s2:\n print('Entailment')\n\nelif number_of_choclate_flavours_john_has_s1 != number_of_choclate_flavours_john_has_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 10 stations between Hyderabad and Bangalore, \"statement 2\" :There are less than 60 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_stations_between_hyderabad_and_banglore_s1 = 10\nnumber_of_stations_between_hyderabad_and_banglore_s2 = 60\n\nif number_of_stations_between_hyderabad_and_banglore_s1 is None or number_of_stations_between_hyderabad_and_banglore_s2 is None:\n print('neutral')\n\nelif number_of_stations_between_hyderabad_and_banglore_s1 < number_of_stations_between_hyderabad_and_banglore_s2:\n print('Entailment')\n\nelif number_of_stations_between_hyderabad_and_banglore_s1 != number_of_stations_between_hyderabad_and_banglore_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a separate incident , five people were killed and three wounded by a roadside bomb south of Baghdad , a ministry official said ., \"statement 2\" :Separate roadside bombing south of Baghdad kills five civilians , official says, \"options: \" Entailment or neutral?", + "Output Program": [ + "number_of_people_killed_s1 = 5\nnumber_of_people_killed_s2 = 5\n\nif number_of_people_killed_s1 is None or number_of_people_killed_s2 is None:\n print('neutral')\n\nelif number_of_people_killed_s1 == number_of_people_killed_s2:\n print('Entailment')\n\nelif number_of_people_killed_s1 != number_of_people_killed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In less than 3997 he invested an additional amount of 10000 and Mr Rakesh joined him with an amount of 35000, \"statement 2\" :In 1997 he invested an additional amount of 10000 and Mr Rakesh joined him with an amount of 35000, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "year_amount_invested_s1 = None\nyear_amount_invested_s2 = 1997\n\nif year_amount_invested_s1 is None or year_amount_invested_s2 is None:\n print('neutral')\n\nelif year_amount_invested_s1 == year_amount_invested_s2:\n print('Entailment')\n\nelif year_amount_invested_s1 != year_amount_invested_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nitin ranks 12 th in a class of 56 students, \"statement 2\" :Nitin ranks less than 82 th in a class of 56 students, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rank_of_nitin_s1 = 56\nrank_of_nitin_s2 = 82\n\nif rank_of_nitin_s1 is None or rank_of_nitin_s2 is None:\n print('neutral')\n\nelif rank_of_nitin_s1 < rank_of_nitin_s2:\n print('Entailment')\n\nelif rank_of_nitin_s1 != rank_of_nitin_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the marks secured by Reema was written as 36 instead of 86 then find the correct average marks up to two decimal places ., \"statement 2\" :If the marks secured by Reema was written as more than 16 instead of 86 then find the correct average marks up to two decimal places ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mark_secured_by_reema_s1 = 36\nmark_secured_by_reema_s2 = 16\n\nif mark_secured_by_reema_s1 is None or mark_secured_by_reema_s2 is None:\n print('neutral')\n\nelif mark_secured_by_reema_s1 > mark_secured_by_reema_s2:\n print('Entailment')\n\nelif mark_secured_by_reema_s1 != mark_secured_by_reema_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Susan weighs 12 pounds more than Anna does , and together they weigh a total of 162 pounds, \"statement 2\" :Susan weighs less than 62 pounds more than Anna does , and together they weigh a total of 162 pounds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "weight_of_sussan_s1 = 12\nweight_of_sussan_s2 = 62\n\nif weight_of_sussan_s1 is None or weight_of_sussan_s2 is None:\n print('neutral')\n\nelif weight_of_sussan_s1 < weight_of_sussan_s2:\n print('Entailment')\n\nelif weight_of_sussan_s1 != weight_of_sussan_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alok ordered 16 chapatis , 5 plates of rice , 7 plates of mixed vegetable and 6 ice - cream cups, \"statement 2\" :Alok ordered less than 46 chapatis , 5 plates of rice , 7 plates of mixed vegetable and 6 ice - cream cups, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "chaptis_alok_ordered_s1 = 16\nchaptis_alok_ordered_s2 = 46\n\nif chaptis_alok_ordered_s1 is None or chaptis_alok_ordered_s2 is None:\n print('neutral')\n\nelif chaptis_alok_ordered_s1 < chaptis_alok_ordered_s2:\n print('Entailment')\n\nelif chaptis_alok_ordered_s1 != chaptis_alok_ordered_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 3450 from Anwar at 6 % p, \"statement 2\" :less than 7450 from Anwar at 6 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_at_rate_6_percent_s1 = 3450\namount_at_rate_6_percent_s2 = 7450\n\nif amount_at_rate_6_percent_s1 is None or amount_at_rate_6_percent_s2 is None:\n print('neutral')\n\nelif amount_at_rate_6_percent_s1 < amount_at_rate_6_percent_s2:\n print('Entailment')\n\nelif amount_at_rate_6_percent_s1 != amount_at_rate_6_percent_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In the city of San Durango , 60 people own cats , dogs , or rabbits, \"statement 2\" :In the city of San Durango , 40 people own cats , dogs , or rabbits, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_people_own_cats_s1 = 60\nnumber_of_people_own_cats_s2 = 40\n\nif number_of_people_own_cats_s1 is None or number_of_people_own_cats_s2 is None:\n print('neutral')\n\nelif number_of_people_own_cats_s1 == number_of_people_own_cats_s2:\n print('Entailment')\n\nelif number_of_people_own_cats_s1 != number_of_people_own_cats_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Anup is 2 years younger to Madan whose age is 5 yrs , then whatis John \u2019 s present age ?, \"statement 2\" :If Anup is 3 years younger to Madan whose age is 5 yrs , then whatis John \u2019 s present age ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "anup_younger_than_madan_s1 = 2\nanup_younger_than_madan_s2 = 3\n\nif anup_younger_than_madan_s1 is None or anup_younger_than_madan_s2 is None:\n print('neutral')\n\nelif anup_younger_than_madan_s1 == anup_younger_than_madan_s2:\n print('Entailment')\n\nelif anup_younger_than_madan_s1 != anup_younger_than_madan_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Susan , John , Daisy , Tim , Matt and Kim need to be seated in 6 identical chairs in straight line so that Susan is seated always left to Tim, \"statement 2\" :Susan , John , Daisy , Tim , Matt and Kim need to be seated in 4 identical chairs in straight line so that Susan is seated always left to Tim, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "seating_to_be_made_in_number_of_row_s1 = 6\nseating_to_be_made_in_number_of_row_s2 = 4\n\nif seating_to_be_made_in_number_of_row_s1 is None or seating_to_be_made_in_number_of_row_s2 is None:\n print('neutral')\n\nelif seating_to_be_made_in_number_of_row_s1 == seating_to_be_made_in_number_of_row_s2:\n print('Entailment')\n\nelif seating_to_be_made_in_number_of_row_s1 != seating_to_be_made_in_number_of_row_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dan leaves City A 120 minutes after Cara, \"statement 2\" :Dan leaves City A less than 120 minutes after Cara, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "time_cara_leaves_after_dan_s1 = 120\ntime_cara_leaves_after_dan_s2 = 0\n\nif time_cara_leaves_after_dan_s1 is None or time_cara_leaves_after_dan_s2 is None:\n print('neutral')\n\nelif time_cara_leaves_after_dan_s1 == time_cara_leaves_after_dan_s2:\n print('Entailment')\n\nelif time_cara_leaves_after_dan_s1 != time_cara_leaves_after_dan_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At least six people were killed and 46 others were injured , Hazbavi told Press TV ., \"statement 2\" :Head of provincial disaster management : At least 6 dead , 46 others injured, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_dead_s1 = None\npeople_dead_s2 = 6\n\nif people_dead_s1 is None or people_dead_s2 is None:\n print('neutral')\n\nelif people_dead_s1 == people_dead_s2:\n print('Entailment')\n\nelif people_dead_s1 != people_dead_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": less than 350 , what is Belle ' s capital ?, \"statement 2\" :250 , what is Belle ' s capital ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "belle_capital_s1 = None\nbelle_capital_s2 = 250\n\nif belle_capital_s1 is None or belle_capital_s2 is None:\n print('neutral')\n\nelif belle_capital_s1 == belle_capital_s2:\n print('Entailment')\n\nelif belle_capital_s1 != belle_capital_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Michael has 49.0 fish and Ben gives him 18.0 more fish, \"statement 2\" :He has 66.0 marbles now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "number_of_fish_micheal_has_s1 = 46+18\nnumber_of_fish_micheal_has_s2 = 66\n\nif number_of_fish_micheal_has_s1 is None or number_of_fish_micheal_has_s2 is None:\n print('neutral')\n\nelif number_of_fish_micheal_has_s1 == number_of_fish_micheal_has_s2:\n print('Entailment')\n\nelif number_of_fish_micheal_has_s1 != number_of_fish_micheal_has_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Andy solves problems more than 40 to 125 inclusive in a Math exercise, \"statement 2\" :Andy solves problems 80 to 125 inclusive in a Math exercise, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "andy_solves_problem_s1 = None\nandy_solves_problem_s2 = 80-125\n\nif andy_solves_problem_s1 is None or andy_solves_problem_s2 is None:\n print('neutral')\n\nelif andy_solves_problem_s1 == andy_solves_problem_s2:\n print('Entailment')\n\nelif andy_solves_problem_s1 != andy_solves_problem_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The two appeared together at ground zero in New York City to lay roses at the 9/11 memorial and speak with first responders and family members of victims ., \"statement 2\" :Barack Obama , John McCain lay roses at ground zero, \"options: \" Entailment or neutral?", + "Output Program": [ + "appeared_at_ground_zero_s1 = None\nappeared_at_ground_zero_s2 = 2\n\nif appeared_at_ground_zero_s1 is None or appeared_at_ground_zero_s2 is None:\n print('neutral')\n\nelif appeared_at_ground_zero_s1 == appeared_at_ground_zero_s2:\n print('Entailment')\n\nelif appeared_at_ground_zero_s1 != appeared_at_ground_zero_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is 4 : 3 , After 6 Years Rahul age will be 38 years, \"statement 2\" :Ratio between Rahul and Deepak is more than 4 : 3 , After 6 Years Rahul age will be 38 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_of_rahul_deepak_age_at_38_years_s1 = 4/3\nratio_of_rahul_deepak_age_at_38_years_s2 = 0\n\nif ratio_of_rahul_deepak_age_at_38_years_s1 is None or ratio_of_rahul_deepak_age_at_38_years_s2 is None:\n print('neutral')\n\nelif ratio_of_rahul_deepak_age_at_38_years_s1 == ratio_of_rahul_deepak_age_at_38_years_s2:\n print('Entailment')\n\nelif ratio_of_rahul_deepak_age_at_38_years_s1 != ratio_of_rahul_deepak_age_at_38_years_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A train leaves Delhi at more than 3 a, \"statement 2\" :A train leaves Delhi at 9 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "train_leaves_delhi_s1 = None\ntrain_leaves_delhi_s2 = 9\n\nif train_leaves_delhi_s1 is None or train_leaves_delhi_s2 is None:\n print('neutral')\n\nelif train_leaves_delhi_s1 == train_leaves_delhi_s2:\n print('Entailment')\n\nelif train_leaves_delhi_s1 != train_leaves_delhi_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 250 , what is Belle ' s capital ?, \"statement 2\" :less than 350 , what is Belle ' s capital ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "belle_capital_s1 = 250\nbelle_capital_s2 = 350\n\nif belle_capital_s1 is None or belle_capital_s2 is None:\n print('neutral')\n\nelif belle_capital_s1 < belle_capital_s2:\n print('Entailment')\n\nelif belle_capital_s1 != belle_capital_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Even as both sides appeared to make conciliatory moves , 11 militants and six army soldiers were killed in a four-hour gun battle in Indian-administered Kashmir ., \"statement 2\" :A gun battle killed 17 people in Indian-administered Kashmir ., \"options: \" Entailment or neutral?", + "Output Program": [ + "total_people_killed_s1 = 11+6\ntotal_people_killed_s2 = 17\n\nif total_people_killed_s1 is None or total_people_killed_s2 is None:\n print('neutral')\n\nelif total_people_killed_s1 == total_people_killed_s2:\n print('Entailment')\n\nelif total_people_killed_s1 != total_people_killed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Diane find 6 cans of paint are just enough to paint one third of her room, \"statement 2\" :Diane find 2 cans of paint are just enough to paint one third of her room, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cans_of_paint_enough_to_paint_s1 = 6\ncans_of_paint_enough_to_paint_s2 = 2\n\nif cans_of_paint_enough_to_paint_s1 is None or cans_of_paint_enough_to_paint_s2 is None:\n print('neutral')\n\nelif cans_of_paint_enough_to_paint_s1 == cans_of_paint_enough_to_paint_s2:\n print('Entailment')\n\nelif cans_of_paint_enough_to_paint_s1 != cans_of_paint_enough_to_paint_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Denise removes 5.0 bananas from a jar and there were originally 46.0 bananas in the jar, \"statement 2\" :41.0 bananas are left in the jar, \"options: \" Entailment or contradiction?", + "Output Program": [ + "bananas_left_in_jar_s1 = 46-5\nbananas_left_in_jar_s2 = 41\n\nif bananas_left_in_jar_s1 is None or bananas_left_in_jar_s2 is None:\n print('neutral')\n\nelif bananas_left_in_jar_s1 == bananas_left_in_jar_s2:\n print('Entailment')\n\nelif bananas_left_in_jar_s1 != bananas_left_in_jar_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Marcella has less than 73 pairs of shoes, \"statement 2\" :Marcella has 23 pairs of shoes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pair_of_shoes_s1 = None\npair_of_shoes_s2 = 23\n\nif pair_of_shoes_s1 is None or pair_of_shoes_s2 is None:\n print('neutral')\n\nelif pair_of_shoes_s1 == pair_of_shoes_s2:\n print('Entailment')\n\nelif pair_of_shoes_s1 != pair_of_shoes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a BCCI meeting there are 15 people, \"statement 2\" :In a BCCI meeting there are less than 55 people, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_in_meeting_s1 = 15\npeople_in_meeting_s2 = 55\n\nif people_in_meeting_s1 is None or people_in_meeting_s2 is None:\n print('neutral')\n\nelif people_in_meeting_s1 < people_in_meeting_s2:\n print('Entailment')\n\nelif people_in_meeting_s1 != people_in_meeting_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Baker Tom is storing cake boxes in cartons that measure 25 inches by 42 inches by 60 inches, \"statement 2\" :Baker Tom is storing cake boxes in cartons that measure more than 15 inches by 42 inches by 60 inches, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "carton_measures_inch_s1 = 25\ncarton_measures_inch_s2 = 15\n\nif carton_measures_inch_s1 is None or carton_measures_inch_s2 is None:\n print('neutral')\n\nelif carton_measures_inch_s1 > carton_measures_inch_s2:\n print('Entailment')\n\nelif carton_measures_inch_s1 != carton_measures_inch_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": NHAI employs 100 men to build a highway of 2 km in 50 days working 8 hours a day, \"statement 2\" :NHAI employs less than 700 men to build a highway of 2 km in 50 days working 8 hours a day, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "men_to_build_highway_s1 = 100\nmen_to_build_highway_s2 = 700\n\nif men_to_build_highway_s1 is None or men_to_build_highway_s2 is None:\n print('neutral')\n\nelif men_to_build_highway_s1 < men_to_build_highway_s2:\n print('Entailment')\n\nelif men_to_build_highway_s1 != men_to_build_highway_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Listco employs 60 level - 1 employees , 30 of whom are college graduates, \"statement 2\" :Listco employs more than 30 level - 1 employees , 30 of whom are college graduates, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "listco_employees_s1 = 60\nlistco_employees_s2 = 30\n\nif listco_employees_s1 is None or listco_employees_s2 is None:\n print('neutral')\n\nelif listco_employees_s1 > listco_employees_s2:\n print('Entailment')\n\nelif listco_employees_s1 != listco_employees_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ramesh can finish a work in 20 days and Sushil in 25 days, \"statement 2\" :Ramesh can finish a work in more than 10 days and Sushil in 25 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_work_can_be_finished_s1 = 20\ndays_work_can_be_finished_s2 = 10\n\nif days_work_can_be_finished_s1 is None or days_work_can_be_finished_s2 is None:\n print('neutral')\n\nelif days_work_can_be_finished_s1 > days_work_can_be_finished_s2:\n print('Entailment')\n\nelif days_work_can_be_finished_s1 != days_work_can_be_finished_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mike has 87.0 baseball cards and Sam bought 13.0 of Mike 's baseball cards , \"statement 2\" :Mike has 72.0 baseball cards now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "baseball_cards_mike_has_s1 = 87+13\nbaseball_cards_mike_has_s2 = 72\n\nif baseball_cards_mike_has_s1 is None or baseball_cards_mike_has_s2 is None:\n print('neutral')\n\nelif baseball_cards_mike_has_s1 == baseball_cards_mike_has_s2:\n print('Entailment')\n\nelif baseball_cards_mike_has_s1 != baseball_cards_mike_has_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jerry \u2019 s average ( arithmetic mean ) score on the first 3 of 4 tests is 94, \"statement 2\" :Jerry \u2019 s average ( arithmetic mean ) score on the first less than 7 of 4 tests is 94, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_score_s1 = 3/4\naverage_score_s2 = 7/4\n\nif average_score_s1 is None or average_score_s2 is None:\n print('neutral')\n\nelif average_score_s1 < average_score_s2:\n print('Entailment')\n\nelif average_score_s1 != average_score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bond ( less than 8 ) wants to move from a point A to point D , but here 2 watchtowers ( B & C ) are present in the way of A to D, \"statement 2\" :Bond ( 007 ) wants to move from a point A to point D , but here 2 watchtowers ( B & C ) are present in the way of A to D, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bond_wants_to_move_s1 = None\nbond_wants_to_move_s2 = 7\n\nif bond_wants_to_move_s1 is None or bond_wants_to_move_s2 is None:\n print('neutral')\n\nelif bond_wants_to_move_s1 == bond_wants_to_move_s2:\n print('Entailment')\n\nelif bond_wants_to_move_s1 != bond_wants_to_move_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Chris has worked with more than 100,000 golfers throughout his career ., \"statement 2\" :He has personally coached more than 100,000 golfers, \"options: \" Entailment or neutral?", + "Output Program": [ + "cherish_worked_s1 = 100000\ncherish_worked_s2 = 100000\n\nif cherish_worked_s1 is None or cherish_worked_s2 is None:\n print('neutral')\n\nelif cherish_worked_s1 == cherish_worked_s2:\n print('Entailment')\n\nelif cherish_worked_s1 != cherish_worked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Meera is making telescopes , each consisting of 2 lenses , 1 tube , and 1 eyepiece, \"statement 2\" :Meera is making telescopes , each consisting of less than 5 lenses , 1 tube , and 1 eyepiece, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "lens_in_telescope_s1 = 2\nlens_in_telescope_s2 = 5\n\nif lens_in_telescope_s1 is None or lens_in_telescope_s2 is None:\n print('neutral')\n\nelif lens_in_telescope_s1 < lens_in_telescope_s2:\n print('Entailment')\n\nelif lens_in_telescope_s1 != lens_in_telescope_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Fred had 7.0 dimes in his bank and his sister loaned Fred 3.0 more dimes , \"statement 2\" :Fred has 13.0 dimes now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "dims_in_fred_bank_s1 = 7+3\ndims_in_fred_bank_s2 = 13\n\nif dims_in_fred_bank_s1 is None or dims_in_fred_bank_s2 is None:\n print('neutral')\n\nelif dims_in_fred_bank_s1 == dims_in_fred_bank_s2:\n print('Entailment')\n\nelif dims_in_fred_bank_s1 != dims_in_fred_bank_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many clothing combinations does Barbara have , if she doesn \u2019 t wear 5 specific shirts with 3 specific pants ?, \"statement 2\" :How many clothing combinations does Barbara have , if she doesn \u2019 t wear more than 2 specific shirts with 3 specific pants ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "specific_pants_s1 = 3\nspecific_pants_s2 = 2\n\nif specific_pants_s1 is None or specific_pants_s2 is None:\n print('neutral')\n\nelif specific_pants_s1 > specific_pants_s2:\n print('Entailment')\n\nelif specific_pants_s1 != specific_pants_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In one day , Juan sends Keith three times as many messages as he sends Laurence , and Laurence sends Missy less than 6 times as many messages as he receives from Juan, \"statement 2\" :In one day , Juan sends Keith three times as many messages as he sends Laurence , and Laurence sends Missy 5 times as many messages as he receives from Juan, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "messages_send_than_received_s1 = None\nmessages_send_than_received_s2 = 5\n\nif messages_send_than_received_s1 is None or messages_send_than_received_s2 is None:\n print('neutral')\n\nelif messages_send_than_received_s1 == messages_send_than_received_s2:\n print('Entailment')\n\nelif messages_send_than_received_s1 != messages_send_than_received_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 4050 from Anwar at 6 % p, \"statement 2\" :6050 from Anwar at 6 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_at_6_percent_s1 = 4050\namount_at_6_percent_s2 = 6050\n\nif amount_at_6_percent_s1 is None or amount_at_6_percent_s2 is None:\n print('neutral')\n\nelif amount_at_6_percent_s1 == amount_at_6_percent_s2:\n print('Entailment')\n\nelif amount_at_6_percent_s1 != amount_at_6_percent_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the agreed period of the debenture was less than 68 months : calculate the amount of interest Jaclyn will earn for each quarter, \"statement 2\" :If the agreed period of the debenture was 18 months : calculate the amount of interest Jaclyn will earn for each quarter, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "agreed_period_in_month_s1 = None\nagreed_period_in_month_s2 = 18\n\nif agreed_period_in_month_s1 is None or agreed_period_in_month_s2 is None:\n print('neutral')\n\nelif agreed_period_in_month_s1 == agreed_period_in_month_s2:\n print('Entailment')\n\nelif agreed_period_in_month_s1 != agreed_period_in_month_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The product of Diana ' s age , in years , and a third of Rashid ' s age , in years , is 32, \"statement 2\" :The product of Diana ' s age , in years , and a third of Rashid ' s age , in years , is less than 72, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "product_of_age_s1 = 32\nproduct_of_age_s2 = 72\n\nif product_of_age_s1 is None or product_of_age_s2 is None:\n print('neutral')\n\nelif product_of_age_s1 < product_of_age_s2:\n print('Entailment')\n\nelif product_of_age_s1 != product_of_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Henry were to add 5 gallons of water to a tank that is already 3 / 4 full of water , the tank would be 7 / 8 full, \"statement 2\" :If Henry were to add less than 7 gallons of water to a tank that is already 3 / 4 full of water , the tank would be 7 / 8 full, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gallon_of_water_s1 = 5\ngallon_of_water_s2 = 7\n\nif gallon_of_water_s1 is None or gallon_of_water_s2 is None:\n print('neutral')\n\nelif gallon_of_water_s1 < gallon_of_water_s2:\n print('Entailment')\n\nelif gallon_of_water_s1 != gallon_of_water_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jaime earned enough money by selling seashells at 22 cents each to buy several used paperback books at 55 cents each, \"statement 2\" :Jaime earned enough money by selling seashells at less than 72 cents each to buy several used paperback books at 55 cents each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_from_now_s1 = 16\nyears_from_now_s2 = 26\n\nif years_from_now_s1 is None or years_from_now_s2 is None:\n print('neutral')\n\nelif years_from_now_s1 < years_from_now_s2:\n print('Entailment')\n\nelif years_from_now_s1 != years_from_now_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In 16 years from now , Lyn the circus Lion will be exactly half as old as Ele , the circus Elephant, \"statement 2\" :In less than 26 years from now , Lyn the circus Lion will be exactly half as old as Ele , the circus Elephant, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_from_now_s1 = 16\nyears_from_now_s2 = 26\n\nif years_from_now_s1 is None or years_from_now_s2 is None:\n print('neutral')\n\nelif years_from_now_s1 < years_from_now_s2:\n print('Entailment')\n\nelif years_from_now_s1 != years_from_now_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Reeya obtained less than 85 , 67 , 76 , 82 and 55 out of 100 in different subjects , What will be the average, \"statement 2\" :Reeya obtained 55 , 67 , 76 , 82 and 55 out of 100 in different subjects , What will be the average, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_obtained_s1 = None\nmarks_obtained_s2 = 55+67+76+82+55\n\nif marks_obtained_s1 is None or marks_obtained_s2 is None:\n print('neutral')\n\nelif marks_obtained_s1 == marks_obtained_s2:\n print('Entailment')\n\nelif marks_obtained_s1 != marks_obtained_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": By how much must Rebecca ' s annual income increase so that it constitutes 55 % of Rebecca and Jimmy ' s combined income ?, \"statement 2\" :By how much must Rebecca ' s annual income increase so that it constitutes more than 55 % of Rebecca and Jimmy ' s combined income ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "income_of_rebeeca_to_be_increased_by_s1 = 55\nincome_of_rebeeca_to_be_increased_by_s2 = 0\n\nif income_of_rebeeca_to_be_increased_by_s1 is None or income_of_rebeeca_to_be_increased_by_s2 is None:\n print('neutral')\n\nelif income_of_rebeeca_to_be_increased_by_s1 == income_of_rebeeca_to_be_increased_by_s2:\n print('Entailment')\n\nelif income_of_rebeeca_to_be_increased_by_s1 != income_of_rebeeca_to_be_increased_by_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Isabel bought 900.0 pieces of paper and she used 156.0 pieces of the paper, \"statement 2\" :She has 744.0 pieces of paper left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "paper_pieces_s1 = 900-156\npaper_pieces_s2 = 744\n\nif paper_pieces_s1 is None or paper_pieces_s2 is None:\n print('neutral')\n\nelif paper_pieces_s1 == paper_pieces_s2:\n print('Entailment')\n\nelif paper_pieces_s1 != paper_pieces_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The United States committed over $ 800,000 for immediate humanitarian assistance to be provided through the United States Agency for International Development ( USAID ) , according to the U.S. Embassy in Bishkek ., \"statement 2\" :U.S. commits $ 1 million in assistance , supplies, \"options: \" Entailment or neutral?", + "Output Program": [ + "US_commits_million_s1 = None\nUS_commits_million_s2 = 1\n\nif US_commits_million_s1 is None or US_commits_million_s2 is None:\n print('neutral')\n\nelif US_commits_million_s1 == US_commits_million_s2:\n print('Entailment')\n\nelif US_commits_million_s1 != US_commits_million_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": more than 3320 among John , Jose & Binoy in the ration 2 : 4 : 6, \"statement 2\" :4320 among John , Jose & Binoy in the ration 2 : 4 : 6, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "among_john_s1 = None\namong_john_s2 = 4320\n\nif among_john_s1 is None or among_john_s2 is None:\n print('neutral')\n\nelif among_john_s1 == among_john_s2:\n print('Entailment')\n\nelif among_john_s1 != among_john_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If neha is 10\nBoth Sonali and priyanka is 15\nBoth sadaf and tanu is 10 .\nhow much is prinka by the same system ?, \"statement 2\" :If neha is less than 70 Both Sonali and priyanka is 15 Both sadaf and tanu is 10 . how much is prinka by the same system ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "same_system_s1 = 10\nsame_system_s2 = 70\n\nif same_system_s1 is None or same_system_s2 is None:\n print('neutral')\n\nelif same_system_s1 < same_system_s2:\n print('Entailment')\n\nelif same_system_s1 != same_system_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": For Halloween Sarah received 108.0 pieces of candy and she ate 36.0 pieces then placed the rest into piles with 9.0 in each pile, \"statement 2\" :She could make 4.0 piles, \"options: \" Entailment or contradiction?", + "Output Program": [ + "number_of_pils_sarah_can_make_s1 = 108-36/9\nnumber_of_pils_sarah_can_make_s2 = 4\n\nif number_of_pils_sarah_can_make_s1 is None or number_of_pils_sarah_can_make_s2 is None:\n print('neutral')\n\nelif number_of_pils_sarah_can_make_s1 == number_of_pils_sarah_can_make_s2:\n print('Entailment')\n\nelif number_of_pils_sarah_can_make_s1 != number_of_pils_sarah_can_make_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ben left a job paying $ 75,000 per year to accept a sales job paying $ 45,000 per year plus 15 percent commission, \"statement 2\" :Ben left a job paying $ 75,000 per year to accept a sales job paying $ 45,000 per year plus less than 75 percent commission, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "percent_commission_s1 = 15\npercent_commission_s2 = 75\n\nif percent_commission_s1 is None or percent_commission_s2 is None:\n print('neutral')\n\nelif percent_commission_s1 < percent_commission_s2:\n print('Entailment')\n\nelif percent_commission_s1 != percent_commission_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shankar got 66 , 83 , 77 , 68 , 86 marks ( out of 100 ) in English , Maths , physics , Biology and Chemistry, \"statement 2\" :Shankar got more than 26 , 83 , 77 , 68 , 86 marks ( out of 100 ) in English , Maths , physics , Biology and Chemistry, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_obtained_s1 = 66+83+77+68+86\nmarks_obtained_s2 = 26+83+77+68+86\n\nif marks_obtained_s1 is None or marks_obtained_s2 is None:\n print('neutral')\n\nelif marks_obtained_s1 > marks_obtained_s2:\n print('Entailment')\n\nelif marks_obtained_s1 != marks_obtained_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Molly ' s age in less than 38 years will be four times her age eighteen years ago, \"statement 2\" :Molly ' s age in 18 years will be four times her age eighteen years ago, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "molly_age_s1 = None\nmolly_age_s2 = 18\n\nif molly_age_s1 is None or molly_age_s2 is None:\n print('neutral')\n\nelif molly_age_s1 == molly_age_s2:\n print('Entailment')\n\nelif molly_age_s1 != molly_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 2000 , Deepak ' s share is :, \"statement 2\" :less than 4000 , Deepak ' s share is :, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "deepak_share_s1 = 2000\ndeepak_share_s2 = 4000\n\nif deepak_share_s1 is None or deepak_share_s2 is None:\n print('neutral')\n\nelif deepak_share_s1 < deepak_share_s2:\n print('Entailment')\n\nelif deepak_share_s1 != deepak_share_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Most of those killed and hurt were young men , though four children were among the dead , police said ., \"statement 2\" :Four of at least 27 people killed are children , police say, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_killed_s1 = None\npeople_killed_s2 = 27\n\nif people_killed_s1 is None or people_killed_s2 is None:\n print('neutral')\n\nelif people_killed_s1 == people_killed_s2:\n print('Entailment')\n\nelif people_killed_s1 != people_killed_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Randy has 78.0 blocks and Anna gives him 19.0 blocks, \"statement 2\" :Randy has 97.0 blocks now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "blocks_s1 = 78+19\nblocks_s2 = 97\n\nif blocks_s1 is None or blocks_s2 is None:\n print('neutral')\n\nelif blocks_s1 == blocks_s2:\n print('Entailment')\n\nelif blocks_s1 != blocks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": James took a less than 8 - hour bike ride, \"statement 2\" :James took a 3 - hour bike ride, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bike_ride_hour_s1 = None\nbike_ride_hour_s2 = 3\n\nif bike_ride_hour_s1 is None or bike_ride_hour_s2 is None:\n print('neutral')\n\nelif bike_ride_hour_s1 == bike_ride_hour_s2:\n print('Entailment')\n\nelif bike_ride_hour_s1 != bike_ride_hour_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Baker Ram is storing cake boxes in cartons that measure 25 inches by 42 inches by 60 inches, \"statement 2\" :Baker Ram is storing cake boxes in cartons that measure less than 45 inches by 42 inches by 60 inches, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cake_boxes_inch_s1 = 25\ncake_boxes_inch_s2 = 45\n\nif cake_boxes_inch_s1 is None or cake_boxes_inch_s2 is None:\n print('neutral')\n\nelif cake_boxes_inch_s1 < cake_boxes_inch_s2:\n print('Entailment')\n\nelif cake_boxes_inch_s1 != cake_boxes_inch_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Suresh can complete a job in 15 hours, \"statement 2\" :Suresh can complete a job in 45 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "time_taken_by_suresh_s1 = 108-36/9\ntime_taken_by_suresh_s2 = 4\n\nif time_taken_by_suresh_s1 is None or time_taken_by_suresh_s2 is None:\n print('neutral')\n\nelif time_taken_by_suresh_s1 == time_taken_by_suresh_s2:\n print('Entailment')\n\nelif time_taken_by_suresh_s1 != time_taken_by_suresh_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At least 74 people were wounded in the Baghdad bombings -- six car bombs and one roadside bomb ., \"statement 2\" :Dozens have been injured in the Baghdad bombings -- six car bombs and a roadside bomb, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_injured_s1 = 74\npeople_injured_s2 = 12\n\nif people_injured_s1 is None or people_injured_s2 is None:\n print('neutral')\n\nelif people_injured_s1 > people_injured_s2:\n print('Entailment')\n\nelif people_injured_s1 != people_injured_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sara had 49.0 quarters in her bank and she spent 21.0 quarters, \"statement 2\" :She has 27.0 quarters now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "quarters_sara_has_s1 = 49-21\nquarters_sara_has_s2 = 27\n\nif quarters_sara_has_s1 is None or quarters_sara_has_s2 is None:\n print('neutral')\n\nelif quarters_sara_has_s1 == quarters_sara_has_s2:\n print('Entailment')\n\nelif quarters_sara_has_s1 != quarters_sara_has_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": '' This situation is a desperate one that made us take the decision we did , '' he said , adding that , '' we will not leave the park until we have our housing . '', \"statement 2\" :One squatter says they will not leave the park until they get homes, \"options: \" Entailment or neutral?", + "Output Program": [ + "leave_park_s1 = None\nleave_park_s2 = 1\n\nif leave_park_s1 is None or leave_park_s2 is None:\n print('neutral')\n\nelif leave_park_s1 == leave_park_s2:\n print('Entailment')\n\nelif leave_park_s1 != leave_park_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Patrick purchased 80 pencils and sold them at a loss equal to the selling price of 16 pencils, \"statement 2\" :Patrick purchased more than 80 pencils and sold them at a loss equal to the selling price of 16 pencils, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pencil_purchased_by_patrick_s1 = 80\npencil_purchased_by_patrick_s2 = 0\n\nif pencil_purchased_by_patrick_s1 is None or pencil_purchased_by_patrick_s2 is None:\n print('neutral')\n\nelif pencil_purchased_by_patrick_s1 == pencil_purchased_by_patrick_s2:\n print('Entailment')\n\nelif pencil_purchased_by_patrick_s1 != pencil_purchased_by_patrick_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Panjali walked for 3 days, \"statement 2\" :Panjali walked for less than 8 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_panjali_walked_s1 = 3\ndays_panjali_walked_s2 = 8\n\nif days_panjali_walked_s1 is None or days_panjali_walked_s2 is None:\n print('neutral')\n\nelif days_panjali_walked_s1 < days_panjali_walked_s2:\n print('Entailment')\n\nelif days_panjali_walked_s1 != days_panjali_walked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill has 42 gallons of water stored in quart , half - gallon , and one gallon jars, \"statement 2\" :Jill has less than 52 gallons of water stored in quart , half - gallon , and one gallon jars, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gallon_of_water_s1 = 42\ngallon_of_water_s2 = 52\n\nif gallon_of_water_s1 is None or gallon_of_water_s2 is None:\n print('neutral')\n\nelif gallon_of_water_s1 < gallon_of_water_s2:\n print('Entailment')\n\nelif gallon_of_water_s1 != gallon_of_water_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ted wants to put 5.0 candy bars in each of his 15.0 bags., \"statement 2\" :Ted needs to get 75.0 candy bars, \"options: \" Entailment or contradiction?", + "Output Program": [ + "candy_bars_s1 = 15*5\ncandy_bars_s2 = 75\n\nif candy_bars_s1 is None or candy_bars_s2 is None:\n print('neutral')\n\nelif candy_bars_s1 == candy_bars_s2:\n print('Entailment')\n\nelif candy_bars_s1 != candy_bars_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Annie and Sam set out together on bicycles traveling at 15 and 12 km per hour respectively, \"statement 2\" :Annie and Sam set out together on bicycles traveling at 55 and 12 km per hour respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_of_annie_s1 = 15\nspeed_of_annie_s2 = 55\n\nif speed_of_annie_s1 is None or speed_of_annie_s2 is None:\n print('neutral')\n\nelif speed_of_annie_s1 == speed_of_annie_s2:\n print('Entailment')\n\nelif speed_of_annie_s1 != speed_of_annie_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The average number of shirts with Salman , Ambani and Dalmiya is 60 , if all of them reached a shopping mall in Delhi and purchased 2 shirts each of them then average number of shirt each of them now has, \"statement 2\" :The average number of shirts with Salman , Ambani and Dalmiya is more than 40 , if all of them reached a shopping mall in Delhi and purchased 2 shirts each of them then average number of shirt each of them now has, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_no_of_shirts_s1 = 60\naverage_no_of_shirts_s2 = 40\n\nif average_no_of_shirts_s1 is None or average_no_of_shirts_s2 is None:\n print('neutral')\n\nelif average_no_of_shirts_s1 > average_no_of_shirts_s2:\n print('Entailment')\n\nelif average_no_of_shirts_s1 != average_no_of_shirts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Dave has more than one of each of the listed garments , and can make more than 1400 different outfits , then for how many garments does Dave have exactly five choices ?, \"statement 2\" :If Dave has more than one of each of the listed garments , and can make 2400 different outfits , then for how many garments does Dave have exactly five choices ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "different_outfits_s1 = None\ndifferent_outfits_s2 = 2400\n\nif different_outfits_s1 is None or different_outfits_s2 is None:\n print('neutral')\n\nelif different_outfits_s1 == different_outfits_s2:\n print('Entailment')\n\nelif different_outfits_s1 != different_outfits_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": less than 5450 from Anwar at 6 % p, \"statement 2\" :3450 from Anwar at 6 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "anwar_interest_s1 = None\nanwar_interest_s2 = 6\n\nif anwar_interest_s1 is None or anwar_interest_s2 is None:\n print('neutral')\n\nelif anwar_interest_s1 == anwar_interest_s2:\n print('Entailment')\n\nelif anwar_interest_s1 != anwar_interest_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Susan weighs 12 pounds more than Anna does , and together they weigh a total of 162 pounds, \"statement 2\" :Susan weighs 82 pounds more than Anna does , and together they weigh a total of 162 pounds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "weight_of_anna_s1 = 12\nweight_of_anna_s2 = 82\n\nif weight_of_anna_s1 is None or weight_of_anna_s2 is None:\n print('neutral')\n\nelif weight_of_anna_s1 > weight_of_anna_s2:\n print('Entailment')\n\nelif weight_of_anna_s1 != weight_of_anna_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many jelly beans must Dante give to Aaron to ensure that no child has more than less than 3 fewer jelly beans than any other child ?, \"statement 2\" :How many jelly beans must Dante give to Aaron to ensure that no child has more than 1 fewer jelly beans than any other child ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jelly_beans_s1 = None\njelly_beans_s2 = 1\n\nif jelly_beans_s1 is None or jelly_beans_s2 is None:\n print('neutral')\n\nelif jelly_beans_s1 == jelly_beans_s2:\n print('Entailment')\n\nelif jelly_beans_s1 != jelly_beans_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a BCCI meeting there are 11 people, \"statement 2\" :In a BCCI meeting there are 61 people, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_people_in_meeting_s1 = 11\ntotal_people_in_meeting_s2 = 61\n\nif total_people_in_meeting_s1 is None or total_people_in_meeting_s2 is None:\n print('neutral')\n\nelif total_people_in_meeting_s1 == total_people_in_meeting_s2:\n print('Entailment')\n\nelif total_people_in_meeting_s1 != total_people_in_meeting_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is 2 : 3 ?\nA, \"statement 2\" :What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is less than 6 : 3 ? A, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_between_distance_s1 = 2/3\nratio_between_distance_s2 = 6/3\n\nif ratio_between_distance_s1 is None or ratio_between_distance_s2 is None:\n print('neutral')\n\nelif ratio_between_distance_s1 < ratio_between_distance_s2:\n print('Entailment')\n\nelif ratio_between_distance_s1 != ratio_between_distance_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dan \u2019 s car gets 32 miles per gallon, \"statement 2\" :Dan \u2019 s car gets less than 62 miles per gallon, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_per_gallon_s1 = 32\nmiles_per_gallon_s2 = 62\n\nif miles_per_gallon_s1 is None or miles_per_gallon_s2 is None:\n print('neutral')\n\nelif miles_per_gallon_s1 < miles_per_gallon_s2:\n print('Entailment')\n\nelif miles_per_gallon_s1 != miles_per_gallon_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": McPartland was 95 and died of natural causes at her Port Washington , New York , home , Concord Music Group said in a statement ., \"statement 2\" :Marian McPartland , host of '' Piano Jazz , '' dead at 95, \"options: \" Entailment or neutral?", + "Output Program": [ + "dead_people_s1 = None\ndead_people_s2 = 95\n\nif dead_people_s1 is None or dead_people_s2 is None:\n print('neutral')\n\nelif dead_people_s1 == dead_people_s2:\n print('Entailment')\n\nelif dead_people_s1 != dead_people_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained more than 51 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained 81 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_obtained_s1 = None\nmarks_obtained_s2 = 81+65+82+67+85\n\nif marks_obtained_s1 is None or marks_obtained_s2 is None:\n print('neutral')\n\nelif marks_obtained_s1 == marks_obtained_s2:\n print('Entailment')\n\nelif marks_obtained_s1 != marks_obtained_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Lionel ' s speed was less than 4 miles per hour and Walt ' s 3 miles per hour , how many miles had Lionel walked when he met Walt ?, \"statement 2\" :If Lionel ' s speed was 3 miles per hour and Walt ' s 3 miles per hour , how many miles had Lionel walked when he met Walt ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_per_hour_s1 = None\nmiles_per_hour_s2 = 3\n\nif miles_per_hour_s1 is None or miles_per_hour_s2 is None:\n print('neutral')\n\nelif miles_per_hour_s1 == miles_per_hour_s2:\n print('Entailment')\n\nelif miles_per_hour_s1 != miles_per_hour_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Every time you travel a mile towards Bananaville you must pay a tax of 1 apple but you pay nothing when going in the other direction ( towards Appleland ) .\nWhat is highest number of apples you can get to Bananaville ?, \"statement 2\" :Every time you travel a mile towards Bananaville you must pay a tax of less than 8 apple but you pay nothing when going in the other direction ( towards Appleland ) . What is highest number of apples you can get to Bananaville ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tax_of_apple_s1 = 1\ntax_of_apple_s2 = 8\n\nif tax_of_apple_s1 is None or tax_of_apple_s2 is None:\n print('neutral')\n\nelif tax_of_apple_s1 < tax_of_apple_s2:\n print('Entailment')\n\nelif tax_of_apple_s1 != tax_of_apple_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ratio of men to women in the Snyder community choir is 6 to 5, \"statement 2\" :The ratio of men to women in the Snyder community choir is less than 6 to 5, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_people_in_meeting_s1 = 11\ntotal_people_in_meeting_s2 = 61\n\nif total_people_in_meeting_s1 is None or total_people_in_meeting_s2 is None:\n print('neutral')\n\nelif total_people_in_meeting_s1 == total_people_in_meeting_s2:\n print('Entailment')\n\nelif total_people_in_meeting_s1 != total_people_in_meeting_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Families of the 12 who died and five victims '' who suffered permanent brain damage or permanent physical paralysis , will each receive $ 220,000 ., \"statement 2\" :Families of the deceased and victims with debilitating damage will receive $ 220,000, \"options: \" Entailment or neutral?", + "Output Program": [ + "families_receive_dollar_s1 = 220000\nfamilies_receive_dollar_s2 = 220000\n\nif families_receive_dollar_s1 is None or families_receive_dollar_s2 is None:\n print('neutral')\n\nelif families_receive_dollar_s1 == families_receive_dollar_s2:\n print('Entailment')\n\nelif families_receive_dollar_s1 != families_receive_dollar_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": James took a more than 1 - hour bike ride, \"statement 2\" :James took a 3 - hour bike ride, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bike_ride_hour_s1 = None\nbike_ride_hour_s2 = 3\n\nif bike_ride_hour_s1 is None or bike_ride_hour_s2 is None:\n print('neutral')\n\nelif bike_ride_hour_s1 == bike_ride_hour_s2:\n print('Entailment')\n\nelif bike_ride_hour_s1 != bike_ride_hour_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": But even Valin wonders what kind of person would pay $ 64,000 for a turntable ., \"statement 2\" :An Italian manufacturer unveils a $ 64,000 turntable at CES in Las Vegas, \"options: \" Entailment or neutral?", + "Output Program": [ + "person_pay_s1 = None\nperson_pay_s2 = 64000\n\nif person_pay_s1 is None or person_pay_s2 is None:\n print('neutral')\n\nelif person_pay_s1 == person_pay_s2:\n print('Entailment')\n\nelif person_pay_s1 != person_pay_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Luckily Sarah negotiated a 20 % discount for the present so that each of them paid 4 dollars less, \"statement 2\" :Luckily Sarah negotiated a 70 % discount for the present so that each of them paid 4 dollars less, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "discount_sarah_has_s1 = 20\ndiscount_sarah_has_s2 = 70\n\nif discount_sarah_has_s1 is None or discount_sarah_has_s2 is None:\n print('neutral')\n\nelif discount_sarah_has_s1 == discount_sarah_has_s2:\n print('Entailment')\n\nelif discount_sarah_has_s1 != discount_sarah_has_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The other four men continue to serve lengthy sentences in U.S. federal prisons ., \"statement 2\" :Four others still serving sentences in U.S. prisons, \"options: \" Entailment or neutral?", + "Output Program": [ + "serving_sentences_prisons_s1 = 4\nserving_sentences_prisons_s2 = 4\n\nif serving_sentences_prisons_s1 is None or serving_sentences_prisons_s2 is None:\n print('neutral')\n\nelif serving_sentences_prisons_s1 == serving_sentences_prisons_s2:\n print('Entailment')\n\nelif serving_sentences_prisons_s1 != serving_sentences_prisons_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If it takes Pat less than 75 minutes to stretch and Cathy continues to run during this time , how many minutes will it take Pat to catch up to Cathy ?, \"statement 2\" :If it takes Pat 15 minutes to stretch and Cathy continues to run during this time , how many minutes will it take Pat to catch up to Cathy ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "minutes_to_stretch_s1 = None\nminutes_to_stretch_s2 = 15\n\nif minutes_to_stretch_s1 is None or minutes_to_stretch_s2 is None:\n print('neutral')\n\nelif minutes_to_stretch_s1 == minutes_to_stretch_s2:\n print('Entailment')\n\nelif minutes_to_stretch_s1 != minutes_to_stretch_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many liters of blue paint must be added to less than 62 liters of Fuchsia to change it to Mauve paint ?, \"statement 2\" :How many liters of blue paint must be added to 32 liters of Fuchsia to change it to Mauve paint ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "liters_of_blue_print_s1 = None\nliters_of_blue_print_s2 = 32\n\nif liters_of_blue_print_s1 is None or liters_of_blue_print_s2 is None:\n print('neutral')\n\nelif liters_of_blue_print_s1 == liters_of_blue_print_s2:\n print('Entailment')\n\nelif liters_of_blue_print_s1 != liters_of_blue_print_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In 15 years from now , Lyn the circus Lion will be exactly half as old as Ele , the circus Elephant, \"statement 2\" :In less than 65 years from now , Lyn the circus Lion will be exactly half as old as Ele , the circus Elephant, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_from_now_s1 = 15\nyears_from_now_s2 = 65\n\nif years_from_now_s1 is None or years_from_now_s2 is None:\n print('neutral')\n\nelif years_from_now_s1 < years_from_now_s2:\n print('Entailment')\n\nelif years_from_now_s1 != years_from_now_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Andrew purchased 14 kg of grapes at the rate of 54 per kg and 10 kg of mangoes at the rate of 62 per kg, \"statement 2\" :Andrew purchased less than 14 kg of grapes at the rate of 54 per kg and 10 kg of mangoes at the rate of 62 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "quantity_of_grapes_andrew_purchased_s1 = 14\nquantity_of_grapes_andrew_purchased_s2 = 0\n\nif quantity_of_grapes_andrew_purchased_s1 is None or quantity_of_grapes_andrew_purchased_s2 is None:\n print('neutral')\n\nelif quantity_of_grapes_andrew_purchased_s1 == quantity_of_grapes_andrew_purchased_s2:\n print('Entailment')\n\nelif quantity_of_grapes_andrew_purchased_s1 != quantity_of_grapes_andrew_purchased_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The next day , Bob took the test , and with this grade included , the new average was 78, \"statement 2\" :The next day , Bob took the test , and with this grade included , the new average was more than 48, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "new_average_s1 = 78\nnew_average_s2 = 48\n\nif new_average_s1 is None or new_average_s2 is None:\n print('neutral')\n\nelif new_average_s1 > new_average_s2:\n print('Entailment')\n\nelif new_average_s1 != new_average_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Authorities seized roughly $ 2 million worth of methamphetamine during his arrest , Pequeno said ., \"statement 2\" :An official says authorities seized $ 2 million worth of methamphetamine, \"options: \" Entailment or neutral?", + "Output Program": [ + "millions_worth_of_methamphetamine_s1 = 2\nmillions_worth_of_methamphetamine_s2 = 2\n\nif millions_worth_of_methamphetamine_s1 is None or millions_worth_of_methamphetamine_s2 is None:\n print('neutral')\n\nelif millions_worth_of_methamphetamine_s1 == millions_worth_of_methamphetamine_s2:\n print('Entailment')\n\nelif millions_worth_of_methamphetamine_s1 != millions_worth_of_methamphetamine_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A pet store had 13.0 siamese cats and 5.0 house cats and During a sale they sold 10.0 cats, \"statement 2\" :They has 12.0 cats left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "quantity_of_grapes_andrew_purchased_s1 = 14\nquantity_of_grapes_andrew_purchased_s2 = 0\n\nif quantity_of_grapes_andrew_purchased_s1 is None or quantity_of_grapes_andrew_purchased_s2 is None:\n print('neutral')\n\nelif quantity_of_grapes_andrew_purchased_s1 == quantity_of_grapes_andrew_purchased_s2:\n print('Entailment')\n\nelif quantity_of_grapes_andrew_purchased_s1 != quantity_of_grapes_andrew_purchased_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 24.0 bicycles and 14.0 tricycles in the storage area at Danny's apartment building and each bicycle has 2.0 wheels, and each tricycle has 3.0 wheels, \"statement 2\" :87.0 wheels are there in all, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_wheels_s1 = 24/2+14*3\ntotal_wheels_s2 = 87\n\nif total_wheels_s1 is None or total_wheels_s2 is None:\n print('neutral')\n\nelif total_wheels_s1 == total_wheels_s2:\n print('Entailment')\n\nelif total_wheels_s1 != total_wheels_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 13.0 ducks are swimming in a lake and 20.0 more ducks come to join them, \"statement 2\" :31.0 ducks are swimming in the lake, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_ducks_s1 = 13+20\ntotal_ducks_s2 = 31\n\nif total_ducks_s1 is None or total_ducks_s2 is None:\n print('neutral')\n\nelif total_ducks_s1 == total_ducks_s2:\n print('Entailment')\n\nelif total_ducks_s1 != total_ducks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bookman purchased 55 copies of a new book released recently , 10 of which are hardback and sold for $ 20 each , and rest are paperback and sold for $ 10 each, \"statement 2\" :Bookman purchased 25 copies of a new book released recently , 10 of which are hardback and sold for $ 20 each , and rest are paperback and sold for $ 10 each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_copies_of_new_book_s1 = 55\ntotal_copies_of_new_book_s2 = 25\n\nif total_copies_of_new_book_s1 is None or total_copies_of_new_book_s2 is None:\n print('neutral')\n\nelif total_copies_of_new_book_s1 == total_copies_of_new_book_s2:\n print('Entailment')\n\nelif total_copies_of_new_book_s1 != total_copies_of_new_book_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Federer secured the winning point in his singles match against Fabio Fognini to give Switzerland an unbeatable 3-1 lead over Italy in Geneva ., \"statement 2\" :Gives Swiss an unbeatable 3-1 lead in tie against Italy, \"options: \" Entailment or neutral?", + "Output Program": [ + "tie_against_italy_s1 = 3-1\ntie_against_italy_s2 = 3-1\n\nif tie_against_italy_s1 is None or tie_against_italy_s2 is None:\n print('neutral')\n\nelif tie_against_italy_s1 == tie_against_italy_s2:\n print('Entailment')\n\nelif tie_against_italy_s1 != tie_against_italy_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": One year ago , the ratio of Roonie \u2019 s and Ronaldo \u2019 s age was less than 7 : 7 respectively, \"statement 2\" :One year ago , the ratio of Roonie \u2019 s and Ronaldo \u2019 s age was 6 : 7 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_of_both_age_s1 = None\nratio_of_both_age_s2 = 6/7\n\nif ratio_of_both_age_s1 is None or ratio_of_both_age_s2 is None:\n print('neutral')\n\nelif ratio_of_both_age_s1 == ratio_of_both_age_s2:\n print('Entailment')\n\nelif ratio_of_both_age_s1 != ratio_of_both_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": But it only thanked him for calling to attention the misprint and offered him $ 100 in lottery bucks ., \"statement 2\" :Lottery commission offers him $ 100 in lottery bucks, \"options: \" Entailment or neutral?", + "Output Program": [ + "lottery_bucks_s1 = None\nlottery_bucks_s2 = 100\n\nif lottery_bucks_s1 is None or lottery_bucks_s2 is None:\n print('neutral')\n\nelif lottery_bucks_s1 == lottery_bucks_s2:\n print('Entailment')\n\nelif lottery_bucks_s1 != lottery_bucks_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Earlier reports indicated the six were trapped at their Gold Canyon ranch and firefighters were unable to reach them , but Fender said he had no indication that was true ., \"statement 2\" :Six people refuse to evacuate their Gold Canyon ranch, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_refused_s1 = None\npeople_refused_s2 = 6\n\nif people_refused_s1 is None or people_refused_s2 is None:\n print('neutral')\n\nelif people_refused_s1 == people_refused_s2:\n print('Entailment')\n\nelif people_refused_s1 != people_refused_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The average number of shirts with Salman , Ambani and Dalmiya is 60 , if all of them reached a shopping mall in Delhi and purchased 6 shirts each of them then average number of shirt each of them now has, \"statement 2\" :The average number of shirts with Salman , Ambani and Dalmiya is less than 70 , if all of them reached a shopping mall in Delhi and purchased 6 shirts each of them then average number of shirt each of them now has, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_shirts_s1 = 60\naverage_shirts_s2 = 70\n\nif average_shirts_s1 is None or average_shirts_s2 is None:\n print('neutral')\n\nelif average_shirts_s1 < average_shirts_s2:\n print('Entailment')\n\nelif average_shirts_s1 != average_shirts_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If they work in stretches of one hour alternately , Vikas beginning at more than 1 a, \"statement 2\" :If they work in stretches of one hour alternately , Vikas beginning at 8 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "vikas_beginning_s1 = None\nvikas_beginning_s2 = 8\n\nif vikas_beginning_s1 is None or vikas_beginning_s2 is None:\n print('neutral')\n\nelif vikas_beginning_s1 == vikas_beginning_s2:\n print('Entailment')\n\nelif vikas_beginning_s1 != vikas_beginning_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Victor has less than 35 cups if flour , 16 cups of sugar and 8 cups of milk, \"statement 2\" :Victor has 15 cups if flour , 16 cups of sugar and 8 cups of milk, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cups_of_flour_s1 = None\ncups_of_flour_s2 = 15\n\nif cups_of_flour_s1 is None or cups_of_flour_s2 is None:\n print('neutral')\n\nelif cups_of_flour_s1 == cups_of_flour_s2:\n print('Entailment')\n\nelif cups_of_flour_s1 != cups_of_flour_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": According to the poll , only one in five believe that neighborhood watch members should carry guns , with 76 % saying they should not be allowed to be armed ., \"statement 2\" :73 % in CNN/ORC International poll say George Zimmerman should be arrested, \"options: \" Entailment or neutral?", + "Output Program": [ + "not_allowed_to_arm_s1 = None\nnot_allowed_to_arm_s2 = 73\n\nif not_allowed_to_arm_s1 is None or not_allowed_to_arm_s2 is None:\n print('neutral')\n\nelif not_allowed_to_arm_s1 == not_allowed_to_arm_s2:\n print('Entailment')\n\nelif not_allowed_to_arm_s1 != not_allowed_to_arm_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": '' I can sum it up in one word : ridiculous , '' Heller said when asked for a comment ., \"statement 2\" :'' I can sum it up in one word : ridiculous , '' Heller says about probe report, \"options: \" Entailment or neutral?", + "Output Program": [ + "sum_words_s1 = 1\nsum_words_s2 = 1\n\nif sum_words_s1 is None or sum_words_s2 is None:\n print('neutral')\n\nelif sum_words_s1 == sum_words_s2:\n print('Entailment')\n\nelif sum_words_s1 != sum_words_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mexican authorities accused four top military officials of connections with organized crime in a high-profile case that has renewed debate over the role of government troops in the drug war ., \"statement 2\" :Four top military officials are in a maximum-security prison, \"options: \" Entailment or neutral?", + "Output Program": [ + "top_military_officials_s1 = None\ntop_military_officials_s2 = 4\n\nif top_military_officials_s1 is None or top_military_officials_s2 is None:\n print('neutral')\n\nelif top_military_officials_s1 == top_military_officials_s2:\n print('Entailment')\n\nelif top_military_officials_s1 != top_military_officials_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": loyd wants to fence his Square shaped land of 130 Sqft each side, \"statement 2\" :loyd wants to fence his Square shaped land of less than 230 Sqft each side, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sqft_each_side_s1 = 130\nsqft_each_side_s2 = 230\n\nif sqft_each_side_s1 is None or sqft_each_side_s2 is None:\n print('neutral')\n\nelif sqft_each_side_s1 < sqft_each_side_s2:\n print('Entailment')\n\nelif sqft_each_side_s1 != sqft_each_side_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Craig had 200 apples, \"statement 2\" :Craig had 100 apples, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "apple_chirag_has_s1 = 200\napple_chirag_has_s2 = 100\n\nif apple_chirag_has_s1 is None or apple_chirag_has_s2 is None:\n print('neutral')\n\nelif apple_chirag_has_s1 == apple_chirag_has_s2:\n print('Entailment')\n\nelif apple_chirag_has_s1 != apple_chirag_has_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Four different children have jelly beans : Aaron has 3 , Bianca has 7 , Callie has 8 , and Dante has 11, \"statement 2\" :Four different children have jelly beans : Aaron has 5 , Bianca has 7 , Callie has 8 , and Dante has 11, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_jelly_beans_aaron_has_s1 = 3\ntotal_jelly_beans_aaron_has_s2 = 5\n\nif total_jelly_beans_aaron_has_s1 is None or total_jelly_beans_aaron_has_s2 is None:\n print('neutral')\n\nelif total_jelly_beans_aaron_has_s1 == total_jelly_beans_aaron_has_s2:\n print('Entailment')\n\nelif total_jelly_beans_aaron_has_s1 != total_jelly_beans_aaron_has_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Half of the Malmo family members have blue eyes , and less than 7 / 5 of the family members who have blue eyes do not wear glasses, \"statement 2\" :Half of the Malmo family members have blue eyes , and 4 / 5 of the family members who have blue eyes do not wear glasses, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "members_with_blue_eyes_dont_wear_glasses_s1 = None\nmembers_with_blue_eyes_dont_wear_glasses_s2 = 4/5\n\nif members_with_blue_eyes_dont_wear_glasses_s1 is None or members_with_blue_eyes_dont_wear_glasses_s2 is None:\n print('neutral')\n\nelif members_with_blue_eyes_dont_wear_glasses_s1 == members_with_blue_eyes_dont_wear_glasses_s2:\n print('Entailment')\n\nelif members_with_blue_eyes_dont_wear_glasses_s1 != members_with_blue_eyes_dont_wear_glasses_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 400 students took a mock exam in Delhi , 60 % of the boys and 80 % of the girls cleared the cut off in the examination, \"statement 2\" :less than 400 students took a mock exam in Delhi , 60 % of the boys and 80 % of the girls cleared the cut off in the examination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_students_s1 = 400\ntotal_students_s2 = 0\n\nif total_students_s1 is None or total_students_s2 is None:\n print('neutral')\n\nelif total_students_s1 == total_students_s2:\n print('Entailment')\n\nelif total_students_s1 != total_students_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": more than 30 percent of Andrea ' s living room floor is covered by a carpet that is 4 feet by 9 feet, \"statement 2\" :50 percent of Andrea ' s living room floor is covered by a carpet that is 4 feet by 9 feet, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "percent_floor_covered_carpet_s1 = None\npercent_floor_covered_carpet_s2 = 50\n\nif percent_floor_covered_carpet_s1 is None or percent_floor_covered_carpet_s2 is None:\n print('neutral')\n\nelif percent_floor_covered_carpet_s1 == percent_floor_covered_carpet_s2:\n print('Entailment')\n\nelif percent_floor_covered_carpet_s1 != percent_floor_covered_carpet_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At the end of ' n ' years , Sandy got back 5 times the original investment, \"statement 2\" :At the end of ' n ' years , Sandy got back 6 times the original investment, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_times_profit_s1 = 5\nnumber_of_times_profit_s2 = 6\n\nif number_of_times_profit_s1 is None or number_of_times_profit_s2 is None:\n print('neutral')\n\nelif number_of_times_profit_s1 == number_of_times_profit_s2:\n print('Entailment')\n\nelif number_of_times_profit_s1 != number_of_times_profit_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 15 % people of a village in Sri Lanka died by bombardment , 25 % of the remainder left the village on account of fear, \"statement 2\" :less than 15 % people of a village in Sri Lanka died by bombardment , 25 % of the remainder left the village on account of fear, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_died_by_bombardment_s1 = 15\npeople_died_by_bombardment_s2 = 0\n\nif people_died_by_bombardment_s1 is None or people_died_by_bombardment_s2 is None:\n print('neutral')\n\nelif people_died_by_bombardment_s1 == people_died_by_bombardment_s2:\n print('Entailment')\n\nelif people_died_by_bombardment_s1 != people_died_by_bombardment_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": An estimated 35.8 million people are enslaved , according to the Global Slavery Index ., \"statement 2\" :Global Slavery Index : More than 35 million people are in bondage worldwide, \"options: \" Entailment or neutral?", + "Output Program": [ + "million_people_in_bondage_s1 = 35.8\nmillion_people_in_bondage_s2 = 35\n\nif million_people_in_bondage_s1 is None or million_people_in_bondage_s2 is None:\n print('neutral')\n\nelif million_people_in_bondage_s1 > million_people_in_bondage_s2:\n print('Entailment')\n\nelif million_people_in_bondage_s1 != million_people_in_bondage_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Melanie picked 7.0 plums and 4.0 oranges from the orchard and she gave 3.0 plums to Sam , \"statement 2\" :She has 4.0 plums now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "picked_plums_s1 = 7-3\npicked_plums_s2 = 4\n\nif picked_plums_s1 is None or picked_plums_s2 is None:\n print('neutral')\n\nelif picked_plums_s1 == picked_plums_s2:\n print('Entailment')\n\nelif picked_plums_s1 != picked_plums_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sarah signed 1 / 2 of the Christmas cards , and Richard signed 3 / 8 of them, \"statement 2\" :Sarah signed less than 3 / 2 of the Christmas cards , and Richard signed 3 / 8 of them, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "christmas_cards_s1 = 1/2\nchristmas_cards_s2 = 3/2\n\nif christmas_cards_s1 is None or christmas_cards_s2 is None:\n print('neutral')\n\nelif christmas_cards_s1 < christmas_cards_s2:\n print('Entailment')\n\nelif christmas_cards_s1 != christmas_cards_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sally had 760 quarters in her bank and she received 418 more quarters, \"statement 2\" :She has 1178.0 quarters now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "quarters_s1 = 760+418\nquarters_s2 = 1178\n\nif quarters_s1 is None or quarters_s2 is None:\n print('neutral')\n\nelif quarters_s1 == quarters_s2:\n print('Entailment')\n\nelif quarters_s1 != quarters_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": loyd wants to fence his Square shaped land of 130 Sqft each side, \"statement 2\" :loyd wants to fence his Square shaped land of less than 130 Sqft each side, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "size_of_land_s1 = 130\nsize_of_land_s2 = 0\n\nif size_of_land_s1 is None or size_of_land_s2 is None:\n print('neutral')\n\nelif size_of_land_s1 == size_of_land_s2:\n print('Entailment')\n\nelif size_of_land_s1 != size_of_land_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nowak gave the undercover person $ 10,000 as a down payment to kill the IRS agent , authorities said ., \"statement 2\" :Man made $ 10,000 down payment to undercover agent , authorities say, \"options: \" Entailment or neutral?", + "Output Program": [ + "down_payment_s1 = 10000\ndown_payment_s2 = 10000\n\nif down_payment_s1 is None or down_payment_s2 is None:\n print('neutral')\n\nelif down_payment_s1 == down_payment_s2:\n print('Entailment')\n\nelif down_payment_s1 != down_payment_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Opposition spokesman Shamsiddin Abdulmolah told CNN that rebels flew two attack helicopters from Tobruk to join the fighting in Ajdabiya ., \"statement 2\" :Two opposition helicopters attack in Ajdabiya, \"options: \" Entailment or neutral?", + "Output Program": [ + "helicopters_s1 = 2\nhelicopters_s2 = 2\n\nif helicopters_s1 is None or helicopters_s2 is None:\n print('neutral')\n\nelif helicopters_s1 == helicopters_s2:\n print('Entailment')\n\nelif helicopters_s1 != helicopters_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Apple Infotech has 4 Senior Managing Directors and 5 Managing Directors, \"statement 2\" :Apple Infotech has less than 6 Senior Managing Directors and 5 Managing Directors, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "senior_managing_director_s1 = 4\nsenior_managing_director_s2 = 6\n\nif senior_managing_director_s1 is None or senior_managing_director_s2 is None:\n print('neutral')\n\nelif senior_managing_director_s1 < senior_managing_director_s2:\n print('Entailment')\n\nelif senior_managing_director_s1 != senior_managing_director_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rosy is more than 20 % more efficient than Mary, \"statement 2\" :Rosy is 50 % more efficient than Mary, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rosy_efficient_than_mary_s1 = None\nrosy_efficient_than_mary_s2 = 50\n\nif rosy_efficient_than_mary_s1 is None or rosy_efficient_than_mary_s2 is None:\n print('neutral')\n\nelif rosy_efficient_than_mary_s1 == rosy_efficient_than_mary_s2:\n print('Entailment')\n\nelif rosy_efficient_than_mary_s1 != rosy_efficient_than_mary_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary works in a restaurant a maximum of 70 hours, \"statement 2\" :Mary works in a restaurant a maximum of more than 70 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_hours_mary_works_s1 = 70\nnumber_of_hours_mary_works_s2 = 0\n\nif number_of_hours_mary_works_s1 is None or number_of_hours_mary_works_s2 is None:\n print('neutral')\n\nelif number_of_hours_mary_works_s1 == number_of_hours_mary_works_s2:\n print('Entailment')\n\nelif number_of_hours_mary_works_s1 != number_of_hours_mary_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Calculate and compare the maturity values of $ 1000 invested in each type of GIC, \"statement 2\" :Calculate and compare the maturity values of $ less than 4000 invested in each type of GIC, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "maturity_in_s1 = 1000\nmaturity_in_s2 = 4000\n\n\nif maturity_in_s1 is None or maturity_in_s2 is None:\n print(\"neutral\")\nelif maturity_in_s1 < maturity_in_s2 or maturity_in_s1 == maturity_in_s2:\n print(\"Entailment\")\nelif maturity_in_s2 > maturity_in_s1:\n print(\"contradiction \")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nick ' s average ( arithmetic mean ) test score on less than 7 tests is 78, \"statement 2\" :Nick ' s average ( arithmetic mean ) test score on 4 tests is 78, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "nics_test_in_s1 = 0\nnics_test_in_s1 < 7\nnics_test_in_s2 = 4\nnics_average_7_test_s1 = 78\nnics_average_7_test_s2 = None\nnics_average_4_test_s2 = 78\n\nif nics_test_in_s1 is None or nics_test_in_s2 is None or nics_test_in_s1 !=nics_test_in_s2:\n print(\"neutral\")\nelif nics_average_7_test_s1 == nics_average_7_test_s2:\n print(\"Entailment\")\nelif nics_average_7_test_s1 != nics_average_7_test_s2:\n print(\"contradiction \")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Triangle STV has sides ST = TV = less than 33 , and SV = 10, \"statement 2\" :Triangle STV has sides ST = TV = 13 , and SV = 10, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "st_in_s1 = tv_in_s1 = 33\nsv_in_s1 = 10\n\nst_in_s2 = tv_in_s2 = 10\nsv_in_s1 = 10\n\nif st_in_s1 is None or sv_in_s1 is None or st_in_s2 is None or sv_in_s1 is None or st_in_s1 < 33 or st_in_s1>st_in_s2:\n print(\"neutral\")\nelif st_in_s1 == st_in_s2 and sv_in_s1==sv_in_s1:\n print(\"Entailment\")\nelif st_in_s1 != st_in_s2 or sv_in_s1!=sv_in_s1 or st_in_s2>st_in_s1:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bob had x number of sweets and wanted to share it with his 6 friends, \"statement 2\" :Bob had x number of sweets and wanted to share it with his less than 7 friends, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bob_frd_in_s1 = 6\nbob_frd_in_s2 = 7\n\nif bob_frd_in_s1 is None or bob_frd_in_s2 is None:\n print(\"neutral\")\nelif (bob_frd_in_s2-bob_frd_in_s1) == 1:\n print(\"Entailment\")\nelif bob_frd_in_s1 != bob_frd_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 3.0 cars with 63.0 people each are going to the zoo., \"statement 2\" :189.0 people are going to the zoo, \"options: \" Entailment or contradiction?", + "Output Program": [ + "car_in_s1 = 3\npeople_in_each_car_s1 =63\npeople_in_s1 = 0 \ncar_in_s2 = 0\npeople_in_each_car_s2 =0\npeople_in_s2 = 189\ntotal_people_in_s1 = car_in_s1*people_in_each_car_s1+people_in_s1\ntotal_people_in_s2 = car_in_s2*people_in_each_car_s2+people_in_s2\n\nif total_people_in_s1 is None or total_people_in_s2 is None:\n print(\"neutral\")\nelif total_people_in_s1 == total_people_in_s2:\n print(\"Entailment\")\nelif bob_frd_in_s1 != bob_frd_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": David obtained 76 , 65 , 82 , 67 and 85 marks ( out in 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :David obtained 16 , 65 , 82 , 67 and 85 marks ( out in 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_in_s1 = {\n \"English\": 76,\n \"Maths\": 65,\n \"Physics\": 82,\n \"Chemestry\": 67,\n \"Biology\": 85\n}\nmarks_in_s2 = {\n \"English\": 16,\n \"Maths\": 65,\n \"Physics\": 82,\n \"Chemestry\": 67,\n \"Biology\": 85\n}\n\nif marks_in_s2 is None or marks_in_s1 is None or len(marks_in_s2)!=len(marks_in_s2):\n print(\"neutral\")\nelif marks_in_s1 == marks_in_s2:\n print(\"Entailment\")\nelif marks_in_s1 != marks_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Arjun and Bhishma are running on a circular track of length less than 800 m, \"statement 2\" :Arjun and Bhishma are running on a circular track of length 600 m, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "arjun_nhisma_l_s1 = 0\narjun_nhisma_l_s1 < 800\narjun_nhisma_l_s2 = 600\n\nif arjun_nhisma_l_s1 is None or arjun_nhisma_l_s2 is None or arjun_nhisma_l_s2 > arjun_nhisma_l_s1:\n print(\"neutral\")\nelif arjun_nhisma_l_s1 == arjun_nhisma_l_s2:\n print(\"Entailment\")\nelif arjun_nhisma_l_s1 != arjun_nhisma_l_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a recent election , James received 15 percent of the 10000 votes cast, \"statement 2\" :In a recent election , James received less than 35 percent of the 10000 votes cast, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "james_vote_s1 = (15*10000/100)\njames_vote_s2 = (35*10000/100)\n\nif james_vote_s1 is None or james_vote_s2 is None:\n print(\"neutral\")\nelif james_vote_s1 < james_vote_s2:\n print(\"Entailment\")\nelif james_vote_s1 != james_vote_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A restaurant served 6.0 cakes during lunch and 9.0 during dinner today ., \"statement 2\" :12.0 cakes were served today, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Seved_Cake_s1=9+6\nSeved_Cake_s2=12\nif Seved_Cake_s1 is None or Seved_Cake_s2 is None:\n print(\"neutral\")\nelif Seved_Cake_s1 == Seved_Cake_s2:\n print(\"Entailment\")\nelif Seved_Cake_s1 != Seved_Cake_s2:\n print(\"contradiction\")\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Calculate the average mark scored by Adam if he had the following scores in an examination : 85 , 67 , 52 , 69 , 56 , 62 , and 59 marks ( out in 100 ) in Spanish Language , Mathematics , Biology , Physics , French Language , Fine art and Chemistry respectively ?, \"statement 2\" :Calculate the average mark scored by Adam if he had the following scores in an examination : less than 85 , 67 , 52 , 69 , 56 , 62 , and 59 marks ( out in 100 ) in Spanish Language , Mathematics , Biology , Physics , French Language , Fine art and Chemistry respectively ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_in_s1 = {\n \"Spanish Language\": 85,\n \"Mathematics\": 67,\n \"Biology\": 52,\n \"Physics\": 69,\n \"French Language\": 56,\n \"Fine art\":62,\n \"Chemistry\":59\n}\nmarks_in_s2 = {\n \"Spanish Language\": 0,\n \"Mathematics\": 67,\n \"Biology\": 52,\n \"Physics\": 69,\n \"French Language\": 56,\n \"Fine art\":62,\n \"Chemistry\":59\n}\nmarks_in_s2['Spanish Language'] < 85\n\n\n\nif marks_in_s1 is None or marks_in_s2 is None or len(marks_in_s1)!=len(marks_in_s2):\n print(\"neutral\")\nelif marks_in_s1 == marks_in_s2:\n print(\"Entailment\")\nelif marks_in_s1 != marks_in_s2 or 0 < marks_in_s2['Spanish Language'] < 85:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Andrew purchased 14 kg of grapes at the rate of 54 per kg and 10 kg of mangoes at the rate of 62 per kg, \"statement 2\" :Andrew purchased less than 84 kg of grapes at the rate of 54 per kg and 10 kg of mangoes at the rate of 62 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "grapes_pur_in_s1 = 14\ngrapes_rate_in_s1 = 54\nmangoes_pur_in_s1 = 10\nmangoes_rate_in_s1 = 62\n\ngrapes_pur_in_s2 = 84\ngrapes_pur_in_s2 < 84\ngrapes_rate_in_s2 = 54\nmangoes_pur_in_s2 = 10\nmangoes_rate_in_s2 = 62\n\n\n\n\nif grapes_pur_in_s1 is None or mangoes_pur_in_s1 is None or grapes_pur_in_s2 is None or mangoes_pur_in_s2 is None:\n print(\"neutral\")\nelif mangoes_rate_in_s1 == mangoes_rate_in_s2 and mangoes_pur_in_s1==mangoes_pur_in_s2 and grapes_rate_in_s1 == grapes_rate_in_s2 and grapes_pur_in_s1 < grapes_pur_in_s2 < 84:\n print(\"Entailment\")\nelif mangoes_rate_in_s2 != mangoes_rate_in_s1 or mangoes_pur_in_s2 != mangoes_pur_in_s1 or grapes_pur_in_s2>=84:\n print(\"contradiction\")\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Steve bought a total of more than 3 packages of pens , and each package contained either 3 or 7 pens, \"statement 2\" :Steve bought a total of 6 packages of pens , and each package contained either 3 or 7 pens, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pens_bought_in_s1 = 0\npens_bought_in_s1 > 3\npens_bought_in_s1 = 4\npens_bought_in_s2 = 6\n\nif pens_bought_in_s1 is None or pens_bought_in_s1 is None or 3 3\n\n\nif months_in_s1 is None or months_in_s2 is None:\n print(\"neutral\")\nelif months_in_s1 == months_in_s2 or (months_in_s1 - months_in_s2) == 1:\n print(\"Entailment\")\nelif months_in_s1 != months_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a race , Mohan beats Sohan by 40 m and Sohan beats Rohan by 80 m, \"statement 2\" :In a race , Mohan beats Sohan by more than 30 m and Sohan beats Rohan by 80 m, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mohan_beats_sohan_by_in_s1 = 40\nmohan_beats_sohan_by_in_s2 = 0\nmohan_beats_sohan_by_in_s2 > 30\n\nsohan_beats_by_in_s1 = 30\nsohan_beats_by_in_s2 = 30\n\n\nif mohan_beats_sohan_by_in_s1 is None or mohan_beats_sohan_by_in_s2 is None or sohan_beats_by_in_s1 is None or sohan_beats_by_in_s2 is None:\n print(\"neutral\")\nelif (mohan_beats_sohan_by_in_s1 == mohan_beats_sohan_by_in_s2 or mohan_beats_sohan_by_in_s1 > 30) and (sohan_beats_by_in_s1 == sohan_beats_by_in_s2):\n print(\"Entailment\")\nelif mohan_beats_sohan_by_in_s1 != mohan_beats_sohan_by_in_s2 or sohan_beats_by_in_s1 != sohan_beats_by_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Calculate the average mark scored by Adam if he had the following scores in an examination : 85 , 67 , 52 , 69 , 56 , 62 , and 59 marks ( out in 100 ) in Spanish Language , Mathematics , Biology , Physics , French Language , Fine art and Chemistry respectively ?, \"statement 2\" :Calculate the average mark scored by Adam if he had the following scores in an examination : more than 15 , 67 , 52 , 69 , 56 , 62 , and 59 marks ( out in 100 ) in Spanish Language , Mathematics , Biology , Physics , French Language , Fine art and Chemistry respectively ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_in_s1 = {\n \"Spanish Language\": 85,\n \"Mathematics\": 67,\n \"Biology\": 52,\n \"Physics\": 69,\n \"French Language\": 56,\n \"Fine art\":62,\n \"Chemistry\":59\n}\nmarks_in_s2 = {\n \"Spanish Language\": 0,\n \"Mathematics\": 67,\n \"Biology\": 52,\n \"Physics\": 69,\n \"French Language\": 56,\n \"Fine art\":62,\n \"Chemistry\":59\n}\nmarks_in_s2['Spanish Language'] > 15\n\n\n\nif marks_in_s1 is None or marks_in_s2 is None or len(marks_in_s1)!=len(marks_in_s2):\n print(\"neutral\")\nelif marks_in_s1 == marks_in_s2 or marks_in_s1['Spanish Language'] > marks_in_s2['Spanish Language']:\n print(\"Entailment\")\nelif marks_in_s1 != marks_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jack walks in a straight line toward Christina at a constant speed of 5 feet per second and Christina walks in a straight line toward Jack at a constant speed of 7 feet per second, \"statement 2\" :Jack walks in a straight line toward Christina at a constant speed of more than 3 feet per second and Christina walks in a straight line toward Jack at a constant speed of 7 feet per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jack_speed_in_s1 = 5\nchristine_speed_in_s1 = 7\njack_speed_in_s2 = 3\njack_speed_in_s2 > 3\nchristine_speed_in_s2 = 7\n\n\n\nif jack_speed_in_s1 is None or christine_speed_in_s1 is None or jack_speed_in_s2 is None or christine_speed_in_s2 is None:\n print(\"neutral\")\nelif (jack_speed_in_s1 == jack_speed_in_s2 or 3 40\neffeciency_in_s2 = 60\n\n\nif effeciency_in_s1 is None or effeciency_in_s2 is None or effeciency_in_s2 > 40:\n print(\"neutral\")\nelif effeciency_in_s1 == effeciency_in_s2:\n print(\"Entailment\")\nelif effeciency_in_s1 != effeciency_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He works at it for 20 days and then Rajesh finished it in 30 days, \"statement 2\" :He works at it for less than 30 days and then Rajesh finished it in 30 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_worked_in_s1 = 20\ndays_worked_in_s2 = 0\ndays_worked_in_s2 < 30\n\n\n\nif days_worked_in_s1 is None or days_worked_in_s2 is None:\n print(\"neutral\")\nelif days_worked_in_s2 == days_worked_in_s1 or days_worked_in_s2 < 30:\n print(\"Entailment\")\nelif days_worked_in_s2 != days_worked_in_s1:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The average length of the sides of triangle ABC is 12, \"statement 2\" :The average length of the sides of triangle ABC is less than 72, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "length_side_in_s1 = 12\nlength_side_in_s2 = 0\nlength_side_in_s2 < 72\n\n\n\nif length_side_in_s1 is None or length_side_in_s2 is None:\n print(\"neutral\")\nelif length_side_in_s1 == length_side_in_s2 or length_side_in_s1 < 72:\n print(\"Entailment\")\nelif length_side_in_s1 != length_side_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Meera is making telescopes , each consisting of less than 5 lenses , 1 tube , and 1 eyepiece, \"statement 2\" :Meera is making telescopes , each consisting of 2 lenses , 1 tube , and 1 eyepiece, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "lens_in_s1 = 0\nlens_in_s1 < 5\nlens_in_s1 = 4\nlens_in_s2 = 2\ntube_in_s1 = 1\ntube_in_s2 = 1\neyep_in_s1 = 1\neyep_in_s2 = 1\n\n\n\n\nif lens_in_s1 is None or lens_in_s2 is None or lens_in_s1 < 5 > lens_in_s2 or tube_in_s1 is None or tube_in_s2 is None or eyep_in_s1 is None or eyep_in_s2 is None:\n print(\"neutral\")\nelif lens_in_s1 == lens_in_s2 and eyep_in_s1 == eyep_in_s2 or tube_in_s2 == tube_in_s1:\n print(\"Entailment\")\nelif lens_in_s1 != lens_in_s2 or eyep_in_s1 != eyep_in_s2 or tube_in_s2 != tube_in_s1:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Since you ' re nice , you give John 4 baseball cards, \"statement 2\" :Since you ' re nice , you give John less than 7 baseball cards, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "baseball_in_s1 = 4\nbaseball_in_s2 = 0\nbaseball_in_s2 < 7 \n\n\nif baseball_in_s1 is None or baseball_in_s2 is None:\n print(\"neutral\")\nelif baseball_in_s1 == baseball_in_s2 or baseball_in_s2 < 7:\n print(\"Entailment\")\nelif baseball_in_s1 != baseball_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": This is good news for Gaelic translators , as the EU will have to churn out official documents in this language , in addition to the 20 other official EU languages ., \"statement 2\" :There are 21 official EU languages ., \"options: \" Entailment or neutral?", + "Output Program": [ + "eu_lan_in_s1 = 20\neu_lan_in_s2 = 0\neu_lan_in_s2 < 21\n\n\nif eu_lan_in_s1 is None or eu_lan_in_s2 is None:\n print(\"neutral\")\nelif eu_lan_in_s1 == eu_lan_in_s2 or eu_lan_in_s2 < 21:\n print(\"Entailment\")\nelif eu_lan_in_s1 != eu_lan_in_s2:\n print(\"contradiction\")\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mrs. Sheridan has 17.0 cats and Mrs. Sheridan gave away 14.0 cats, \"statement 2\" :Sheridan has 3.0 cats now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "cars_in_s1 = 17-14\ncars_in_s2 = 3\n\nif cars_in_s1 is None or cars_in_s2 is None:\n print(\"neutral\")\nelif cars_in_s1 == cars_in_s2:\n print(\"Entailment\")\nelif cars_in_s1 != cars_in_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If , five years from now , the sum W of their ages will be less than 71 , how old is Stephanie ?, \"statement 2\" :If , five years from now , the sum W of their ages will be 51 , how old is Stephanie ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "five_years_age_in_s1 = 0\nfive_years_age_in_s1 < 71\nfive_years_age_in_s1 = 70\nfive_years_age_in_s2 = 51\n\n\nif five_years_age_in_s1 is None or five_years_age_in_s2 is None or five_years_age_in_s1 < 71 > five_years_age_in_s2:\n print(\"neutral\")\nelif five_years_age_in_s1 == five_years_age_in_s2:\n print(\"Entailment\")\nelif five_years_age_in_s1 != five_years_age_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sam bought 50 candles and 3 lighters costing 2 dollars each, \"statement 2\" :Sam bought 80 candles and 3 lighters costing 2 dollars each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "candles_bought_in_s1 = 50\ncandles_bought_in_s2 = 80\n\nlighter_bought_in_s1 = 3\nlighter_bought_in_s2 = 3\n\nprice_in_s1 = 2\nprice_in_s2 = 2\n\nif candles_bought_in_s1 is None or candles_bought_in_s2 is None or lighter_bought_in_s1 is None or lighter_bought_in_s2 is None or price_in_s1 is None or price_in_s2 is None:\n print(\"neutral\")\nelif candles_bought_in_s1 == candles_bought_in_s2 and lighter_bought_in_s1 == lighter_bought_in_s2 and price_in_s1 == price_in_s2:\n print(\"Entailment\")\nelif candles_bought_in_s1 != candles_bought_in_s2 or lighter_bought_in_s1 != lighter_bought_in_s2 or price_in_s1 != price_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": So far , an orchard has sold a combined total of 9792.0 pounds of fresh and frozen fruit this season , and they have sold 3513.0 pounds of frozen fruit, \"statement 2\" :6279.0 pounds of fresh fruit have been sold so far, \"options: \" Entailment or contradiction?", + "Output Program": [ + "fresh_fruit_in_s1 = 9792-3513\nfresh_fruit_in_s2 = 6279\n\nif fresh_fruit_in_s1 is None or fresh_fruit_in_s2 is None:\n print(\"neutral\")\nelif fresh_fruit_in_s1 == fresh_fruit_in_s2:\n print(\"Entailment\")\nelif fresh_fruit_in_s1 != fresh_fruit_in_s2:\n print(\"contradiction\")\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In the biology lab of ` ` Jefferson ' ' High School there are 5.4 * 10 ^ 6 germs , equally divided among 10,800 Petri dishes, \"statement 2\" :In the biology lab of ` ` Jefferson ' ' High School there are 5.4 * less than 70 ^ 6 germs , equally divided among 10,800 Petri dishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "germs_in_s1 = (5.4*10**6)/10800\ngerms_in_s2 = 0\ngerms_in_s2 < (5.4*70**6)/10800\n\nif germs_in_s1 is None or germs_in_s2 is None:\n print(\"neutral\")\nelif germs_in_s1 == germs_in_s2 or germs_in_s1 < (5.4*70**6)/10800:\n print(\"Entailment\")\nelif germs_in_s1 != germs_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The Panamanian-flagged carrier , the '' Danny F II , '' sank about 12 miles off the coast of Tripoli ., \"statement 2\" :Panamanian-flagged ship sinks about 12 miles off the coast of Tripoli, \"options: \" Entailment or neutral?", + "Output Program": [ + "miles_in_s1 = 12\nmiles_in_s2 = 12\n\nif miles_in_s1 is None or miles_in_s2 is None:\n print(\"neutral\")\nelif miles_in_s1 == miles_in_s2:\n print(\"Entailment\")\nelif miles_in_s1 != miles_in_s2:\n print(\"contradiction\")\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rebecca ' s annual income is $ 15 , and Jimmy ' s annual income is $ 18, \"statement 2\" :Rebecca ' s annual income is $ less than 15 , and Jimmy ' s annual income is $ 18, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rebecca_income_in_s1 = 15\nrebecca_income_in_s2 = 0\nrebecca_income_in_s2 < 15\nrebecca_income_in_s2 = 14\n\njimmy_income_in_s1 = 18\njimmy_income_in_s2 = 18\n\nif jimmy_income_in_s1 is None or jimmy_income_in_s2 is None or rebecca_income_in_s1 is None or rebecca_income_in_s2 is None:\n print(\"neutral\")\nelif jimmy_income_in_s1 == jimmy_income_in_s2 and rebecca_income_in_s1 == rebecca_income_in_s2:\n print(\"Entailment\")\nelif jimmy_income_in_s1 != jimmy_income_in_s2 or rebecca_income_in_s1 != rebecca_income_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Gemayel 's assassination is almost certain to deepen the political crisis in Lebanon , which started after the resignation of six pro-Syrian ministers , two from Hezbollah , hours after all-party round table talks collapsed ., \"statement 2\" :After the resignation of six pro-Syrian ministers a deep political crises started in Lebanon ., \"options: \" Entailment or neutral?", + "Output Program": [ + "crisis_res_number_in_s1 = 6\ncrisis_res_number_in_s2 = 6\n\nif crisis_res_number_in_s1 is None or crisis_res_number_in_s2 is None:\n print(\"neutral\")\nelif crisis_res_number_in_s1 == crisis_res_number_in_s2:\n print(\"Entailment\")\nelif crisis_res_number_in_s1 != crisis_res_number_in_s2:\n print(\"contradiction\")\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Let Raj be less than 7 years older than Ravi and Hema be two years younger than Ravi, \"statement 2\" :Let Raj be 3 years older than Ravi and Hema be two years younger than Ravi, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "raj_years_age_in_s1 = 0\nraj_years_age_in_s1 < 7\nraj_years_age_in_s1 = 6\nraj_years_age_in_s2 = 3\n\n\nif raj_years_age_in_s1 is None or raj_years_age_in_s2 is None or raj_years_age_in_s1 < 7 > raj_years_age_in_s2:\n print(\"neutral\")\nelif raj_years_age_in_s1 == raj_years_age_in_s2:\n print(\"Entailment\")\nelif raj_years_age_in_s1 != raj_years_age_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The average of Pratyush ' s marks in more than 4 subjects is 75, \"statement 2\" :The average of Pratyush ' s marks in 7 subjects is 75, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sub_in_s1 = 0\nsub_in_s1 > 4\nsub_in_s1 = 5\nsub_in_s2 = 7\nmarks_in_s1 = 75\nmarks_in_s2 =75\n\nif sub_in_s1 is None or sub_in_s2 is None or sub_in_s1 > 4 < sub_in_s2 or marks_in_s1 is None or marks_in_s2 is None:\n print(\"neutral\")\nelif sub_in_s1 == sub_in_s2 and marks_in_s1 == marks_in_s2:\n print(\"Entailment\")\nelif sub_in_s1 != sub_in_s2 or marks_in_s1 != marks_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In 1979 approximately 1 / 3 of the 37.3 million airline passengers traveling to or from the United States used Kennedy Airport, \"statement 2\" :In 5979 approximately 1 / 3 of the 37.3 million airline passengers traveling to or from the United States used Kennedy Airport, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "year_in_s1 = 1979\nyear_in_s2 = 5979\n\nif year_in_s1 is None or year_in_s2 is None:\n print(\"neutral\")\nelif year_in_s1 == year_in_s2:\n print(\"Entailment\")\nelif year_in_s1 != year_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Melvin ' s GMAT score is twice his monthly electric bill , and his life expectancy is 60 , what is his shoe size ?, \"statement 2\" :If Melvin ' s GMAT score is twice his monthly electric bill , and his life expectancy is less than 70 , what is his shoe size ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "life_expect_in_s1 = 60\nlife_expect_in_s2 = 0\nlife_expect_in_s2 < 70\n\nif life_expect_in_s1 is None or life_expect_in_s2 is None:\n print(\"neutral\")\nelif life_expect_in_s1 == life_expect_in_s2 or life_expect_in_s2 <= 70:\n print(\"Entailment\")\nelif life_expect_in_s1 != life_expect_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": David earns $ 7.00 per hour for the first less than 70 hours he works per week , and twice this rate for overtime, \"statement 2\" :David earns $ 7.00 per hour for the first 50 hours he works per week , and twice this rate for overtime, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "work_hour_in_s1 = 0\nwork_hour_in_s1 < 70\nwork_hour_in_s1 = 69\nwork_hour_in_s2 = 50\nearning_in_s1 = 7\nearning_in_s2 = 7\n\nif work_hour_in_s1 is None or work_hour_in_s2 is None or work_hour_in_s1 < 70 > work_hour_in_s2 or earning_in_s1 is None or earning_in_s2 is None:\n print(\"neutral\")\nelif work_hour_in_s1 == work_hour_in_s2 and earning_in_s1 == earning_in_s2:\n print(\"Entailment\")\nelif work_hour_in_s1 != work_hour_in_s2 or earning_in_s1 != earning_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill , who lives in City C , plans to visit less than 8 different cities , M , N , L , and S, \"statement 2\" :Jill , who lives in City C , plans to visit 4 different cities , M , N , L , and S, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "city_in_s1 = 0\ncity_in_s1 < 8\ncity_in_s1 = 7\ncity_in_s2 = 4\n\n\nif city_in_s1 is None or city_in_s1 is None or city_in_s1 < 8 > city_in_s2:\n print(\"neutral\")\nelif city_in_s1 == city_in_s2:\n print(\"Entailment\")\nelif city_in_s1 != city_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Using mathematical algorithms , researchers estimate 1 in 38 children in South Korea have an autism spectrum disorder ., \"statement 2\" :A new study estimates 1 in 38 South Korean children has some form of autism, \"options: \" Entailment or neutral?", + "Output Program": [ + "ratio_children_in_s1 = 1/38\nratio_children_in_s2 = 1/38\n\n\nif ratio_children_in_s1 is None or ratio_children_in_s2 is None:\n print(\"neutral\")\nelif ratio_children_in_s1 == ratio_children_in_s2:\n print(\"Entailment\")\nelif ratio_children_in_s1 != ratio_children_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Melvin ' s GMAT score is twice his monthly electric bill , and his life expectancy is 40 , what is his shoe size ?, \"statement 2\" :If Melvin ' s GMAT score is twice his monthly electric bill , and his life expectancy is more than 30 , what is his shoe size ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "life_expect_in_s1 = 40\nlife_expect_in_s2 = 0\nlife_expect_in_s2 > 30\n\nif life_expect_in_s1 is None or life_expect_in_s2 is None:\n print(\"neutral\")\nelif life_expect_in_s1 == life_expect_in_s2 or life_expect_in_s1 > 30 > life_expect_in_s2:\n print(\"Entailment\")\nelif life_expect_in_s1 != life_expect_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In domestic abuse situations , if the abuser has access to a gun , it increases the chance that a woman will die by 500 % ., \"statement 2\" :In domestic abuse situations , women five times more likely to die if abuser has access to gun, \"options: \" Entailment or neutral?", + "Output Program": [ + "die_perc_in_s1 = 500\ndie_perc_in_s2 = 5*100\n\nif die_perc_in_s1 is None or die_perc_in_s2 is None:\n print(\"neutral\")\nelif die_perc_in_s1 == die_perc_in_s2:\n print(\"Entailment\")\nelif die_perc_in_s1 != die_perc_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The 44 parents participating in the Smithville PTA have been assigned to at least 1 of 3 committees : festival planning , classroom aid , and teacher relations, \"statement 2\" :The more than 34 parents participating in the Smithville PTA have been assigned to at least 1 of 3 committees : festival planning , classroom aid , and teacher relations, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "partic_perc_in_s1 = 44\npartic_perc_in_s2 = 0\npartic_perc_in_s2 > 34\n\nif partic_perc_in_s1 is None or partic_perc_in_s2 is None:\n print(\"neutral\")\nelif partic_perc_in_s1 == partic_perc_in_s2 or partic_perc_in_s1 > partic_perc_in_s2 :\n print(\"Entailment\")\nelif partic_perc_in_s1 != partic_perc_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Arun makes a popular brand of ice cream in a rectangular shaped bar 6 cm long , 5 cm wide and 2 cm thick, \"statement 2\" :Arun makes a popular brand of ice cream in a rectangular shaped bar more than 1 cm long , 5 cm wide and 2 cm thick, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "partic_perc_in_s1 = 44\npartic_perc_in_s2 = 0\npartic_perc_in_s2 > 34\n\nif partic_perc_in_s1 is None or partic_perc_in_s2 is None:\n print(\"neutral\")\nelif partic_perc_in_s1 == partic_perc_in_s2 or partic_perc_in_s1 > 34:\n print(\"Entailment\")\nelif partic_perc_in_s1 != partic_perc_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Two dogsled teams raced across a 300 mile course in Wyoming, \"statement 2\" :Two dogsled teams raced across a more than 200 mile course in Wyoming, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "race_dis_in_s1 = 300\nrace_dis_in_s2 = 0\nrace_dis_in_s2 > 200\n\nif race_dis_in_s1 is None or race_dis_in_s2 is None:\n print(\"neutral\")\nelif race_dis_in_s1 == race_dis_in_s2 or race_dis_in_s1 > 200:\n print(\"Entailment\")\nelif race_dis_in_s1 != race_dis_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": more than 7 years ago Jason was 12 times older, \"statement 2\" :8 years ago Jason was 12 times older, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "twelve_year_age_in_s1 = 0\ntwelve_year_age_in_s1 > 7\ntwelve_year_age_in_s2 = 8\n\n\nif twelve_year_age_in_s1 is None or twelve_year_age_in_s2 is None or twelve_year_age_in_s2 > 7:\n print(\"neutral\")\nelif twelve_year_age_in_s1 == effeciency_in_s2:\n print(\"Entailment\")\nelif twelve_year_age_in_s1 != effeciency_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ravi ' s average ( arithmetic mean ) test score on less than 5 tests is 78, \"statement 2\" :Ravi ' s average ( arithmetic mean ) test score on 4 tests is 78, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "test_comparison_in_s1 = 0\ntest_comparison_in_s1 < 5\ntest_comparison_in_s2 = 4\n\n\nif test_comparison_in_s1 is None or test_comparison_in_s2 is None or test_comparison_in_s1 < 5 > test_comparison_in_s2:\n print(\"neutral\")\nelif test_comparison_in_s1 == test_comparison_in_s2:\n print(\"Entailment\")\nelif test_comparison_in_s1 != test_comparison_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Glen drives at a constant speed of 37 km per hour, \"statement 2\" :Glen drives at a constant speed of 57 km per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_in_s1 = 37\nspeed_in_s2 = 57\n\nif speed_in_s1 is None or speed_in_s2 is None:\n print(\"neutral\")\nelif speed_in_s1 == speed_in_s2:\n print(\"Entailment\")\nelif speed_in_s1 != speed_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": less than 45 years hence , Rohan will be just four times as old as he was 15 years ago, \"statement 2\" :15 years hence , Rohan will be just four times as old as he was 15 years ago, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_comparison_in_s1 = 0\nage_comparison_in_s1 < 45\nage_comparison_in_s2 = 15\n\n\nif age_comparison_in_s1 is None or age_comparison_in_s2 is None or age_comparison_in_s1 < 45 > age_comparison_in_s2:\n print(\"neutral\")\nelif age_comparison_in_s1 == age_comparison_in_s2:\n print(\"Entailment\")\nelif age_comparison_in_s1 != age_comparison_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many hours does it take Little Texas Drilling Company to produce less than 405 barrels of oil ?, \"statement 2\" :How many hours does it take Little Texas Drilling Company to produce 205 barrels of oil ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "barrels_in_s1 = 0\nbarrels_in_s1 < 405\nbarrels_in_s2 = 205\n\n\nif barrels_in_s1 is None or barrels_in_s2 is None or barrels_in_s1 < 405 > barrels_in_s2:\n print(\"neutral\")\nelif barrels_in_s1 == barrels_in_s2:\n print(\"Entailment\")\nelif barrels_in_s1 != barrels_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy attempts 30 sums and obtains 45 marks, \"statement 2\" :Sandy attempts more than 10 sums and obtains 45 marks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_sums_att_in_s1 = 30\nsandy_sums_att_in_s2 = 0\nsandy_sums_att_in_s2 > 10\n\nif sandy_sums_att_in_s1 is None or sandy_sums_att_in_s2 is None:\n print(\"neutral\")\nelif sandy_sums_att_in_s1 == sandy_sums_att_in_s2 or sandy_sums_att_in_s1 > 10:\n print(\"Entailment\")\nelif sandy_sums_att_in_s1 != sandy_sums_att_in_s1:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy is younger than Molly by 18 years, \"statement 2\" :Sandy is younger than Molly by less than 78 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_age_diff_in_s1 = 18\nsandy_age_diff_in_s2 = 0\nsandy_age_diff_in_s2 < 78\n\nif sandy_age_diff_in_s1 is None or sandy_age_diff_in_s2 is None:\n print(\"neutral\")\nelif sandy_age_diff_in_s1 == sandy_age_diff_in_s1 or sandy_age_diff_in_s1 < 78:\n print(\"Entailment\")\nelif sandy_age_diff_in_s1 != sandy_age_diff_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary can do a piece of work in 12 days, \"statement 2\" :Mary can do a piece of work in less than 72 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marry_work_in_s1 = 12\nmarry_work_in_s2 = 0\nmarry_work_in_s2 < 72\n\nif marry_work_in_s1 is None or marry_work_in_s2 is None:\n print(\"neutral\")\nelif marry_work_in_s1 == marry_work_in_s2 or marry_work_in_s1 < 72:\n print(\"Entailment\")\nelif marry_work_in_s1 != marry_work_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many clothing combinations does Barbara have , if she doesn \u2019 t wear more than 2 specific shirts with 3 specific pants ?, \"statement 2\" :How many clothing combinations does Barbara have , if she doesn \u2019 t wear 5 specific shirts with 3 specific pants ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shirts_in_s1 = 0\nshirts_in_s1 > 2\nshirts_in_s1 = 3\nshirts_in_s2 = 5\npants_in_s1 = 3\npants_in_s2 = 3\n\n\n\nif shirts_in_s1 is None or shirts_in_s2 is None or shirts_in_s1 > 2 < shirts_in_s2 or pants_in_s1 is None or pants_in_s2 is None:\n print(\"neutral\")\nelif barrels_in_s1 == barrels_in_s2 and pants_in_s1 == pants_in_s2:\n print(\"Entailment\")\nelif barrels_in_s1 != barrels_in_s2 or pants_in_s1 !=pants_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy is younger than Molly by 14 years, \"statement 2\" :Sandy is younger than Molly by more than 14 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_comparison_in_s1 = 14\nage_comparison_in_s2 = 0\nage_comparison_in_s2 > 14\nage_comparison_in_s2 = 15\n\n\n\n\nif age_comparison_in_s1 is None or age_comparison_in_s2 is None:\n print(\"neutral\")\nelif age_comparison_in_s1 == age_comparison_in_s2:\n print(\"Entailment\")\nelif age_comparison_in_s1 != age_comparison_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rasik walked 20 m towards north, \"statement 2\" :Rasik walked less than 80 m towards north, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rasik_walked_in_s1 = 20\nrasik_walked_in_s2 = 0\nrasik_walked_in_s2 < 80\n\nif rasik_walked_in_s1 is None or rasik_walked_in_s2 is None:\n print(\"neutral\")\nelif rasik_walked_in_s1 == rasik_walked_in_s2 or rasik_walked_in_s1 < 80:\n print(\"Entailment\")\nelif rasik_walked_in_s1 != rasik_walked_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The referendum would be held at the same time as the vote to elect Romania 's 35 representatives to the European Parliament , as Romania will join the European Union in 2007 ., \"statement 2\" :12 members of the European Union use the Euro instead of their own national currencies ., \"options: \" Entailment or neutral?", + "Output Program": [ + "members_in_eu_union_in_s1 = None\nmembers_in_eu_union_in_s2 = 12\n\n\nif members_in_eu_union_in_s1 is None or members_in_eu_union_in_s2 is None:\n print(\"neutral\")\nelif members_in_eu_union_in_s1 == members_in_eu_union_in_s2:\n print(\"Entailment\")\nelif members_in_eu_union_in_s1 != members_in_eu_union_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The average number of shirts with Salman , Ambani and Dalmiya is 40 , if all of them reached a shopping mall in Delhi and purchased 14 shirts each of them then average number of shirt each of them now has, \"statement 2\" :The average number of shirts with Salman , Ambani and Dalmiya is more than 10 , if all of them reached a shopping mall in Delhi and purchased 14 shirts each of them then average number of shirt each of them now has, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shirts_in_s1 = 40\nshirts_in_s2 = 0\nshirts_in_s2 > 10\n\nif shirts_in_s1 is None or shirts_in_s2 is None:\n print(\"neutral\")\nelif shirts_in_s1 == shirts_in_s2 or shirts_in_s1 > 10:\n print(\"Entailment\")\nelif shirts_in_s1 != shirts_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is less than 6 : 3 , After 6 Years Rahul age will be 30 years, \"statement 2\" :Ratio between Rahul and Deepak is 4 : 3 , After 6 Years Rahul age will be 30 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rahul_dipak_age_ratio_in_s1 = 0\nrahul_dipak_age_ratio_in_s1 < 6/3\nrahul_dipak_age_ratio_in_s1 = 5/3\nrahul_dipak_age_ratio_in_s2 = 4/3\n\n\nif rahul_dipak_age_ratio_in_s1 is None or rahul_dipak_age_ratio_in_s2 is None or rahul_dipak_age_ratio_in_s2 < rahul_dipak_age_ratio_in_s1 < 6/3:\n print(\"neutral\")\nelif rahul_dipak_age_ratio_in_s1 == rahul_dipak_age_ratio_in_s2:\n print(\"Entailment\")\nelif rahul_dipak_age_ratio_in_s1 != rahul_dipak_age_ratio_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Carol ' s rectangle measures 12 inches by 15 inches and Jordan ' s rectangle is 6 inches long , how wide is Jordan ' s rectangle , in inches ?, \"statement 2\" :If Carol ' s rectangle measures less than 62 inches by 15 inches and Jordan ' s rectangle is 6 inches long , how wide is Jordan ' s rectangle , in inches ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "carols_rec_meas_len_in_s1 = 12\ncarols_rec_meas_len_in_s2 = 0\ncarols_rec_meas_len_in_s2 < 62\njorden_rec_in_s1 = 6\njorden_rec_in_s2 = 6\n\nif carols_rec_meas_len_in_s1 is None or carols_rec_meas_len_in_s2 is None or jorden_rec_in_s1 is None or jorden_rec_in_s2 is None:\n print(\"neutral\")\nelif (carols_rec_meas_len_in_s1 == carols_rec_meas_len_in_s1 and jorden_rec_in_s1 == jorden_rec_in_s2) or (carols_rec_meas_len_in_s1 > 10 and jorden_rec_in_s1 == jorden_rec_in_s2):\n print(\"Entailment\")\nelif carols_rec_meas_len_in_s1 != carols_rec_meas_len_in_s2 or jorden_rec_in_s1 != jorden_rec_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Fred walks at a constant speed of more than 1 miles per hour and Sam walks at a constant speed of 5 miles per hour , how many miles has Sam walked when they meet ?, \"statement 2\" :If Fred walks at a constant speed of 5 miles per hour and Sam walks at a constant speed of 5 miles per hour , how many miles has Sam walked when they meet ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "fred_spped_in_s1 = 0\nfred_spped_in_s1 > 1\nfred_spped_in_s1 = 2\nfred_spped_in_s2 = 5\n\n\nif fred_spped_in_s1 is None or fred_spped_in_s2 is None or (fred_spped_in_s1 > 1 < fred_spped_in_s2):\n print(\"neutral\")\nelif fred_spped_in_s1 == fred_spped_in_s2:\n print(\"Entailment\")\nelif fred_spped_in_s1 != fred_spped_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nitin ranks less than 33 th in a class of 60 students, \"statement 2\" :Nitin ranks 23 th in a class of 60 students, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "nitin_rank_in_s1 = 0\nnitin_rank_in_s1 < 33\nnitin_rank_in_s2 = 12\n\nif nitin_rank_in_s1 is None or nitin_rank_in_s2 is None or nitin_rank_in_s1 < 33:\n print(\"neutral\")\nelif nitin_rank_in_s1 == nitin_rank_in_s2:\n print(\"Entailment\")\nelif nitin_rank_in_s1 != nitin_rank_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At Veridux Corporation , there are 250 employees, \"statement 2\" :At Veridux Corporation , there are 550 employees, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "emp_in_s1 = 250\nemp_in_s2 = 550\n\n\n\nif emp_in_s1 is None or emp_in_s2 is None:\n print(\"neutral\")\nelif emp_in_s1 == emp_in_s2:\n print(\"Entailment\")\nelif emp_in_s1 != emp_in_s2:\n print(\"contradiction\")\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Calculate the average mark scored by Nancy if she obtained the following scores in an examination : less than 85 , 78 , 89 , 51 and 69 marks ( out of 100 ) in English Language , Physics , Mathematics , Chemistry and Biology ?, \"statement 2\" :Calculate the average mark scored by Nancy if she obtained the following scores in an examination : 65 , 78 , 89 , 51 and 69 marks ( out of 100 ) in English Language , Physics , Mathematics , Chemistry and Biology ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_in_s1 = {\n \"English\": 0,\n \"Maths\": 89,\n \"Physics\": 78,\n \"Chemestry\": 51,\n \"Biology\": 69\n}\nmarks_in_s2 = {\n \"English\": 85,\n \"Maths\": 89,\n \"Physics\": 78,\n \"Chemestry\": 51,\n \"Biology\": 69\n}\nmarks_in_s1['English'] < 85\n\nif marks_in_s2 is None or marks_in_s1 is None or len(marks_in_s2)!=len(marks_in_s2) or marks_in_s1['English'] < 85:\n print(\"neutral\")\nelif marks_in_s1 == marks_in_s2:\n print(\"Entailment\")\nelif marks_in_s1 != marks_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The official autopsy , as published by the Post-Dispatch , said Brown sustained six gunshot entrance wounds ., \"statement 2\" :Official autopsy : Brown sustained 6 gunshot entrance wounds, \"options: \" Entailment or neutral?", + "Output Program": [ + "gun_shot_in_s1 = 6\ngun_shot_in_s2 = 6\n\nif gun_shot_in_s1 is None or gun_shot_in_s2 is None:\n print(\"neutral\")\nelif gun_shot_in_s1 == gun_shot_in_s2:\n print(\"Entailment\")\nelif gun_shot_in_s1 != gun_shot_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were 10.0 students riding on the school bus and at the first stop, 3.0 students got on the bus, \"statement 2\" :17.0 students are now on the bus, \"options: \" Entailment or contradiction?", + "Output Program": [ + "students_in_s1 = 10+3\nstudents_in_s2 = 17\n\n\n\nif students_in_s1 is None or students_in_s2 is None:\n print(\"neutral\")\nelif students_in_s1 == students_in_s2:\n print(\"Entailment\")\nelif students_in_s1 != students_in_s2:\n print(\"contradiction\")\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": They both work together for 5 days and then Sushil goes away, \"statement 2\" :They both work together for more than 1 days and then Sushil goes away, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "work_days_in_s1 = 5\nwork_days_in_s2 = 0\nwork_days_in_s2 > 1\n\nif work_days_in_s1 is None or work_days_in_s2 is None:\n print(\"neutral\")\nelif work_days_in_s1 == work_days_in_s2 or work_days_in_s1 > 1:\n print(\"Entailment\")\nelif gun_shot_in_s1 != gun_shot_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The distance from Steve ' s house to work is 30 Km, \"statement 2\" :The distance from Steve ' s house to work is more than 10 Km, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dist_in_s1 = 30\ndist_in_s2 = 0\ndist_in_s2 > 10\n\nif dist_in_s1 is None or dist_in_s2 is None:\n print(\"neutral\")\nelif dist_in_s1 == dist_in_s2 or dist_in_s1 > 10:\n print(\"Entailment\")\nelif dist_in_s1 != dist_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The compound interest earned by Sunil on a certain amount at the end of two years at the rate of more than 6 % p, \"statement 2\" :The compound interest earned by Sunil on a certain amount at the end of two years at the rate of 8 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "compound_interest_in_s1 = 0\ncompound_interest_in_s1 > 6\ncompound_interest_in_s2 = 8\n\nif compound_interest_in_s1 is None or compound_interest_in_s2 is None or compound_interest_in_s1 > 6 3\ncar_in_s2 = 4\n\n\n\nif car_in_s1 is None or car_in_s2 is None:\n print(\"neutral\")\nelif car_in_s1 == car_in_s2:\n print(\"Entailment\")\nelif car_in_s1 != car_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John purchased 8 kg of apples at the rate of 70 per kg and 9 kg of banana at the rate of 55 per kg, \"statement 2\" :John purchased 1 kg of apples at the rate of 70 per kg and 9 kg of banana at the rate of 55 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "purchase_apple_at_70_in_s1 = 8\npurchase_apple_at_70_in_s2 = 1\npur_bann_55_in_s1 = 9\npur_bann_55_in_s2 = 9\n\nif purchase_apple_at_70_in_s1 is None or purchase_apple_at_70_in_s2 is None or pur_bann_55_in_s1 is None or pur_bann_55_in_s2 is None:\n print(\"neutral\")\nelif purchase_apple_at_70_in_s1 == purchase_apple_at_70_in_s2 and pur_bann_55_in_s1 == pur_bann_55_in_s2:\n print(\"Entailment\")\nelif purchase_apple_at_70_in_s1 != purchase_apple_at_70_in_s2 or pur_bann_55_in_s2 != pur_bann_55_in_s1:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The average number of shirts with Salman , Ambani and Dalmiya is 40 , if all of them reached a shopping mall in Delhi and purchased 14 shirts each of them then average number of shirt each of them now has, \"statement 2\" :The average number of shirts with Salman , Ambani and Dalmiya is 10 , if all of them reached a shopping mall in Delhi and purchased 14 shirts each of them then average number of shirt each of them now has, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "avg_shirts_in_s1 = 40\navg_shirts_in_s2 = 10\nbuy_avg_in_s1 = 14\nbuy_avg_in_s2 = 14\n\nif avg_shirts_in_s1 is None or avg_shirts_in_s2 is None or buy_avg_in_s1 is None or buy_avg_in_s2 is None:\n print(\"neutral\")\nelif avg_shirts_in_s1 == avg_shirts_in_s2 and buy_avg_in_s1 == buy_avg_in_s2:\n print(\"Entailment\")\nelif avg_shirts_in_s1 != avg_shirts_in_s2 or buy_avg_in_s1 != buy_avg_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The new moon , which is only about 25 miles in diameter , was actually photographed 13 years ago by the Voyager 2 ., \"statement 2\" :The moon Titan has a diameter of 5100 kilometers ., \"options: \" Entailment or neutral?", + "Output Program": [ + "moon_dia_in_s1 = 25\nmoon_photograph_in_s1 = 13\nmoon_dia_in_s2 = 5100\nmoon_photograph_in_s2 = None\n\nif moon_dia_in_s1 is None or moon_dia_in_s2 is None or moon_photograph_in_s1 is None or moon_photograph_in_s2 is None:\n print(\"neutral\")\nelif moon_dia_in_s1 == moon_dia_in_s1 and moon_photograph_in_s1 == moon_photograph_in_s2:\n print(\"Entailment\")\nelif moon_photograph_in_s1 != moon_photograph_in_s1 or moon_dia_in_s1!= moon_dia_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Clarissa is driving home from work , 110 miles away, \"statement 2\" :Clarissa is driving home from work , less than 610 miles away, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "clarrisa_drove_in_s1 = 110\nclarrisa_drove_in_s2 = 0\nclarrisa_drove_in_s1 < 610\n\nif clarrisa_drove_in_s1 is None or clarrisa_drove_in_s2 is None:\n print(\"neutral\")\nelif clarrisa_drove_in_s1 == clarrisa_drove_in_s2 or clarrisa_drove_in_s1 < 610:\n print(\"Entailment\")\nelif clarrisa_drove_in_s1 != clarrisa_drove_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In how many ways can you seat 7 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"statement 2\" :In how many ways can you seat more than 1 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_seated_in_s1 = 7\npeople_seated_in_s2 = 0\npeople_seated_in_s2 > 1\n\nif people_seated_in_s1 is None or people_seated_in_s2 is None:\n print(\"neutral\")\nelif people_seated_in_s1 == people_seated_in_s2 or people_seated_in_s1 > 1:\n print(\"Entailment\")\nelif people_seated_in_s1 != people_seated_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": city A to city B , Andrew drove for 1 hour at 50 mph and for 3 hours at 60 mph, \"statement 2\" :city A to city B , Andrew drove for 4 hour at 50 mph and for 3 hours at 60 mph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hrs_at_speed_50mph_in_s1 = 1\nhrs_at_speed_50mph_in_s2 = 4\nhrs_at_speed_60mph_in_s1 = 3\nhrs_at_speed_60mph_in_s2 = 3\n\nif hrs_at_speed_50mph_in_s1 is None or hrs_at_speed_50mph_in_s2 is None or hrs_at_speed_60mph_in_s1 is None or hrs_at_speed_60mph_in_s2 is None:\n print(\"neutral\")\nelif hrs_at_speed_50mph_in_s1 == hrs_at_speed_50mph_in_s2 and hrs_at_speed_60mph_in_s1 == hrs_at_speed_60mph_in_s2:\n print(\"Entailment\")\nelif hrs_at_speed_50mph_in_s1 != hrs_at_speed_50mph_in_s2 or hrs_at_speed_60mph_in_s1 != hrs_at_speed_60mph_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Stacy has a more than 53 page history paper due in 3 days, \"statement 2\" :Stacy has a 63 page history paper due in 3 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stacy_paper_due_in_s1 = 0\nstacy_paper_due_in_s1 > 53\nstacy_paper_due_in_s2 = 63\n\n\nif stacy_paper_due_in_s1 is None or stacy_paper_due_in_s2 is None or stacy_paper_due_in_s2 > 53:\n print(\"neutral\")\nelif stacy_paper_due_in_s1 == stacy_paper_due_in_s2:\n print(\"Entailment\")\nelif stacy_paper_due_in_s1 != stacy_paper_due_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sanoop bought 8 t - shirts at an average price ( arithmetic mean ) of Rs, \"statement 2\" :Sanoop bought more than 3 t - shirts at an average price ( arithmetic mean ) of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tshirt_in_s1 = 8\ntshirt_in_s2 = 0\ntshirt_in_s2 > 3\n\nif tshirt_in_s1 is None or tshirt_in_s1 is None:\n print(\"neutral\")\nelif tshirt_in_s1 == tshirt_in_s1 or tshirt_in_s1 > 3:\n print(\"Entailment\")\nelif tshirt_in_s1 != tshirt_in_s1:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Kishore saved less than 40 % of his monthly salary, \"statement 2\" :Kishore saved 10 % of his monthly salary, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kishore_saves_in_s1 = 0\nkishore_saves_in_s1 < 40\nkishore_saves_in_s2 = 10\n\n\nif kishore_saves_in_s1 is None or kishore_saves_in_s2 is None or kishore_saves_in_s1 < 40:\n print(\"neutral\")\nelif kishore_saves_in_s1 == kishore_saves_in_s2:\n print(\"Entailment\")\nelif kishore_saves_in_s1 != kishore_saves_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Cook can divide his herd into 5 equal parts and also to 6 equal parts , but not to 9 equal parts, \"statement 2\" :Cook can divide his herd into less than 6 equal parts and also to 6 equal parts , but not to 9 equal parts, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "herd_divided_in_s1 = 5\nherd_divided_in_s2 = 0\nherd_divided_in_s2 < 6\n\nif herd_divided_in_s1 is None or herd_divided_in_s2 is None:\n print(\"neutral\")\nelif herd_divided_in_s1 == herd_divided_in_s2 or herd_divided_in_s1 < 6:\n print(\"Entailment\")\nelif herd_divided_in_s1 != herd_divided_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Dan works alone for 8 hours and then stops , how many hours will it take Annie , working alone , to complete the job ?, \"statement 2\" :If Dan works alone for more than 8 hours and then stops , how many hours will it take Annie , working alone , to complete the job ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "working_hours_in_s1 = 8\nworking_hours_in_s2 = 0\nworking_hours_in_s2 > 8\nworking_hours_in_s2 = 9\n\nif working_hours_in_s1 is None or working_hours_in_s2 is None:\n print(\"neutral\")\nelif working_hours_in_s1 == working_hours_in_s2:\n print(\"Entailment\")\nelif working_hours_in_s1 != working_hours_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Angela has 12 pairs of matched socks, \"statement 2\" :Angela has less than 72 pairs of matched socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pair_of_sock_in_s1 = 12\npair_of_sock_in_s2 = 0\npair_of_sock_in_s2 < 72\n\nif pair_of_sock_in_s1 is None or pair_of_sock_in_s2 is None:\n print(\"neutral\")\nelif pair_of_sock_in_s1 == pair_of_sock_in_s2 or pair_of_sock_in_s1 < 72:\n print(\"Entailment\")\nelif pair_of_sock_in_s1 != pair_of_sock_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Randy has 78.0 blocks and Anna gives him 19.0 blocks, \"statement 2\" :Randy has 102.0 blocks now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "blocks_in_s1 = 78+19\nblocks_in_s2 = 102\n\n\nif blocks_in_s1 is None or blocks_in_s2 is None:\n print(\"neutral\")\nelif blocks_in_s1 == blocks_in_s2:\n print(\"Entailment\")\nelif blocks_in_s1 != blocks_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A box of books weighs 42 pounds, and each book weighs 3 pounds, \"statement 2\" :14.0 books are there in the box, \"options: \" Entailment or contradiction?", + "Output Program": [ + "books_in_s1 = 42/3\nbooks_in_s2 = 14\n\n\nif books_in_s1 is None or books_in_s2 is None:\n print(\"neutral\")\nelif books_in_s1 == books_in_s2:\n print(\"Entailment\")\nelif books_in_s1 != books_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": For the final act, the circus brought out dancing animals wearing crowns, and each crown is made with 7.0 different colored feathers, \"statement 2\" :6533.0 feathers are needed for 934.0 crowns, \"options: \" Entailment or contradiction?", + "Output Program": [ + "col_fether_in_s1 = 7\ncol_fether_in_s2 = 6533/934\n\n\nif col_fether_in_s1 is None or col_fether_in_s2 is None:\n print(\"neutral\")\nelif col_fether_in_s1 == col_fether_in_s2:\n print(\"Entailment\")\nelif col_fether_in_s1 != col_fether_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is less than 3 : 3 ?, \"statement 2\" :What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is 2 : 3 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_in_s1=0\nratio_in_s1 < 3/3\nratio_in_s2 = 2/3\n\n\nif ratio_in_s1 is None or ratio_in_s2 is None or ratio_in_s1 < 3/3:\n print(\"neutral\")\nelif ratio_in_s1 == ratio_in_s2:\n print(\"Entailment\")\nelif ratio_in_s1 != ratio_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": less than 880 , calculate the dividend from Carol ' s stock ., \"statement 2\" :180 , calculate the dividend from Carol ' s stock ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "carol_stock_in_s1 = 0\ncarol_stock_in_s1 < 880\ncarol_stock_in_s2 = 180\n\n\nif carol_stock_in_s1 is None or carol_stock_in_s2 is None or carol_stock_in_s1 < 880:\n print(\"neutral\")\nelif carol_stock_in_s1 == carol_stock_in_s2:\n print(\"Entailment\")\nelif carol_stock_in_s1 != carol_stock_in_s1:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Civilians accounted for 21 of the dead ; two of them were beheaded , according to the statement ., \"statement 2\" :21 of the dead were civilians ; two of them were beheaded , Syrian Observatory says, \"options: \" Entailment or neutral?", + "Output Program": [ + "civilians_dead_in_s1 = 21\ncivilians_dead_in_s2 = 21\nbeheaded_in_s1 = 2\nbeheaded_in_s2 = 2 \n\n\nif civilians_dead_in_s1 is None or civilians_dead_in_s2 is None:\n print(\"neutral\")\nelif civilians_dead_in_s1 == civilians_dead_in_s2 and beheaded_in_s1 == beheaded_in_s2:\n print(\"Entailment\")\nelif civilians_dead_in_s1 != civilians_dead_in_s2 or beheaded_in_s1 != beheaded_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": This morning , Anitha worker baked 810 plum pies, \"statement 2\" :This morning , Anitha worker baked 510 plum pies, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "plum_pies_in_s1 = 810\nplum_pies_in_s2 = 510\n\n\nif plum_pies_in_s1 is None or plum_pies_in_s2 is None:\n print(\"neutral\")\nelif plum_pies_in_s1 == plum_pies_in_s2:\n print(\"Entailment\")\nelif plum_pies_in_s1 != plum_pies_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In 1998 , Mr Shivkumar invested another additional amount of 10000 and Mr Suresh joined them with an amount of 35000, \"statement 2\" :In less than 1998 , Mr Shivkumar invested another additional amount of 10000 and Mr Suresh joined them with an amount of 35000, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "joined_year_in_s1 = 1998\njoined_year_in_s2 = 0\njoined_year_in_s2 < 1998\njoined_year_in_s2 = 1997\n\nshiv_amount_in_s1 = 10000\nshiv_amount_in_s2 = 10000\nsuresh_amount_in_s1 = 35000\nsuresh_amount_in_s2 = 35000\n\nif joined_year_in_s1 is None or joined_year_in_s2 is None or shiv_amount_in_s1 is None or shiv_amount_in_s2 is None or suresh_amount_in_s1 is None or suresh_amount_in_s2 is None:\n print(\"neutral\")\nelif joined_year_in_s1 == joined_year_in_s2 and shiv_amount_in_s1 == shiv_amount_in_s2 and suresh_amount_in_s1 == suresh_amount_in_s2:\n print(\"Entailment\")\nelif joined_year_in_s1 != joined_year_in_s2 or shiv_amount_in_s1 != shiv_amount_in_s2 or suresh_amount_in_s1 != suresh_amount_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": David obtained less than 86 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"statement 2\" :David obtained 76 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "david_marks_in_s1 = [0,65,82,67,85]\ndavid_marks_in_s1[0] < 86\ndavid_marks_in_s2 = [76,65,82,67,85]\n\n\nif david_marks_in_s1 is None or david_marks_in_s2 is None or david_marks_in_s2[0] < 86:\n print(\"neutral\")\nelif david_marks_in_s1 == david_marks_in_s2:\n print(\"Entailment\")\nelif david_marks_in_s1 != david_marks_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the ratio of their ages is 7 : 9 , how old is Sandy ?, \"statement 2\" :If the ratio of their ages is more than 5 : 9 , how old is Sandy ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_ratio_in_s1 = 7/9\nage_ratio_in_s2 = 0\nage_ratio_in_s2 > 5/9\n \n\n\nif age_ratio_in_s1 is None or age_ratio_in_s2 is None:\n print(\"neutral\")\nelif age_ratio_in_s1 == age_ratio_in_s2 or age_ratio_in_s1 > 5/9:\n print(\"Entailment\")\nelif age_ratio_in_s1 != age_ratio_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Jadeja paid a total of $ less than 533 , excluding sales tax , to rent the tool , for how many hours did she rent it ?, \"statement 2\" :If Jadeja paid a total of $ 133 , excluding sales tax , to rent the tool , for how many hours did she rent it ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jadeja_sales_tax_in_s1 = 0\njadeja_sales_tax_in_s1 < 533\njadeja_sales_tax_in_s2 = 133\n\n\nif jadeja_sales_tax_in_s1 is None or jadeja_sales_tax_in_s2 is None or jadeja_sales_tax_in_s2 < 533:\n print(\"neutral\")\nelif jadeja_sales_tax_in_s1 == jadeja_sales_tax_in_s2:\n print(\"Entailment\")\nelif jadeja_sales_tax_in_s1 != jadeja_sales_tax_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary selects a total of less than 50 apples and oranges from the food stand , and the average ( arithmetic mean ) price of the 10 pieces of fruit is 54 \u00a2, \"statement 2\" :Mary selects a total of 10 apples and oranges from the food stand , and the average ( arithmetic mean ) price of the 10 pieces of fruit is 54 \u00a2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marry_select_apple_in_s1 = 0\nmarry_select_apple_in_s1 < 50\nmarry_select_apple_in_s2 = 10\n\n\nif marry_select_apple_in_s1 is None or marry_select_apple_in_s2 is None or marry_select_apple_in_s2 < 50:\n print(\"neutral\")\nelif marry_select_apple_in_s1 == marry_select_apple_in_s2:\n print(\"Entailment\")\nelif marry_select_apple_in_s1 != marry_select_apple_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The pilot of a small aircraft with a more than 10 - gallon fuel tank wants to fly to Cleveland , which is 480 miles away, \"statement 2\" :The pilot of a small aircraft with a 40 - gallon fuel tank wants to fly to Cleveland , which is 480 miles away, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "fuel_in_s1 = 0\nfuel_in_s1 > 10\nfuel_in_s2 = 40\ndis_in_s1 = 480\ndis_in_s2 = 480\n\n\nif fuel_in_s1 is None or fuel_in_s2 is None or fuel_in_s2 > 10 or dis_in_s1 is None or dis_in_s2 is None:\n print(\"neutral\")\nelif fuel_in_s1 == fuel_in_s2 and dis_in_s1 == dis_in_s2:\n print(\"Entailment\")\nelif fuel_in_s1 != fuel_in_s2 or dis_in_s1 != dis_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Veena ranks 73 rd from the top in a class of 182, \"statement 2\" :Veena ranks less than 83 rd from the top in a class of 182, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "veenas_rank_from_182_in_s1 = 73\nveenas_rank_from_182_in_s2 = 0\nveenas_rank_from_182_in_s1 < 83\n \n\n\nif veenas_rank_from_182_in_s1 is None or veenas_rank_from_182_in_s2 is None:\n print(\"neutral\")\nelif veenas_rank_from_182_in_s1 == veenas_rank_from_182_in_s2 or veenas_rank_from_182_in_s1 < 83:\n print(\"Entailment\")\nelif veenas_rank_from_182_in_s1 != veenas_rank_from_182_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Exactly more than 2 / 10 of the ponies have horseshoes , and exactly 5 / 8 of the ponies with horseshoes are from Iceland, \"statement 2\" :Exactly 3 / 10 of the ponies have horseshoes , and exactly 5 / 8 of the ponies with horseshoes are from Iceland, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ponies_with_horshoes_in_s1 = 0\nponies_with_horshoes_in_s1 > 2/10\nponies_with_horshoes_in_s2 = 3/10\niceland_ponies_in_s1 = 5/8\niceland_ponies_in_s2 = 5/8\n\n\nif ponies_with_horshoes_in_s1 is None or ponies_with_horshoes_in_s2 is None or ponies_with_horshoes_in_s2 > 2/10 or iceland_ponies_in_s1 is None or iceland_ponies_in_s2 is None:\n print(\"neutral\")\nelif ponies_with_horshoes_in_s1 == ponies_with_horshoes_in_s2 and iceland_ponies_in_s1 == iceland_ponies_in_s2:\n print(\"Entailment\")\nelif ponies_with_horshoes_in_s1 != ponies_with_horshoes_in_s2 or iceland_ponies_in_s1 != iceland_ponies_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Henry were to add less than 7 gallons of water to a tank that is already 3 / 4 full of water , the tank would be 7 / 8 full, \"statement 2\" :If Henry were to add 5 gallons of water to a tank that is already 3 / 4 full of water , the tank would be 7 / 8 full, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "water_in_s1 = 0\nwater_in_s1 < 7\nwater_in_s2 = 5\ntank_full_in_s1 = 7/8\ntank_full_in_s2 = 7/8\n\n\nif water_in_s1 is None or water_in_s2 is None or water_in_s2 < 7 or tank_full_in_s1 is None or tank_full_in_s2 is None:\n print(\"neutral\")\nelif water_in_s1 == water_in_s2 and tank_full_in_s1 == tank_full_in_s2:\n print(\"Entailment\")\nelif water_in_s1 != water_in_s2 or tank_full_in_s1 != tank_full_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Britain has about 4,100 troops in Iraq , the second-largest contingent after the United States , which has about 142,500 ., \"statement 2\" :After U.S. 's 142,500 troops , Britain has second-largest contingent : 4,100, \"options: \" Entailment or neutral?", + "Output Program": [ + "britain_troops_in_iraq_in_s1 = 4100\nbritain_troops_in_iraq_in_s2 = 4100\namerica_troops_in_iraq_in_s1 = 142500\namerica_troops_in_iraq_in_s2 = 142500\n\n\nif britain_troops_in_iraq_in_s1 is None or britain_troops_in_iraq_in_s2 is None:\n print(\"neutral\")\nelif britain_troops_in_iraq_in_s1 == britain_troops_in_iraq_in_s2 and america_troops_in_iraq_in_s1 ==america_troops_in_iraq_in_s2:\n print(\"Entailment\")\nelif britain_troops_in_iraq_in_s1 != britain_troops_in_iraq_in_s2 or america_troops_in_iraq_in_s1 != america_troops_in_iraq_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many liters of blue paint must be added to 32 liters of Fuchsia to change it to Mauve paint ?, \"statement 2\" :How many liters of blue paint must be added to 42 liters of Fuchsia to change it to Mauve paint ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "qty_colour_in_s1 = 32\nqty_colour_in_s2 = 42\n\nif qty_colour_in_s1 is None or qty_colour_in_s2 is None:\n print(\"neutral\")\nelif qty_colour_in_s1 == qty_colour_in_s2:\n print(\"Entailment\")\nelif qty_colour_in_s1 != qty_colour_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John purchased 8 kg of apples at the rate of 70 per kg and 9 kg of banana at the rate of 55 per kg, \"statement 2\" :John purchased more than 3 kg of apples at the rate of 70 per kg and 9 kg of banana at the rate of 55 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "apple_at_70_per_kg_in_s1 = 8\napple_at_70_per_kg_in_s2 = 0\napple_at_70_per_kg_in_s2 > 3\nbanana_at_55_per_kg_in_s1 = 9\nbanana_at_55_per_kg_in_s2 = 9\n\n\nif apple_at_70_per_kg_in_s2 is None or apple_at_70_per_kg_in_s1 is None or banana_at_55_per_kg_in_s1 is None or banana_at_55_per_kg_in_s2 is None:\n print(\"neutral\")\nelif (apple_at_70_per_kg_in_s2 == apple_at_70_per_kg_in_s1 and banana_at_55_per_kg_in_s1 == banana_at_55_per_kg_in_s2) or (banana_at_55_per_kg_in_s1 == banana_at_55_per_kg_in_s2 and apple_at_70_per_kg_in_s1 >3):\n print(\"Entailment\")\nelif apple_at_70_per_kg_in_s2 != apple_at_70_per_kg_in_s1 or banana_at_55_per_kg_in_s1 != banana_at_55_per_kg_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Exactly 5 / 7 of the ponies have horseshoes , and exactly 2 / 3 of the ponies with horseshoes are from Iceland, \"statement 2\" :Exactly more than 3 / 7 of the ponies have horseshoes , and exactly 2 / 3 of the ponies with horseshoes are from Iceland, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ponies_have_horseshoes_in_s1 = 5/7\nponies_have_horseshoes_in_s2 = 0\nponies_have_horseshoes_in_s1 > 3/7\nponies_from_iceland_horseshoes_in_s1 = 2/3\nponies_from_iceland_horseshoes_in_s2 = 2/3\n\n\nif ponies_have_horseshoes_in_s1 is None or ponies_have_horseshoes_in_s2 is None or ponies_from_iceland_horseshoes_in_s1 is None or ponies_from_iceland_horseshoes_in_s2 is None:\n print(\"neutral\")\nelif (ponies_have_horseshoes_in_s1 == ponies_have_horseshoes_in_s2 and ponies_from_iceland_horseshoes_in_s1 == ponies_from_iceland_horseshoes_in_s2) or (ponies_from_iceland_horseshoes_in_s1 == ponies_from_iceland_horseshoes_in_s2 and ponies_have_horseshoes_in_s1 > 3/7):\n print(\"Entailment\")\nelif ponies_have_horseshoes_in_s1 != ponies_have_horseshoes_in_s2 or ponies_from_iceland_horseshoes_in_s1 != ponies_from_iceland_horseshoes_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Abe 's family moved from the Bahamas to Japan , so they had convert their money into Japanese yen and their checking account had 6359.0 yen, and he has spent 3485.0 yen since then , \"statement 2\" :They have 2870.0 yen left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "yen_in_s1 = 6359-3485\nyen_in_s2 = 2870\n\nif yen_in_s1 is None or yen_in_s2 is None:\n print(\"neutral\")\nelif yen_in_s1 == yen_in_s2:\n print(\"Entailment\")\nelif yen_in_s1 != yen_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A train travels from Albany to Syracuse , a distance of 120 miles , at the average rate of 40 miles per hour, \"statement 2\" :A train travels from Albany to Syracuse , a distance of 820 miles , at the average rate of 40 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_in_s1 = 120\nspeed_in_s1 = 40\ndistance_in_s2 = 820\nspeed_in_s2 = 40\n\n\nif distance_in_s1 is None or distance_in_s2 is None or speed_in_s1 is None or speed_in_s2 is None:\n print(\"neutral\")\nelif distance_in_s1 == distance_in_s2 and speed_in_s1 == speed_in_s2:\n print(\"Entailment\")\nelif distance_in_s1 != distance_in_s2 or speed_in_s1 != speed_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 46.0 rulers in the drawer and Tim took 25.0 rulers from the drawer , \"statement 2\" :21.0 rulers are now in the drawer , \"options: \" Entailment or contradiction?", + "Output Program": [ + "rulers_in_s1 = 46-25\nrulers_in_s2 = 21\n\n\nif rulers_in_s1 is None or rulers_in_s2 is None:\n print(\"neutral\")\nelif (rulers_in_s1 == rulers_in_s2):\n print(\"Entailment\")\nelif rulers_in_s1 != rulers_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 5887 is divided between Shyam and Ram , such that Shyam ' s share at the end of 9 years is equal to Ram ' s share at the end of 11 years , compounded annually at the rate of 5 %, \"statement 2\" :less than 8887 is divided between Shyam and Ram , such that Shyam ' s share at the end of 9 years is equal to Ram ' s share at the end of 11 years , compounded annually at the rate of 5 %, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_div_at_end_9_years_in_s1 = 5887\namount_div_at_end_9_years_in_s2 = 0\namount_div_at_end_9_years_in_s2 < 8887\n\nif amount_div_at_end_9_years_in_s1 is None or amount_div_at_end_9_years_in_s2 is None:\n print(\"neutral\")\nelif (amount_div_at_end_9_years_in_s1 == amount_div_at_end_9_years_in_s2) or amount_div_at_end_9_years_in_s1 < 8887:\n print(\"Entailment\")\nelif amount_div_at_end_9_years_in_s1 != amount_div_at_end_9_years_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If John runs in the speed of 9 km / hr from his house , in what time will he reach the park which is 300 m long from his house ?, \"statement 2\" :If John runs in the speed of more than 6 km / hr from his house , in what time will he reach the park which is 300 m long from his house ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_in_s1 = 9\nspeed_in_s2 = 0\nspeed_in_s2 > 6\ndis_in_s1 = 300\ndis_in_s2 = 300\n\n\nif speed_in_s1 is None or speed_in_s2 is None or dis_in_s1 is None or dis_in_s2 is None:\n print(\"neutral\")\nelif (dis_in_s1 == dis_in_s1 and speed_in_s1 == speed_in_s2) or (speed_in_s1 > 6 and dis_in_s1 ==dis_in_s2):\n print(\"Entailment\")\nelif dis_in_s1 != dis_in_s2 or speed_in_s1 != speed_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were 27.0 boys and 35.0 girls on the playground at recess and each boy went back inside paired with a girl, \"statement 2\" :8.0 children were left on the playground now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "left_children_in_s1 = 35-27\nleft_children_in_s2 = 8\n\n\n\nif left_children_in_s1 is None or left_children_in_s2 is None:\n print(\"neutral\")\nelif (left_children_in_s1 == left_children_in_s2):\n print(\"Entailment\")\nelif left_children_in_s1 != left_children_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Caleb spends $ 70.50 on less than 60 hamburgers for the marching band, \"statement 2\" :Caleb spends $ 70.50 on 50 hamburgers for the marching band, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hamburger_at_70_50_in_s1 = 0\nhamburger_at_70_50_in_s1 < 60\nhamburger_at_70_50_in_s2 = 50\n\n\nif hamburger_at_70_50_in_s1 is None or hamburger_at_70_50_in_s2 is None or hamburger_at_70_50_in_s2 < 60:\n print(\"neutral\")\nelif hamburger_at_70_50_in_s1 == hamburger_at_70_50_in_s2:\n print(\"Entailment\")\nelif hamburger_at_70_50_in_s1 != hamburger_at_70_50_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": While the cardinal-electors are locked in the Sistine Chapel on their own for the actual balloting process , they 're not entirely alone for the length of the conclave ., \"statement 2\" :115 cardinal-electors are gathered in the Sistine Chapel to choose a new pope, \"options: \" Entailment or neutral?", + "Output Program": [ + "electors_are_in_s1 = None\nelectors_are_in_s2 = 115\n\nif electors_are_in_s1 is None or electors_are_in_s2 is None:\n print(\"neutral\")\nelif electors_are_in_s1 == electors_are_in_s2:\n print(\"Entailment\")\nelif electors_are_in_s1 != electors_are_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary had 18.0 baseball cards and promised to give Fred 26.0 baseball cards, and Mary buys 40.0 baseball cards, \"statement 2\" :She will have 31.0 baseball cards left after she gives the promised cards to Fred, \"options: \" Entailment or contradiction?", + "Output Program": [ + "base_cards_in_s1 = 18-26+40\nbase_cards_in_s2 = 31\n\n\nif base_cards_in_s1 is None or base_cards_in_s2 is None:\n print(\"neutral\")\nelif base_cards_in_s1 == base_cards_in_s2:\n print(\"Entailment\")\nelif base_cards_in_s1 != base_cards_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Anne wandered for 3.0 miles at 2.0 miles per hour, \"statement 2\" :she wandered for 2.7 hours, \"options: \" Entailment or contradiction?", + "Output Program": [ + "hours_wandered_in_s1 = 3/2\nhours_wandered_in_s2 = 2.7\n\n\nif hours_wandered_in_s1 is None or hours_wandered_in_s2 is None:\n print(\"neutral\")\nelif hours_wandered_in_s1 == hours_wandered_in_s2:\n print(\"Entailment\")\nelif hours_wandered_in_s1 != hours_wandered_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Susan weighs 15 pounds more than Anna does , and together they weigh a total of 145 pounds, \"statement 2\" :Susan weighs 65 pounds more than Anna does , and together they weigh a total of 145 pounds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "weigh_com_in_s1 = 15\nweigh_com_in_s2 = 65\n\ntotal_weight_in_s1 = 145\ntotal_weight_in_s2 = 145\n\nif weigh_com_in_s1 is None or weigh_com_in_s2 is None or total_weight_in_s1 is None or total_weight_in_s2 is None:\n print(\"neutral\")\nelif weigh_com_in_s1 == weigh_com_in_s2 and total_weight_in_s1 == total_weight_in_s2 :\n print(\"Entailment\")\nelif weigh_com_in_s1 != weigh_com_in_s2 or total_weight_in_s1 != total_weight_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Hamburg-based architectural data company , Emporis just released a list of 11 of the world 's most spectacular train stations ., \"statement 2\" :Architectural data company Emporis has compiled a list of 11 stunning train stations, \"options: \" Entailment or neutral?", + "Output Program": [ + "list_data_in_s1 = 11\nlist_data_in_s2 = 11\n\nif list_data_in_s1 is None or list_data_in_s2 is None:\n print(\"neutral\")\nelif (list_data_in_s1 == list_data_in_s2):\n print(\"Entailment\")\nelif list_data_in_s1 != list_data_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Melanie had 7.0 dimes in her bank and she gave her dad 8.0 dimes, and her mother gave her 4.0 dimes , \"statement 2\" :Melanie has 3.0 dimes now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "melanie_dime_in_s1 = 7-8+4\nmelanie_dime_in_s2 = 3\n\nif melanie_dime_in_s1 is None or melanie_dime_in_s2 is None:\n print(\"neutral\")\nelif (melanie_dime_in_s1 == melanie_dime_in_s2):\n print(\"Entailment\")\nelif melanie_dime_in_s1 != melanie_dime_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were 105.0 parents in the program and 698.0 pupils, too., \"statement 2\" :799.0 people were present in the program, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_people_in_s1 = 698+105\ntotal_people_in_s2 = 799\n\nif total_people_in_s1 is None or total_people_in_s2 is None:\n print(\"neutral\")\nelif total_people_in_s1 == total_people_in_s2:\n print(\"Entailment\")\nelif total_people_in_s1 != total_people_in_s2:\n print(\"contradiction\")\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In 8 years from now , Lyn the circus Lion will be exactly half as old as Ele , the circus Elephant, \"statement 2\" :In 2 years from now , Lyn the circus Lion will be exactly half as old as Ele , the circus Elephant, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_comparison_s1 = 8\nage_comparison_s2 = 2\n\nif age_comparison_s1 is None or age_comparison_s2 is None:\n print(\"neutral\")\nelif age_comparison_s1 == age_comparison_s2:\n print(\"Entailment\")\nelif age_comparison_s1 != age_comparison_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Top seed Williams had to come from behind against first-time finalist Polona Hercog on the red clay before triumphing 2-6 6-2 6-3 ., \"statement 2\" :She comes from behind to defeat first-time finalist Polona Hercog 2-6 6-2 6-3 on the red clay, \"options: \" Entailment or neutral?", + "Output Program": [ + "score_list_in_s1 = [2,6,6,2,6,3]\nscore_list_in_s2 = [2,6,6,2,6,3]\n\nif score_list_in_s1 is None or score_list_in_s2 is None:\n print(\"neutral\")\nelif (score_list_in_s1 == score_list_in_s2):\n print(\"Entailment\")\nelif score_list_in_s1 != score_list_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alok ordered 16 chapatis , 5 plates of rice , 7 plates of mixed vegetable and 6 ice - cream cups, \"statement 2\" :Alok ordered less than 66 chapatis , 5 plates of rice , 7 plates of mixed vegetable and 6 ice - cream cups, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "alok_chapati_order_in_s1 = 16\nalok_rice_order_in_s1 = 5\nalok_mix_order_in_s1 = 7\nalok_ice_cream_order_in_s1 = 6\nalok_chapati_order_in_s2 = 0\nalok_chapati_order_in_s2 < 66\nalok_rice_order_in_s2 = 5\nalok_mix_order_in_s2 = 7\nalok_ice_cream_order_in_s2 = 6\n\nif alok_chapati_order_in_s1 is None or alok_chapati_order_in_s2 is None or alok_rice_order_in_s1 is None or alok_rice_order_in_s2 is None or alok_mix_order_in_s1 is None or alok_mix_order_in_s2 is None or alok_ice_cream_order_in_s1 is None or alok_ice_cream_order_in_s2 is None:\n print(\"neutral\")\nelif ((alok_chapati_order_in_s1 < 66) or (alok_chapati_order_in_s1 == alok_chapati_order_in_s2)) and (alok_rice_order_in_s1 == alok_rice_order_in_s2 and alok_mix_order_in_s1 == alok_mix_order_in_s2 and alok_ice_cream_order_in_s1 == alok_ice_cream_order_in_s1):\n print(\"Entailment\")\nelif alok_chapati_order_in_s1 != alok_chapati_order_in_s2 or alok_rice_order_in_s1 != alok_rice_order_in_s2 or alok_mix_order_in_s1 != alok_mix_order_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ashok and Pyarelal invested money together in a business and share a capital of Ashok is 1 / 9 of that of Pyarelal, \"statement 2\" :Ashok and Pyarelal invested money together in a business and share a capital of Ashok is less than 6 / 9 of that of Pyarelal, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_of_ashok_in_s1 = 1/9\nratio_of_ashok_in_s2 = 0\nratio_of_ashok_in_s2 < 6/9\n\nif ratio_of_ashok_in_s1 is None or ratio_of_ashok_in_s2 is None:\n print(\"neutral\")\nelif ratio_of_ashok_in_s1 == ratio_of_ashok_in_s2 or ratio_of_ashok_in_s1 < 6/9:\n print(\"Entailment\")\nelif ratio_of_ashok_in_s1 != ratio_of_ashok_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The product of the ages of Syam and Sunil is 240, \"statement 2\" :The product of the ages of Syam and Sunil is more than 240, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "product_in_s1 = 240\nproduct_in_s2 = 0\nproduct_in_s2 > 240\nproduct_in_s2 = 241\n\nif product_in_s1 is None or product_in_s2 is None:\n print(\"neutral\")\nelif product_in_s1 == product_in_s2:\n print(\"Entailment\")\nelif product_in_s1 != product_in_s2:\n print(\"contradiction\")\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill has 7 gallons of water stored in quart , half - gallon , and one gallon jars, \"statement 2\" :Jill has more than 4 gallons of water stored in quart , half - gallon , and one gallon jars, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "water_stored_in_quart_in_s1 = 7\nwater_stored_in_quart_in_s2 = 0\nwater_stored_in_quart_in_s2 > 4\n\nif water_stored_in_quart_in_s1 is None or water_stored_in_quart_in_s2 is None:\n print(\"neutral\")\nelif water_stored_in_quart_in_s1 == water_stored_in_quart_in_s2 or water_stored_in_quart_in_s1 > 4:\n print(\"Entailment\")\nelif water_stored_in_quart_in_s1 != water_stored_in_quart_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Furyk took full advantage to record six birdies in his first round , a bogey on the final hole not dampening his enthusiasm ., \"statement 2\" :A double bogey on the final hole leaves one over, \"options: \" Entailment or neutral?", + "Output Program": [ + "birds_in_s1 = 6\nbirds_in_s2 = None\n\nif birds_in_s1 is None or birds_in_s2 is None:\n print(\"neutral\")\nelif birds_in_s1 == birds_in_s1:\n print(\"Entailment\")\nelif birds_in_s1 != birds_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Josh had 16.0 marbles in his collection and he found 7.0 more marbles, \"statement 2\" :He has 23.0 marbles now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "marbles_in_s1 = 16+7\nmarbles_in_s2 = 23\n\nif marbles_in_s1 is None or marbles_in_s2 is None:\n print(\"neutral\")\nelif marbles_in_s1 == marbles_in_s2:\n print(\"Entailment\")\nelif marbles_in_s1 != marbles_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Danny Welbeck notched his first hat-trick in Arsenal colors as the Gunners thumped Turkish side Galatasaray 4-1 at Emirates Stadium in London ., \"statement 2\" :Danny Welbeck grabs a hat-trick as English side Arsenal beat Galatasaray 4-1, \"options: \" Entailment or neutral?", + "Output Program": [ + "hatrick_in_s1 = [4, 1]\nhatrick_in_s2 = [4, 1]\n\nif hatrick_in_s1 is None or hatrick_in_s2 is None:\n print(\"neutral\")\nelif hatrick_in_s1 == hatrick_in_s2:\n print(\"Entailment\")\nelif hatrick_in_s1 != hatrick_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Susan drove an average speed of 30 miles per hour for the first 40 miles of a trip then at a average speed of 15 miles / hr for the remaining 40 miles of the trip if she made no stops during the trip what was susan ' s avg speed in miles / hr for the entire trip, \"statement 2\" :Susan drove an average speed of less than 30 miles per hour for the first 40 miles of a trip then at a average speed of 15 miles / hr for the remaining 40 miles of the trip if she made no stops during the trip what was susan ' s avg speed in miles / hr for the entire trip, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "first_40_miles_speed_in_s1 = 30\nsecond_40_miles_speed_in_s1 = 15\n\nfirst_40_miles_speed_in_s2 = 0\nfirst_40_miles_speed_in_s2 < 30\nfirst_40_miles_speed_in_s2 = 29\nsecond_40_miles_speed_in_s2 = 15\n\n\nif first_40_miles_speed_in_s1 is None or first_40_miles_speed_in_s2 is None or second_40_miles_speed_in_s1 is None or second_40_miles_speed_in_s2 is None:\n print(\"neutral\")\nelif first_40_miles_speed_in_s1 == first_40_miles_speed_in_s2 and second_40_miles_speed_in_s1 == second_40_miles_speed_in_s2:\n print(\"Entailment\")\nelif first_40_miles_speed_in_s1 != first_40_miles_speed_in_s2 or second_40_miles_speed_in_s1 != second_40_miles_speed_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jane and Thomas are among the 6 people from which a committee of 3 people is to be selected, \"statement 2\" :Jane and Thomas are among the more than 4 people from which a committee of 3 people is to be selected, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "commi_of_3_people_in_s1 = 6\ncommi_of_3_people_in_s2 = 0\ncommi_of_3_people_in_s2 > 4\n\nif commi_of_3_people_in_s1 is None or commi_of_3_people_in_s2 is None:\n print(\"neutral\")\nelif commi_of_3_people_in_s1 == commi_of_3_people_in_s2 or commi_of_3_people_in_s1 > 4:\n print(\"Entailment\")\nelif commi_of_3_people_in_s1 != commi_of_3_people_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tina has 12 shirts and 9 pants, \"statement 2\" :Tina has 32 shirts and 9 pants, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shirt_in_s1 = 12\npants_in_s1 = 9\n\nshirt_in_s2 = 32\npants_in_s2 = 9\n\nif shirt_in_s1 is None or shirt_in_s2 is None or pants_in_s1 is None or pants_in_s2 is None:\n print(\"neutral\")\nelif shirt_in_s1 == shirt_in_s2 and pants_in_s1 == pants_in_s2:\n print(\"Entailment\")\nelif shirt_in_s1 != shirt_in_s2 or pants_in_s1 != pants_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the number of such passengers that used Miami Airport was 1 / 4 the number that used Kennedy Airport and 3 times the number that used Logan Airport , approximately how many millions of these passengers used Logan Airport that year ?, \"statement 2\" :If the number of such passengers that used Miami Airport was less than 5 / 4 the number that used Kennedy Airport and 3 times the number that used Logan Airport , approximately how many millions of these passengers used Logan Airport that year ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pass_used_miami_airport_in_s1 = 1/4\npass_used_miami_airport_in_s2 = 0\npass_used_miami_airport_in_s1 < 5/4\n\nif pass_used_miami_airport_in_s1 is None or pass_used_miami_airport_in_s2 is None:\n print(\"neutral\")\nelif pass_used_miami_airport_in_s1 == pass_used_miami_airport_in_s2 or pass_used_miami_airport_in_s1 < 5/4:\n print(\"Entailment\")\nelif pass_used_miami_airport_in_s1 != pass_used_miami_airport_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Reeya obtained 65 , 67 , 76 , 82 and 85 out of 100 in different subjects , What will be the average, \"statement 2\" :Reeya obtained more than 45 , 67 , 76 , 82 and 85 out of 100 in different subjects , What will be the average, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "reeya_mark_in_s1 = [65,67,76,82,85]\nreeya_mark_in_s2 = [0,67,76,82,85]\nreeya_mark_in_s1[0] > 45\n\nif reeya_mark_in_s1 is None or reeya_mark_in_s2 is None:\n print(\"neutral\")\nelif reeya_mark_in_s1 == reeya_mark_in_s2 or reeya_mark_in_s1[0] > 45:\n print(\"Entailment\")\nelif reeya_mark_in_s1 != reeya_mark_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Angela has less than 34 pairs of matched socks, \"statement 2\" :Angela has 14 pairs of matched socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "angela_socks_in_s1 = 0\nangela_socks_in_s1 < 34\nangela_socks_in_s2 = 14\n\nif angela_socks_in_s1 is None or angela_socks_in_s2 is None or angela_socks_in_s2 < 34:\n print(\"neutral\")\nelif angela_socks_in_s1 == angela_socks_in_s2:\n print(\"Entailment\")\nelif angela_socks_in_s1 != angela_socks_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": more than 1000 and Christine ' s share is Rs, \"statement 2\" :3000 and Christine ' s share is Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_in_s1 = 0\namount_in_s1 > 1000\namount_in_s2 = 3000\n\nif amount_in_s1 is None or amount_in_s2 is None or amount_in_s2 > 1000:\n print(\"neutral\")\nelif amount_in_s1 == amount_in_s2:\n print(\"Entailment\")\nelif amount_in_s1 != amount_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ratio of men to women in the Snyder community choir is 4 to 7, \"statement 2\" :The ratio of men to women in the Snyder community choir is 6 to 7, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_in_s1 = 4/7\nratio_in_s2 =6/7\n\n\n\nif ratio_in_s1 is None or ratio_in_s2 is None:\n print(\"neutral\")\nelif ratio_in_s1 == ratio_in_s2:\n print(\"Entailment\")\nelif ratio_in_s1 != ratio_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Jake is 155 km away from Kay at 6 am , and also 155 km away from Kay at 11 am , then how fast is Kay driving ( in kilometers per hour ) ?, \"statement 2\" :If Jake is more than 155 km away from Kay at 6 am , and also 155 km away from Kay at 11 am , then how fast is Kay driving ( in kilometers per hour ) ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jakes_km_6am_in_s1 = 155\njakes_km_6am_in_s2 = 0\njakes_km_6am_in_s2 > 155\njakes_km_6am_in_s2 = 156\n \njakes_km_11am_in_s1 = 155\njakes_km_11am_in_s2 = 155\n\n\n\nif jakes_km_6am_in_s1 is None or jakes_km_6am_in_s2 is None or jakes_km_11am_in_s1 is None or jakes_km_11am_in_s2 is None:\n print(\"neutral\")\nelif jakes_km_6am_in_s1 == jakes_km_6am_in_s2 and jakes_km_11am_in_s1==jakes_km_11am_in_s2:\n print(\"Entailment\")\nelif jakes_km_6am_in_s1 != jakes_km_6am_in_s2 or jakes_km_11am_in_s1 != jakes_km_11am_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John completes a piece of work in more than 120 days , Rose completes the same work in 480 days, \"statement 2\" :John completes a piece of work in 320 days , Rose completes the same work in 480 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_work_days_in_s1 = 0\njohn_work_days_in_s1 > 120\njohn_work_days_in_s2 = 320\nrose_work_in_s1 = 480\nrose_work_in_s2 = 480\n\nif john_work_days_in_s1 is None or john_work_days_in_s2 is None or john_work_days_in_s2 > 120 or rose_work_in_s1 is None or rose_work_in_s2 is None:\n print(\"neutral\")\nelif john_work_days_in_s1 == john_work_days_in_s2 and rose_work_in_s1 == rose_work_in_s2:\n print(\"Entailment\")\nelif john_work_days_in_s1 != john_work_days_in_s2 or rose_work_in_s1 != rose_work_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tom and Jerry enter into a partnership by investing $ 700 and $ 300 respectively, \"statement 2\" :Tom and Jerry enter into a partnership by investing $ more than 200 and $ 300 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tom_and_jerry_amount_in_s1 = [700,300]\ntom_and_jerry_amount_in_s2 = [0,300]\ntom_and_jerry_amount_in_s2[0] > 200\n\nif tom_and_jerry_amount_in_s1 is None or tom_and_jerry_amount_in_s2 is None:\n print(\"neutral\")\nelif tom_and_jerry_amount_in_s1 == tom_and_jerry_amount_in_s2 or tom_and_jerry_amount_in_s1[0] > 200:\n print(\"Entailment\")\nelif tom_and_jerry_amount_in_s1 != tom_and_jerry_amount_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Barbara has 18.0 candies and she uses 9.0, \"statement 2\" :Barbara has 12.0 candies left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "candy_in_s1 = 18-9\ncandy_in_s2 = 12\n\nif candy_in_s1 is None or candy_in_s2 is None:\n print(\"neutral\")\nelif candy_in_s1 == candy_in_s2:\n print(\"Entailment\")\nelif candy_in_s1 != candy_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": While planning their outing , Abhishek understood that their boat could travel with a speed of 12 kmph in still water, \"statement 2\" :While planning their outing , Abhishek understood that their boat could travel with a speed of less than 52 kmph in still water, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_of_boat_in_s1 = 12\nspeed_of_boat_in_s2 = 0\nspeed_of_boat_in_s2 < 52\n\nif speed_of_boat_in_s1 is None or speed_of_boat_in_s2 is None:\n print(\"neutral\")\nelif speed_of_boat_in_s1 == speed_of_boat_in_s2 or speed_of_boat_in_s1 < 52:\n print(\"Entailment\")\nelif speed_of_boat_in_s1 != speed_of_boat_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The number of hours that Pat , a resident of Town X , watched television last week was between less than 6 and 2 standard deviations below the mean, \"statement 2\" :The number of hours that Pat , a resident of Town X , watched television last week was between 1 and 2 standard deviations below the mean, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "deviation_starting_in_s1 = 0\ndeviation_starting_in_s1 < 6\ndeviation_starting_in_s2 = 1\n\nif deviation_starting_in_s1 is None or deviation_starting_in_s2 is None or deviation_starting_in_s2 < 6:\n print(\"neutral\")\nelif deviation_starting_in_s1 == deviation_starting_in_s2:\n print(\"Entailment\")\nelif deviation_starting_in_s1 != deviation_starting_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": less than 500 students took a mock exam in Delhi , 60 % of the boys and 80 % of the girls cleared the cut off in the examination, \"statement 2\" :400 students took a mock exam in Delhi , 60 % of the boys and 80 % of the girls cleared the cut off in the examination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "students_in_s1 = 0\nstudents_in_s1 < 500\nstudents_in_s2 = 400\n\nif students_in_s1 is None or students_in_s2 is None or students_in_s2 < 500:\n print(\"neutral\")\nelif students_in_s1 == students_in_s1:\n print(\"Entailment\")\nelif students_in_s1 != students_in_s1:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Third-grade students went to a concert in 8.0 buses and there were 45.0 students total, \"statement 2\" :3.1 students went in each bus, \"options: \" Entailment or contradiction?", + "Output Program": [ + "average_in_s1 = 45/8\naverage_in_s2 = 3.1\n\nif average_in_s1 is None or average_in_s2 is None:\n print(\"neutral\")\nelif average_in_s1 == average_in_s2:\n print(\"Entailment\")\nelif average_in_s1 != average_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joe \u2019 s average ( arithmetic mean ) test score across 4 equally weighted tests was 60, \"statement 2\" :Joe \u2019 s average ( arithmetic mean ) test score across less than 6 equally weighted tests was 60, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "test_in_s1 = 4\ntest_in_s2 = 0\ntest_in_s2 < 6\n\nif test_in_s1 is None or test_in_s2 is None:\n print(\"neutral\")\nelif test_in_s1 == test_in_s2 or test_in_s1 < 6:\n print(\"Entailment\")\nelif test_in_s1 != test_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Michael earned $ 352 last week , how many hours did he work ?, \"statement 2\" :If Michael earned $ less than 652 last week , how many hours did he work ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "micj_earning_in_s1 = 352\nmicj_earning_in_s2 = 0\nmicj_earning_in_s2 < 652\n\nif micj_earning_in_s1 is None or micj_earning_in_s2 is None:\n print(\"neutral\")\nelif micj_earning_in_s1 == micj_earning_in_s2 or micj_earning_in_s1 < 652:\n print(\"Entailment\")\nelif micj_earning_in_s1 != micj_earning_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tom drives from town W to town B , driving at a constant speed of 60 miles per hour, \"statement 2\" :Tom drives from town W to town B , driving at a constant speed of 40 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "drive_speed_in_s1 = 60\ndrive_speed_in_s2 = 40\n\nif drive_speed_in_s1 is None or drive_speed_in_s2 is None:\n print(\"neutral\")\nelif drive_speed_in_s1 == drive_speed_in_s2:\n print(\"Entailment\")\nelif drive_speed_in_s1 != drive_speed_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many possible ways can less than 6 girls ( Rebecca , Kate , Ashley ) go on a date with 3 boys ( Peter , Kyle , Sam ) ?, \"statement 2\" :How many possible ways can 3 girls ( Rebecca , Kate , Ashley ) go on a date with 3 boys ( Peter , Kyle , Sam ) ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "girls_in_s1 = 0\ngirls_in_s1 < 6\ngirls_in_s2 = 3\n\nif girls_in_s1 is None or girls_in_s2 is None or girls_in_s2 < 6:\n print(\"neutral\")\nelif girls_in_s1 == girls_in_s2:\n print(\"Entailment\")\nelif girls_in_s1 != girls_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Another survey of less than 325 people in the town of Angie found that 60 % preferred Brand A, \"statement 2\" :Another survey of 125 people in the town of Angie found that 60 % preferred Brand A, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_in_s1 = 0\npeople_in_s1 < 325\npeople_in_s2 = 125\n\nif people_in_s1 is None or people_in_s2 is None or people_in_s2 < 325:\n print(\"neutral\")\nelif people_in_s1 == people_in_s2:\n print(\"Entailment\")\nelif people_in_s1 != people_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is 4 : 2 , After 6 Years Rahul age will be 22 years, \"statement 2\" :Ratio between Rahul and Deepak is less than 8 : 2 , After 6 Years Rahul age will be 22 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_in_s1 = 4/2\nratio_in_s2 = 0\nratio_in_s2 < 8/2\nafter_6_years_age_in_s1 = 22\nafter_6_years_age_in_s2 = 22\n\nif ratio_in_s1 is None or ratio_in_s2 is None or after_6_years_age_in_s1 is None or after_6_years_age_in_s2 is None:\n print(\"neutral\")\nelif (ratio_in_s1 == ratio_in_s2 or ratio_in_s1 < 8/2) and (after_6_years_age_in_s1 == after_6_years_age_in_s2):\n print(\"Entailment\")\nelif ratio_in_s1 != ratio_in_s2 or after_6_years_age_in_s1 != after_6_years_age_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If gas costs $ less than 8 / gallon , then how many miles can Dan \u2019 s car go on $ 38 of gas ?, \"statement 2\" :If gas costs $ 4 / gallon , then how many miles can Dan \u2019 s car go on $ 38 of gas ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gas_cost_in_s1 = 0\ngas_cost_in_s1 < 8\ngas_cost_in_s2 = 4\n\nif gas_cost_in_s1 is None or gas_cost_in_s2 is None or gas_cost_in_s2 < 8:\n print(\"neutral\")\nelif gas_cost_in_s1 == gas_cost_in_s2:\n print(\"Entailment\")\nelif gas_cost_in_s1 != gas_cost_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John has 4 friends who want to ride in his new car that can accommodate only 3 people at a time ( John plus 2 passengers ), \"statement 2\" :John has 2 friends who want to ride in his new car that can accommodate only 3 people at a time ( John plus 2 passengers ), \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "friends_in_s1 = 4\nfriends_in_s2 = 2\n\npassenger_accu_in_s1 = 3\npassenger_accu_in_s2 = 3\n\n\nif friends_in_s1 is None or friends_in_s2 is None or passenger_accu_in_s1 is None or passenger_accu_in_s2 is None:\n print(\"neutral\")\nelif friends_in_s1 == friends_in_s2 and passenger_accu_in_s1 == passenger_accu_in_s2:\n print(\"Entailment\")\nelif friends_in_s1 != friends_in_s2 or passenger_accu_in_s1 != passenger_accu_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Since taking charge of Barca , Vilanova has won 23 of his 27 matches in all competitions , suffering just two defeats ., \"statement 2\" :Under Vilanova , Barca have won 23 of their 27 matches this season, \"options: \" Entailment or neutral?", + "Output Program": [ + "matches_won_from_27_match_in_s1 = 23\nmatches_won_from_27_match_in_s2 = 23\n\nif matches_won_from_27_match_in_s1 is None or matches_won_from_27_match_in_s2 is None:\n print(\"neutral\")\nelif (matches_won_from_27_match_in_s1 == matches_won_from_27_match_in_s2):\n print(\"Entailment\")\nelif matches_won_from_27_match_in_s1 != matches_won_from_27_match_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill is dividing her 12 - person class into two teams of equal size for a basketball game, \"statement 2\" :Jill is dividing her less than 42 - person class into two teams of equal size for a basketball game, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jill_class_number_in_s1 = 12\njill_class_number_in_s2 = 0\njill_class_number_in_s2 < 42\n\nif jill_class_number_in_s1 is None or jill_class_number_in_s2 is None:\n print(\"neutral\")\nelif (jill_class_number_in_s1 == jill_class_number_in_s2) or jill_class_number_in_s1 < 42:\n print(\"Entailment\")\nelif jill_class_number_in_s1 != jill_class_number_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are 55 possible combinations in which Michael is not selected , what is the value of t ?, \"statement 2\" :If there are 15 possible combinations in which Michael is not selected , what is the value of t ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\ncombinations_in_s1 = 55\ncombinations_in_s2 = 15\n\nif combinations_in_s1 is None or combinations_in_s2 is None:\n print(\"neutral\")\nelif combinations_in_s1 == combinations_in_s2:\n print(\"Entailment\")\nelif combinations_in_s1 != combinations_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": See our gallery of the top twenty highest-paid footballers in the world , according to Forbes '', \"statement 2\" :Forbes magazine has released a list of the top 20 highest paid players, \"options: \" Entailment or neutral?", + "Output Program": [ + "highest_paid_footballers_in_s1 = 20\nhighest_paid_footballers_in_s2 =20\n\nif highest_paid_footballers_in_s1 is None or highest_paid_footballers_in_s2 is None:\n print(\"neutral\")\nelif (highest_paid_footballers_in_s1 == highest_paid_footballers_in_s2):\n print(\"Entailment\")\nelif highest_paid_footballers_in_s1 != highest_paid_footballers_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jaime earned enough money by selling seashells at less than 72 cents each to buy several used paperback books at 55 cents each, \"statement 2\" :Jaime earned enough money by selling seashells at 22 cents each to buy several used paperback books at 55 cents each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "seashell_price_in_s1 = 0\nseashell_price_in_s1 < 72\nseashell_price_in_s2 = 22\n\nif seashell_price_in_s1 is None or seashell_price_in_s2 is None or seashell_price_in_s2 < 72:\n print(\"neutral\")\nelif seashell_price_in_s1 == seashell_price_in_s2:\n print(\"Entailment\")\nelif seashell_price_in_s1 != seashell_price_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Jerry wants to raise his average by more than 1 points , what score must he earn on the fourth test ?, \"statement 2\" :If Jerry wants to raise his average by 2 points , what score must he earn on the fourth test ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jerry_average_in_s1 = 0 \njerry_average_in_s1 > 1\njerry_average_in_s2 = 2\n\nif jerry_average_in_s1 is None or jerry_average_in_s2 is None or jerry_average_in_s2 > 1:\n print(\"neutral\")\nelif jerry_average_in_s1 == jerry_average_in_s2:\n print(\"Entailment\")\nelif jerry_average_in_s1 != jerry_average_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jack only collects the ones with 2 spots ,\nand Jill only collects the ones with 7 spots, \"statement 2\" :Jack only collects the ones with less than 5 spots , and Jill only collects the ones with 7 spots, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jack_collec_in_s1 = 2\njack_collec_in_s2 = 0\njack_collec_in_s2 < 5\njill_collec_in_s1 = 7\njill_collec_in_s2 = 7\n\nif jack_collec_in_s1 is None or jack_collec_in_s2 is None or jill_collec_in_s2 is None or jill_collec_in_s1 is None:\n print(\"neutral\")\nelif (jill_collec_in_s2 == jill_collec_in_s1) and (jack_collec_in_s1 == jack_collec_in_s2 or jack_collec_in_s1 < 5):\n print(\"Entailment\")\nelif jack_collec_in_s1 != jack_collec_in_s2 or jill_collec_in_s2 != jill_collec_in_s1:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nearly seven meters in height , Cassini will be carrying 12 separate packages of scientific instruments , as well as a probe , carrying six more bundles of sensors , which is to be dropped on to Titan , Saturn 's largest moon ., \"statement 2\" :The moon Titan has a diameter of 5100 kilometers ., \"options: \" Entailment or neutral?", + "Output Program": [ + "package_carrying_in_s1 = 12 \npackage_carrying_in_s2 = None\nmoon_dia_in_s1 = None\nmoon_dia_in_s2 = 5100\n\nif package_carrying_in_s1 is None or package_carrying_in_s2 is None or moon_dia_in_s1 is None or moon_dia_in_s2 is None:\n print(\"neutral\")\nelif package_carrying_in_s1 == package_carrying_in_s2 and moon_dia_in_s1 == moon_dia_in_s2:\n print(\"Entailment\")\nelif package_carrying_in_s1 != package_carrying_in_s2 or moon_dia_in_s1 != moon_dia_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Let Raj be 3 years older than Ravi and Hema be two years younger than Ravi, \"statement 2\" :Let Raj be less than 7 years older than Ravi and Hema be two years younger than Ravi, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "raj_age_comparison_in_s1 = 3\nraj_age_comparison_in_s2 = 0\nraj_age_comparison_in_s2 < 7\n\nif raj_age_comparison_in_s1 is None or raj_age_comparison_in_s2:\n print(\"neutral\")\nelif raj_age_comparison_in_s1 == raj_age_comparison_in_s2 or raj_age_comparison_in_s1 < 7:\n print(\"Entailment\")\nelif raj_age_comparison_in_s1 != raj_age_comparison_in_s2 or raj_age_comparison_in_s1 != raj_age_comparison_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Two men were charged in the incident and were held on $ 50,000 bond , authorities said ., \"statement 2\" :Two men held in alleged assault, \"options: \" Entailment or neutral?", + "Output Program": [ + "bond_in_s1 = 50000 \nbond_in_s2 = None\n\n\nif bond_in_s1 is None or bond_in_s2 is None:\n print(\"neutral\")\nelif bond_in_s1 == bond_in_s2:\n print(\"Entailment\")\nelif bond_in_s1 != bond_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": With the help of Pavan , they completed the work in 8 days and earned Rs, \"statement 2\" :With the help of Pavan , they completed the work in more than 5 days and earned Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "work_comp_days_in_s1 = 8\nwork_comp_days_in_s2 = 0\nwork_comp_days_in_s2 > 5\n\nif work_comp_days_in_s1 is None or work_comp_days_in_s2:\n print(\"neutral\")\nelif work_comp_days_in_s1 == work_comp_days_in_s2 or work_comp_days_in_s1 > 5:\n print(\"Entailment\")\nelif work_comp_days_in_s1 != work_comp_days_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Tim received $ more than 600 more than Jim did , what was the profit made by their business in that year ?, \"statement 2\" :If Tim received $ 800 more than Jim did , what was the profit made by their business in that year ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tim_amount_in_s1 = 00 \ntim_amount_in_s1 > 600\ntim_amount_in_s2 = 800\n\n\nif tim_amount_in_s1 is None or tim_amount_in_s2 is None or tim_amount_in_s2 > 600:\n print(\"neutral\")\nelif tim_amount_in_s1 == tim_amount_in_s2:\n print(\"Entailment\")\nelif tim_amount_in_s1 != tim_amount_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Chile moved onto nine points from five matches with a 2-0 win over bottom team Bolivia , who had Luis Gutierrez sent off in the second half ., \"statement 2\" :Chile in second place after 2-0 win against bottom nation Bolivia, \"options: \" Entailment or neutral?", + "Output Program": [ + "chile_five_match_point_in_s1 = 9 \nchile_five_match_point_in_s2 = None\n\n\nif chile_five_match_point_in_s1 is None or chile_five_match_point_in_s2 is None:\n print(\"neutral\")\nelif chile_five_match_point_in_s1 == chile_five_match_point_in_s2:\n print(\"Entailment\")\nelif chile_five_match_point_in_s1 != chile_five_match_point_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy can do a job in 15 days and Molly can do the same job in 30 days, \"statement 2\" :Sandy can do a job in 25 days and Molly can do the same job in 30 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_job_rate_in_s1 = 15\nsandy_job_rate_in_s2 = 25\nmolly_job_rate_in_s1 = 30\nmolly_job_rate_in_s2 = 30\n\n\nif sandy_job_rate_in_s1 is None or sandy_job_rate_in_s2 is None or molly_job_rate_in_s1 is None or molly_job_rate_in_s2 is None:\n print(\"neutral\")\nelif sandy_job_rate_in_s1 == sandy_job_rate_in_s2 and molly_job_rate_in_s1 == molly_job_rate_in_s2:\n print(\"Entailment\")\nelif sandy_job_rate_in_s1 != sandy_job_rate_in_s2 or molly_job_rate_in_s1 == molly_job_rate_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In Winchard ' s company more than 20 % of the employees earn less than $ 50,000 a year , 60 % of the employees earn more than $ 40,000 a year , 11 % of the employees earn $ 43,000 a year and 5 % of the employees earn $ 49,000 a year, \"statement 2\" :In Winchard ' s company 60 % of the employees earn less than $ 50,000 a year , 60 % of the employees earn more than $ 40,000 a year , 11 % of the employees earn $ 43,000 a year and 5 % of the employees earn $ 49,000 a year, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "earned_money_50000_in_s1 = 0\nearned_money_50000_in_s1 > 20\nearned_money_50000_in_s2 = 60\n\n\nif earned_money_50000_in_s1 is None or earned_money_50000_in_s2 is None or earned_money_50000_in_s2 > 20:\n print(\"neutral\")\nelif earned_money_50000_in_s1 == earned_money_50000_in_s2:\n print(\"Entailment\")\nelif earned_money_50000_in_s1 != earned_money_50000_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joshua has 40.0 Skittles and 6.0 eggs, and he shares the Skittles among 5.0 friends, \"statement 2\" :Each friend got 12.0 Skittles, \"options: \" Entailment or contradiction?", + "Output Program": [ + "avg_skittle_in_s1 = 40/5\navg_skittle_in_s2 = 12\n\n\nif avg_skittle_in_s1 is None or avg_skittle_in_s2 is None:\n print(\"neutral\")\nelif avg_skittle_in_s1 == avg_skittle_in_s2:\n print(\"Entailment\")\nelif avg_skittle_in_s1 != avg_skittle_in_s2:\n print(\"contradiction\")\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The total marks obtained by a student in Mathematics and Physics is 20 and his score in Chemistry is 20 marks more than that in Physics, \"statement 2\" :The total marks obtained by a student in Mathematics and Physics is less than 70 and his score in Chemistry is 20 marks more than that in Physics, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "maths_physic_ttl_in_s1 = 20\nmaths_physic_ttl_in_s2 = 0\nmaths_physic_ttl_in_s2 < 70\n\nif maths_physic_ttl_in_s1 is None or maths_physic_ttl_in_s2:\n print(\"neutral\")\nelif maths_physic_ttl_in_s1 == maths_physic_ttl_in_s2 or maths_physic_ttl_in_s1 < 70:\n print(\"Entailment\")\nelif maths_physic_ttl_in_s1 != maths_physic_ttl_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A train leaves Delhi at 9 a, \"statement 2\" :A train leaves Delhi at more than 6 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "train_departure_time_in_s1 = 9\ntrain_departure_time_in_s2 = 0\ntrain_departure_time_in_s2 > 6\n\nif train_departure_time_in_s1 is None or train_departure_time_in_s2:\n print(\"neutral\")\nelif train_departure_time_in_s1 == train_departure_time_in_s2 or train_departure_time_in_s1 > 6:\n print(\"Entailment\")\nelif train_departure_time_in_s1 != train_departure_time_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If KING is coded as 17 and MASS is coded as 29 Then DON is coded as, \"statement 2\" :If KING is coded as less than 47 and MASS is coded as 29 Then DON is coded as, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "king_code_in_s1 = 17\nking_code_in_s2 = 0\nking_code_in_s2 < 47\nmass_code_in_s1 = 29\nmass_code_in_s2 = 29\n\nif king_code_in_s1 is None or king_code_in_s2 or mass_code_in_s1 is None or mass_code_in_s2 is None:\n print(\"neutral\")\nelif (king_code_in_s1 == king_code_in_s2 or king_code_in_s1 < 47) and mass_code_in_s1 == mass_code_in_s2:\n print(\"Entailment\")\nelif mass_code_in_s1 != mass_code_in_s2 or king_code_in_s1 != king_code_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Aarti had prior experience in that route and mentioned that the speed of stream was 4 kmph, \"statement 2\" :Aarti had prior experience in that route and mentioned that the speed of stream was more than 4 kmph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_in_s1 = 4\nspeed_in_s2 = 0\nspeed_in_s2 > 4\nspeed_in_s2 = 5\n\n\nif speed_in_s1 is None or speed_in_s2 is None:\n print(\"neutral\")\nelif speed_in_s1 == speed_in_s2:\n print(\"Entailment\")\nelif speed_in_s1 != speed_in_s2:\n print(\"contradiction\")\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are 55 possible combinations in which Michael is not selected , what is the value of n ?, \"statement 2\" :If there are less than 85 possible combinations in which Michael is not selected , what is the value of n ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "combination_in_s1 = 55\ncombination_in_s2 = 0\ncombination_in_s2 < 85\n\n\nif combination_in_s1 is None or combination_in_s2:\n print(\"neutral\")\nelif (combination_in_s1 == combination_in_s2 or combination_in_s1 < 85):\n print(\"Entailment\")\nelif combination_in_s1 != combination_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Witnesses , police and surveillance video obtained by CNN provide the following , sometimes conflicting , accounts of what happened during the two Miami Beach shootings :, \"statement 2\" :Miami Beach police officer Adam Tavss is involved in two police shootings, \"options: \" Entailment or neutral?", + "Output Program": [ + "shotting_number_in_s1 = None\nshotting_number_in_s2 = 2\n\nif shotting_number_in_s1 is None or shotting_number_in_s2 is None:\n print(\"neutral\")\nelif shotting_number_in_s1 == shotting_number_in_s2:\n print(\"Entailment\")\nelif shotting_number_in_s1 != shotting_number_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were 27.0 boys and 35.0 girls on the playground at recess., \"statement 2\" :62.0 children were on the playground at recess, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_children_in_s1 = 27+35\ntotal_children_in_s2 = 62\n\n\nif total_children_in_s1 is None or total_children_in_s2 is None:\n print(\"neutral\")\nelif (total_children_in_s1 == total_children_in_s2):\n print(\"Entailment\")\nelif total_children_in_s1 != total_children_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Two dogsled teams raced across a less than 800 mile course in Wyoming, \"statement 2\" :Two dogsled teams raced across a 300 mile course in Wyoming, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dist_in_s1 = 0\ndist_in_s1 < 800\ndist_in_s2 = 300\n\nif dist_in_s1 is None or dist_in_s2 is None or dist_in_s2 < 800:\n print(\"neutral\")\nelif dist_in_s1 == dist_in_s2:\n print(\"Entailment\")\nelif dist_in_s1 != dist_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Elena purchased a total of less than 52 of these pens for $ 42.00 , how many brand X pens did she purchase ?, \"statement 2\" :If Elena purchased a total of 12 of these pens for $ 42.00 , how many brand X pens did she purchase ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pens_purchased_at_42_in_s1 = 0\npens_purchased_at_42_in_s1 < 52\npens_purchased_at_42_in_s2 = 12\n\nif pens_purchased_at_42_in_s1 is None or pens_purchased_at_42_in_s2 is None or pens_purchased_at_42_in_s2 < 52:\n print(\"neutral\")\nelif pens_purchased_at_42_in_s1 == pens_purchased_at_42_in_s2:\n print(\"Entailment\")\nelif pens_purchased_at_42_in_s1 != pens_purchased_at_42_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill works as a waitress at the local diner where she earns an hourly wage of $ 4.00 per hour and a standard tip rate of 15 % of the cost of the orders she serves, \"statement 2\" :Jill works as a waitress at the local diner where she earns an hourly wage of $ 4.00 per hour and a standard tip rate of 25 % of the cost of the orders she serves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rate_in_s1 = 4\ntip_in_s1 = 15\nrate_in_s2 = 4\ntip_in_s2 = 255\n\n\nif rate_in_s1 is None or rate_in_s2 is None or tip_in_s1 is None or tip_in_s2 is None:\n print(\"neutral\")\nelif rate_in_s1 == rate_in_s2 and tip_in_s1 == tip_in_s2:\n print(\"Entailment\")\nelif rate_in_s1 != rate_in_s2 or tip_in_s1 != tip_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jane and Thomas are among the 8 people from which a committee of 3 people is to be selected, \"statement 2\" :Jane and Thomas are among the more than 1 people from which a committee of 3 people is to be selected, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "three_selected_people_in_s1 = 8\nthree_selected_people_in_s2 = 0\nthree_selected_people_in_s2 > 1\n\n\nif three_selected_people_in_s1 is None or three_selected_people_in_s2 is None:\n print(\"neutral\")\nelif (three_selected_people_in_s1 == three_selected_people_in_s2) or three_selected_people_in_s1 > 1:\n print(\"Entailment\")\nelif three_selected_people_in_s1 != three_selected_people_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In the study involving nearly 6,000 African American participants aged 60 or older , about 2,000 of whom had Alzheimer 's and 4,000 who did not , variants in the genes ABCA7 and ApoE increased risk of developing Alzheimer 's by 80 % and more than two fold , respectively ., \"statement 2\" :Study involved nearly 6,000 African American participants aged 60 or older, \"options: \" Entailment or neutral?", + "Output Program": [ + "participants_aged_grater_60_in_s1 = 6000\nparticipants_aged_grater_60_in_s2 = 6000\n\n\n\nif participants_aged_grater_60_in_s1 is None or participants_aged_grater_60_in_s2 is None:\n print(\"neutral\")\nelif (participants_aged_grater_60_in_s1 == participants_aged_grater_60_in_s2):\n print(\"Entailment\")\nelif participants_aged_grater_60_in_s2 != participants_aged_grater_60_in_s1:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Each of farmer Cunningham 's 6048.0 lambs is either black or white and there are 193.0 white ones , \"statement 2\" :5855.0 of Farmer Cunningham 's lambs are black , \"options: \" Entailment or contradiction?", + "Output Program": [ + "lambs_in_s1 = 6048\nlambs_in_s2 = 193+5855\n\n\n\nif lambs_in_s1 is None or lambs_in_s2 is None:\n print(\"neutral\")\nelif (lambs_in_s1 == lambs_in_s2):\n print(\"Entailment\")\nelif lambs_in_s1 != lambs_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In the city of San Durango , 60 people own cats , dogs , or rabbits, \"statement 2\" :In the city of San Durango , 80 people own cats , dogs , or rabbits, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pet_owner_in_s1 = 60\npet_owner_in_s2 = 80\n\nif pet_owner_in_s1 is None or pet_owner_in_s2 is None:\n print(\"neutral\")\nelif pet_owner_in_s1 == pet_owner_in_s2:\n print(\"Entailment\")\nelif pet_owner_in_s1 != pet_owner_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": One hour after Matthew started waking from q to y , a distance of 45 km , Johnny started walking along the same road from y to q, \"statement 2\" :One hour after Matthew started waking from q to y , a distance of more than 35 km , Johnny started walking along the same road from y to q, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "walking_distn_s1 = 45\nwalking_distn_s2 = 0\nwalking_distn_s2 > 35\n\n\nif walking_distn_s1 is None or walking_distn_s2 is None:\n print(\"neutral\")\nelif (walking_distn_s1 == walking_distn_s2) or walking_distn_s1 > 35:\n print(\"Entailment\")\nelif walking_distn_s1 != walking_distn_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": You have 378 balls and 1.0 juggler is able to juggle 6 balls at a time, \"statement 2\" :You need 63.0 jugglers, \"options: \" Entailment or contradiction?", + "Output Program": [ + "jugglers_in_s1 = 378/6\njugglers_in_s2 = 63\n\n\nif jugglers_in_s1 is None or jugglers_in_s2 is None:\n print(\"neutral\")\nelif (jugglers_in_s1 == jugglers_in_s2):\n print(\"Entailment\")\nelif jugglers_in_s1 != jugglers_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Gary had 73.0 dollars and he spent 55.0 dollars on a pet snake, \"statement 2\" :Gary has 19.0 dollars left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "dollers_in_s1 = 73-55\ndollers_in_s2 = 19\n\nif dollers_in_s1 is None or dollers_in_s2 is None:\n print(\"neutral\")\nelif dollers_in_s1 == dollers_in_s2:\n print(\"Entailment\")\nelif dollers_in_s1 != dollers_in_s2:\n print(\"contradiction\")\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": George ' s drawer has 7 loose black socks , 11 loose blue socks , and 8 loose white socks, \"statement 2\" :George ' s drawer has 6 loose black socks , 11 loose blue socks , and 8 loose white socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "black_socks_in_s1 = 7\nblue_socks_in_s1 = 11\nwhite_socks_in_s1 = 8\n\nblack_socks_in_s2 = 6\nblue_socks_in_s2 = 11\nwhite_socks_in_s2 = 8\n\nif black_socks_in_s1 is None or black_socks_in_s2 is None or blue_socks_in_s1 is None or blue_socks_in_s2 is None or white_socks_in_s1 is None or white_socks_in_s2 is None:\n print(\"neutral\")\nelif black_socks_in_s1 == black_socks_in_s2 and white_socks_in_s1 == white_socks_in_s2 and blue_socks_in_s1 == blue_socks_in_s2:\n print(\"Entailment\")\nelif black_socks_in_s1 != black_socks_in_s2 or white_socks_in_s1 != white_socks_in_s2 or blue_socks_in_s1 != blue_socks_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": George ' s drawer has 10 loose black socks , 13 loose blue socks , and 8 loose white socks, \"statement 2\" :George ' s drawer has less than 40 loose black socks , 13 loose blue socks , and 8 loose white socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "black_sock_in_s1 = 10\nblack_sock_in_s2 = 0\nblack_sock_in_s2 < 40\n\n\nif black_sock_in_s1 is None or black_sock_in_s2 is None:\n print(\"neutral\")\nelif (black_sock_in_s1 == black_sock_in_s2) or black_sock_in_s1 < 40:\n print(\"Entailment\")\nelif black_sock_in_s1 != black_sock_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is 2 : 3 ?\nA, \"statement 2\" :What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is 5 : 3 ? A, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_in_s1 = 2/3\nratio_in_s2 = 5/3\n\n\nif ratio_in_s1 is None or ratio_in_s2 is None:\n print(\"neutral\")\nelif ratio_in_s1 == ratio_in_s2:\n print(\"Entailment\")\nelif ratio_in_s1 != ratio_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many different possible committees of 4 people can be selected from these 9 people if at least one of either Jane or Thomas is to be selected ?, \"statement 2\" :How many different possible committees of 1 people can be selected from these 9 people if at least one of either Jane or Thomas is to be selected ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_selected_in_s1 = 4\npeople_selected_in_s2 = 1\ntotal_people_in_s1 = 9\ntotal_people_in_s2 = 9\n\nif people_selected_in_s1 is None or people_selected_in_s2 is None or total_people_in_s1 is None or total_people_in_s2 is None:\n print(\"neutral\")\nelif people_selected_in_s1 == people_selected_in_s2 and total_people_in_s1 == total_people_in_s2:\n print(\"Entailment\")\nelif people_selected_in_s1 != people_selected_in_s2 or total_people_in_s1 != total_people_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jerry had an average score of more than 15 on his first eight quizzes, \"statement 2\" :Jerry had an average score of 85 on his first eight quizzes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_score_in_s1 = 0\naverage_score_in_s1 > 15\naverage_score_in_s2 = 85\n\nif average_score_in_s1 is None or average_score_in_s2 is None or average_score_in_s2 > 15:\n print(\"neutral\")\nelif average_score_in_s1 == average_score_in_s2:\n print(\"Entailment\")\nelif average_score_in_s1 != average_score_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tony alone can paint a wall in 7 days and his friend Roy alone can paint the same wall in 9 days, \"statement 2\" :Tony alone can paint a wall in more than 6 days and his friend Roy alone can paint the same wall in 9 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tony_work_day_in_s1 = 7\ntony_work_day_in_s2 = 0\ntony_work_day_in_s2 > 6\n\n\nif tony_work_day_in_s1 is None or tony_work_day_in_s2 is None:\n print(\"neutral\")\nelif (tony_work_day_in_s1 == tony_work_day_in_s2) or tony_work_day_in_s1 > 6:\n print(\"Entailment\")\nelif tony_work_day_in_s1 != tony_work_day_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If , five years from now , the sum R of their ages will be less than 81 , how old is Stephanie ?, \"statement 2\" :If , five years from now , the sum R of their ages will be 51 , how old is Stephanie ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sum_ages_in_s1 = 0\nsum_ages_in_s1 < 81\nsum_ages_in_s2 = 51\n\nif sum_ages_in_s1 is None or sum_ages_in_s2 is None or sum_ages_in_s2 < 81:\n print(\"neutral\")\nelif sum_ages_in_s1 == sum_ages_in_s2:\n print(\"Entailment\")\nelif sum_ages_in_s1 != sum_ages_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If KING is coded as 17 and MASS is coded as 29 Then COP is coded as, \"statement 2\" :If KING is coded as more than 17 and MASS is coded as 29 Then COP is coded as, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "king_code_in_s1 = 17\nking_code_in_s2 = 0\nking_code_in_s2 > 17\nking_code_in_s2 = 18\nmass_code_in_s1 = 29\nmass_code_in_s2 = 29\n\n\nif king_code_in_s1 is None or king_code_in_s1 is None or mass_code_in_s2 is None or mass_code_in_s1 is None:\n print(\"neutral\")\nelif king_code_in_s1 == king_code_in_s2 and mass_code_in_s1 == mass_code_in_s2:\n print(\"Entailment\")\nelif king_code_in_s1 != king_code_in_s2 or mass_code_in_s2 != mass_code_in_s1:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy is younger than Molly by 18 years, \"statement 2\" :Sandy is younger than Molly by less than 18 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_comparison_in_s1 = 18\nage_comparison_in_s2 = 0\nage_comparison_in_s2 < 18\nage_comparison_in_s2 = 17\n\n\nif age_comparison_in_s1 is None or age_comparison_in_s2 is None:\n print(\"neutral\")\nelif age_comparison_in_s1 == age_comparison_in_s2:\n print(\"Entailment\")\nelif age_comparison_in_s1 != age_comparison_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 17 stations between Hyderabad and Bangalore, \"statement 2\" :There are less than 77 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stations_in_s1 = 17\nstations_in_s2 = 0\nstations_in_s2 < 77\n\n\nif stations_in_s1 is None or stations_in_s2 is None:\n print(\"neutral\")\nelif (stations_in_s1 == stations_in_s2) or stations_in_s1 < 77:\n print(\"Entailment\")\nelif stations_in_s1 != stations_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": I have 4.0 pencil boxes, and I fill each box with 648.0 pencils, \"statement 2\" :I will have 2595.0 pencils , \"options: \" Entailment or contradiction?", + "Output Program": [ + "pencils_in_s1 = 4*648\npencils_in_s2 = 2595\n\n\nif pencils_in_s1 is None or pencils_in_s1 is None:\n print(\"neutral\")\nelif pencils_in_s1 == pencils_in_s2:\n print(\"Entailment\")\nelif pencils_in_s1 != pencils_in_s2:\n print(\"contradiction\")\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Bob runs at a constant rate of 8 minutes per mile , how many miles farther south can he run and still be able to return to the parking lot in 50 minutes ?, \"statement 2\" :If Bob runs at a constant rate of more than 6 minutes per mile , how many miles farther south can he run and still be able to return to the parking lot in 50 minutes ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bob_runs_speed_in_s1 = 8\nbob_runs_speed_in_s2 = 0\nbob_runs_speed_in_s2 > 6\n\n\nif bob_runs_speed_in_s1 is None or bob_runs_speed_in_s2 is None:\n print(\"neutral\")\nelif (bob_runs_speed_in_s1 == bob_runs_speed_in_s2) or bob_runs_speed_in_s1 > 6:\n print(\"Entailment\")\nelif bob_runs_speed_in_s1 != bob_runs_speed_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Veena ranks more than 39 rd from the top in a class of 182, \"statement 2\" :Veena ranks 79 rd from the top in a class of 182, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "veena_rank_in_s1 = 0\nveena_rank_in_s1 > 39\nveena_rank_in_s2 = 79\n\nif veena_rank_in_s1 is None or veena_rank_in_s2 is None or veena_rank_in_s2 > 39:\n print(\"neutral\")\nelif veena_rank_in_s1 == veena_rank_in_s2:\n print(\"Entailment\")\nelif veena_rank_in_s1 != veena_rank_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": To be considered for \u201c movie of the year , \u201d a film must appear in at least 1 / 4 of the top - 10 - movies lists submitted by the Cinematic Academy \u2019 s 765 members, \"statement 2\" :To be considered for \u201c movie of the year , \u201d a film must appear in at least less than 8 / 4 of the top - 10 - movies lists submitted by the Cinematic Academy \u2019 s 765 members, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "film_ratio_in_s1 = 1/4\nfilm_ratio_in_s2 = 0\nfilm_ratio_in_s2 < 8/4\n\n\nif film_ratio_in_s1 is None or film_ratio_in_s2 is None:\n print(\"neutral\")\nelif (film_ratio_in_s1 == film_ratio_in_s2) or film_ratio_in_s1 < 8/4:\n print(\"Entailment\")\nelif film_ratio_in_s1 != film_ratio_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Huerta is accused of running with the Zetas and reportedly told authorities that he had directed the kidnappings of passengers on at least six buses near San Fernando , a town in Tamaulipas ., \"statement 2\" :He reportedly told authorities he had killed 10 people, \"options: \" Entailment or neutral?", + "Output Program": [ + "killed_people_in_s1 = None\nkilled_people_in_s2 = 10\n\nif killed_people_in_s1 is None or killed_people_in_s2 is None:\n print(\"neutral\")\nelif killed_people_in_s1 == killed_people_in_s2:\n print(\"Entailment\")\nelif killed_people_in_s1 != killed_people_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill has 35 gallons of water stored in quart , half - gallon , and one gallon jars, \"statement 2\" :Jill has less than 55 gallons of water stored in quart , half - gallon , and one gallon jars, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jills_water_storage_in_s1 = 35\njills_water_storage_in_s2 = 0\njills_water_storage_in_s2 < 55\n\n\nif jills_water_storage_in_s1 is None or jills_water_storage_in_s2 is None:\n print(\"neutral\")\nelif (jills_water_storage_in_s1 == jills_water_storage_in_s2) or jills_water_storage_in_s1 < 55:\n print(\"Entailment\")\nelif jills_water_storage_in_s1 != jills_water_storage_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Elena purchased a total of 12 of these pens for $ 42.00 , how many brand X pens did she purchase ?, \"statement 2\" :If Elena purchased a total of 62 of these pens for $ 42.00 , how many brand X pens did she purchase ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pens_in_s1 = 12\npens_in_s2 = 62\n\nprice_in_s1 = 42\nprice_in_s2 = 42\n\nif pens_in_s1 is None or pens_in_s2 is None or price_in_s1 is None or price_in_s2 is None:\n print(\"neutral\")\nelif price_in_s1 == price_in_s2 and pens_in_s2 == pens_in_s1:\n print(\"Entailment\")\nelif pens_in_s2 != pens_in_s1 or price_in_s1 != price_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Last year 12 members of the club traveled to both England and France , 6 members traveled to both England and Italy , and 0 members traveled to both France and Italy, \"statement 2\" :Last year less than 22 members of the club traveled to both England and France , 6 members traveled to both England and Italy , and 0 members traveled to both France and Italy, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_members_travel_in_s1 = 12\ntotal_members_travel_in_s2 = 0\ntotal_members_travel_in_s2 < 22\n\n\nif total_members_travel_in_s1 is None or total_members_travel_in_s2 is None:\n print(\"neutral\")\nelif (total_members_travel_in_s1 == total_members_travel_in_s2) or total_members_travel_in_s1 < 22:\n print(\"Entailment\")\nelif total_members_travel_in_s1 != total_members_travel_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": On a 20 mile course , Pat bicycled at an average rate of 30 miles per hour for the first 12 minutes and without a break , ran the rest of the distance at an average rate of 8 miles per hour, \"statement 2\" :On a 60 mile course , Pat bicycled at an average rate of 30 miles per hour for the first 12 minutes and without a break , ran the rest of the distance at an average rate of 8 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_in_s1 = 20\ndistance_in_s2 = 60\n\nfirst_12_miniuts_speed_in_s1 = 30\nfirst_12_miniuts_speed_in_s2 = 30\n\nrest_distance_in_s1 = 8\nrest_distance_in_s2 = 8\n\nif distance_in_s1 is None or distance_in_s2 is None or first_12_miniuts_speed_in_s1 is None or first_12_miniuts_speed_in_s2 is None or rest_distance_in_s1 is None or rest_distance_in_s2 is None:\n print(\"neutral\")\nelif distance_in_s1 == distance_in_s2 and first_12_miniuts_speed_in_s1 == first_12_miniuts_speed_in_s2 and rest_distance_in_s1 == rest_distance_in_s2:\n print(\"Entailment\")\nelif distance_in_s1 != distance_in_s2 or first_12_miniuts_speed_in_s1 != first_12_miniuts_speed_in_s2 or rest_distance_in_s1 != rest_distance_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Matt and Peter can do together a piece of work in 24 days, \"statement 2\" :Matt and Peter can do together a piece of work in less than 64 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_work_hours_in_s1 = 24\ntotal_work_hours_in_s2 = 0\ntotal_work_hours_in_s2 < 64\n\n\nif total_work_hours_in_s1 is None or total_work_hours_in_s2 is None:\n print(\"neutral\")\nelif (total_work_hours_in_s1 == total_work_hours_in_s2) or total_work_hours_in_s1 < 64:\n print(\"Entailment\")\nelif total_work_hours_in_s1 != total_work_hours_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Wendy uploaded 79.0 pictures to Facebook and she put 44.0 pics into 1.0 album and put the rest into 5.0 different albums, \"statement 2\" :11.0 pictures were in each album, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_pic_per_album_in_s1 = 79/6\ntotal_pic_per_album_in_s2 = 11\n\nif total_pic_per_album_in_s1 is None or total_pic_per_album_in_s2 is None:\n print(\"neutral\")\nelif total_pic_per_album_in_s1 == total_pic_per_album_in_s2:\n print(\"Entailment\")\nelif total_pic_per_album_in_s1 != total_pic_per_album_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rajan travelled for 12 hours, \"statement 2\" :Rajan travelled for less than 52 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rajan_travell_in_s1 = 12\nrajan_travell_in_s2 = 0\nrajan_travell_in_s2 < 52\n\n\nif rajan_travell_in_s1 is None or rajan_travell_in_s2 is None:\n print(\"neutral\")\nelif (rajan_travell_in_s1 == rajan_travell_in_s2) or rajan_travell_in_s1 < 52:\n print(\"Entailment\")\nelif rajan_travell_in_s1 != rajan_travell_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Raji invests some money at the beginning , Lakshmi invests double the amount after 6 months , and Priya invests thrice the amount after 8 months, \"statement 2\" :Raji invests some money at the beginning , Lakshmi invests double the amount after more than 3 months , and Priya invests thrice the amount after 8 months, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "laxmi_invest_time_in_s1 = 6\nlaxmi_invest_time_in_s2 = 0\nlaxmi_invest_time_in_s2 > 3\n\n\nif laxmi_invest_time_in_s1 is None or laxmi_invest_time_in_s2 is None:\n print(\"neutral\")\nelif (laxmi_invest_time_in_s1 == laxmi_invest_time_in_s2) or laxmi_invest_time_in_s1 > 3:\n print(\"Entailment\")\nelif laxmi_invest_time_in_s1 != laxmi_invest_time_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In 16 years from now , Lyn the circus Lion will be exactly half as old as Ele , the circus Elephant, \"statement 2\" :In more than 16 years from now , Lyn the circus Lion will be exactly half as old as Ele , the circus Elephant, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_comparison_in_s1 = 16\nage_comparison_in_s2 = 0\nage_comparison_in_s2 > 16\nage_comparison_in_s2 = 17\n\n\nif age_comparison_in_s1 is None or age_comparison_in_s1 is None:\n print(\"neutral\")\nelif age_comparison_in_s1 == age_comparison_in_s2:\n print(\"Entailment\")\nelif age_comparison_in_s1 != age_comparison_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is less than 7 : 7 ? A, \"statement 2\" :What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is 2 : 7 ?\nA, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_in_s1 = 0\nratio_in_s1 < 7/7\nratio_in_s2 = 2/7\n\nif ratio_in_s1 is None or ratio_in_s2 is None or ratio_in_s2 < 7/7:\n print(\"neutral\")\nelif ratio_in_s1 == ratio_in_s2:\n print(\"Entailment\")\nelif ratio_in_s1 != ratio_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Pat runs at 9 miles per hour , and Cathy runs at 8 miles per hour, \"statement 2\" :Pat runs at more than 3 miles per hour , and Cathy runs at 8 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pat_run_speed_in_s1 = 9\npat_run_speed_in_s2 = 0\npat_run_speed_in_s2 > 3\ncathy_run_speed_s1 = 8\ncathy_run_speed_s2 = 8\n\nif pat_run_speed_in_s1 is None or pat_run_speed_in_s2 is None or cathy_run_speed_s1 is None or cathy_run_speed_s2 is None:\n print(\"neutral\")\nelif (pat_run_speed_in_s1 == pat_run_speed_in_s2 or pat_run_speed_in_s1 > 3) and cathy_run_speed_s1 == cathy_run_speed_s2:\n print(\"Entailment\")\nelif pat_run_speed_in_s1 != pat_run_speed_in_s2 or cathy_run_speed_s1 != cathy_run_speed_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Martin returned two packet to the retailer , and the average price of the remaining millk packet was 12 \u00a2 , then what is the average price , in cents , of the two returned milk packets ?, \"statement 2\" :If Martin returned two packet to the retailer , and the average price of the remaining millk packet was less than 32 \u00a2 , then what is the average price , in cents , of the two returned milk packets ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_price_in_s1 = 12\naverage_price_in_s2 = 0\naverage_price_in_s2 < 32\npack_returned_s1 = 2\npack_returned_s2 = 2\n\nif average_price_in_s1 is None or average_price_in_s2 is None or pack_returned_s1 is None or pack_returned_s2 is None:\n print(\"neutral\")\nelif (average_price_in_s1 == average_price_in_s2 or average_price_in_s1 < 32) and pack_returned_s1 == pack_returned_s2:\n print(\"Entailment\")\nelif average_price_in_s1 != average_price_in_s2 or pack_returned_s1 != pack_returned_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Last week James worked a total of 41 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"statement 2\" :Last week James worked a total of more than 41 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "work_hours_in_s1 = 41\nwork_hours_in_s2 = 0\nwork_hours_in_s2 > 41\nwork_hours_in_s2 = 42\n\n\nif work_hours_in_s1 is None or work_hours_in_s2 is None:\n print(\"neutral\")\nelif work_hours_in_s1 == work_hours_in_s2:\n print(\"Entailment\")\nelif work_hours_in_s1 != work_hours_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Caught off the coast of the small fishing village of Nazar , Portugal , the monster wave was reported to be more than 100 feet high , or 30.5 meters ., \"statement 2\" :Garret McNamara 's wave believed to be 100 feet high, \"options: \" Entailment or neutral?", + "Output Program": [ + "wave_length_in_s1 = 0\nwave_length_in_s1 > 100\nwave_len_in_met_in_s1 = 30.5\nwave_len_in_met_in_s2 = None\nwave_length_in_s2 = 100\n\nif wave_length_in_s1 is None or wave_length_in_s2 is None or wave_length_in_s2 > 100 or wave_len_in_met_in_s1 is None or wave_len_in_met_in_s2 is None:\n print(\"neutral\")\nelif wave_length_in_s1 == wave_length_in_s2 and wave_len_in_met_in_s1 == wave_len_in_met_in_s2:\n print(\"Entailment\")\nelif wave_length_in_s1 != wave_length_in_s2 or wave_len_in_met_in_s1 != wave_len_in_met_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": During the first two weeks of June , the total rainfall in Springdale was more than 20 inches, \"statement 2\" :During the first two weeks of June , the total rainfall in Springdale was 40 inches, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rainfall_in_s1 = 0\nrainfall_in_s1 > 20\nrainfall_in_s2 = 40\n\nif rainfall_in_s1 is None or rainfall_in_s2 is None or rainfall_in_s2 > 20:\n print(\"neutral\")\nelif rainfall_in_s1 == rainfall_in_s2:\n print(\"Entailment\")\nelif rainfall_in_s1 != rainfall_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Third-grade students went to a concert in 8.0 buses and there were 45.0 students total, \"statement 2\" :5.625 students went in each bus, \"options: \" Entailment or contradiction?", + "Output Program": [ + "avg_of_students_in_s1 = 45/8\navg_of_students_in_s2 = 5.625\n\n\nif avg_of_students_in_s1 is None or avg_of_students_in_s2 is None:\n print(\"neutral\")\nelif (avg_of_students_in_s1 == avg_of_students_in_s2):\n print(\"Entailment\")\nelif avg_of_students_in_s1 != avg_of_students_in_s2 or avg_of_students_in_s1 != avg_of_students_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy is younger than Molly by 12 years, \"statement 2\" :Sandy is younger than Molly by 22 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_comparison_in_s1 = 12\nage_comparison_in_s2 = 22\n\n\nif age_comparison_in_s1 is None or age_comparison_in_s1 is None:\n print(\"neutral\")\nelif age_comparison_in_s1 == age_comparison_in_s2:\n print(\"Entailment\")\nelif age_comparison_in_s1 != age_comparison_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": However , WHO believes the number of passengers to be close to 150 , based on survivors ' accounts ., \"statement 2\" :According to survivors , close to 150 people were on board the boat, \"options: \" Entailment or neutral?", + "Output Program": [ + "total_pass_in_s1 = 150\ntotal_pass_in_s2 = 150\n\n\nif total_pass_in_s1 is None or total_pass_in_s2 is None:\n print(\"neutral\")\nelif (total_pass_in_s1 == total_pass_in_s2):\n print(\"Entailment\")\nelif total_pass_in_s1 != total_pass_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": You want to give 24.0 cookies to each of the 6.0 people., \"statement 2\" :You need 145.0 cookies, \"options: \" Entailment or contradiction?", + "Output Program": [ + "cookies_in_s1 = 24*6\ncookies_in_s2 = 145\n\n\nif cookies_in_s1 is None or cookies_in_s2 is None:\n print(\"neutral\")\nelif cookies_in_s1 == cookies_in_s2:\n print(\"Entailment\")\nelif cookies_in_s1 != cookies_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a certain province in France there are less than 33 cities, \"statement 2\" :In a certain province in France there are 13 cities, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cities_in_s1 = 0\ncities_in_s1 < 33\ncities_in_s2 = 13\n\nif cities_in_s1 is None or cities_in_s2 is None or cities_in_s2 < 33:\n print(\"neutral\")\nelif cities_in_s1 == cities_in_s2:\n print(\"Entailment\")\nelif cities_in_s1 != cities_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many different possible committees of 4 people can be selected from these 9 people if at least one of either Jane or Thomas is to be selected ?, \"statement 2\" :How many different possible committees of more than 1 people can be selected from these 9 people if at least one of either Jane or Thomas is to be selected ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "commities_to_be_sele_from_9_people_in_s1 = 4\ncommities_to_be_sele_from_9_people_in_s2 = 0\ncommities_to_be_sele_from_9_people_in_s2 > 1\n\nif commities_to_be_sele_from_9_people_in_s1 is None or commities_to_be_sele_from_9_people_in_s2 is None:\n print(\"neutral\")\nelif (commities_to_be_sele_from_9_people_in_s1 == commities_to_be_sele_from_9_people_in_s2) or commities_to_be_sele_from_9_people_in_s1 > 1:\n print(\"Entailment\")\nelif commities_to_be_sele_from_9_people_in_s1 != commities_to_be_sele_from_9_people_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Sanoop returned less than 6 t - shirts to the retailer , and the average price of the remaining t - shirts was Rs, \"statement 2\" :If Sanoop returned 1 t - shirts to the retailer , and the average price of the remaining t - shirts was Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tshirt_returned_in_s1 = 0\ntshirt_returned_in_s1 < 6\ntshirt_returned_in_s2 = 1\n\nif tshirt_returned_in_s1 is None or tshirt_returned_in_s2 is None or tshirt_returned_in_s2 < 6:\n print(\"neutral\")\nelif tshirt_returned_in_s1 == tshirt_returned_in_s2:\n print(\"Entailment\")\nelif tshirt_returned_in_s1 != tshirt_returned_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A former executive of Digital Equipment Corp. and two others pleaded guilty Tuesday to siphoning nearly $ 300,000 from the computer company ., \"statement 2\" :A former executive of Digital Equipment Corp. siphoned nearly $ 300,000 from the company ., \"options: \" Entailment or neutral?", + "Output Program": [ + "money_siphoned_in_s1 = 300000\nmoney_siphoned_in_s2 = 300000\n\nif money_siphoned_in_s1 is None or money_siphoned_in_s2 is None:\n print(\"neutral\")\nelif (money_siphoned_in_s1 == money_siphoned_in_s2) :\n print(\"Entailment\")\nelif money_siphoned_in_s1 != money_siphoned_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": By how much must Rebecca ' s annual income increase so that it constitutes more than 15 % of Rebecca and Jimmy ' s combined income ?, \"statement 2\" :By how much must Rebecca ' s annual income increase so that it constitutes 55 % of Rebecca and Jimmy ' s combined income ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rebeca_contribution_in_s1 = 0\nrebeca_contribution_in_s1 > 15\nrebeca_contribution_in_s2 = 55\n\nif rebeca_contribution_in_s1 is None or rebeca_contribution_in_s2 is None or rebeca_contribution_in_s2 > 15:\n print(\"neutral\")\nelif rebeca_contribution_in_s1 == rebeca_contribution_in_s2:\n print(\"Entailment\")\nelif rebeca_contribution_in_s1 != rebeca_contribution_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sacha runs at a constant speed of 6 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"statement 2\" :Sacha runs at a constant speed of less than 7 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sacha_speed_in_s1 = 6\nsacha_speed_in_s2 = 00000\nsacha_speed_in_s2 < 7\nbruno_speed_in_s1 = 5\nbruno_speed_in_s2 = 5\n\n\nif sacha_speed_in_s1 is None or sacha_speed_in_s2 is None or bruno_speed_in_s1 is None or bruno_speed_in_s2 is None:\n print(\"neutral\")\nelif (sacha_speed_in_s1 == sacha_speed_in_s2 or sacha_speed_in_s1 < 7) and bruno_speed_in_s1 == bruno_speed_in_s2 :\n print(\"Entailment\")\nelif sacha_speed_in_s1 != sacha_speed_in_s2 or bruno_speed_in_s2 != bruno_speed_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Diana is 4 years older than Rashid is , then how old is Rashid ?, \"statement 2\" :If Diana is 6 years older than Rashid is , then how old is Rashid ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_comparison_in_s1 = 4\nage_comparison_in_s2 = 6\n\n\n\nif age_comparison_in_s1 is None or age_comparison_in_s1 is None:\n print(\"neutral\")\nelif age_comparison_in_s1 == age_comparison_in_s2:\n print(\"Entailment\")\nelif age_comparison_in_s1 != age_comparison_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Kishore saved 10 % of his monthly salary, \"statement 2\" :Kishore saved less than 40 % of his monthly salary, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kishore_save_in_s1 = 10\nkishore_save_in_s2 = 00000\nkishore_save_in_s2 < 40\n\nif kishore_save_in_s1 is None or kishore_save_in_s2:\n print(\"neutral\")\nelif (kishore_save_in_s1 == kishore_save_in_s2 or kishore_save_in_s1 < 40):\n print(\"Entailment\")\nelif kishore_save_in_s1 != kishore_save_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Arun obtained 76 , 65 , 82 , 67 and 85 marks ( out in 100 ) in English , Mathematics , Chemistry , Biology and Physics, \"statement 2\" :Arun obtained more than 56 , 65 , 82 , 67 and 85 marks ( out in 100 ) in English , Mathematics , Chemistry , Biology and Physics, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_in_s1 = {\n \"English\": 76,\n \"Mathematics\":65,\n \"Chemistry\": 82,\n \"Physics\": 67,\n \"Biology\": 85\n}\nmarks_in_s2 = {\n \"English\": 0,\n \"Mathematics\": 83,\n \"Physics\": 77,\n \"Biology\": 68,\n \"Chemistry\": 86\n \n}\nmarks_in_s2['English'] > 56\n\n\nif marks_in_s2 is None or marks_in_s1 is None or len(marks_in_s2)!=len(marks_in_s2):\n print(\"neutral\")\nelif marks_in_s1 == marks_in_s2 or marks_in_s1['English'] > 56:\n print(\"Entailment\")\nelif marks_in_s1 != marks_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": One hour after Yolanda started walking from X to Y , a distance of 24 miles , Bob started walking along the same road from Y to X, \"statement 2\" :One hour after Yolanda started walking from X to Y , a distance of less than 74 miles , Bob started walking along the same road from Y to X, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_walked_in_s1 = 24\ndistance_walked_in_s2 = 0\ndistance_walked_in_s2 < 74\n\n\n\n\nif distance_walked_in_s1 is None or distance_walked_in_s2 is None:\n print(\"neutral\")\nelif distance_walked_in_s1 == distance_walked_in_s2 or distance_walked_in_s1 < 74:\n print(\"Entailment\")\nelif distance_walked_in_s1 != distance_walked_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shankar got 66 , 83 , 77 , 68 , 86 marks ( out of 100 ) in English , Maths , physics , Biology and Chemistry, \"statement 2\" :Shankar got less than 66 , 83 , 77 , 68 , 86 marks ( out of 100 ) in English , Maths , physics , Biology and Chemistry, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_in_s1 = {\n \"English\": 66,\n \"Mathematics\": 83,\n \"Physics\": 77,\n \"Biology\": 68,\n \"Chemistry\": 86\n \n}\nmarks_in_s2 = {\n \"English\": 0,\n \"Mathematics\": 83,\n \"Physics\": 77,\n \"Biology\": 68,\n \"Chemistry\": 86\n \n}\nmarks_in_s2['English'] < 66\nmarks_in_s2['English'] = 65\n\n\nif marks_in_s2 is None or marks_in_s1 is None or len(marks_in_s2)!=len(marks_in_s2):\n print(\"neutral\")\nelif marks_in_s1 == marks_in_s2:\n print(\"Entailment\")\nelif marks_in_s1 != marks_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tom purchased more than 7 kg of apples at the rate of 70 per kg and 9 kg of mangoes at the rate of 55 per kg, \"statement 2\" :Tom purchased 8 kg of apples at the rate of 70 per kg and 9 kg of mangoes at the rate of 55 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "apple_purchased_in_s1 = 0\napple_purchased_in_s1 > 7\napple_purchased_in_s2 = 8\n\nif apple_purchased_in_s1 is None or apple_purchased_in_s2 is None or apple_purchased_in_s2 > 7:\n print(\"neutral\")\nelif apple_purchased_in_s1 == apple_purchased_in_s2:\n print(\"Entailment\")\nelif apple_purchased_in_s1 != apple_purchased_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lindy runs at a constant speed of 10 feet per second from Christina to Jack , back to Christina , back to Jack , and so forth, \"statement 2\" :Lindy runs at a constant speed of more than 10 feet per second from Christina to Jack , back to Christina , back to Jack , and so forth, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_in_s1 = 10\nspeed_in_s2 = 0\nspeed_in_s2 > 10\nspeed_in_s2 = 11\n\nif speed_in_s1 is None or speed_in_s2 is None:\n print(\"neutral\")\nelif speed_in_s1 == speed_in_s2:\n print(\"Entailment\")\nelif speed_in_s1 != speed_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 18 stations between Ernakulam and Chennai, \"statement 2\" :There are less than 38 stations between Ernakulam and Chennai, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "station_between_in_s1 = 18\nstation_between_in_s2 = 0\nstation_between_in_s2 < 38\n\n\nif station_between_in_s1 is None or station_between_in_s2 is None:\n print(\"neutral\")\nelif station_between_in_s1 == station_between_in_s2 or station_between_in_s1 < 38:\n print(\"Entailment\")\nelif station_between_in_s1 != station_between_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 4050 from Anwar at 6 % p, \"statement 2\" :more than 3050 from Anwar at 6 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_in_s1_at_6_percent = 4050\namount_in_s2_at_6_percent = 0\namount_in_s2_at_6_percent > 3050\n\n\nif amount_in_s1_at_6_percent is None or amount_in_s2_at_6_percent is None:\n print(\"neutral\")\nelif amount_in_s1_at_6_percent == amount_in_s2_at_6_percent or amount_in_s1_at_6_percent > 3050:\n print(\"Entailment\")\nelif amount_in_s1_at_6_percent != amount_in_s2_at_6_percent:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John was thrice as old as Tom 6 years ago, \"statement 2\" :John was thrice as old as Tom 1 years ago, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "comparison_age_in_s1 = 6\ncomparison_age_in_s2 = 1\n\nif comparison_age_in_s1 is None or comparison_age_in_s2 is None:\n print(\"neutral\")\nelif comparison_age_in_s1 == comparison_age_in_s2:\n print(\"Entailment\")\nelif comparison_age_in_s1 != comparison_age_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joan 's cat had 8.0 kittens and she gave 2.0 to her friends , \"statement 2\" :She has 6.0 kittens now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "joans_cat_in_s1 = 8-2\njoans_cat_in_s2 = 6\n\n\nif joans_cat_in_s1 is None or joans_cat_in_s2 is None:\n print(\"neutral\")\nelif joans_cat_in_s1 == joans_cat_in_s2:\n print(\"Entailment\")\nelif joans_cat_in_s1 != joans_cat_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many ways are there for less than 5 males and 4 females to sit ( around a circular table ) if no male should sit next to a male ( and no female next to female ) and Mary wants to sit with her back on the wall ?, \"statement 2\" :How many ways are there for 3 males and 4 females to sit ( around a circular table ) if no male should sit next to a male ( and no female next to female ) and Mary wants to sit with her back on the wall ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "males_in_s1 = 0\nmales_in_s1 < 5\nmales_in_s2 = 3\nfemales_in_s1 = 4\nfemales_in_s2 = 4\n\nif males_in_s1 is None or males_in_s2 is None or males_in_s2 < 5 or females_in_s1 is None or females_in_s2 is None:\n print(\"neutral\")\nelif males_in_s1 == males_in_s2 and females_in_s1 == females_in_s2:\n print(\"Entailment\")\nelif males_in_s1 != males_in_s2 or females_in_s1 != females_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Video from CNN affiliate Seven Network later showed two more people running out of the cafe ., \"statement 2\" :At least five people have fled the cafe , Seven Network video shows, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_fleed_in_s1 = 0\npeople_fleed_in_s1 > 2\npeople_fleed_in_s2 = 5\n\nif people_fleed_in_s1 is None or people_fleed_in_s2 is None or people_fleed_in_s2 > 2:\n print(\"neutral\")\nelif people_fleed_in_s1 == people_fleed_in_s2:\n print(\"Entailment\")\nelif people_fleed_in_s1 != people_fleed_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A starts from Delhi with a speed of 20 kmph at 7 a, \"statement 2\" :A starts from Delhi with a speed of less than 20 kmph at 7 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + " \nspeed_in_s1 = 20\nspeed_in_s2 = 0\nspeed_in_s2 < 20\nspeed_in_s2 = 19\n\n\n\nif speed_in_s1 is None or speed_in_s2 is None:\n print(\"neutral\")\nelif speed_in_s1 == speed_in_s2:\n print(\"Entailment\")\nelif speed_in_s1 != speed_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After losing to bottom side QPR and drawing with newly-promoted Southampton in their last two home games the pressure was on Benitez to deliver and his side consolidated third place thanks to goals from Spain international Juan Mata and Frank Lampard ., \"statement 2\" :Goals from Juan Mata and Frank Lampard help Chelsea defeat Arsenal 2-1, \"options: \" Entailment or neutral?", + "Output Program": [ + "goal_data_in_s1 = None\ngoal_data_in_s2 = [2,1]\n\nif goal_data_in_s1 is None or goal_data_in_s2 is None:\n print(\"neutral\")\nelif goal_data_in_s1 == goal_data_in_s2:\n print(\"Entailment\")\nelif goal_data_in_s1 != goal_data_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": for Mathura and B starts from Mathura with a speed of 25 kmph at 8 p, \"statement 2\" :for Mathura and B starts from Mathura with a speed of 85 kmph at 8 p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_in_s1 = 25\nspeed_in_s2 = 85\n\n\nif speed_in_s1 is None or speed_in_s2 is None:\n print(\"neutral\")\nelif speed_in_s1 == speed_in_s2:\n print(\"Entailment\")\nelif speed_in_s1 != speed_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ratio between the school ages of Neelam and Shaan is more than 4 : 6 respectively, \"statement 2\" :The ratio between the school ages of Neelam and Shaan is 5 : 6 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_in_s1 = 0\nratio_in_s1 > 4/6\nratio_in_s2 = 5/6\n\nif ratio_in_s1 is None or ratio_in_s2 is None or ratio_in_s2 > 4/6:\n print(\"neutral\")\nelif ratio_in_s1 == ratio_in_s2:\n print(\"Entailment\")\nelif ratio_in_s1 != ratio_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Stacy has a 81 page history paper due in 3 days, \"statement 2\" :Stacy has a less than 81 page history paper due in 3 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "paper_in_s1 = 81\npaper_in_s2 = 0\npaper_in_s2 < 81\npaper_in_s2 = 80\n\nif paper_in_s1 is None or paper_in_s2 is None:\n print(\"neutral\")\nelif paper_in_s1 == paper_in_s2:\n print(\"Entailment\")\nelif paper_in_s1 != paper_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Pens , Pencils and Markers in a Jenna ' s desk are in the ratio of 2 : 2 : 5, \"statement 2\" :Pens , Pencils and Markers in a Jenna ' s desk are in the ratio of less than 7 : 2 : 5, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_pen_pencil_in_s1 = 2/2\nratio_pen_pencil_in_s2 = 0\nratio_pen_pencil_in_s2 < 7/2\n\nratio_pencil_marker_in_s1 = 2/5\nratio_pencil_marker_in_s2 = 2/5\n\nif ratio_pen_pencil_in_s1 is None or ratio_pen_pencil_in_s2 is None or ratio_pencil_marker_in_s1 is None or ratio_pencil_marker_in_s2 is None:\n print(\"neutral\")\nelif (ratio_pen_pencil_in_s1 == ratio_pen_pencil_in_s2 or ratio_pen_pencil_in_s1 < 7/2) and ratio_pencil_marker_in_s1 == ratio_pencil_marker_in_s2:\n print(\"Entailment\")\nelif ratio_pen_pencil_in_s1 != ratio_pen_pencil_in_s2 or ratio_pencil_marker_in_s1 != ratio_pencil_marker_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At least 15 women have spoken out to various media outlets accusing the comedian of sexual misconduct ., \"statement 2\" :At least 15 women are speaking out , accusing the comedian of sexual misconduct, \"options: \" Entailment or neutral?", + "Output Program": [ + "women_spoken_in_s1 = 15\nwomen_spoken_in_s2 = 15\n\nif women_spoken_in_s1 is None or women_spoken_in_s2 is None:\n print(\"neutral\")\nelif (women_spoken_in_s1 == women_spoken_in_s2):\n print(\"Entailment\")\nelif women_spoken_in_s1 != women_spoken_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": This ( revised ) Convention shall enter into force six months after the date on which four States , including at least three member States of the Council of Europe , have expressed their consent to be bound by the ( revised ) Convention in accordance with the provisions of the preceding paragraphs ., \"statement 2\" :The Council of Europe is made up by 3 member states ., \"options: \" Entailment or neutral?", + "Output Program": [ + "force_months_in_s1 = 6\nforce_months_in_s2 = None\n\nif force_months_in_s1 is None or force_months_in_s2 is None:\n print(\"neutral\")\nelif force_months_in_s1 == force_months_in_s2:\n print(\"Entailment\")\nelif force_months_in_s1 != force_months_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the height difference between the two if the Empire State Building is more than 280 m tall and the Petronas Towers is 516 m tall ?, \"statement 2\" :What is the height difference between the two if the Empire\nState Building is 480 m tall and the Petronas Towers is 516 m tall ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "height_of_emp_buil_in_s1 = 0\nheight_of_emp_buil_in_s1 > 280\nheight_of_emp_buil_in_s2 = 480\n\nif height_of_emp_buil_in_s1 is None or height_of_emp_buil_in_s2 is None or height_of_emp_buil_in_s2 > 280:\n print(\"neutral\")\nelif height_of_emp_buil_in_s1 == height_of_emp_buil_in_s2:\n print(\"Entailment\")\nelif height_of_emp_buil_in_s1 != height_of_emp_buil_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": White t-shirts can be purchased in packages of 6.0, and Mom buys 71.0 packages, \"statement 2\" :She will have 422.0 white t-shirts , \"options: \" Entailment or contradiction?", + "Output Program": [ + " \ntshirt_in_s1 = 6*71\ntshirt_in_s2 = 422\n\nif tshirt_in_s1 is None or tshirt_in_s2 is None:\n print(\"neutral\")\nelif tshirt_in_s1 == tshirt_in_s2:\n print(\"Entailment\")\nelif tshirt_in_s1 != tshirt_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Fred walks at a constant speed of 4 miles per hour and Sam walks at a constant speed of 4 miles per hour , how many miles has Sam walked when they meet ?, \"statement 2\" :If Fred walks at a constant speed of more than 1 miles per hour and Sam walks at a constant speed of 4 miles per hour , how many miles has Sam walked when they meet ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "fred_speed_in_s1 = 4\nfred_speed_in_s2 = 4\n\nif fred_speed_in_s1 is None or fred_speed_in_s2 is None:\n print(\"neutral\")\nelif (fred_speed_in_s1 == fred_speed_in_s2):\n print(\"Entailment\")\nelif fred_speed_in_s1 != fred_speed_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Faye bought 48.0 coloring books, and she gave away 34.0 of them and then gave away 3.0 more, \"statement 2\" :She would have 12.0 coloring books left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "books_remaining_in_s1 = 48-34-3\nbooks_remaining_in_s2 = 12\n\nif books_remaining_in_s1 is None or books_remaining_in_s2 is None:\n print(\"neutral\")\nelif books_remaining_in_s1 == books_remaining_in_s2:\n print(\"Entailment\")\nelif books_remaining_in_s1 != books_remaining_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Each week , Harry is paid x dollars per hour for the first 18 hours and 1.5 x dollars for each additional hour worked that week, \"statement 2\" :Each week , Harry is paid x dollars per hour for the first more than 18 hours and 1.5 x dollars for each additional hour worked that week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "work_hours_at_1x_in_s1 = 18\nwork_hours_at_1x_in_s2 = 0\nwork_hours_at_1x_in_s2 > 18\nwork_hours_at_1x_in_s2 = 19\n\nif work_hours_at_1x_in_s1 is None or work_hours_at_1x_in_s2 is None:\n print(\"neutral\")\nelif work_hours_at_1x_in_s1 == work_hours_at_1x_in_s2:\n print(\"Entailment\")\nelif work_hours_at_1x_in_s1 != work_hours_at_1x_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A box of books weighs 42.0 pounds and each book weighs 3.0 pounds, \"statement 2\" :12.0 books are there in the box, \"options: \" Entailment or contradiction?", + "Output Program": [ + "books_in_s1 = 42/3\nbooks_in_s2 =12\n\n\nif books_in_s1 is None or books_in_s2 is None:\n print(\"neutral\")\nelif books_in_s1 == books_in_s2:\n print(\"Entailment\")\nelif books_in_s1 != books_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": During Reinsdorf 's 24 seasons as chairman of the White Sox , the team has captured American League division championships three times , including an AL Central title in 2000 ., \"statement 2\" :The White Sox have won 24 championships ., \"options: \" Entailment or neutral?", + "Output Program": [ + "american_leauge_won_in_s1 = 3\namerican_leauge_won_in_s2 = None\n\nif american_leauge_won_in_s1 is None or american_leauge_won_in_s2 is None:\n print(\"neutral\")\nelif american_leauge_won_in_s1 == american_leauge_won_in_s2:\n print(\"Entailment\")\nelif american_leauge_won_in_s1 != american_leauge_won_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are no reports so far as to whether any relatives have claimed the bodies of the four military men who were reportedly killed when the plane crashed ., \"statement 2\" :Four military men died in a plane crash ., \"options: \" Entailment or neutral?", + "Output Program": [ + "military_man_dead_in_s1 = 4\nmilitary_man_dead_in_s2 = 4\n\nif military_man_dead_in_s1 is None or military_man_dead_in_s2 is None:\n print(\"neutral\")\nelif (military_man_dead_in_s1 == military_man_dead_in_s2):\n print(\"Entailment\")\nelif military_man_dead_in_s1 != military_man_dead_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the toy store is stocked with 3 types of balls and 6 types of board games , how many different selections Q of the 4 items can Amanda make ?, \"statement 2\" :If the toy store is stocked with 5 types of balls and 6 types of board games , how many different selections Q of the 4 items can Amanda make ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "type_balls_store_in_s1 = 3\ntype_board_games_store_in_s1 = 6\ntype_to_choose_in_s1 = 4\n\ntype_balls_store_in_s2 = 5\ntype_board_games_store_in_s2 = 6\ntype_to_choose_in_s2 = 4\n\n\n\nif type_balls_store_in_s1 is None or type_balls_store_in_s2 is None or type_board_games_store_in_s1 is None or type_board_games_store_in_s1 is None or type_to_choose_in_s1 is None or type_to_choose_in_s2 is None:\n print(\"neutral\")\nelif type_balls_store_in_s1 == type_balls_store_in_s2 and type_board_games_store_in_s1 == type_board_games_store_in_s2 and type_to_choose_in_s1 ==type_to_choose_in_s2:\n print(\"Entailment\")\nelif type_balls_store_in_s1 != type_balls_store_in_s2 or type_board_games_store_in_s1 == type_board_games_store_in_s2 or type_to_choose_in_s1 != type_to_choose_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 7.0 crayons in the drawer and Mary took 3.0 crayons out of the drawer , \"statement 2\" :4.0 crayons are there now , \"options: \" Entailment or contradiction?", + "Output Program": [ + "crayons_in_s1 = 7-3\ncrayons_in_s2 = 4\n\nif crayons_in_s1 is None or crayons_in_s2 is None:\n print(\"neutral\")\nelif (crayons_in_s1 == crayons_in_s2):\n print(\"Entailment\")\nelif crayons_in_s1 != crayons_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Four of those planets are in what NASA calls the '' habitable zone , '' meaning they have the makeup to potentially support life ., \"statement 2\" :Four of 715 newly discovered planets may support Earth-like life, \"options: \" Entailment or neutral?", + "Output Program": [ + "total_planets_in_s1 = None\ntotal_planets_in_s2 = 715\n\nif total_planets_in_s1 is None or total_planets_in_s2 is None:\n print(\"neutral\")\nelif total_planets_in_s1 == total_planets_in_s2:\n print(\"Entailment\")\nelif total_planets_in_s1 != total_planets_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If bonds are sold in $ more than 40 or $ 100 denominations only , which of the following CAN NOT be the number of US saving bonds that Robert purchased ?, \"statement 2\" :If bonds are sold in $ 50 or $ 100 denominations only , which of the following CAN NOT be the number of US saving bonds that Robert purchased ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bond_type_in_s1 = 0\nbond_type_in_s1 > 40\nbond_type_in_s2 = 50\n\nif bond_type_in_s1 is None or bond_type_in_s2 is None or bond_type_in_s2 > 40:\n print(\"neutral\")\nelif bond_type_in_s1 == bond_type_in_s2:\n print(\"Entailment\")\nelif bond_type_in_s1 != bond_type_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the distance between their homes is 110 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 7 km / h , what is the distance traveled by Brad ?, \"statement 2\" :If the distance between their homes is less than 610 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 7 km / h , what is the distance traveled by Brad ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_in_s1 = 110\ndistance_in_s2 = 0\ndistance_in_s2 < 610\nmaxwel_walking_speed_in_s1 = 4\nmaxwel_walking_speed_in_s2 = 4\nmaxwel_running_speed_in_s1 = 7\nmaxwel_running_speed_in_s2 = 7\n\n\n\n\nif distance_in_s1 is None or distance_in_s2 is None or maxwel_walking_speed_in_s1 is None or maxwel_walking_speed_in_s1 is None or maxwel_running_speed_in_s1 is None or maxwel_running_speed_in_s2 is None:\n print(\"neutral\")\nelif (distance_in_s1 == distance_in_s2 or distance_in_s1 < 610) and maxwel_walking_speed_in_s1 == maxwel_walking_speed_in_s2 and maxwel_running_speed_in_s1 == maxwel_running_speed_in_s2:\n print(\"Entailment\")\nelif distance_in_s1 != distance_in_s2 or maxwel_walking_speed_in_s1 != maxwel_walking_speed_in_s2 or maxwel_running_speed_in_s1 != maxwel_running_speed_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If less than 488 is divided into four parts proportional to 5 , 7 , 4 , 8 then the smallest part is :, \"statement 2\" :If 288 is divided into four parts proportional to 5 , 7 , 4 , 8 then the smallest part is :, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "divided_number_in_s1 = 0\ndivided_number_in_s1 < 488\ndivided_number_in_s2 = 288\n\nif divided_number_in_s1 is None or divided_number_in_s2 is None or divided_number_in_s2 < 488:\n print(\"neutral\")\nelif divided_number_in_s1 == divided_number_in_s2:\n print(\"Entailment\")\nelif divided_number_in_s1 != divided_number_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tarun got less than 80 % concession on the labelled price of an article and sold it for Rs, \"statement 2\" :Tarun got 30 % concession on the labelled price of an article and sold it for Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "concesson_in_s1 = 0\nconcesson_in_s1 < 80\nconcesson_in_s2 = 30\n\nif concesson_in_s1 is None or concesson_in_s2 is None or concesson_in_s2 < 80:\n print(\"neutral\")\nelif concesson_in_s1 == concesson_in_s2:\n print(\"Entailment\")\nelif concesson_in_s1 != concesson_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Henry were to add more than 3 gallons of water to a tank that is already 3 / 4 full of water , the tank would be 7 / 8 full, \"statement 2\" :If Henry were to add 4 gallons of water to a tank that is already 3 / 4 full of water , the tank would be 7 / 8 full, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "water_in_s1 = 0\nwater_in_s1 > 3\nwater_in_s2 = 4\nwater_full_in_s1 = 7/8\nwater_full_in_s1 = 7/8\n\nif water_in_s1 is None or water_in_s2 is None or water_in_s2 > 3 or water_full_in_s1 is None or water_full_in_s2 is None:\n print(\"neutral\")\nelif water_in_s1 == water_in_s2 and water_full_in_s1== water_full_in_s2:\n print(\"Entailment\")\nelif water_in_s1 != water_in_s2 or water_full_in_s1 != water_full_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are 10 more FGH supermarkets in the US than in Canada , how many FGH supermarkets are there in the US ?, \"statement 2\" :If there are more than 10 more FGH supermarkets in the US than in Canada , how many FGH supermarkets are there in the US ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "super_markets_in_s1 = 10\nsuper_markets_in_s2 = 0\nsuper_markets_in_s2 > 10\nsuper_markets_in_s2 = 15\n\n\nif super_markets_in_s1 is None or super_markets_in_s2 is None:\n print(\"neutral\")\nelif super_markets_in_s1 == super_markets_in_s2:\n print(\"Entailment\")\nelif super_markets_in_s1 != super_markets_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Ashwin paid a total of $ 125 , excluding sales tax , to rent the tool , for how many hours did she rent it ?, \"statement 2\" :If Ashwin paid a total of $ less than 625 , excluding sales tax , to rent the tool , for how many hours did she rent it ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rent_paid_in_s1 = 125\nrent_paid_in_s2 = 0\nrent_paid_in_s2 < 625\n\nif rent_paid_in_s1 is None or rent_paid_in_s2 is None:\n print(\"neutral\")\nelif (rent_paid_in_s1 == rent_paid_in_s2) or rent_paid_in_s1 < 625:\n print(\"Entailment\")\nelif rent_paid_in_s1 != rent_paid_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Kevin sells all his corn and cotton for a total of $ more than 540 , then compute x ., \"statement 2\" :If Kevin sells\nall his corn and cotton for a total of $ 640 , then compute x ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "selling_price_in_s1 = 0\nselling_price_in_s1 > 540\nselling_price_in_s2 = 640\n\nif selling_price_in_s1 is None or selling_price_in_s2 is None or selling_price_in_s2 > 540:\n print(\"neutral\")\nelif selling_price_in_s1 == selling_price_in_s2:\n print(\"Entailment\")\nelif selling_price_in_s1 != selling_price_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A pet store had 13.0 siamese cats and 5.0 house cats and During a purchase, they added 10.0 cats, \"statement 2\" :They have 28.0 cats left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "cats_in_ttl_s1 = 13+5+10\ncats_in_ttl_s2 = 28\n\nif cats_in_ttl_s1 is None or cats_in_ttl_s2 is None:\n print(\"neutral\")\nelif (cats_in_ttl_s1 == cats_in_ttl_s2):\n print(\"Entailment\")\nelif cats_in_ttl_s1 != cats_in_ttl_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A trivia team had 5.0 members total, but during a game 2.0 members didn't show up, and each member that did show up scored 6.0 points, \"statement 2\" :17.0 points were scored total, \"options: \" Entailment or contradiction?", + "Output Program": [ + "points_in_s1 = (5-2)*6\npoints_in_s2 = 17\n\n\nif points_in_s1 is None or points_in_s2 is None:\n print(\"neutral\")\nelif points_in_s1 == points_in_s2:\n print(\"Entailment\")\nelif points_in_s1 != points_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mira is making telescopes , each consisting of less than 6 lenses , 1 tube , and 1 eyepiece, \"statement 2\" :Mira is making telescopes , each consisting of 2 lenses , 1 tube , and 1 eyepiece, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nmira_telescope_lence_in_s1 = 0\nmira_telescope_lence_in_s1 < 6\nmira_telescope_lence_in_s2 = 2\n\nif mira_telescope_lence_in_s1 is None or mira_telescope_lence_in_s2 is None or mira_telescope_lence_in_s2 < 6:\n print(\"neutral\")\nelif mira_telescope_lence_in_s1 == mira_telescope_lence_in_s2:\n print(\"Entailment\")\nelif mira_telescope_lence_in_s1 != mira_telescope_lence_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sakshi can do a piece of work in 12 days, \"statement 2\" :Sakshi can do a piece of work in less than 32 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sakshi_work_eff_in_s1 = 12\nsakshi_work_eff_in_s2 = 28\nsakshi_work_eff_in_s2 < 32\n\nif sakshi_work_eff_in_s1 is None or sakshi_work_eff_in_s2 is None:\n print(\"neutral\")\nelif (sakshi_work_eff_in_s1 == sakshi_work_eff_in_s2) or sakshi_work_eff_in_s1 < 32:\n print(\"Entailment\")\nelif sakshi_work_eff_in_s1 != sakshi_work_eff_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sara had 100.0 pennies and 783.0 quarters in her bank and her dad borrowed 271.0 quarters from Sara , \"statement 2\" :She has 513.0 quarters now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "sara_pennies_in_s1 = 100\nsara_quarters_in_s1 = 783-271\nsara_quarters_in_s2 = 513\n\n\nif sara_pennies_in_s1 is None or sara_quarters_in_s1 is None or sara_quarters_in_s2 is None:\n print(\"neutral\")\nelif sara_quarters_in_s1 == sara_quarters_in_s2:\n print(\"Entailment\")\nelif sara_quarters_in_s1 != sara_quarters_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Trijicon has a $ 660 million contract for the U.S. Marine Corps and the U.S. Army , according to Turner ., \"statement 2\" :Trijicon has a $ 660 million contract for Marine Corps , Army , defense official says, \"options: \" Entailment or neutral?", + "Output Program": [ + "trijicon_contract_ampunt_in_s1 = 660\ntrijicon_contract_ampunt_in_s2 = 660\n\n\nif trijicon_contract_ampunt_in_s1 is None or trijicon_contract_ampunt_in_s2 is None:\n print(\"neutral\")\nelif (trijicon_contract_ampunt_in_s1 == trijicon_contract_ampunt_in_s2):\n print(\"Entailment\")\nelif trijicon_contract_ampunt_in_s1 != trijicon_contract_ampunt_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If less than 71 people have visited both Iceland and Norway , how many people have visited neither country ?, \"statement 2\" :If 51 people have visited both Iceland and Norway , how many people have visited neither country ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_visited_country_in_s1 = 0\npeople_visited_country_in_s1 < 71\npeople_visited_country_in_s2 = 51\n\nif people_visited_country_in_s1 is None or people_visited_country_in_s2 is None or people_visited_country_in_s2 < 71:\n print(\"neutral\")\nelif people_visited_country_in_s1 == people_visited_country_in_s2:\n print(\"Entailment\")\nelif people_visited_country_in_s1 != people_visited_country_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Barbara has more than 1 shirts and 9 pants, \"statement 2\" :Barbara has 8 shirts and 9 pants, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "barbra_shirt_in_s1 = 0\nbarbra_shirt_in_s1 > 1\nbarbra_shirt_in_s2 = 8\n\nif barbra_shirt_in_s1 is None or barbra_shirt_in_s2 is None or barbra_shirt_in_s2 > 1:\n print(\"neutral\")\nelif barbra_shirt_in_s1 == barbra_shirt_in_s2:\n print(\"Entailment\")\nelif barbra_shirt_in_s1 != barbra_shirt_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Every time you travel a mile towards Bananaville you must pay a tax of 1 apple but you pay nothing when going in the other direction ( towards Appleland ) .\nWhat is highest number of apples you can get to Bananaville ?, \"statement 2\" :Every time you travel a mile towards Bananaville you must pay a tax of more than 1 apple but you pay nothing when going in the other direction ( towards Appleland ) . What is highest number of apples you can get to Bananaville ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tax_in_s1 = 1\ntax_in_s2 = 0\ntax_in_s2 > 1\ntax_in_s2 = 2\n\nif tax_in_s1 is None or tax_in_s2 is None:\n print(\"neutral\")\nelif tax_in_s1 == tax_in_s2:\n print(\"Entailment\")\nelif tax_in_s1 != tax_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": However , less than 65 percent of the sales representatives prefer to stay at Hotel XYZ and 45 percent prefer to stay at Hotel ABC, \"statement 2\" :However , 55 percent of the sales representatives prefer to stay at Hotel XYZ and 45 percent prefer to stay at Hotel ABC, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "xyz_per_in_s1 = 0\nxyz_per_in_s1 < 65\nxyz_per_in_s2 = 55\nabc_per_in_s1 = 45\nabc_per_in_s2 = 45\n\nif xyz_per_in_s1 is None or xyz_per_in_s2 is None or xyz_per_in_s2 < 65 or abc_per_in_s1 is None or abc_per_in_s2 is None:\n print(\"neutral\")\nelif xyz_per_in_s1 == xyz_per_in_s2 and abc_per_in_s1 == abc_per_in_s2:\n print(\"Entailment\")\nelif xyz_per_in_s1 != xyz_per_in_s2 or abc_per_in_s1 != abc_per_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary purchased Brand X pens for $ 2 apiece and brand Y for $ 1 apiece, \"statement 2\" :Mary purchased Brand X pens for $ more than 2 apiece and brand Y for $ 1 apiece, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "brand_x_price_in_s1 = 2\nbrand_y_price_in_s1 = 1\nbrand_x_price_in_s2 = 0\nbrand_x_price_in_s2 > 2\nbrand_x_price_in_s2 = 3\nbrand_y_price_in_s2 = 1\n\nif brand_x_price_in_s1 is None or brand_x_price_in_s2 is None or brand_y_price_in_s1 is None or brand_y_price_in_s1 is None:\n print(\"neutral\")\nelif brand_x_price_in_s1 == brand_x_price_in_s2 and brand_y_price_in_s1 == brand_y_price_in_s2:\n print(\"Entailment\")\nelif brand_x_price_in_s1 != brand_x_price_in_s2 or brand_y_price_in_s1 != brand_y_price_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": than how many more employees should NHAI hire to finish it in time working 10 hours a day ?, \"statement 2\" :than how many more employees should NHAI hire to finish it in time working less than 70 hours a day ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "working_time_in_s1 = 10\nworking_time_in_s2 = 0\nworking_time_in_s2 < 70\n\n\nif working_time_in_s1 is None or working_time_in_s2 is None:\n print(\"neutral\")\nelif (working_time_in_s1 == working_time_in_s2) or working_time_in_s1 < 70:\n print(\"Entailment\")\nelif working_time_in_s1 != working_time_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Pens , Pencils and Markers in a Jenna ' s desk are in the ratio of less than 7 : 2 : 5, \"statement 2\" :Pens , Pencils and Markers in a Jenna ' s desk are in the ratio of 2 : 2 : 5, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pens_in_s1 = 0\npens_in_s1 < 7/2\npens_in_s2 = 2/2\npencil_mark_in_s1 = 2/5\npencil_mark_in_s2 = 2/5\n\nif pens_in_s1 is None or pens_in_s2 is None or pens_in_s2 < 7/2 or pencil_mark_in_s1 is None or pencil_mark_in_s2 is None:\n print(\"neutral\")\nelif pens_in_s1 == pens_in_s2 and pencil_mark_in_s1 == pencil_mark_in_s2:\n print(\"Entailment\")\nelif pens_in_s1 != pens_in_s2 or pencil_mark_in_s1 != pencil_mark_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shawn plants a garden less than 65 feet by 24 feet, \"statement 2\" :Shawn plants a garden 25 feet by 24 feet, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "garden_length_in_s1 = 0\ngarden_length_in_s1 < 65\ngarden_length_in_s2 = 25\ngarden_width_in_s1 = 24\ngarden_width_in_s2 = 24\n\nif garden_length_in_s1 is None or garden_length_in_s2 is None or garden_length_in_s2 < 65 or garden_width_in_s1 is None or garden_width_in_s2 is None:\n print(\"neutral\")\nelif garden_length_in_s1 == garden_length_in_s2 and garden_width_in_s1 == garden_width_in_s2:\n print(\"Entailment\")\nelif garden_length_in_s1 != garden_length_in_s2 or garden_width_in_s1 != garden_width_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": For dinner , Cara ate 240 grams of bread which was eight times as much bread as she ate for lunch , and six times as much bread as she ate for breakfast, \"statement 2\" :For dinner , Cara ate more than 140 grams of bread which was eight times as much bread as she ate for lunch , and six times as much bread as she ate for breakfast, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cara_eat_bread_in_s1 = 240\ncara_eat_bread_in_s2 = 0\ncara_eat_bread_in_s1 > 140\n\n\nif cara_eat_bread_in_s1 is None or cara_eat_bread_in_s2 is None:\n print(\"neutral\")\nelif (cara_eat_bread_in_s1 == cara_eat_bread_in_s2) or cara_eat_bread_in_s1 > 140:\n print(\"Entailment\")\nelif cara_eat_bread_in_s1 != cara_eat_bread_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rihanna brought home 150 pens but while packing them , she misplaced some of them, \"statement 2\" :Rihanna brought home 450 pens but while packing them , she misplaced some of them, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pen_bought_in_s1 = 150\npen_bought_in_s2 = 450\n\n\nif pen_bought_in_s1 is None or pen_bought_in_s2 is None:\n print(\"neutral\")\nelif pen_bought_in_s1 == pen_bought_in_s2:\n print(\"Entailment\")\nelif pen_bought_in_s1 != pen_bought_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the average speed of the whole journey was 36 mph , then what is Tom ' s speed driving from B to C in miles per hour ?, \"statement 2\" :If the average speed of the whole journey was less than 76 mph , then what is Tom ' s speed driving from B to C in miles per hour ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "avg_speed_in_s1 = 36\navg_speed_in_s2 = 0\navg_speed_in_s2 < 76\n\n\nif avg_speed_in_s1 is None or avg_speed_in_s2 is None:\n print(\"neutral\")\nelif (avg_speed_in_s1 == avg_speed_in_s2) or avg_speed_in_s1 < 76:\n print(\"Entailment\")\nelif avg_speed_in_s1 != avg_speed_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Veena ranks 79 rd from the top in a class of 182, \"statement 2\" :Veena ranks more than 39 rd from the top in a class of 182, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "veena_rank_from_182_in_s1 = 79\nveena_rank_from_182_in_s2 = 0\nveena_rank_from_182_in_s1 > 39\n\n\nif veena_rank_from_182_in_s1 is None or veena_rank_from_182_in_s2 is None:\n print(\"neutral\")\nelif (veena_rank_from_182_in_s1 == veena_rank_from_182_in_s2) or veena_rank_from_182_in_s1 > 39:\n print(\"Entailment\")\nelif veena_rank_from_182_in_s1 != veena_rank_from_182_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 55000 respectively , after three months Mitra invested Rs, \"statement 2\" :75000 respectively , after three months Mitra invested Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "invest_value_in_s1 = 55000\ninvest_value_in_s2 = 75000\n\n\nif invest_value_in_s1 is None or invest_value_in_s2 is None:\n print(\"neutral\")\nelif invest_value_in_s1 == invest_value_in_s2:\n print(\"Entailment\")\nelif invest_value_in_s1 != invest_value_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Let \u2019 s assume such rumors to be true and that in a match between Ghana and Bolivia ; Ghana the stronger team has a probability of 2 / 3 of winning the game, \"statement 2\" :Let \u2019 s assume such rumors to be true and that in a match between Ghana and Bolivia ; Ghana the stronger team has a probability of 5 / 3 of winning the game, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ghana_prob_in_s1 = 2/3\nghana_prob_in_s2 = 5/3\n\n\nif ghana_prob_in_s1 is None or ghana_prob_in_s2 is None:\n print(\"neutral\")\nelif ghana_prob_in_s1 == ghana_prob_in_s2:\n print(\"Entailment\")\nelif ghana_prob_in_s1 != ghana_prob_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": On the first day , each patient received 15 milligrams of Dosaxin, \"statement 2\" :On the first day , each patient received 25 milligrams of Dosaxin, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dosaxin_in_s1 = 15\ndosaxin_in_s2 = 25\n\n\nif dosaxin_in_s1 is None or dosaxin_in_s2 is None:\n print(\"neutral\")\nelif dosaxin_in_s1 == dosaxin_in_s2:\n print(\"Entailment\")\nelif dosaxin_in_s1 != dosaxin_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In one day , Juan sends Keith two times as many messages as he sends Laurence , and Laurence sends Missy more than 7 times as many messages as he receives from Juan, \"statement 2\" :In one day , Juan sends Keith two times as many messages as he sends Laurence , and Laurence sends Missy 8 times as many messages as he receives from Juan, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "message_in_s1 = 0\nmessage_in_s1 > 7\nmessage_in_s2 = 8\n\nif message_in_s1 is None or message_in_s2 is None or message_in_s2 > 7:\n print(\"neutral\")\nelif message_in_s1 == message_in_s2:\n print(\"Entailment\")\nelif message_in_s1 != message_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ted wants to put 5.0 candy bars in each of his 15.0 bags., \"statement 2\" :Ted needs to get 71.0 candy bars, \"options: \" Entailment or contradiction?", + "Output Program": [ + "candy_put_in_s1 = 15*5\ncandy_put_in_s2 = 71\n\n\nif candy_put_in_s1 is None or candy_put_in_s2 is None:\n print(\"neutral\")\nelif candy_put_in_s1 == candy_put_in_s2:\n print(\"Entailment\")\nelif candy_put_in_s1 != candy_put_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Patrick purchased 80 pencils and sold them at a loss equal to the selling price of 16 pencils, \"statement 2\" :Patrick purchased more than 50 pencils and sold them at a loss equal to the selling price of 16 pencils, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pencils_purchased_in_s1 = 80\npencils_purchased_in_s2 = 0\npencils_purchased_in_s2 > 50\n\n\nif pencils_purchased_in_s1 is None or pencils_purchased_in_s2 is None:\n print(\"neutral\")\nelif (pencils_purchased_in_s1 == pencils_purchased_in_s2) or pencils_purchased_in_s1 > 50:\n print(\"Entailment\")\nelif pencils_purchased_in_s1 != pencils_purchased_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": On every Adidas shoe the restaurant makes a profit of $ 10 while on every Puma shoe it makes a profit of $ 8, \"statement 2\" :On every Adidas shoe the restaurant makes a profit of $ more than 10 while on every Puma shoe it makes a profit of $ 8, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "profit_on_addidas_in_s1 = 10\nprofit_on_puma_in_s1 = 8\nprofit_on_addidas_in_s2 = 0\nprofit_on_addidas_in_s2 > 10\nprofit_on_addidas_in_s2 = 11\nprofit_on_puma_in_s2 = 8\n\n\nif profit_on_addidas_in_s1 is None or profit_on_addidas_in_s2 is None or profit_on_puma_in_s1 is None or profit_on_puma_in_s2 is None:\n print(\"neutral\")\nelif profit_on_addidas_in_s1 == profit_on_addidas_in_s2 and profit_on_puma_in_s1 == profit_on_puma_in_s2:\n print(\"Entailment\")\nelif profit_on_addidas_in_s1 != profit_on_addidas_in_s2 or profit_on_puma_in_s1 != profit_on_puma_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If today in the morning Salley makes a payment of $ 7 , for how many days , including today , will she be connected to the internet without any additional payments , given her initial balance was $ 0 ?, \"statement 2\" :If today in the morning Salley makes a payment of $ 2 , for how many days , including today , will she be connected to the internet without any additional payments , given her initial balance was $ 0 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "payment_made_in_s1 = 7\nintial_bal_in_s1 = 0\npayment_made_in_s2 = 2\nintial_bal_in_s2 = 0\n\n\nif payment_made_in_s1 is None or payment_made_in_s2 is None or intial_bal_in_s1 is None or intial_bal_in_s1 is None:\n print(\"neutral\")\nelif payment_made_in_s1 == payment_made_in_s2 and intial_bal_in_s1 == intial_bal_in_s1:\n print(\"Entailment\")\nelif payment_made_in_s1 != payment_made_in_s2 or intial_bal_in_s1 != intial_bal_in_s1:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In one day , Juan sends Keith three times as many messages as he sends Laurence , and Laurence sends Missy 5 times as many messages as he receives from Juan, \"statement 2\" :In one day , Juan sends Keith three times as many messages as he sends Laurence , and Laurence sends Missy less than 6 times as many messages as he receives from Juan, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "laurance_mess_to_missy_in_x_times_s1 = 5\nlaurance_mess_to_missy_in_x_times_s2 = 0\nlaurance_mess_to_missy_in_x_times_s2 < 6\n\n\nif laurance_mess_to_missy_in_x_times_s1 is None or laurance_mess_to_missy_in_x_times_s2 is None:\n print(\"neutral\")\nelif (laurance_mess_to_missy_in_x_times_s1 == laurance_mess_to_missy_in_x_times_s2) or laurance_mess_to_missy_in_x_times_s1 < 6:\n print(\"Entailment\")\nelif laurance_mess_to_missy_in_x_times_s1 != laurance_mess_to_missy_in_x_times_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Albert is less than 8 times Mary \u2019 s age and 4 times as old as Betty, \"statement 2\" :Albert is 2 times Mary \u2019 s age and 4 times as old as Betty, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "albert_age_comparison_in_s1 = 0\nalbert_age_comparison_in_s1 < 8\nalbert_age_comparison_in_s2 = 2\n\nif albert_age_comparison_in_s1 is None or albert_age_comparison_in_s2 is None or albert_age_comparison_in_s2 < 8:\n print(\"neutral\")\nelif albert_age_comparison_in_s1 == albert_age_comparison_in_s2:\n print(\"Entailment\")\nelif albert_age_comparison_in_s1 != albert_age_comparison_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tim and Jim enter into a partnership by investing $ 700 and $ 300 respectively, \"statement 2\" :Tim and Jim enter into a partnership by investing $ 300 and $ 300 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tim_invs_in_s1 = 700\njim_invs_in_s1 = 300\ntim_invs_in_s2 = 300\njim_invs_in_s2 = 300\n\n\nif tim_invs_in_s1 is None or tim_invs_in_s2 is None or jim_invs_in_s1 is None or jim_invs_in_s2 is None:\n print(\"neutral\")\nelif jim_invs_in_s1 == jim_invs_in_s2 and tim_invs_in_s1 == tim_invs_in_s2:\n print(\"Entailment\")\nelif tim_invs_in_s1 != tim_invs_in_s2 or jim_invs_in_s2 != jim_invs_in_s1:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are more than 22 stations between Ernakulam and Chennai, \"statement 2\" :There are 32 stations between Ernakulam and Chennai, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stations_in_s1 = 0\nstations_in_s1 > 22\nstations_in_s2 = 32\n\nif stations_in_s1 is None or stations_in_s2 is None or stations_in_s2 > 22:\n print(\"neutral\")\nelif stations_in_s1 == stations_in_s2:\n print(\"Entailment\")\nelif stations_in_s1 != stations_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the three started to fish together and after 40 minutes Mike and Bob left , how many fish did the three fishermen catch in one hour ?, \"statement 2\" :If the three started to fish together and after more than 20 minutes Mike and Bob left , how many fish did the three fishermen catch in one hour ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "left_time_of_mike_bob_in_s1 = 40\nleft_time_of_mike_bob_in_s2 = 0\nleft_time_of_mike_bob_in_s2 > 20\n\n\nif left_time_of_mike_bob_in_s1 is None or left_time_of_mike_bob_in_s2 is None:\n print(\"neutral\")\nelif (left_time_of_mike_bob_in_s1 == left_time_of_mike_bob_in_s2) or left_time_of_mike_bob_in_s1 > 20:\n print(\"Entailment\")\nelif left_time_of_mike_bob_in_s1 != left_time_of_mike_bob_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Earlier , South American champions Internacional took third place with a 4-2 win over Seongnam Ilhwa Chunma of South Korea with Alecsandro scoring twice ., \"statement 2\" :Internacional of Brazil beat Seongnam Ilhwa Chunma 4-2 in third place playoff, \"options: \" Entailment or neutral?", + "Output Program": [ + "Seongnam_Ilhwa_Chunma_beaten_score_in_s1 = [4,2]\nSeongnam_Ilhwa_Chunma_beaten_score_in_s2 = [4,2]\n\n\nif Seongnam_Ilhwa_Chunma_beaten_score_in_s1 is None or Seongnam_Ilhwa_Chunma_beaten_score_in_s2 is None:\n print(\"neutral\")\nelif (Seongnam_Ilhwa_Chunma_beaten_score_in_s1 == Seongnam_Ilhwa_Chunma_beaten_score_in_s2):\n print(\"Entailment\")\nelif Seongnam_Ilhwa_Chunma_beaten_score_in_s1 != Seongnam_Ilhwa_Chunma_beaten_score_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many different possible committees of less than 4 people can be selected from these 7 people if at least one of either Jane or Thomas is to be selected ?, \"statement 2\" :How many different possible committees of 3 people can be selected from these 7 people if at least one of either Jane or Thomas is to be selected ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_selected_from_7_in_s1 = 0\npeople_selected_from_7_in_s1 < 4\npeople_selected_from_7_in_s2 = 3\n\nif people_selected_from_7_in_s1 is None or people_selected_from_7_in_s2 is None or people_selected_from_7_in_s2 < 4:\n print(\"neutral\")\nelif people_selected_from_7_in_s1 == people_selected_from_7_in_s2:\n print(\"Entailment\")\nelif people_selected_from_7_in_s1 != people_selected_from_7_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alice leaves City A less than 50 minutes after Bob, \"statement 2\" :Alice leaves City A 30 minutes after Bob, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "time_in_s1 = 0\ntime_in_s1 < 50\ntime_in_s2 = 30\n\nif time_in_s1 is None or time_in_s2 is None or time_in_s2 < 50:\n print(\"neutral\")\nelif time_in_s1 == time_in_s2:\n print(\"Entailment\")\nelif time_in_s1 != time_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Jos \u00e9 reads at a constant rate of less than 7 pages every 5 minutes , how many seconds will it take him to read N pages ?, \"statement 2\" :If Jos \u00e9 reads at a constant rate of 5 pages every 5 minutes , how many seconds will it take him to read N pages ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "reading_rate_in_s1 = 0\nreading_rate_in_s1 < 7\nreading_rate_in_s2 = 5\n\nif reading_rate_in_s1 is None or reading_rate_in_s2 is None or reading_rate_in_s2 < 7:\n print(\"neutral\")\nelif reading_rate_in_s1 == reading_rate_in_s2:\n print(\"Entailment\")\nelif reading_rate_in_s1 != reading_rate_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Henry were to add 6 gallons of water to a tank that is already 3 / 4 full of water , the tank would be 7 / 8 full, \"statement 2\" :If Henry were to add less than 6 gallons of water to a tank that is already 3 / 4 full of water , the tank would be 7 / 8 full, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "water_added_in_s1 = 6\ntank_full_before_added_in_s1 = 3/4\ntank_full_after_added_in_s1 = 7/8\n\nwater_added_in_s2 = 0\nwater_added_in_s2 < 6\nwater_added_in_s2 = 5\n\ntank_full_before_added_in_s2 = 3/4\ntank_full_after_added_in_s2 = 7/8\n\n\nif water_added_in_s1 is None or water_added_in_s2 is None or tank_full_before_added_in_s1 is None or tank_full_before_added_in_s2 is None or tank_full_after_added_in_s1 is None or tank_full_after_added_in_s2 is None:\n print(\"neutral\")\nelif water_added_in_s1 == water_added_in_s2 and tank_full_before_added_in_s1 == tank_full_before_added_in_s2 and tank_full_after_added_in_s1 == tank_full_after_added_in_s2:\n print(\"Entailment\")\nelif water_added_in_s1 != water_added_in_s2 or tank_full_before_added_in_s1 != tank_full_before_added_in_s2 or tank_full_after_added_in_s1 != tank_full_after_added_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the minimum number of packages of Aero flight tees Bill must purchase to ensure that he has at least 20 golf tees for each member of his foursome , if he will buy no more than 3 packages of the generic golf tees ?, \"statement 2\" :What is the minimum number of packages of Aero flight tees Bill must purchase to ensure that he has at least less than 30 golf tees for each member of his foursome , if he will buy no more than 3 packages of the generic golf tees ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "golf_tees_in_3_pack_in_s1 = 20\ngolf_tees_in_3_pack_in_s2 = 0\ngolf_tees_in_3_pack_in_s2 < 30\n\nif golf_tees_in_3_pack_in_s1 is None or golf_tees_in_3_pack_in_s2 is None:\n print(\"neutral\")\nelif (golf_tees_in_3_pack_in_s1 == golf_tees_in_3_pack_in_s2) or golf_tees_in_3_pack_in_s1 < 30:\n print(\"Entailment\")\nelif golf_tees_in_3_pack_in_s1 != golf_tees_in_3_pack_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are less than 652 baseball fans in the town , each of whom is a fan of exactly one of those three teams , how many NY Mets fans are there in this town ?, \"statement 2\" :If there are 352 baseball fans in the town , each of whom is a fan of exactly one of those three teams , how many NY Mets fans are there in this town ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "baseball_fans_in_s1 = 0\nbaseball_fans_in_s1 < 652\nbaseball_fans_in_s2 = 352\n\nif baseball_fans_in_s1 is None or baseball_fans_in_s2 is None or baseball_fans_in_s2 < 652:\n print(\"neutral\")\nelif baseball_fans_in_s1 == baseball_fans_in_s2:\n print(\"Entailment\")\nelif baseball_fans_in_s1 != baseball_fans_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Seven bodies sat slumped in white plastic chairs placed near a central plaza in Uruapan , Mexico ., \"statement 2\" :Seven dead bodies sit slumped in white plastic chairs left in a public view in a Mexican city, \"options: \" Entailment or neutral?", + "Output Program": [ + "bodies_number_in_s1 = 7\nbodies_number_in_s2 = 7\n\nif bodies_number_in_s1 is None or bodies_number_in_s2 is None:\n print(\"neutral\")\nelif (bodies_number_in_s1 == bodies_number_in_s2):\n print(\"Entailment\")\nelif bodies_number_in_s1 != bodies_number_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained 76 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained more than 76 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_in_s1 = {\n \"English\": 76,\n \"Mathematics\": 65,\n \"Physics\": 82,\n \"Chemistry\": 67,\n \"Biology\": 85\n}\nmarks_in_s2 = {\n \"English\": 0,\n \"Mathematics\": 65,\n \"Physics\": 82,\n \"Chemistry\": 67,\n \"Biology\": 85\n}\nmarks_in_s2['English'] > 76\nmarks_in_s2['English'] = 77\n\n\nif marks_in_s2 is None or marks_in_s1 is None or len(marks_in_s2)!=len(marks_in_s2):\n print(\"neutral\")\nelif marks_in_s1 == marks_in_s2:\n print(\"Entailment\")\nelif marks_in_s1 != marks_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tanya is 20 % more efficient than Sakshi, \"statement 2\" :Tanya is more than 20 % more efficient than Sakshi, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "effe_in_s1 = 20\neffe_in_s2 = 0\neffe_in_s2 > 20\neffe_in_s2 = 25\n\nif effe_in_s1 is None or effe_in_s2 is None:\n print(\"neutral\")\nelif effe_in_s1 == effe_in_s2:\n print(\"Entailment\")\nelif effe_in_s1 != effe_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He works at it for 20 days and then Rajesh finished it in 30 days, \"statement 2\" :He works at it for less than 60 days and then Rajesh finished it in 30 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "he_works_at_it_in_s1 = 20\nhe_works_at_it_in_s2 = 0\nhe_works_at_it_in_s2 < 60\nrajesh_finish_at_it_in_s1 = 30\nrajesh_finish_at_it_in_s2 = 30\n\n\nif he_works_at_it_in_s1 is None or he_works_at_it_in_s2 is None or rajesh_finish_at_it_in_s1 is None or rajesh_finish_at_it_in_s2 is None:\n print(\"neutral\")\nelif (he_works_at_it_in_s1 == he_works_at_it_in_s2 or he_works_at_it_in_s1 < 60) and rajesh_finish_at_it_in_s1 == rajesh_finish_at_it_in_s2:\n print(\"Entailment\")\nelif he_works_at_it_in_s1 != he_works_at_it_in_s2 or rajesh_finish_at_it_in_s1 != rajesh_finish_at_it_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Renu can do a piece of work in more than 5 days , but with the help of her friend Suma , she can do it in 5 days, \"statement 2\" :Renu can do a piece of work in 6 days , but with the help of her friend Suma , she can do it in 5 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "work_days_in_s1 = 0\nwork_days_in_s1 > 5\nwork_days_in_s2 = 6\n\nif work_days_in_s1 is None or work_days_in_s2 is None or work_days_in_s2 > 5:\n print(\"neutral\")\nelif work_days_in_s1 == work_days_in_s2:\n print(\"Entailment\")\nelif work_days_in_s1 != work_days_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the sum of their ages is 147 , what is the difference between the ages of Patrick and Monica ?, \"statement 2\" :If the sum of their ages is 647 , what is the difference between the ages of Patrick and Monica ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sum_of_age_in_s1 = 147\nsum_of_age_in_s2 = 647\n\n\nif sum_of_age_in_s1 is None or sum_of_age_in_s2 is None:\n print(\"neutral\")\nelif sum_of_age_in_s1 == sum_of_age_in_s2:\n print(\"Entailment\")\nelif sum_of_age_in_s1 != sum_of_age_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": For how many days did the trial last , if each patient received a total amount of less than 545 milligrams of Dosaxin during the whole trial ?, \"statement 2\" :For how many days did the trial last , if each patient received a total amount of 145 milligrams of Dosaxin during the whole trial ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dosaxin_in_s1 = 0\ndosaxin_in_s1 < 545\ndosaxin_in_s2 = 145\n\nif dosaxin_in_s1 is None or dosaxin_in_s2 is None or dosaxin_in_s2 < 545:\n print(\"neutral\")\nelif dosaxin_in_s1 == dosaxin_in_s2:\n print(\"Entailment\")\nelif dosaxin_in_s1 != dosaxin_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At Veridux Corporation , there are less than 650 employees, \"statement 2\" :At Veridux Corporation , there are 250 employees, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "employees_in_s1 = 0\nemployees_in_s1 < 650\nemployees_in_s2 = 250\n\nif employees_in_s1 is None or employees_in_s2 is None or employees_in_s2 < 650:\n print(\"neutral\")\nelif employees_in_s1 == employees_in_s2:\n print(\"Entailment\")\nelif employees_in_s1 != employees_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joe drives 360 miles at 60 miles per hour , and then he drives the next 120 miles at 40 miles per hour, \"statement 2\" :Joe drives less than 460 miles at 60 miles per hour , and then he drives the next 120 miles at 40 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "joe_dis_at_60_mperh_in_s1 = 360\njoe_dis_at_60_mperh_in_s2 = 0\njoe_dis_at_60_mperh_in_s2 < 460\njoe_dis_at_40_mperh_in_s1 = 120\njoe_dis_at_40_mperh_in_s2 = 120\n\n\nif joe_dis_at_60_mperh_in_s1 is None or joe_dis_at_60_mperh_in_s2 is None or joe_dis_at_40_mperh_in_s1 is None or joe_dis_at_40_mperh_in_s2 is None:\n print(\"neutral\")\nelif (joe_dis_at_60_mperh_in_s1 == joe_dis_at_60_mperh_in_s2 or joe_dis_at_60_mperh_in_s1 < 460) and joe_dis_at_40_mperh_in_s1 == joe_dis_at_40_mperh_in_s2:\n print(\"Entailment\")\nelif joe_dis_at_60_mperh_in_s1 != joe_dis_at_60_mperh_in_s2 or joe_dis_at_40_mperh_in_s1 != joe_dis_at_40_mperh_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If today in the morning Salley makes a payment of $ more than 1 , for how many days , including today , will she be connected to the internet without any additional payments , given her initial balance was $ 0 ?, \"statement 2\" :If today in the morning Salley makes a payment of $ 7 , for how many days , including today , will she be connected to the internet without any additional payments , given her initial balance was $ 0 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sally_makes_payment_in_s1 = 0\nsally_makes_payment_in_s1 > 1\nsally_makes_payment_in_s2 = 7\n\nif sally_makes_payment_in_s1 is None or sally_makes_payment_in_s2 is None or sally_makes_payment_in_s2 > 1:\n print(\"neutral\")\nelif sally_makes_payment_in_s1 == sally_makes_payment_in_s2:\n print(\"Entailment\")\nelif sally_makes_payment_in_s1 != sally_makes_payment_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shridhar together earned less than 79800, \"statement 2\" :Shridhar together earned 19800, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_in_s1 = 0\namount_in_s1 < 79800\namount_in_s2 = 19800\n\nif amount_in_s1 is None or amount_in_s2 is None or amount_in_s2 < 79800:\n print(\"neutral\")\nelif amount_in_s1 == amount_in_s2:\n print(\"Entailment\")\nelif amount_in_s1 != amount_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Four other workers were in serious condition , the agency said ., \"statement 2\" :Four wounded staff members are in serious condition , the agency says, \"options: \" Entailment or neutral?", + "Output Program": [ + "serious_condition_counts_in_s1 = 4\nserious_condition_counts_in_s2 = 4\n\n\nif serious_condition_counts_in_s1 is None or serious_condition_counts_in_s2 is None:\n print(\"neutral\")\nelif (serious_condition_counts_in_s1 == serious_condition_counts_in_s2):\n print(\"Entailment\")\nelif serious_condition_counts_in_s1 != serious_condition_counts_in_s1:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John traveled more than 10 % of the way from Yellow - town to Green - fields by train at an average speed of 80 miles per hour, \"statement 2\" :John traveled 80 % of the way from Yellow - town to Green - fields by train at an average speed of 80 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "travell_per_in_s1 = 0\ntravell_per_in_s1 > 10\ntravell_per_in_s2 = 80\n\nif travell_per_in_s1 is None or travell_per_in_s2 is None or travell_per_in_s2 > 10:\n print(\"neutral\")\nelif travell_per_in_s1 == travell_per_in_s2:\n print(\"Entailment\")\nelif travell_per_in_s1 != travell_per_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 24 stations between Ernakulam and Chennai, \"statement 2\" :There are less than 74 stations between Ernakulam and Chennai, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "station_in_between_in_s1 = 24\nstation_in_between_in_s2 = 0\nstation_in_between_in_s2 < 74\n\n\nif station_in_between_in_s1 is None or station_in_between_in_s2 is None:\n print(\"neutral\")\nelif (station_in_between_in_s1 == station_in_between_in_s2) or station_in_between_in_s1 < 74:\n print(\"Entailment\")\nelif station_in_between_in_s1 != station_in_between_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is 4 : 3 , After 22 Years Rahul age will be 26 years, \"statement 2\" :Ratio between Rahul and Deepak is more than 4 : 3 , After 22 Years Rahul age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_in_s1 = 4/3\ncomparison_year_in_s1 = 22\nage_after_comparison_in_s1 = 26\nratio_in_s2 = 0\nratio_in_s2 > 4/3\nratio_in_s2 = 5/3\ncomparison_year_in_s2 = 22\nage_after_comparison_in_s2 = 26\n\nif ratio_in_s1 is None or ratio_in_s2 is None or comparison_year_in_s1 is None or comparison_year_in_s2 is None or age_after_comparison_in_s1 is None or age_after_comparison_in_s2 is None:\n print(\"neutral\")\nelif ratio_in_s1 == ratio_in_s2 and comparison_year_in_s1 == comparison_year_in_s2 and age_after_comparison_in_s1 == age_after_comparison_in_s2:\n print(\"Entailment\")\nelif ratio_in_s1 != ratio_in_s2 or comparison_year_in_s1 != comparison_year_in_s2 or age_after_comparison_in_s1 != age_after_comparison_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ratio of men to women in the Snyder community choir is more than 3 to 5, \"statement 2\" :The ratio of men to women in the Snyder community choir is 6 to 5, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_in_s1 = 0\nratio_in_s1 > 3/5\nratio_in_s2 = 6/5\n\nif ratio_in_s1 is None or ratio_in_s2 is None or ratio_in_s2 > 3/5:\n print(\"neutral\")\nelif ratio_in_s1 == ratio_in_s2:\n print(\"Entailment\")\nelif ratio_in_s1 != ratio_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tali builds a tower using only red , green , and blue toy bricks in a ratio of more than 1 : 3 : 1, \"statement 2\" :Tali builds a tower using only red , green , and blue toy bricks in a ratio of 4 : 3 : 1, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_red_green_in_s1 = 0\nratio_red_green_in_s1 > 1/3\nratio_red_green_in_s2 = 4/3\n\nif ratio_red_green_in_s1 is None or ratio_red_green_in_s2 is None or ratio_red_green_in_s2 > 1/3:\n print(\"neutral\")\nelif ratio_red_green_in_s1 == ratio_red_green_in_s2:\n print(\"Entailment\")\nelif ratio_red_green_in_s1 != ratio_red_green_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Meg and Bob are among the 4 participants in a cycling race, \"statement 2\" :Meg and Bob are among the more than 3 participants in a cycling race, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "meg_and_bob_among_in_s1 = 4\nmeg_and_bob_among_in_s2 = 0\nmeg_and_bob_among_in_s2 > 3\n\n\nif meg_and_bob_among_in_s1 is None or meg_and_bob_among_in_s2 is None:\n print(\"neutral\")\nelif (meg_and_bob_among_in_s1 == meg_and_bob_among_in_s2) or meg_and_bob_among_in_s1 > 3:\n print(\"Entailment\")\nelif meg_and_bob_among_in_s1 != meg_and_bob_among_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Another survey of less than 300 people in the town of Angie found that 60 % preferred Brand A, \"statement 2\" :Another survey of 100 people in the town of Angie found that 60 % preferred Brand A, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_in_s1 = 0\npeople_in_s1 < 300\npeople_in_s2 = 100\n\nif people_in_s1 is None or people_in_s2 is None or people_in_s2 < 300:\n print(\"neutral\")\nelif people_in_s1 == people_in_s2:\n print(\"Entailment\")\nelif people_in_s1 != people_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained 51 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained less than 81 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dacid_marks_in_s1 = [51,65,82,67,85]\ndacid_marks_in_s2 = [0,65,82,67,85]\ndacid_marks_in_s2[0] < 81\n\n\nif dacid_marks_in_s1 is None or dacid_marks_in_s2 is None:\n print(\"neutral\")\nelif (dacid_marks_in_s1 == dacid_marks_in_s2) or dacid_marks_in_s1[0] < 81:\n print(\"Entailment\")\nelif dacid_marks_in_s1 != dacid_marks_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are more than 1 more women than men on Centerville ' s board of education, \"statement 2\" :There are 4 more women than men on Centerville ' s board of education, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "woman_in_s1 = 0\nwoman_in_s1 > 1\nwoman_in_s2 = 4\n\nif woman_in_s1 is None or woman_in_s2 is None or woman_in_s2 > 1:\n print(\"neutral\")\nelif woman_in_s1 == woman_in_s2:\n print(\"Entailment\")\nelif woman_in_s1 != woman_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Two twins sisters Sita and Geeta were standing back to back and suddenly they started running in opposite directions for less than 8 km each, \"statement 2\" :Two twins sisters Sita and Geeta were standing back to back and suddenly they started running in opposite directions for 6 km each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_in_s1 = 0\ndistance_in_s1 < 8\ndistance_in_s2 = 6\n\nif distance_in_s1 is None or distance_in_s2 is None or distance_in_s2 < 8:\n print(\"neutral\")\nelif distance_in_s1 == distance_in_s2:\n print(\"Entailment\")\nelif distance_in_s1 != distance_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The International Atomic Energy Agency said it was aware of reports that the Nuclear Regulation Authority plans to rate the leak as a level 3 incident ., \"statement 2\" :Nuclear Regulation Authority says new toxic leak expected to be classified a level 3 incident, \"options: \" Entailment or neutral?", + "Output Program": [ + "incident_level_in_s1 = 3\nincident_level_in_s2 = 3\n\nif incident_level_in_s1 is None or incident_level_in_s2 is None:\n print(\"neutral\")\nelif (incident_level_in_s1 == incident_level_in_s2):\n print(\"Entailment\")\nelif incident_level_in_s1 != incident_level_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At least seven of the victims were hostages , police officials said , while another 57 were wounded ., \"statement 2\" :57 people were wounded , police officials say, \"options: \" Entailment or neutral?", + "Output Program": [ + "wounded_people_in_s1 = 57\nwounded_people_in_s2 = 57\n\nif wounded_people_in_s1 is None or wounded_people_in_s2 is None:\n print(\"neutral\")\nelif (wounded_people_in_s1 == wounded_people_in_s2):\n print(\"Entailment\")\nelif wounded_people_in_s1 != wounded_people_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are less than 47 stations between Hyderabad and Bangalore, \"statement 2\" :There are 17 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "station_in_between_in_s1 = 0\nstation_in_between_in_s1 < 47\nstation_in_between_in_s2 = 17\n\nif station_in_between_in_s1 is None or station_in_between_in_s2 is None or station_in_between_in_s2 < 47:\n print(\"neutral\")\nelif station_in_between_in_s1 == station_in_between_in_s2:\n print(\"Entailment\")\nelif station_in_between_in_s1 != station_in_between_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The official said the plot was believed to involve three individuals , including a U.S. citizen ., \"statement 2\" :The plot is believed to involve 3 individuals and explosives , official says, \"options: \" Entailment or neutral?", + "Output Program": [ + "us_citi_in_plot_in_s1 = 3\nus_citi_in_plot_in_s2 = None\n\nif us_citi_in_plot_in_s1 is None or us_citi_in_plot_in_s2 is None:\n print(\"neutral\")\nelif us_citi_in_plot_in_s1 == us_citi_in_plot_in_s2:\n print(\"Entailment\")\nelif us_citi_in_plot_in_s1 != us_citi_in_plot_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Venezuela 's President says his country has arrested three air force generals accused of plotting a coup ., \"statement 2\" :Venezuelan President Nicolas Maduro says three generals were arrested, \"options: \" Entailment or neutral?", + "Output Program": [ + "arrested_people_in_s1 = 3\narrested_people_in_s2 = 3\n\nif arrested_people_in_s1 is None or arrested_people_in_s2 is None:\n print(\"neutral\")\nelif (arrested_people_in_s1 == arrested_people_in_s2):\n print(\"Entailment\")\nelif arrested_people_in_s1 != arrested_people_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joe had 50.0 toy cars, and he gets 12.0 more cars, \"statement 2\" :He will have 65.0 cars then, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_toy_car_in_s1 = 50+12\ntotal_toy_car_in_s2 = 65\n\n\nif total_toy_car_in_s1 is None or total_toy_car_in_s2 is None:\n print(\"neutral\")\nelif total_toy_car_in_s1 == total_toy_car_in_s2:\n print(\"Entailment\")\nelif total_toy_car_in_s1 != total_toy_car_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The quake 's epicenter was 37 miles from Little Rock , the USGS said ., \"statement 2\" :The quake was centered 37 miles from Little Rock , Arkansas, \"options: \" Entailment or neutral?", + "Output Program": [ + "quake_dis_in_s1 = 37\nquake_dis_in_s2 = 37\n\nif quake_dis_in_s1 is None or quake_dis_in_s2 is None:\n print(\"neutral\")\nelif (quake_dis_in_s1 == quake_dis_in_s2):\n print(\"Entailment\")\nelif quake_dis_in_s1 != quake_dis_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Danny scored 86 , 75 , 52 , 87 , 85 and 82 marks ( out of 100 ) in English , Social Studies , Art , Music , Biology and French, \"statement 2\" :If Danny scored more than 86 , 75 , 52 , 87 , 85 and 82 marks ( out of 100 ) in English , Social Studies , Art , Music , Biology and French, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_in_s1 = {\n \"English\": 86,\n \"Social Studies\": 75,\n \"Art\": 52,\n \"Music\": 87,\n \"Biology\": 85,\n \"French\":82\n}\nmarks_in_s2 = {\n \"English\": 0,\n \"Social Studies\": 75,\n \"Art\": 52,\n \"Music\": 87,\n \"Biology\": 85,\n \"French\":82\n}\nmarks_in_s2['English'] > 86\nmarks_in_s2['English'] = 87\n\n\nif marks_in_s2 is None or marks_in_s1 is None or len(marks_in_s2)!=len(marks_in_s2):\n print(\"neutral\")\nelif marks_in_s1 == marks_in_s2:\n print(\"Entailment\")\nelif marks_in_s1 != marks_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": She turns around to head home after a short water break , how fast does Sasha need to ride , in miles per hour , to get home at 5 PM ?, \"statement 2\" :She turns around to head home after a short water break , how fast does Sasha need to ride , in miles per hour , to get home at more than 5 PM ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "target_time_in_s1 = 5\ntarget_time_in_s2 = 0\ntarget_time_in_s2 > 5\ntarget_time_in_s2 = 6\n\n\nif target_time_in_s1 is None or target_time_in_s2 is None:\n print(\"neutral\")\nelif target_time_in_s1 == target_time_in_s2:\n print(\"Entailment\")\nelif target_time_in_s1 != target_time_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Maddie has 6 apples , if she give 3 to mike , how many does she have left ?, \"statement 2\" :Maddie has more than 6 apples , if she give 3 to mike , how many does she have left ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "maddy_apple_in_s1 = 6\nmike_apple_in_s1 = 3\n\nmaddy_apple_in_s2 = 0\nmaddy_apple_in_s2 > 6\nmaddy_apple_in_s2 = 7\nmike_apple_in_s2 = 3\n\nif maddy_apple_in_s1 is None or maddy_apple_in_s2 is None or mike_apple_in_s2 is None or mike_apple_in_s1 is None:\n print(\"neutral\")\nelif maddy_apple_in_s1 == maddy_apple_in_s2 and mike_apple_in_s1 == mike_apple_in_s2:\n print(\"Entailment\")\nelif mike_apple_in_s2 != mike_apple_in_s1 or maddy_apple_in_s2 != maddy_apple_in_s1:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": '' Even if you replaced ( jet fuel ) with liquid natural gas , you could cut CO2 emissions 20 % , '' says Luke Spiteri , a finalist in the competition ., \"statement 2\" :Some of the proposals could cut CO2 emissions by 97 % ., \"options: \" Entailment or neutral?", + "Output Program": [ + "co2_emmison_cut_in_s1 = 20\nco2_emmison_cut_in_s2 = 0\nco2_emmison_cut_in_s2 < 97\n\nif co2_emmison_cut_in_s1 is None or co2_emmison_cut_in_s2 is None:\n print(\"neutral\")\nelif (co2_emmison_cut_in_s1 == co2_emmison_cut_in_s2) or co2_emmison_cut_in_s1 < 97:\n print(\"Entailment\")\nelif co2_emmison_cut_in_s1 != co2_emmison_cut_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Efrida and Frazer who live 13 miles apart , meet at a restaurant that is directly north of Efrida ' s home and directly east of Frazer ' s home, \"statement 2\" :Efrida and Frazer who live less than 13 miles apart , meet at a restaurant that is directly north of Efrida ' s home and directly east of Frazer ' s home, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_distance_in_s1 = 13\ntotal_distance_in_s2 = 0\ntotal_distance_in_s2 < 13\ntotal_distance_in_s2 = 12\n\n\nif total_distance_in_s1 is None or total_distance_in_s2 is None:\n print(\"neutral\")\nelif total_distance_in_s1 == total_distance_in_s2:\n print(\"Entailment\")\nelif total_distance_in_s1 != total_distance_in_s2 :\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joan picked 37.0 oranges, and Sara sold 10.0 of them and Alyssa picked 30.0 pears , \"statement 2\" :Joan has 27.0 oranges left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "joan_orange_in_s1 = 37-10\njoan_orange_in_s2 = 27\n\nif joan_orange_in_s1 is None or joan_orange_in_s2 is None:\n print(\"neutral\")\nelif (joan_orange_in_s1 == joan_orange_in_s2):\n print(\"Entailment\")\nelif joan_orange_in_s1 != joan_orange_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Yow coached the 1988 women 's Olympic basketball team to a gold medal in Seoul, \"statement 2\" :She also coached the 1988 women 's Olympic basketball team to a gold medal in Seoul , South Korea ., \"options: \" Entailment or neutral?", + "Output Program": [ + "olympic_year_in_s1 = 1988\nolympic_year_in_s2 = 1988\n\nif olympic_year_in_s1 is None or olympic_year_in_s2 is None:\n print(\"neutral\")\nelif (olympic_year_in_s1 == olympic_year_in_s2):\n print(\"Entailment\")\nelif olympic_year_in_s1 != olympic_year_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Albert \u2019 s monthly earnings rise by less than 36 % , he would earn $ 693, \"statement 2\" :If Albert \u2019 s monthly earnings rise by 26 % , he would earn $ 693, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nmonthly_rise_in_s1 = 0\nmonthly_rise_in_s1 < 36\nmonthly_rise_in_s2 = 26\n\nif monthly_rise_in_s1 is None or monthly_rise_in_s2 is None or monthly_rise_in_s2 < 36:\n print(\"neutral\")\nelif monthly_rise_in_s1 == monthly_rise_in_s2:\n print(\"Entailment\")\nelif monthly_rise_in_s1 != monthly_rise_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": During the first two weeks of June , the total rainfall in Springdale was 40 inches, \"statement 2\" :During the first two weeks of June , the total rainfall in Springdale was 70 inches, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_rainfall_in_s1 = 40\ntotal_rainfall_in_s2 = 70\n\nif total_rainfall_in_s1 is None or total_rainfall_in_s1 is None:\n print(\"neutral\")\nelif total_rainfall_in_s1 == total_rainfall_in_s2:\n print(\"Entailment\")\nelif total_rainfall_in_s1 != total_rainfall_in_s2 :\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rosy is 50 % more efficient than Mary, \"statement 2\" :Rosy is more than 20 % more efficient than Mary, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rosy_effe_in_s1 = 50\nrosy_effe_in_s2 = 0\nrosy_effe_in_s2 > 20\n\nif rosy_effe_in_s1 is None or rosy_effe_in_s2 is None:\n print(\"neutral\")\nelif (rosy_effe_in_s1 == rosy_effe_in_s2) or rosy_effe_in_s1 > 20:\n print(\"Entailment\")\nelif rosy_effe_in_s1 != rosy_effe_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Lionel ' s speed was 3 miles per hour and Walt ' s 4 miles per hour , how many miles had Lionel walked when he met Walt ?, \"statement 2\" :If Lionel ' s speed was less than 3 miles per hour and Walt ' s 4 miles per hour , how many miles had Lionel walked when he met Walt ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "lionel_speed_in_s1 = 3\nwalt_speed_in_s1 = 4\nlionel_speed_in_s2 = 0\nlionel_speed_in_s2 < 3\nlionel_speed_in_s2 = 2\nwalt_speed_in_s2 = 4\n\nif lionel_speed_in_s1 is None or lionel_speed_in_s2 is None or walt_speed_in_s1 is None or walt_speed_in_s2 is None:\n print(\"neutral\")\nelif walt_speed_in_s1 == walt_speed_in_s2 and lionel_speed_in_s2 == lionel_speed_in_s1:\n print(\"Entailment\")\nelif lionel_speed_in_s2 != lionel_speed_in_s1 or walt_speed_in_s2 != walt_speed_in_s1:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Caleb spends $ 70.50 on 50 hamburgers for the marching band, \"statement 2\" :Caleb spends $ 70.50 on more than 50 hamburgers for the marching band, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nspend_price_in_s1 = 70.50\nspend_price_in_s2 = 70.50\nburger_in_s1 = 50\nburger_in_s2 = 0\nburger_in_s2 > 50\nburger_in_s2 = 51\n\nif spend_price_in_s1 is None or spend_price_in_s2 is None or burger_in_s1 is None or burger_in_s2 is None:\n print(\"neutral\")\nelif spend_price_in_s1 == spend_price_in_s2 and burger_in_s1 == burger_in_s2:\n print(\"Entailment\")\nelif burger_in_s1 != burger_in_s2 or spend_price_in_s1 != spend_price_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Goldman Limited has less than 6 Senior Managing Directors and 6 Managing Directors, \"statement 2\" :Goldman Limited has 5 Senior Managing Directors and 6 Managing Directors, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "senior_mds_in_s1 = 0\nsenior_mds_in_s1 < 6\nsenior_mds_in_s2 = 5\n\nif senior_mds_in_s1 is None or senior_mds_in_s2 is None or senior_mds_in_s2 < 6:\n print(\"neutral\")\nelif senior_mds_in_s1 == senior_mds_in_s2:\n print(\"Entailment\")\nelif senior_mds_in_s1 != senior_mds_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": On Friday, 1250.0 people visited the zoo and 3.0 times as many people visited on Saturday than on Friday, \"statement 2\" :3748.0 people visited the zoo on Saturday, \"options: \" Entailment or contradiction?", + "Output Program": [ + "people_visit_in_saturday_in_s1 = 1250*3\npeople_visit_in_saturday_in_s2 = 3748\n\n\n\nif people_visit_in_saturday_in_s1 is None or people_visit_in_saturday_in_s2 is None:\n print(\"neutral\")\nelif people_visit_in_saturday_in_s1 == people_visit_in_saturday_in_s2:\n print(\"Entailment\")\nelif people_visit_in_saturday_in_s1 != people_visit_in_saturday_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": With a diameter of 1,430 miles , Pluto is less than half the size of any other planet and only two-thirds as big as Earth 's moon ., \"statement 2\" :The terrestrial moon has a diameter of 3,746 kilometers ., \"options: \" Entailment or neutral?", + "Output Program": [ + "dia_of_terrestial_in_s1 = None\ndia_of_terrestial_in_s2 = 3746\n\nif dia_of_terrestial_in_s1 is None or dia_of_terrestial_in_s2 is None:\n print(\"neutral\")\nelif dia_of_terrestial_in_s1 == dia_of_terrestial_in_s2:\n print(\"Entailment\")\nelif dia_of_terrestial_in_s1 != dia_of_terrestial_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jose joined him less than 5 months later , investing Rs, \"statement 2\" :Jose joined him 2 months later , investing Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "joining_months_in_s1 = 0\njoining_months_in_s1 < 5\njoining_months_in_s2 = 2\n\nif joining_months_in_s1 is None or joining_months_in_s2 is None or joining_months_in_s2 < 5:\n print(\"neutral\")\nelif joining_months_in_s1 == joining_months_in_s2:\n print(\"Entailment\")\nelif joining_months_in_s1 != joining_months_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mrs. Bush 's approval ratings have remained very high , above 80 % , even as her husband 's have recently dropped below 50 % ., \"statement 2\" :80 % approve of Mr. Bush ., \"options: \" Entailment or neutral?", + "Output Program": [ + "bush_approve_rating_in_s1 = 0\nbush_approve_rating_in_s1 > 80\nbush_approve_rating_in_s2 = 80\nbush_husband_rating_in_s1 = 50\nbush_husband_rating_in_s2 = None\n\nif bush_approve_rating_in_s1 is None or bush_approve_rating_in_s2 is None or bush_approve_rating_in_s2 > 80 or bush_husband_rating_in_s1 is None or bush_husband_rating_in_s2 is None:\n print(\"neutral\")\nelif bush_approve_rating_in_s1 == bush_approve_rating_in_s2 and bush_husband_rating_in_s1 == bush_husband_rating_in_s2:\n print(\"Entailment\")\nelif bush_approve_rating_in_s1 != bush_approve_rating_in_s2 or bush_husband_rating_in_s1 != bush_husband_rating_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rebecca ' s annual income is $ less than 55 and Jimmy ' s annual income is $ 18, \"statement 2\" :Rebecca ' s annual income is $ 15 and Jimmy ' s annual income is $ 18, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rebecca_annual_income_in_s1 = 0\nrebecca_annual_income_in_s1 < 55\nrebecca_annual_income_in_s2 = 15\njimmy_annual_income_in_s1 = 18\njimmy_annual_income_in_s2 = 18\n\nif rebecca_annual_income_in_s1 is None or rebecca_annual_income_in_s2 is None or rebecca_annual_income_in_s2 < 55 or jimmy_annual_income_in_s1 is None or jimmy_annual_income_in_s2 is None:\n print(\"neutral\")\nelif rebecca_annual_income_in_s1 == rebecca_annual_income_in_s2 and jimmy_annual_income_in_s1 == jimmy_annual_income_in_s2:\n print(\"Entailment\")\nelif rebecca_annual_income_in_s1 != rebecca_annual_income_in_s2 or jimmy_annual_income_in_s1 != jimmy_annual_income_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sally wants to bake as many cakes as possible and has 27 cups of milk and 18 cups of flour, \"statement 2\" :Sally wants to bake as many cakes as possible and has less than 27 cups of milk and 18 cups of flour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "milk_in_s1 = 27\nflour_in_s1 =18\nmilk_in_s2 = 0\nmilk_in_s2 < 27\nmilk_in_s2 = 26\nflour_in_s2 =18\n\n\nif milk_in_s1 is None or milk_in_s2 is None or flour_in_s1 is None or flour_in_s2 is None :\n print(\"neutral\")\nelif flour_in_s1 == flour_in_s2 and milk_in_s1 == milk_in_s2:\n print(\"Entailment\")\nelif flour_in_s1 != flour_in_s2 or milk_in_s1 != milk_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Albert \u2019 s monthly earnings rise by less than 40 % , he would earn $ 598, \"statement 2\" :If Albert \u2019 s monthly earnings rise by 30 % , he would earn $ 598, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "earning_in_s1 = 0\nearning_in_s1 < 40\nearning_in_s2 = 30\namount_in_s1 = 598\namount_in_s2 = 598\n\nif earning_in_s1 is None or earning_in_s2 is None or earning_in_s2 < 40 or amount_in_s1 is None or amount_in_s2 is None:\n print(\"neutral\")\nelif earning_in_s1 == earning_in_s2 and amount_in_s1 == amount_in_s2:\n print(\"Entailment\")\nelif earning_in_s1 != earning_in_s2 or amount_in_s1 != amount_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": less than 50 % of all fishermen in Piscataquis County are also hunters while only 20 % of all hunters are fishermen, \"statement 2\" :30 % of all fishermen in Piscataquis County are also hunters while only 20 % of all hunters are fishermen, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "fisherman_hunter_in_s1 = 0\nfisherman_hunter_in_s1 < 50\nfisherman_hunter_in_s2 = 30\nhunters_are_fisherman_in_s1 = 20\nhunters_are_fisherman_in_s2 = 20\n\nif fisherman_hunter_in_s1 is None or fisherman_hunter_in_s2 is None or fisherman_hunter_in_s2 < 50 or hunters_are_fisherman_in_s1 is None or hunters_are_fisherman_in_s2 is None:\n print(\"neutral\")\nelif fisherman_hunter_in_s1 == fisherman_hunter_in_s2 and hunters_are_fisherman_in_s1 == hunters_are_fisherman_in_s2:\n print(\"Entailment\")\nelif fisherman_hunter_in_s1 != fisherman_hunter_in_s2 or hunters_are_fisherman_in_s1 != hunters_are_fisherman_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joe had 50.0 toy cars, and he gives away 12.0 cars, \"statement 2\" :He will have 37.0 cars remaining, \"options: \" Entailment or contradiction?", + "Output Program": [ + "remaining_car_in_s1 = 50-12\nremaining_car_in_s2 = 37\n\n\nif remaining_car_in_s1 is None or remaining_car_in_s2 is None:\n print(\"neutral\")\nelif remaining_car_in_s1 == remaining_car_in_s2:\n print(\"Entailment\")\nelif remaining_car_in_s1 != remaining_car_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the boys at Jones Elementary make up 70 % of the total school population of x students , what is x ?, \"statement 2\" :If the boys at Jones Elementary make up more than 60 % of the total school population of x students , what is x ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "population_by_boys_in_s1 = 70\npopulation_by_boys_in_s2 = 0\npopulation_by_boys_in_s2 > 60\n\nif population_by_boys_in_s1 is None or population_by_boys_in_s2 is None:\n print(\"neutral\")\nelif (population_by_boys_in_s1 == population_by_boys_in_s2) or population_by_boys_in_s1 > 60:\n print(\"Entailment\")\nelif population_by_boys_in_s1 != population_by_boys_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In fourth grade there were 42.0 students at the start of the year and During the year, 4.0 students left, and 10.0 students were transferred to fifth grade, \"statement 2\" :26.0 students were in fourth grade at the end, \"options: \" Entailment or contradiction?", + "Output Program": [ + "\nstudent_in_end_4th_in_s1 = 42-4-10\nstudent_in_end_4th_in_s2 = 26\n\n\nif student_in_end_4th_in_s1 is None or student_in_end_4th_in_s2 is None:\n print(\"neutral\")\nelif student_in_end_4th_in_s1 == student_in_end_4th_in_s2:\n print(\"Entailment\")\nelif student_in_end_4th_in_s1 != student_in_end_4th_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If , five years from now , the sum Q of their ages will be more than 31 , how old is Stephanie ?, \"statement 2\" :If , five years from now , the sum Q of their ages will be 51 , how old is Stephanie ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sum_of_ages_in_s1 = 0\nsum_of_ages_in_s1 > 31\nsum_of_ages_in_s2 = 51\n\n\nif sum_of_ages_in_s1 is None or sum_of_ages_in_s2 is None or sum_of_ages_in_s2 > 31:\n print(\"neutral\")\nelif sum_of_ages_in_s1 == sum_of_ages_in_s2:\n print(\"Entailment\")\nelif sum_of_ages_in_s1 != sum_of_ages_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Veena ranks 73 rd from the top in a class of 198, \"statement 2\" :Veena ranks less than 73 rd from the top in a class of 198, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rank_in_s1 = 73\ntotal_people_in_s1 = 198\nrank_in_s2 = 0\nrank_in_s2 < 73\nrank_in_s2 = 72\ntotal_people_in_s2 = 198\n\n\nif rank_in_s1 is None or rank_in_s2 is None or total_people_in_s2 is None or total_people_in_s1 is None:\n print(\"neutral\")\nelif total_people_in_s2 == total_people_in_s1 and rank_in_s1 == rank_in_s2:\n print(\"Entailment\")\nelif rank_in_s1 != rank_in_s2 or total_people_in_s2 != total_people_in_s1:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Zane can make a similar handcrafted drum in 6 weeks, \"statement 2\" :Zane can make a similar handcrafted drum in 4 weeks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "work_time_in_s1 = 6\nwork_time_in_s2 = 4\n\nif work_time_in_s1 is None or work_time_in_s2 is None:\n print(\"neutral\")\nelif work_time_in_s1 == work_time_in_s2:\n print(\"Entailment\")\nelif work_time_in_s1 != work_time_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Baker Adam is storing cake boxes in cartons that measure less than 85 inches by 42 inches by 60 inches, \"statement 2\" :Baker Adam is storing cake boxes in cartons that measure 25 inches by 42 inches by 60 inches, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "box_length_in_s1 = 0\nbox_length_in_s1 < 85\nbox_length_in_s2 = 25\n\n\nif box_length_in_s1 is None or box_length_in_s2 is None or box_length_in_s2 < 85:\n print(\"neutral\")\nelif box_length_in_s1 == box_length_in_s2:\n print(\"Entailment\")\nelif box_length_in_s1 != box_length_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Calculate the average mark scored by Belinda if she had the following scores in an examination : 86 , 50 , 60 , 67 and 79 marks ( out of 100 ) in English Language , Spanish Language , Social Studies , Fine Art , and Physical Education respectively ?, \"statement 2\" :Calculate the average mark scored by Belinda if she had the following scores in an examination : 36 , 50 , 60 , 67 and 79 marks ( out of 100 ) in English Language , Spanish Language , Social Studies , Fine Art , and Physical Education respectively ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_in_s1 = {\n \"English Language\":86,\n \"Spanish Language\":50,\n \"Social Studies\": 60,\n \"Fine art\":67,\n \"Physical Education\":79\n}\nmarks_in_s2 = {\n \"English Language\":36,\n \"Spanish Language\":50,\n \"Social Studies\": 60,\n \"Fine art\":67,\n \"Physical Education\":79\n}\n\nif marks_in_s1 is None or marks_in_s2 is None or len(marks_in_s1)!=len(marks_in_s2):\n print(\"neutral\")\nelif marks_in_s1 == marks_in_s2:\n print(\"Entailment\")\nelif marks_in_s1 != marks_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Albert \u2019 s monthly earnings rise by 20 % , he would earn $ 560, \"statement 2\" :If Albert \u2019 s monthly earnings rise by less than 30 % , he would earn $ 560, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "for_rise_560_in_s1 = 20\nfor_rise_560_in_s2 = 0\nfor_rise_560_in_s2 < 30\n\nif for_rise_560_in_s1 is None or for_rise_560_in_s2 is None:\n print(\"neutral\")\nelif (for_rise_560_in_s1 == for_rise_560_in_s2) or for_rise_560_in_s1 < 30:\n print(\"Entailment\")\nelif for_rise_560_in_s1 != for_rise_560_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill is dividing her less than 42 - person class into two teams of equal size for a basketball game, \"statement 2\" :Jill is dividing her 12 - person class into two teams of equal size for a basketball game, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jill_class_person_in_s1 = 0\njill_class_person_in_s1 < 42\njill_class_person_in_s1 = 12\n\n\nif jill_class_person_in_s1 is None or jill_class_person_in_s1 is None or jill_class_person_in_s1 < 42:\n print(\"neutral\")\nelif jill_class_person_in_s1 == jill_class_person_in_s1:\n print(\"Entailment\")\nelif jill_class_person_in_s1 != jill_class_person_in_s1:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tom drives from town T to town B , driving at a constant speed of 60 miles per hour, \"statement 2\" :Tom drives from town T to town B , driving at a constant speed of more than 20 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_in_s1 = 60\nspeed_in_s2 = 0\nspeed_in_s2 > 20\n\nif speed_in_s1 is None or speed_in_s2 is None:\n print(\"neutral\")\nelif (speed_in_s1 == speed_in_s2) or speed_in_s1 > 20:\n print(\"Entailment\")\nelif speed_in_s1 != speed_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Bill needs to walk from the corner of 2 nd Rd and 3 rd Ave to the corner of 6 th Rd and 9 th Ave in the shortest possible time , how many different routes could he take ?, \"statement 2\" :If Bill needs to walk from the corner of less than 7 nd Rd and 3 rd Ave to the corner of 6 th Rd and 9 th Ave in the shortest possible time , how many different routes could he take ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bill_walks_from_corner_in_s1 = 2\nbill_walks_from_corner_in_s2 = 0\nbill_walks_from_corner_in_s2 < 7\n\nif bill_walks_from_corner_in_s1 is None or bill_walks_from_corner_in_s2 is None:\n print(\"neutral\")\nelif (bill_walks_from_corner_in_s1 == bill_walks_from_corner_in_s2) or bill_walks_from_corner_in_s1 < 7:\n print(\"Entailment\")\nelif bill_walks_from_corner_in_s1 != bill_walks_from_corner_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is 4 : 3 , After 6 Years Rahul age will be 50 years, \"statement 2\" :Ratio between Rahul and Deepak is 6 : 3 , After 6 Years Rahul age will be 50 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_in_s1 = 4/3\nratio_in_s2 = 6/3\nafter_6_year_age_in_s1 = 50\nafter_6_year_age_in_s2 = 50\n\nif ratio_in_s1 is None or ratio_in_s2 is None or after_6_year_age_in_s1 is None or after_6_year_age_in_s2 is None:\n print(\"neutral\")\nelif ratio_in_s1 == ratio_in_s2 and after_6_year_age_in_s1 == after_6_year_age_in_s2:\n print(\"Entailment\")\nelif ratio_in_s1 != ratio_in_s2 or after_6_year_age_in_s1 != after_6_year_age_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jaime earned enough money by selling seashells at 30 cents each to buy several used paperback books at 55 cents each, \"statement 2\" :Jaime earned enough money by selling seashells at less than 30 cents each to buy several used paperback books at 55 cents each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "seashells_sel_price_in_s1 = 30\nbooks_buy_price_in_s1 = 55\nseashells_sel_price_in_s2 = 0\nseashells_sel_price_in_s2 < 30\nseashells_sel_price_in_s2 = 29\nbooks_buy_price_in_s2 = 55\n\nif seashells_sel_price_in_s1 is None or seashells_sel_price_in_s2 is None or books_buy_price_in_s1 is None or books_buy_price_in_s2 is None:\n print(\"neutral\")\nelif books_buy_price_in_s1 == books_buy_price_in_s2 and seashells_sel_price_in_s1 == seashells_sel_price_in_s2:\n print(\"Entailment\")\nelif seashells_sel_price_in_s1 != seashells_sel_price_in_s2 or books_buy_price_in_s2 != books_buy_price_in_s1:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Johnny takes night school and scores an 88 in the course , what will his new average be ?, \"statement 2\" :If Johnny takes night school and scores an more than 18 in the course , what will his new average be ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "johny_score_in_s1 = 88\njohny_score_in_s2 = 0\njohny_score_in_s2 > 18\n\nif johny_score_in_s1 is None or johny_score_in_s2 is None:\n print(\"neutral\")\nelif (johny_score_in_s1 == johny_score_in_s2) or johny_score_in_s1 > 18:\n print(\"Entailment\")\nelif johny_score_in_s1 != johny_score_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ramesh has solved 108 questions in an examination, \"statement 2\" :Ramesh has solved less than 508 questions in an examination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ramesh_solved_question_in_s1 = 108\nramesh_solved_question_in_s2 = 0\nramesh_solved_question_in_s2 < 508\n\nif ramesh_solved_question_in_s1 is None or ramesh_solved_question_in_s2 is None:\n print(\"neutral\")\nelif (ramesh_solved_question_in_s1 == ramesh_solved_question_in_s2) or ramesh_solved_question_in_s1 < 508:\n print(\"Entailment\")\nelif ramesh_solved_question_in_s1 != ramesh_solved_question_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jaydeep purchased 25 kg of rice at the rate of 16.50 per kg and 35 kg of rice at the rate of 24.50 per kg, \"statement 2\" :Jaydeep purchased more than 25 kg of rice at the rate of 16.50 per kg and 35 kg of rice at the rate of 24.50 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rice_purchase_at_16_50_in_s1 = 25\nrice_purchase_at_16_50_in_s2 = 0\nrice_purchase_at_16_50_in_s2 > 25\nrice_purchase_at_16_50_in_s2 = 26\nrice_purchase_at_24_50_in_s1 = 35\nrice_purchase_at_24_50_in_s2 = 35\n\nif rice_purchase_at_16_50_in_s1 is None or rice_purchase_at_16_50_in_s2 is None or rice_purchase_at_24_50_in_s1 is None or rice_purchase_at_24_50_in_s2 is None:\n print(\"neutral\")\nelif rice_purchase_at_24_50_in_s1 == rice_purchase_at_24_50_in_s2 and rice_purchase_at_16_50_in_s1 == rice_purchase_at_16_50_in_s2:\n print(\"Entailment\")\nelif rice_purchase_at_16_50_in_s1 != rice_purchase_at_16_50_in_s2 or rice_purchase_at_24_50_in_s1 != rice_purchase_at_24_50_in_s1:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the minimum number of packages of Aero flight tees Bill must purchase to ensure that he has at least 10 golf tees for each member of his foursome , if he will buy no more than 2 packages of the generic golf tees ?, \"statement 2\" :What is the minimum number of packages of Aero flight tees Bill must purchase to ensure that he has at least less than 10 golf tees for each member of his foursome , if he will buy no more than 2 packages of the generic golf tees ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "golf_tees_in_s1 = 10\npackage_buy_in_s1 = 2\ngolf_tees_in_s2 = 0\ngolf_tees_in_s2 < 10\ngolf_tees_in_s2 = 9\npackage_buy_in_s2 = 2\n\nif golf_tees_in_s1 is None or golf_tees_in_s2 is None or package_buy_in_s1 is None or package_buy_in_s2 is None:\n print(\"neutral\")\nelif package_buy_in_s1 == package_buy_in_s2 and golf_tees_in_s1 == golf_tees_in_s2:\n print(\"Entailment\")\nelif golf_tees_in_s1 != golf_tees_in_s2 or package_buy_in_s1 != package_buy_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rajan travelled for 12 hours, \"statement 2\" :Rajan travelled for 82 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "travel_hours_in_s1 = 12\ntravel_hours_in_s2 = 82\n\nif travel_hours_in_s1 is None or travel_hours_in_s2 is None:\n print(\"neutral\")\nelif travel_hours_in_s1 == travel_hours_in_s2:\n print(\"Entailment\")\nelif travel_hours_in_s1 != travel_hours_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a friendship gang Andrew has 8 gang , in how many ways can he invite one or more of the gang to his house ?, \"statement 2\" :In a friendship gang Andrew has 4 gang , in how many ways can he invite one or more of the gang to his house ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gang_in_s1 = 8\ngang_in_s2 = 4\n\nif gang_in_s1 is None or gang_in_s2 is None:\n print(\"neutral\")\nelif gang_in_s1 == gang_in_s2:\n print(\"Entailment\")\nelif gang_in_s1 != gang_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He gave less than 89 toys to his brother Gourav , while Gourav playing all but 6 got destroyed, \"statement 2\" :He gave 19 toys to his brother Gourav , while Gourav playing all but 6 got destroyed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "toys_in_s1 = 0\ntoys_in_s1 < 89\ntoys_in_s2 = 19\ntoys_distroyed_in_s1 = 6 \ntoys_distroyed_in_s2 = 6\n\nif toys_in_s1 is None or toys_in_s2 is None or toys_in_s2 < 89 or toys_distroyed_in_s1 is None or toys_distroyed_in_s2 is None:\n print(\"neutral\")\nelif toys_in_s1 == toys_in_s2 and toys_distroyed_in_s1 == toys_distroyed_in_s2:\n print(\"Entailment\")\nelif toys_in_s1 != toys_in_s2 or toys_distroyed_in_s1 != toys_distroyed_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": more than 20 students represent x percent of the boys at Jones Elementary School, \"statement 2\" :90 students represent x percent of the boys at Jones Elementary School, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boys_per_in_s1 = 0\nboys_per_in_s1 > 20\nboys_per_in_s2 = 90\n\nif boys_per_in_s1 is None or boys_per_in_s2 is None or boys_per_in_s2 > 20:\n print(\"neutral\")\nelif boys_per_in_s1 == boys_per_in_s2:\n print(\"Entailment\")\nelif boys_per_in_s1 != boys_per_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John traveled more than 50 % of the way from Yellow - town to Green - fields by train at an average speed of 80 miles per hour, \"statement 2\" :John traveled 80 % of the way from Yellow - town to Green - fields by train at an average speed of 80 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "travell_per_in_s1 = 0\ntravell_per_in_s1 > 50\ntravell_per_in_s2 = 80\navg_speed_in_s1 = 80\navg_speed_in_s2 = 80\n\n\nif travell_per_in_s1 is None or travell_per_in_s2 is None or travell_per_in_s2 > 50 or avg_speed_in_s1 is None or avg_speed_in_s2 is None:\n print(\"neutral\")\nelif travell_per_in_s1 == travell_per_in_s2 and avg_speed_in_s1 == avg_speed_in_s2:\n print(\"Entailment\")\nelif travell_per_in_s1 != travell_per_in_s2 or avg_speed_in_s1 != avg_speed_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Dave has more than one of each of the listed garments , and can make 2400 different outfits , then for how many garments does Dave have exactly five choices ?, \"statement 2\" :If Dave has more than one of each of the listed garments , and can make more than 1400 different outfits , then for how many garments does Dave have exactly five choices ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "outfit_qty_in_s1 = 2400\noutfit_qty_in_s2 = 0\noutfit_qty_in_s2 > 1400\n\nif outfit_qty_in_s1 is None or outfit_qty_in_s2 is None:\n print(\"neutral\")\nelif (outfit_qty_in_s1 == outfit_qty_in_s2) or outfit_qty_in_s1 > 1400:\n print(\"Entailment\")\nelif outfit_qty_in_s1 != outfit_qty_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a group of less than 600 people , 55 have visited Iceland and 43 have visited Norway, \"statement 2\" :In a group of 100 people , 55 have visited Iceland and 43 have visited Norway, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_in_s1 = 00\npeople_in_s1 < 600\npeople_in_s2 = 100\n\n\nif people_in_s1 is None or people_in_s2 is None or people_in_s2 < 600:\n print(\"neutral\")\nelif people_in_s1 == people_in_s2:\n print(\"Entailment\")\nelif people_in_s1 != people_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": David obtained 70 , 60 , 78 , 60 and 65 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"statement 2\" :David obtained more than 70 , 60 , 78 , 60 and 65 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_in_s1 = {\n \"English\": 70,\n \"Maths\": 60,\n \"Physics\": 78,\n \"Chemestry\": 60,\n \"Biology\": 65\n}\nmarks_in_s2 = {\n \"English\": 0,\n \"Maths\": 60,\n \"Physics\": 78,\n \"Chemestry\": 60,\n \"Biology\": 65\n}\nmarks_in_s2['English'] > 70\nmarks_in_s2['English'] = 71\n\n\nif marks_in_s2 is None or marks_in_s1 is None or len(marks_in_s2)!=len(marks_in_s2):\n print(\"neutral\")\nelif marks_in_s1 == marks_in_s2:\n print(\"Entailment\")\nelif marks_in_s1 != marks_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A pet store had 13.0 siamese cats and 5.0 house cats and During a sale they sold 10.0 cats, \"statement 2\" :They has 8.0 cats left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "cats_in_s1 = 13+5-10\ncats_in_s2 = 8\n\n\nif cats_in_s1 is None or cats_in_s2 is None:\n print(\"neutral\")\nelif (cats_in_s1 == cats_in_s2):\n print(\"Entailment\")\nelif cats_in_s1 != cats_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A petri dish originally contained 600.0 bacteria and a scientist let the bacteria grow, and now there are 8917.0 more of them, \"statement 2\" :9513.0 bacteria are there now , \"options: \" Entailment or contradiction?", + "Output Program": [ + "bacteria_in_s1 = 600\nbacteria_grow_in_s1 = 8917\ntotal_bacteria_in_s1 = bacteria_in_s1+bacteria_grow_in_s1\ntotal_bacteria_in_s2 = 8917\n\nif total_bacteria_in_s1 is None or total_bacteria_in_s2 is None:\n print(\"neutral\")\nelif total_bacteria_in_s1 == total_bacteria_in_s2:\n print(\"Entailment\")\nelif total_bacteria_in_s1 != total_bacteria_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dan can do a job alone in 12 hours, \"statement 2\" :Dan can do a job alone in less than 12 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "job_time_in_s1 = 12\njob_time_in_s2 = 0\njob_time_in_s2 < 12\njob_time_in_s2 = 11\n\n\nif job_time_in_s1 is None or job_time_in_s2 is None:\n print(\"neutral\")\nelif job_time_in_s1 == job_time_in_s2:\n print(\"Entailment\")\nelif job_time_in_s1 != job_time_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many jelly beans must Dante give to Aaron to ensure that no child has more than 1 fewer jelly beans than any other child ?, \"statement 2\" :How many jelly beans must Dante give to Aaron to ensure that no child has more than less than 7 fewer jelly beans than any other child ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jelly_beans_in_s1 = 0\njelly_beans_in_s1 > 1\njelly_beans_in_s2 = 0\njelly_beans_in_s2 < 7\n\n\nif jelly_beans_in_s1 is None or jelly_beans_in_s2 is None:\n print(\"neutral\")\nelif (jelly_beans_in_s1 == jelly_beans_in_s2) or (jelly_beans_in_s1 > 1 and jelly_beans_in_s2 <7):\n print(\"Entailment\")\nelif jelly_beans_in_s1 != jelly_beans_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Roger Federer is also safely through to the last eight after dispatching Richard Gasquet in straight sets 6-1 6-2 ., \"statement 2\" :Roger Federer and Rafael Nadal also through to the last eight, \"options: \" Entailment or neutral?", + "Output Program": [ + "score_set_in_s1 = [6,1,6,2]\nscore_set_in_s2 = None\n\n\nif score_set_in_s1 is None or score_set_in_s2 is None:\n print(\"neutral\")\nelif score_set_in_s1 == score_set_in_s2:\n print(\"Entailment\")\nelif score_set_in_s1 != score_set_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The diameter of the moon cake is 2.1 meters ., \"statement 2\" :The terrestrial moon has a diameter of 3,746 kilometers ., \"options: \" Entailment or neutral?", + "Output Program": [ + "dia_of_moon_in_meters_in_s1 = 2.1\ndia_of_moon_in_meters_in_s2 = None\n\n\nif dia_of_moon_in_meters_in_s1 is None or dia_of_moon_in_meters_in_s2 is None:\n print(\"neutral\")\nelif dia_of_moon_in_meters_in_s1 == dia_of_moon_in_meters_in_s1:\n print(\"Entailment\")\nelif dia_of_moon_in_meters_in_s1 != dia_of_moon_in_meters_in_s1:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The two Marines on the Marine Corps Base Camp Pendleton chopper were one of four helicopter crews involved in the training exercise , Stevens said ., \"statement 2\" :The Marine helicopter contained two crew members, \"options: \" Entailment or neutral?", + "Output Program": [ + "helicopter_crew_in_training_in_s1 = 1\nhelicopter_crew_in_training_in_s2 = None\n\n\nif helicopter_crew_in_training_in_s1 is None or helicopter_crew_in_training_in_s2 is None:\n print(\"neutral\")\nelif helicopter_crew_in_training_in_s1 == helicopter_crew_in_training_in_s2:\n print(\"Entailment\")\nelif helicopter_crew_in_training_in_s1 != helicopter_crew_in_training_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nine companies will represent the UAE in the MSCI index , including property groups Aldar , Arabtec and Emaar ., \"statement 2\" :Nine companies from UAE to be represented on MSCI Index, \"options: \" Entailment or neutral?", + "Output Program": [ + "companies_represent_in_s1 = 9\ncompanies_represent_in_s2 = 9\n\nif companies_represent_in_s1 is None or companies_represent_in_s2 is None:\n print(\"neutral\")\nelif (companies_represent_in_s1 == companies_represent_in_s2):\n print(\"Entailment\")\nelif companies_represent_in_s1 != companies_represent_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the agreed period of the debenture was 18 months : calculate the amount of interest Jaclyn will earn for each quarter, \"statement 2\" :If the agreed period of the debenture was less than 18 months : calculate the amount of interest Jaclyn will earn for each quarter, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "period_aggres_in_s1 = 18\nperiod_aggres_in_s2 = 0\nperiod_aggres_in_s2 < 18\nperiod_aggres_in_s2 = 17\n\n\nif period_aggres_in_s1 is None or period_aggres_in_s2 is None:\n print(\"neutral\")\nelif period_aggres_in_s2 == period_aggres_in_s1:\n print(\"Entailment\")\nelif period_aggres_in_s2 != period_aggres_in_s1:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Dacid obtained 72 , 45 , 72 , 77 and 75 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained 62 , 45 , 72 , 77 and 75 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marks_in_s1 = {\n \"English\": 72,\n \"Maths\": 45,\n \"Physics\": 72,\n \"Chemestry\": 77,\n \"Biology\": 75\n}\nmarks_in_s2 = {\n \"English\": 62,\n \"Maths\": 45,\n \"Physics\": 72,\n \"Chemestry\": 77,\n \"Biology\": 75\n}\n\nif marks_in_s2 is None or marks_in_s1 is None or len(marks_in_s2)!=len(marks_in_s2):\n print(\"neutral\")\nelif marks_in_s1 == marks_in_s2:\n print(\"Entailment\")\nelif marks_in_s1 != marks_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bail had already been set at $ 5 million on five murder charges related to the grisly discovery of the bodies at his home in Cleveland ., \"statement 2\" :Bail for Anthony Sowell set at $ 1 million on rape charges, \"options: \" Entailment or neutral?", + "Output Program": [ + "murder_in_s1 = 5\nmurder_in_s2 = None\n\n\nif murder_in_s1 is None or murder_in_s2 is None:\n print(\"neutral\")\nelif murder_in_s1 == murder_in_s2:\n print(\"Entailment\")\nelif murder_in_s1 != murder_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Colin has an app on his phone that generates a random integer betwen 1 and 10, \"statement 2\" :Colin has an app on his phone that generates a random integer betwen 5 and 10, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nstarting_point_in_s1 = 1\nending_point_in_s1 = 10\nstarting_point_in_s2 = 5\nending_point_in_s2 = 10\n\n\nif starting_point_in_s1 is None or ending_point_in_s1 is None or starting_point_in_s2 is None or ending_point_in_s2 is None:\n print(\"neutral\")\nelif starting_point_in_s1 == starting_point_in_s2 and ending_point_in_s1 == ending_point_in_s2:\n print(\"Entailment\")\nelif ending_point_in_s1 != ending_point_in_s2 or starting_point_in_s1 != starting_point_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a friendship gang Aravind has more than 1 gang , in how many ways can he invite one or more of the gang to his house ?, \"statement 2\" :In a friendship gang Aravind has 2 gang , in how many ways can he invite one or more of the gang to his house ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "arvind_gang_in_s1 = 0\narvind_gang_in_s1 > 1\narvind_gang_in_s2 = 2\n\n\nif arvind_gang_in_s1 is None or arvind_gang_in_s2 is None or arvind_gang_in_s2 > 1:\n print(\"neutral\")\nelif arvind_gang_in_s1 == arvind_gang_in_s2:\n print(\"Entailment\")\nelif arvind_gang_in_s1 != arvind_gang_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In an exam , Amar scored more than 44 percent , Bhavan scored 36 percent and Chetan 44 percent, \"statement 2\" :In an exam , Amar scored 64 percent , Bhavan scored 36 percent and Chetan 44 percent, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amar_score_in_s1 = 0\namar_score_in_s1 > 44\namar_score_in_s2 = 64\n\nbhavan_score_in_s1 = 36\nbhavan_score_in_s2 = 36\n\nchetan_score_in_s1 = 44\nchetan_score_in_s2 = 44\n\n\nif amar_score_in_s1 is None or amar_score_in_s2 is None or amar_score_in_s2 > 44 or bhavan_score_in_s1 is None or bhavan_score_in_s2 is None or chetan_score_in_s1 is None or chetan_score_in_s2 is None:\n print(\"neutral\")\nelif amar_score_in_s1 == amar_score_in_s2 and bhavan_score_in_s1 == bhavan_score_in_s2 and chetan_score_in_s1 == chetan_score_in_s2:\n print(\"Entailment\")\nelif amar_score_in_s1 != amar_score_in_s2 or bhavan_score_in_s1 != bhavan_score_in_s2 or chetan_score_in_s1 != chetan_score_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Louie takes out a three - month loan of $ 1000, \"statement 2\" :Louie takes out a three - month loan of $ 8000, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "loan_amount_in_s1 = 1000\nloan_amount_in_s2 = 8000\n\n\nif loan_amount_in_s1 is None or loan_amount_in_s2 is None:\n print(\"neutral\")\nelif loan_amount_in_s1 == loan_amount_in_s2:\n print(\"Entailment\")\nelif loan_amount_in_s1 != loan_amount_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If an outfit consists of 1 shirt , 1 pair of jeans , and 1 pair of sneakers , how many different outfits does Jordan have ?, \"statement 2\" :If an outfit consists of less than 1 shirt , 1 pair of jeans , and 1 pair of sneakers , how many different outfits does Jordan have ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "outfit_dict_in_series = [\"shirt\", \"jeans\",\"sneakers\"]\noutfit_in_s1 = [1,1,1]\noutfit_in_s2 = [1,1,1]\noutfit_in_s2[0] < 1\noutfit_in_s2[0] = 0\n\n\nif outfit_in_s1 is None or outfit_in_s2 is None or len(outfit_in_s1) != len(outfit_in_s2):\n print(\"neutral\")\nelif outfit_in_s1 == outfit_in_s2:\n print(\"Entailment\")\nelif outfit_in_s1 != outfit_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Nitin ranks 12 th in a class of 56 students, \"statement 2\" :Nitin ranks more than 12 th in a class of 56 students, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "nitin_rank_in_s1 = 12\nnitin_rank_in_s2 = 0\nnitin_rank_in_s2 > 12\nnitin_rank_in_s2 = 13\ntotal_students_in_s1 = 56\ntotal_students_in_s2 = 56\n\n\n\nif nitin_rank_in_s1 is None or nitin_rank_in_s2 is None or total_students_in_s1 is None or total_students_in_s2 is None:\n print(\"neutral\")\nelif nitin_rank_in_s1 == nitin_rank_in_s2 and total_students_in_s1 == total_students_in_s2:\n print(\"Entailment\")\nelif nitin_rank_in_s1 != nitin_rank_in_s2 or total_students_in_s1 != total_students_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tom drives from town A to town B , driving at a constant speed of more than 40 miles per hour, \"statement 2\" :Tom drives from town A to town B , driving at a constant speed of 60 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tom_speed_in_s1 = 0\ntom_speed_in_s1 > 40\ntom_speed_in_s2 = 60\n\n\nif tom_speed_in_s1 is None or tom_speed_in_s2 is None or tom_speed_in_s2 > 40:\n print(\"neutral\")\nelif tom_speed_in_s1 == tom_speed_in_s2:\n print(\"Entailment\")\nelif tom_speed_in_s1 != tom_speed_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jisha walked for 3 days, \"statement 2\" :Jisha walked for 2 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jisha_walked_in_s1 = 3\njisha_walked_in_s2 = 2\n\n\nif jisha_walked_in_s1 is None or jisha_walked_in_s2 is None:\n print(\"neutral\")\nelif jisha_walked_in_s1 == jisha_walked_in_s2:\n print(\"Entailment\")\nelif jisha_walked_in_s1 != jisha_walked_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 43 stations between Ernakulam and Chennai, \"statement 2\" :There are less than 73 stations between Ernakulam and Chennai, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stations_between_c_in_s1 = 43\nstations_between_c_in_s2 = 0\nstations_between_c_in_s2 < 73\n\nif stations_between_c_in_s1 is None or stations_between_c_in_s2 is None:\n print(\"neutral\")\nelif (stations_between_c_in_s1 == stations_between_c_in_s2) or stations_between_c_in_s1 < 73:\n print(\"Entailment\")\nelif stations_between_c_in_s1 != stations_between_c_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alka bought 15 books for Rs, \"statement 2\" :Alka bought 75 books for Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "books_bought_in_s1 = 15\nbooks_bought_in_s2 = 75\n\n\nif books_bought_in_s1 is None or books_bought_in_s2 is None:\n print(\"neutral\")\nelif books_bought_in_s1 == books_bought_in_s2:\n print(\"Entailment\")\nelif books_bought_in_s1 != books_bought_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Maddie has less than 34 apples , if she give 12 to mike , how many does she have left ?, \"statement 2\" :Maddie has 24 apples , if she give 12 to mike , how many does she have left ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "apples_in_s1 = 0\napples_in_s1 < 34\napples_in_s2 = 12\n\n\nif apples_in_s1 is None or apples_in_s2 is None or apples_in_s2 < 34:\n print(\"neutral\")\nelif apples_in_s1 == apples_in_s2:\n print(\"Entailment\")\nelif apples_in_s1 != apples_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Promoted West Brom joined Tottenham on 15 points with a 2-1 victory at home to Fulham , moving up to fourth place ahead of Arsenal and Manchester United ., \"statement 2\" :Promoted West Brom climb up to fourth , also on 15 points , after beating Fulham, \"options: \" Entailment or neutral?", + "Output Program": [ + "points_in_s1 = 15\npoints_in_s2 = 15\nclimbed_position_in_s1 = 4\nclimbed_position_in_s2 = 4\n\nif points_in_s1 is None or points_in_s2 is None or climbed_position_in_s1 is None or climbed_position_in_s2 is None:\n print(\"neutral\")\nelif (points_in_s1 == points_in_s2) or climbed_position_in_s1 == climbed_position_in_s2:\n print(\"Entailment\")\nelif points_in_s1 != points_in_s2 or climbed_position_in_s1 != climbed_position_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained more than 30 , 63 , 80 , 63 and 65 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained 70 , 63 , 80 , 63 and 65 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dacid_mark_in_s1 = [0,63,80,63,65]\ndacid_mark_in_s1[0] > 30\ndacid_mark_in_s2 = [70,63,80,63,65]\n\n\nif dacid_mark_in_s1 is None or dacid_mark_in_s2 is None or dacid_mark_in_s2[0] > 30:\n print(\"neutral\")\nelif dacid_mark_in_s1 == dacid_mark_in_s2:\n print(\"Entailment\")\nelif dacid_mark_in_s1 != dacid_mark_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In the biology lab of ` ` Jefferson ' ' High School there are 3.24 * less than 30 ^ 6 germs , equally divided among 10,800 Petri dishes, \"statement 2\" :In the biology lab of ` ` Jefferson ' ' High School there are 3.24 * 10 ^ 6 germs , equally divided among 10,800 Petri dishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "germs_in_s1 = 0\ngerms_in_s1 < (3.24*30**6)/(10800)\ngerms_in_s2 = (3.24*10**6)/(10800)\n\n\nif germs_in_s1 is None or germs_in_s2 is None or germs_in_s2 < (3.24*30**6)/(10800):\n print(\"neutral\")\nelif germs_in_s1 == germs_in_s2:\n print(\"Entailment\")\nelif germs_in_s1 != germs_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Each week , James is paid x dollars per per hour for the first 40 hours and 2 x dollars for each additional hour worked that week, \"statement 2\" :Each week , James is paid x dollars per per hour for the first 60 hours and 2 x dollars for each additional hour worked that week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "work_hours_at_1x_in_s1 = 40\nwork_hours_at_1x_in_s2 = 60\n\n\nif work_hours_at_1x_in_s1 is None or work_hours_at_1x_in_s2 is None:\n print(\"neutral\")\nelif work_hours_at_1x_in_s1 == work_hours_at_1x_in_s2:\n print(\"Entailment\")\nelif work_hours_at_1x_in_s1 != work_hours_at_1x_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nevada Highway Patrol Trooper Danny Lopez said two people died in the accident : one person on the train and one in the semitrailer ., \"statement 2\" :One person on the train and one in the truck died , authorities say, \"options: \" Entailment or neutral?", + "Output Program": [ + "died_person_in_train_in_s1 = 1\ndied_person_in_train_in_s2 = 1\ndied_person_in_trailer_in_s1 = 1\ndied_person_in_trailer_in_s2 = 1\n\nif died_person_in_train_in_s1 is None or died_person_in_train_in_s2 is None or died_person_in_trailer_in_s1 is None or died_person_in_trailer_in_s2 is None:\n print(\"neutral\")\nelif (died_person_in_train_in_s1 == died_person_in_train_in_s2) and died_person_in_trailer_in_s1 == died_person_in_trailer_in_s2:\n print(\"Entailment\")\nelif died_person_in_train_in_s1 != died_person_in_train_in_s2 or died_person_in_trailer_in_s1 != died_person_in_trailer_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy gets less than 4 marks for each correct sum and loses 2 marks for each incorrect sum, \"statement 2\" :Sandy gets 3 marks for each correct sum and loses 2 marks for each incorrect sum, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_marks_in_s1 = 0\nsandy_marks_in_s1 < 4\nsandy_marks_in_s2 = 3\n\n\nif sandy_marks_in_s1 is None or sandy_marks_in_s2 is None or sandy_marks_in_s2 < 4:\n print(\"neutral\")\nelif sandy_marks_in_s1 == sandy_marks_in_s2:\n print(\"Entailment\")\nelif sandy_marks_in_s1 != sandy_marks_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He will be 5 / 3 times as old as Tom 6 years hence, \"statement 2\" :He will be 6 / 3 times as old as Tom 6 years hence, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_multiple_in_s1 = 5/3\nage_multiple_in_s2 = 6/3\ncomparison_year_in_s1 = 6\ncomparison_year_in_s2 = 6\n\nif age_multiple_in_s1 is None or age_multiple_in_s2 is None or comparison_year_in_s1 is None or comparison_year_in_s2 is None:\n print(\"neutral\")\nelif (age_multiple_in_s1 == age_multiple_in_s2) and comparison_year_in_s1 == comparison_year_in_s2:\n print(\"Entailment\")\nelif (age_multiple_in_s1 != age_multiple_in_s2) or comparison_year_in_s1 != comparison_year_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many clothing combinations does Barbara have , if she doesn \u2019 t wear more than 1 specific shirts with 2 specific pants ?, \"statement 2\" :How many clothing combinations does Barbara have , if she doesn \u2019 t wear 3 specific shirts with 2 specific pants ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shirts_wore_by_in_s1 = 0\nshirts_wore_by_in_s1 > 1\nshirts_wore_by_in_s2 = 3\npants_wore_by_in_s1 = 2\npants_wore_by_in_s2 = 2\n\n\nif shirts_wore_by_in_s1 is None or shirts_wore_by_in_s2 is None or shirts_wore_by_in_s2 > 1 or pants_wore_by_in_s1 is None or pants_wore_by_in_s2 is None:\n print(\"neutral\")\nelif shirts_wore_by_in_s1 == shirts_wore_by_in_s2 and pants_wore_by_in_s1 == pants_wore_by_in_s2:\n print(\"Entailment\")\nelif shirts_wore_by_in_s1 != shirts_wore_by_in_s2 or pants_wore_by_in_s1 !=pants_wore_by_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the speed of Mohan \u2019 s Mercedes is 35 km / hr and the distance traveled by the Ferrari is 490 km , find the total time taken for Rohit to drive that distance ., \"statement 2\" :If the speed of Mohan \u2019 s Mercedes is less than 65 km / hr and the distance traveled by the Ferrari is 490 km , find the total time taken for Rohit to drive that distance ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_in_s1 = 35\nspeed_in_s2 = 0\nspeed_in_s2 < 65\ndist_travelled_in_s1 = 490\ndist_travelled_in_s2 = 490\n\nif speed_in_s1 is None or speed_in_s2 is None or dist_travelled_in_s1 is None or dist_travelled_in_s2 is None:\n print(\"neutral\")\nelif (speed_in_s1 == speed_in_s2 or speed_in_s1 < 65) and dist_travelled_in_s1 == dist_travelled_in_s2:\n print(\"Entailment\")\nelif speed_in_s1 != speed_in_s2 or dist_travelled_in_s1 != dist_travelled_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John was thrice as old as Tom 6 yrs back, \"statement 2\" :John was thrice as old as Tom 1 yrs back, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_age_multiple_in_s1 = 3\njohn_age_multiple_in_s2 = 3\ncomparison_year_in_s1 = 6\ncomparison_year_in_s2 = 1\n\nif john_age_multiple_in_s1 is None or john_age_multiple_in_s2 is None or comparison_year_in_s1 is None or comparison_year_in_s2 is None:\n print(\"neutral\")\nelif (john_age_multiple_in_s1 == john_age_multiple_in_s1) and comparison_year_in_s1 == comparison_year_in_s2:\n print(\"Entailment\")\nelif (john_age_multiple_in_s1 != john_age_multiple_in_s1) or comparison_year_in_s1 != comparison_year_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Scott ' s average ( arithmetic mean ) golf score on his first four rounds was 28, \"statement 2\" :Scott ' s average ( arithmetic mean ) golf score on his first four rounds was 18, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\navg_score_in_s1 = 25\navg_score_in_s2 = 18\n\n\nif avg_score_in_s1 is None or avg_score_in_s2 is None:\n print(\"neutral\")\nelif avg_score_in_s1 == avg_score_in_s2:\n print(\"Entailment\")\nelif avg_score_in_s1 != avg_score_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": James took a less than 4 - hour bike ride, \"statement 2\" :James took a 3 - hour bike ride, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bike_ride_hours_in_s1 = 0\nbike_ride_hours_in_s1 < 4\nbike_ride_hours_in_s2 = 3\n\n\nif bike_ride_hours_in_s1 is None or bike_ride_hours_in_s2 is None or bike_ride_hours_in_s2 < 4:\n print(\"neutral\")\nelif bike_ride_hours_in_s1 == bike_ride_hours_in_s2:\n print(\"Entailment\")\nelif bike_ride_hours_in_s1 != bike_ride_hours_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jimmy ' s paper has 12 , 24 , 36 , 48 , and a blank space .\nWhat number should Jimmy B put in the blank space ?, \"statement 2\" :Jimmy ' s paper has 72 , 24 , 36 , 48 , and a blank space . What number should Jimmy B put in the blank space ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jimmy_paper_in_s1 = [12,24,36,48,\"\"]\njimmy_paper_in_s2 = [72,24,36,48,\"\"]\n\n\nif jimmy_paper_in_s1 is None or jimmy_paper_in_s1 is None or len(jimmy_paper_in_s1) != len(jimmy_paper_in_s2):\n print(\"neutral\")\nelif jimmy_paper_in_s1 == jimmy_paper_in_s2:\n print(\"Entailment\")\nelif jimmy_paper_in_s1 != jimmy_paper_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 18 stations between Hyderabad and Bangalore, \"statement 2\" :There are more than 18 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stations_in_s1 = 18\nstations_in_s2 = 0\nstations_in_s2 > 18\nstations_in_s2 = 19\n\n\nif stations_in_s1 is None or stations_in_s2 is None:\n print(\"neutral\")\nelif stations_in_s1 == stations_in_s2:\n print(\"Entailment\")\nelif stations_in_s1 != stations_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In 1979 approximately 1 / 3 of the 38.3 million airline passengers traveling to or from the United States used Kennedy Airport, \"statement 2\" :In less than 5979 approximately 1 / 3 of the 38.3 million airline passengers traveling to or from the United States used Kennedy Airport, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "year_in_s1 = 1979\nyear_in_s2 = 0\nyear_in_s2 < 5979\n\n\nif year_in_s1 is None or year_in_s2 is None:\n print(\"neutral\")\nelif (year_in_s1 == year_in_s2 or year_in_s1 < 5979):\n print(\"Entailment\")\nelif year_in_s1 != year_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained more than 51 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained 61 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dacid_marks_in_s1 = [0,65,82,67,85]\ndacid_marks_in_s1[0] > 51\ndacid_marks_in_s2 = [61,65,82,67,85]\n\n\nif dacid_marks_in_s1 is None or dacid_marks_in_s2 is None or dacid_marks_in_s2[0] > 51:\n print(\"neutral\")\nelif dacid_marks_in_s1 == dacid_marks_in_s2:\n print(\"Entailment\")\nelif dacid_marks_in_s1 != dacid_marks_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Molly ' s age in less than 58 years will be four times her age three years ago, \"statement 2\" :Molly ' s age in 18 years will be four times her age three years ago, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "molly_age_in_s1 = 0\nmolly_age_in_s1 < 58\nmolly_age_in_s2 = 18\n\n\nif molly_age_in_s1 is None or molly_age_in_s2 is None or molly_age_in_s2 < 58:\n print(\"neutral\")\nelif molly_age_in_s1 == molly_age_in_s2:\n print(\"Entailment\")\nelif molly_age_in_s1 != molly_age_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Every Sunday , Giri jogs 3 miles, \"statement 2\" :Every Sunday , Giri jogs more than 1 miles, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "giri_jogs_in_s1 = 3\ngiri_jogs_in_s2 = 0\ngiri_jogs_in_s2 > 1\n\n\nif giri_jogs_in_s1 is None or giri_jogs_in_s2 is None:\n print(\"neutral\")\nelif (giri_jogs_in_s1 == giri_jogs_in_s2 or giri_jogs_in_s1 < 5979):\n print(\"Entailment\")\nelif giri_jogs_in_s1 != giri_jogs_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Snyder has 4 more men and 6 more women than Leigh , how many men ' s are in the Snyder choir ?, \"statement 2\" :If Snyder has less than 5 more men and 6 more women than Leigh , how many men ' s are in the Snyder choir ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "snyders_man_in_s1 = 4\nsnyders_man_in_s2 = 0\nsnyders_man_in_s2 < 5\nsnyders_woman_in_s1 = 6\nsnyders_woman_in_s2 = 6\n\n\nif snyders_man_in_s1 is None or snyders_man_in_s2 is None or snyders_woman_in_s1 is None or snyders_woman_in_s2 is None:\n print(\"neutral\")\nelif (snyders_man_in_s1 == snyders_man_in_s2 or snyders_man_in_s1 < 5) and snyders_woman_in_s1 == snyders_woman_in_s2:\n print(\"Entailment\")\nelif snyders_man_in_s1 != snyders_man_in_s2 or snyders_woman_in_s1 == snyders_woman_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In how many ways can you seat 9 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"statement 2\" :In how many ways can you seat more than 9 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_seated_in_s1 = 9\npeople_seated_in_s2 = 0\npeople_seated_in_s2 > 9\npeople_seated_in_s2 = 10\n\n\nif people_seated_in_s1 is None or people_seated_in_s2 is None:\n print(\"neutral\")\nelif people_seated_in_s1 == people_seated_in_s2:\n print(\"Entailment\")\nelif people_seated_in_s1 != people_seated_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If A and B are digits and 5 AB is a 3 - digit number that is divisible by 10 , which of the following is a possible product of A and C ?, \"statement 2\" :If A and B are digits and less than 7 AB is a 3 - digit number that is divisible by 10 , which of the following is a possible product of A and C ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "first_char_of_3_digit_number_in_s1 = 5\nfirst_char_of_3_digit_number_in_s2 = 0\nfirst_char_of_3_digit_number_in_s2 < 7\n\n\n\nif first_char_of_3_digit_number_in_s1 is None or first_char_of_3_digit_number_in_s2:\n print(\"neutral\")\nelif (first_char_of_3_digit_number_in_s1 == first_char_of_3_digit_number_in_s2 or first_char_of_3_digit_number_in_s1 < 7):\n print(\"Entailment\")\nelif first_char_of_3_digit_number_in_s1 != first_char_of_3_digit_number_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sakshi can do a piece of work in 12 days, \"statement 2\" :Sakshi can do a piece of work in 32 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "work_days_in_s1 = 12\nwork_days_in_s2 = 32\n\n\n\nif work_days_in_s1 is None or work_days_in_s2 is None:\n print(\"neutral\")\nelif work_days_in_s1 == work_days_in_s2:\n print(\"Entailment\")\nelif work_days_in_s1 != work_days_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Raviraj invested an amount of 10000000 at compound interest rate of 10 pcpa for a period of three years, \"statement 2\" :Raviraj invested an amount of less than 80000000 at compound interest rate of 10 pcpa for a period of three years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amount_invested_in_s1 = 10000000\namount_invested_in_s2 = 0\namount_invested_in_s2 < 80000000\n\nthree_years_interest_rate_in_s1 = 10\nthree_years_interest_rate_in_s2 = 10\n\n\nif amount_invested_in_s1 is None or amount_invested_in_s2 is None or three_years_interest_rate_in_s1 is None or three_years_interest_rate_in_s2 is None:\n print(\"neutral\")\nelif (amount_invested_in_s1 == amount_invested_in_s2 or amount_invested_in_s1 < 80000000) and three_years_interest_rate_in_s1 == three_years_interest_rate_in_s2:\n print(\"Entailment\")\nelif amount_invested_in_s1 != amount_invested_in_s2 or three_years_interest_rate_in_s1 != three_years_interest_rate_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sarah signed less than 3 / 2 of the Christmas cards , and Richard signed 3 / 8 of them, \"statement 2\" :Sarah signed 1 / 2 of the Christmas cards , and Richard signed 3 / 8 of them, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "saras_card_in_s1 = 0\nsaras_card_in_s1 < 3/2\nsaras_card_in_s2 = 1/2\nrichards_card_in_s1 = 3/8\nrichards_card_in_s2 = 3/8\n\n\nif saras_card_in_s1 is None or saras_card_in_s2 is None or saras_card_in_s2 < 3/2 or richards_card_in_s1 is None or richards_card_in_s2 is None:\n print(\"neutral\")\nelif saras_card_in_s1 == saras_card_in_s2 and richards_card_in_s1 == richards_card_in_s2:\n print(\"Entailment\")\nelif saras_card_in_s1 != saras_card_in_s2 or richards_card_in_s1 != richards_card_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A treasure hunter discovered a buried treasure chest filled with 5155.0 rubys and 45.0 diamonds., \"statement 2\" :5200.0 gems were there in total, \"options: \" Entailment or contradiction?", + "Output Program": [ + "treasure_chest_total_gems_s1 = 5155+45\ntreasure_chest_total_gems_s2 = 5200\n\nif treasure_chest_total_gems_s1 is None or treasure_chest_total_gems_s2 is None:\n print(\"neutral\")\nelif (treasure_chest_total_gems_s1 == treasure_chest_total_gems_s2):\n print(\"Entailment\")\nelif treasure_chest_total_gems_s1 != treasure_chest_total_gems_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the distance between their homes is more than 10 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"statement 2\" :If the distance between their homes is 80 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_in_in_s1 = 0\ndistance_in_in_s1 > 10\ndistance_in_in_s2 = 80\nwalking_speed_in_s1 = 4\nwalking_speed_in_s2 = 4\nrunning_speed_in_s1 = 6\nrunning_speed_in_s2 = 6\n\n\nif distance_in_in_s1 is None or distance_in_in_s2 is None or distance_in_in_s2 > 10 or walking_speed_in_s1 is None or walking_speed_in_s2 is None or running_speed_in_s1 is None or running_speed_in_s2 is None:\n print(\"neutral\")\nelif distance_in_in_s1 == distance_in_in_s2 and walking_speed_in_s1 == walking_speed_in_s2 and running_speed_in_s1 == running_speed_in_s2:\n print(\"Entailment\")\nelif distance_in_in_s1 != distance_in_in_s2 or walking_speed_in_s1 != walking_speed_in_s2 or running_speed_in_s1 != running_speed_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Steve bought a total of 6 packages of pens , and each package contained either 3 or 7 pens, \"statement 2\" :Steve bought a total of more than 3 packages of pens , and each package contained either 3 or 7 pens, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "package_of_pen_bought_in_s1 = 6\npackage_of_pen_bought_in_s2 = 0\npackage_of_pen_bought_in_s2 > 3\n\nif package_of_pen_bought_in_s1 is None or package_of_pen_bought_in_s2 is None:\n print(\"neutral\")\nelif (package_of_pen_bought_in_s1 == package_of_pen_bought_in_s2) or package_of_pen_bought_in_s1 > 3:\n print(\"Entailment\")\nelif package_of_pen_bought_in_s1 != package_of_pen_bought_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shawn plants a garden 25 feet by 24 feet, \"statement 2\" :Shawn plants a garden less than 65 feet by 24 feet, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "garden_length_in_s1 = 25\ngarden_length_in_s2 = 0\ngarden_length_in_s2 < 65\n\nif garden_length_in_s1 is None or garden_length_in_s2 is None:\n print(\"neutral\")\nelif (garden_length_in_s1 == garden_length_in_s2) or garden_length_in_s1 < 65:\n print(\"Entailment\")\nelif garden_length_in_s1 != garden_length_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Albert father was less than 58 years of age when she was born while her mother was 46 years old when her brother 2 years younger to her was born, \"statement 2\" :Albert father was 48 years of age when she was born while her mother was 46 years old when her brother 2 years younger to her was born, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "fath_age_in_s1 = 0\nfath_age_in_s1 < 58\nfath_age_in_s2 = 48\nmoth_age_in_s1 = 46\nmoth_age_in_s2 = 46\nbroth_age_comp_in_s1 = 6\nbroth_age_comp_in_s2 = 6\n\n\nif fath_age_in_s1 is None or fath_age_in_s2 is None or fath_age_in_s2 < 58 or moth_age_in_s1 is None or moth_age_in_s2 is None or broth_age_comp_in_s1 is None or broth_age_comp_in_s2 is None:\n print(\"neutral\")\nelif fath_age_in_s1 == fath_age_in_s2 and moth_age_in_s1 == moth_age_in_s2 and broth_age_comp_in_s1 == broth_age_comp_in_s2:\n print(\"Entailment\")\nelif fath_age_in_s1 != fath_age_in_s2 or moth_age_in_s1 != moth_age_in_s2 or broth_age_comp_in_s1 != broth_age_comp_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy is younger than Molly by 16 years, \"statement 2\" :Sandy is younger than Molly by 36 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_in_s1 = 16\nage_in_s2 = 36\n\n\n\nif age_in_s1 is None or age_in_s2 is None:\n print(\"neutral\")\nelif age_in_s1 == age_in_s2:\n print(\"Entailment\")\nelif age_in_s1 != age_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": On the first day of her vacation , Louisa traveled 160 miles, \"statement 2\" :On the first day of her vacation , Louisa traveled less than 660 miles, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "first_day_travelling_in_s1 = 160\nfirst_day_travelling_in_s2 = 0\nfirst_day_travelling_in_s2 < 660\n\nif first_day_travelling_in_s1 is None or first_day_travelling_in_s2 is None:\n print(\"neutral\")\nelif (first_day_travelling_in_s1 == first_day_travelling_in_s2) or first_day_travelling_in_s1 < 660:\n print(\"Entailment\")\nelif first_day_travelling_in_s1 != first_day_travelling_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the minimum number of packages of Aero flight tees Bill must purchase to ensure that he has at least less than 40 golf tees for each member of his foursome , if he will buy no more than 2 packages of the generic golf tees ?, \"statement 2\" :What is the minimum number of packages of Aero flight tees Bill must purchase to ensure that he has at least 10 golf tees for each member of his foursome , if he will buy no more than 2 packages of the generic golf tees ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "golf_tees_in_s1 = 0\ngolf_tees_in_s1 < 40\ngolf_tees_in_s2 = 10\n\nif golf_tees_in_s1 is None or golf_tees_in_s2 is None or golf_tees_in_s2 < 40:\n print(\"neutral\")\nelif golf_tees_in_s1 == golf_tees_in_s2:\n print(\"Entailment\")\nelif golf_tees_in_s1 != golf_tees_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 4320 among John , Jose & Binoy in the ration 2 : 4 : 6, \"statement 2\" :6320 among John , Jose & Binoy in the ration 2 : 4 : 6, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + " \namount_in_s1 = 4320\nfirst_ratio_in_s1 = 2/4\nsecond_ratio_in_s1 = 4/6\n\namount_in_s2 = 6320\nfirst_ratio_in_s2 = 2/4\nsecond_ratio_in_s2 = 4/6\n\n\nif amount_in_s1 is None or amount_in_s2 is None or first_ratio_in_s1 is None or first_ratio_in_s2 is None or second_ratio_in_s1 is None or second_ratio_in_s2 is None:\n print(\"neutral\")\nelif amount_in_s1 == amount_in_s2 and first_ratio_in_s1 == first_ratio_in_s2 and second_ratio_in_s1 == second_ratio_in_s2:\n print(\"Entailment\")\nelif amount_in_s1 != amount_in_s2 or first_ratio_in_s1 != first_ratio_in_s2 or second_ratio_in_s1 != second_ratio_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Srinivas saves one coin of 5 on first day of the\nweek , three coins of 5 on the second day of the week .\nFive coins of 5 on third day and so on, \"statement 2\" :Srinivas saves one coin of 8 on first day of the week , three coins of 5 on the second day of the week . Five coins of 5 on third day and so on, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "firstday_save_of_five_in_s1 = 1\nsecondday_save_of_five_in_s1 = 3\nthirdday_save_of_five_in_s1 = 5\n\nfirstday_save_of_five_in_s2 = None\nfirstday_save_of_eight_in_s2 = 1\nsecondday_save_of_five_in_s2 = 3\nthirdday_save_of_five_in_s2 = 5\n\n\nif firstday_save_of_five_in_s1 is None or secondday_save_of_five_in_s1 is None or thirdday_save_of_five_in_s1 is None or secondday_save_of_five_in_s2 is None or thirdday_save_of_five_in_s2 is None:\n print(\"neutral\")\nelif firstday_save_of_five_in_s1 == firstday_save_of_five_in_s2 and secondday_save_of_five_in_s1 == secondday_save_of_five_in_s2 and thirdday_save_of_five_in_s1 == thirdday_save_of_five_in_s2:\n print(\"Entailment\")\nelif firstday_save_of_five_in_s2 or firstday_save_of_five_in_s1 != firstday_save_of_five_in_s2 or secondday_save_of_five_in_s1 != secondday_save_of_five_in_s2 or thirdday_save_of_five_in_s1 != thirdday_save_of_five_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Elsewhere , Mozambique took its first ever Olympic gold medal when Maria Mutola won the women 's eight-hundred metres , while the men 's ten-thousand-metres went to the Ethiopian Haile Gebrselassie ., \"statement 2\" :The women 's ten thousand metres champion is from Mozambique ., \"options: \" Entailment or neutral?", + "Output Program": [ + "woman_race_length_in_s1 = 800\nmans_race_in_s1 = 10000\nwoman_race_length_in_s2 = 10000\nmans_race_in_s2 = None\n\nif woman_race_length_in_s1 is None or woman_race_length_in_s2 is None or mans_race_in_s1 is None or mans_race_in_s2 is None:\n print(\"neutral\")\nelif woman_race_length_in_s1 == woman_race_length_in_s2 and mans_race_in_s1 == mans_race_in_s2:\n print(\"Entailment\")\nelif woman_race_length_in_s1 != woman_race_length_in_s2 or mans_race_in_s1 != mans_race_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The compound interest earned by Sunil on a certain amount at the end of two years at the rate of 8 % p, \"statement 2\" :The compound interest earned by Sunil on a certain amount at the end of two years at the rate of more than 6 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "compound_inntrest_rate_for_2_years_in_s1 = 8\ncompound_inntrest_rate_for_2_years_in_s2 = 0\ncompound_inntrest_rate_for_2_years_in_s2 > 6\n\nif compound_inntrest_rate_for_2_years_in_s1 is None or compound_inntrest_rate_for_2_years_in_s2 is None:\n print(\"neutral\")\nelif (compound_inntrest_rate_for_2_years_in_s1 == compound_inntrest_rate_for_2_years_in_s2) or compound_inntrest_rate_for_2_years_in_s1 > 6:\n print(\"Entailment\")\nelif compound_inntrest_rate_for_2_years_in_s1 != compound_inntrest_rate_for_2_years_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If exactly 4 of the packages Steve bought contained 7 pens , how many pens did Steve buy ?, \"statement 2\" :If exactly less than 7 of the packages Steve bought contained 7 pens , how many pens did Steve buy ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "steve_bought_pens_package_in_s1 = 4\nsteve_bought_pens_package_in_s2 = 0\nsteve_bought_pens_package_in_s2 < 7\n\nif steve_bought_pens_package_in_s1 is None or steve_bought_pens_package_in_s2 is None:\n print(\"neutral\")\nelif (steve_bought_pens_package_in_s1 == steve_bought_pens_package_in_s2) or steve_bought_pens_package_in_s1 < 7:\n print(\"Entailment\")\nelif steve_bought_pens_package_in_s1 != steve_bought_pens_package_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Schalke moved up to third place with a 2-0 win at home to Hannover , who were mourning the suicide of Germany goalkeeper Robert Enke ., \"statement 2\" :Schalke move into third place after 2-0 win over Hannover , who are mourning Robert Enke, \"options: \" Entailment or neutral?", + "Output Program": [ + "score_in_s1 = [2, 0]\nscore_in_s2 = [2, 0]\nwinning_position_s1 = 3\nwinning_position_s2 = 3\n\nif score_in_s1 is None or score_in_s2 is None or winning_position_s1 is None or winning_position_s2 is None:\n print(\"neutral\")\nelif (score_in_s1 == score_in_s2) and winning_position_s1 == winning_position_s2:\n print(\"Entailment\")\nelif score_in_s1 != score_in_s2 or winning_position_s1 != winning_position_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Last year less than 46 members of a certain club traveled to England , 26 members traveled to France , and 30 members traveled to Italy, \"statement 2\" :Last year 26 members of a certain club traveled to England , 26 members traveled to France , and 30 members traveled to Italy, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "england_travel_in_s1 = 0\nengland_travel_in_s1 < 46\nengland_travel_in_s2 = 26\nfrance_travel_in_s1 = 26\nfrance_travel_in_s2 = 26\nitaly_travel_in_s1 = 30\nitaly_travel_in_s2 = 30\n\n\nif england_travel_in_s1 is None or england_travel_in_s2 is None or england_travel_in_s2 < 46 or france_travel_in_s1 is None or france_travel_in_s2 is None or italy_travel_in_s1 is None or italy_travel_in_s2 is None:\n print(\"neutral\")\nelif england_travel_in_s1 == england_travel_in_s2 and france_travel_in_s1 == france_travel_in_s2 and italy_travel_in_s1 == italy_travel_in_s2:\n print(\"Entailment\")\nelif england_travel_in_s1 != england_travel_in_s2 or france_travel_in_s1 != france_travel_in_s2 or italy_travel_in_s1 != italy_travel_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What will be Rakesh \u2019 s share in the profit of less than 750000 earned at the end of three years from the start of the business in 1996 ?, \"statement 2\" :What will be Rakesh \u2019 s share in the profit of 150000 earned at the end of three years from the start of the business in 1996 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "earned_profit_in_s1 = 0\nearned_profit_in_s1 < 750000\nearned_profit_in_s2 = 150000\n\n\nif earned_profit_in_s1 is None or earned_profit_in_s2 is None or earned_profit_in_s2 < 750000:\n print(\"neutral\")\nelif earned_profit_in_s1 == earned_profit_in_s2:\n print(\"Entailment\")\nelif earned_profit_in_s1 != earned_profit_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jaime earned enough money by selling seashells at 35 cents each to buy several used paperback books at 55 cents each, \"statement 2\" :Jaime earned enough money by selling seashells at more than 25 cents each to buy several used paperback books at 55 cents each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jaime_seashells_in_s1 = 35\njaime_seashells_in_s2 = 0\njaime_seashells_in_s2 > 25\npaper_books_in_s1 = 55\npaper_books_in_s2 = 55\n\nif jaime_seashells_in_s1 is None or jaime_seashells_in_s2 is None or paper_books_in_s1 is None or paper_books_in_s2 is None:\n print(\"neutral\")\nelif (jaime_seashells_in_s1 == jaime_seashells_in_s2 or jaime_seashells_in_s1 > 25) and paper_books_in_s1 == paper_books_in_s2:\n print(\"Entailment\")\nelif jaime_seashells_in_s1 != jaime_seashells_in_s2 or paper_books_in_s1 != paper_books_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After 40 minutes , Annie stops to fix a flat tire, \"statement 2\" :After more than 40 minutes , Annie stops to fix a flat tire, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miniuts_in_s1 = 40\nminiuts_in_s2 = 0\nminiuts_in_s2 > 40\nminiuts_in_s2 = 45\n\n\nif miniuts_in_s1 is None or miniuts_in_s2 is None:\n print(\"neutral\")\nelif miniuts_in_s1 == miniuts_in_s2:\n print(\"Entailment\")\nelif miniuts_in_s1 != miniuts_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A runner runs the 40 miles from Marathon to Athens at a constant speed, \"statement 2\" :A runner runs the less than 50 miles from Marathon to Athens at a constant speed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "runner_runs_in_s1 = 40\nrunner_runs_in_s2 = 0\nrunner_runs_in_s2 < 50\n\nif runner_runs_in_s1 is None or runner_runs_in_s2 is None:\n print(\"neutral\")\nelif (runner_runs_in_s1 == runner_runs_in_s2 or runner_runs_in_s1 < 50):\n print(\"Entailment\")\nelif runner_runs_in_s1 != runner_runs_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill has 14 gallons of water stored in quart , half - gallon , and one gallon jars, \"statement 2\" :Jill has 34 gallons of water stored in quart , half - gallon , and one gallon jars, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "water_stored_in_s1 = 14\nwater_stored_in_s2 = 34\n\n\nif water_stored_in_s1 is None or water_stored_in_s2 is None:\n print(\"neutral\")\nelif water_stored_in_s1 == water_stored_in_s2:\n print(\"Entailment\")\nelif water_stored_in_s1 != water_stored_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The compound interest earned by Sunil on a certain amount at the end of two years at the rate of 8 % p, \"statement 2\" :The compound interest earned by Sunil on a certain amount at the end of two years at the rate of more than 2 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "compound_interest_in_s1 = 8\ncompound_interest_in_s2 = 0\ncompound_interest_in_s2 > 2\n\nif compound_interest_in_s1 is None or compound_interest_in_s2 is None:\n print(\"neutral\")\nelif (compound_interest_in_s1 == compound_interest_in_s2 or compound_interest_in_s1 < 50):\n print(\"Entailment\")\nelif compound_interest_in_s1 != compound_interest_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jack walks in a straight line toward Christina at a constant speed of more than 3 feet per second and Christina walks in a straight line toward Jack at a constant speed of 7 feet per second, \"statement 2\" :Jack walks in a straight line toward Christina at a constant speed of 5 feet per second and Christina walks in a straight line toward Jack at a constant speed of 7 feet per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jack_speed_in_s1 = 0\njack_speed_in_s1 > 3\njack_speed_in_s2 = 5\n\nif jack_speed_in_s1 is None or jack_speed_in_s2 is None or jack_speed_in_s2 > 3:\n print(\"neutral\")\nelif jack_speed_in_s1 == jack_speed_in_s2:\n print(\"Entailment\")\nelif jack_speed_in_s1 != jack_speed_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A circle of radius 10 inches has its center at the vertex C of an equilateral triangle ABC and passes through the other two vertices, \"statement 2\" :A circle of radius less than 30 inches has its center at the vertex C of an equilateral triangle ABC and passes through the other two vertices, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "circle_radius_in_s1 = 10\ncircle_radius_in_s2 = 0\ncircle_radius_in_s2 < 30\n\nif circle_radius_in_s1 is None or circle_radius_in_s2 is None:\n print(\"neutral\")\nelif (circle_radius_in_s1 == circle_radius_in_s2 or circle_radius_in_s1 < 30):\n print(\"Entailment\")\nelif circle_radius_in_s1 != circle_radius_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a certain province in France there are 19 cities, \"statement 2\" :In a certain province in France there are less than 89 cities, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "city_in_france_in_s1 = 19\ncity_in_france_in_s2 = 0\ncity_in_france_in_s2 < 89\n\nif city_in_france_in_s1 is None or city_in_france_in_s2 is None:\n print(\"neutral\")\nelif (city_in_france_in_s1 == city_in_france_in_s2 or city_in_france_in_s1 < 30):\n print(\"Entailment\")\nelif city_in_france_in_s1 != city_in_france_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Of a certain group of 100 people , 40 graduated from High School L , 65 graduated from College Y , and 30 live in City Z, \"statement 2\" :Of a certain group of less than 800 people , 40 graduated from High School L , 65 graduated from College Y , and 30 live in City Z, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_people_in_group_in_s1 = 100\ntotal_people_in_group_in_s2 = 0\ntotal_people_in_group_in_s2 < 800\n\nif total_people_in_group_in_s1 is None or total_people_in_group_in_s2 is None:\n print(\"neutral\")\nelif (total_people_in_group_in_s1 == total_people_in_group_in_s2 or total_people_in_group_in_s1 < 800):\n print(\"Entailment\")\nelif total_people_in_group_in_s1 != total_people_in_group_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many different possible committees of 3 people can be selected from these 8 people if at least one of either Jane or Thomas is to be selected ?, \"statement 2\" :How many different possible committees of 1 people can be selected from these 8 people if at least one of either Jane or Thomas is to be selected ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_select_in_s1 = 3\ntotal_people_in_s1 = 8\ntotal_people_in_s2 = 8\npeople_select_in_s2 = 1\n\n\nif people_select_in_s1 is None or people_select_in_s2 is None or total_people_in_s1 is None or total_people_in_s2 is None:\n print(\"neutral\")\nelif total_people_in_s1 == total_people_in_s2 and people_select_in_s1 == people_select_in_s2:\n print(\"Entailment\")\nelif total_people_in_s1 != total_people_in_s2 or people_select_in_s1 != people_select_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The number of suspected cases in Guinea has grown to 157 , with 101 deaths ., \"statement 2\" :Mali says it has three suspected Ebola cases, \"options: \" Entailment or neutral?", + "Output Program": [ + "cases_in_guinea_in_s1 = 157\ndeath_in_s1 = None\ncases_in_guinea_in_s2 = None\ndeath_in_s2 = None\n\nif cases_in_guinea_in_s1 is None or cases_in_guinea_in_s2 is None or death_in_s1 is None or death_in_s2 is None:\n print(\"neutral\")\nelif cases_in_guinea_in_s1 == cases_in_guinea_in_s2 and death_in_s1 == death_in_s2:\n print(\"Entailment\")\nelif cases_in_guinea_in_s1 != cases_in_guinea_in_s2 or death_in_s1 == death_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lionel left his house and walked towards Walt ' s house , more than 18 miles away, \"statement 2\" :Lionel left his house and walked towards Walt ' s house , 48 miles away, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "lioneal_walked_distance_in_s1 = 0\nlioneal_walked_distance_in_s1 > 18\nlioneal_walked_distance_in_s2 = 48\n\n\nif lioneal_walked_distance_in_s1 is None or lioneal_walked_distance_in_s2 is None or lioneal_walked_distance_in_s2 > 18 :\n print(\"neutral\")\nelif lioneal_walked_distance_in_s1 == lioneal_walked_distance_in_s2:\n print(\"Entailment\")\nelif lioneal_walked_distance_in_s1 != lioneal_walked_distance_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Misha has 34.0 dollars and she receives 47.0 dollars more, \"statement 2\" :She has 78.0 dollars now, \"options: \" Entailment or contradiction?", + "Output Program": [ + " \nmisha_dollers_in_s1 = 34\nmisha_dollers_in_s2 = 0\nmisha_rec_in_s1 = 47\ntotal_doll_in_s1 = misha_dollers_in_s1+misha_rec_in_s1\ntotal_doll_in_s2 = 78\n\n\nif total_doll_in_s1 is None or total_doll_in_s2 is None:\n print(\"neutral\")\nelif total_doll_in_s1 == total_doll_in_s2:\n print(\"Entailment\")\nelif total_doll_in_s1 != total_doll_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Donald carries a total of less than 52 notes ( of either $ 10 or \u20ac 10 , ) then what is the total number of notes ( of either $ 10 or \u20ac 10 , ) they take ?, \"statement 2\" :If Donald carries a total of 42 notes ( of either $ 10 or \u20ac 10 , ) then what is the total number of notes ( of either $ 10 or \u20ac 10 , ) they take ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "donald_note_in_s1 = 0\ndonald_note_in_s1 < 52\ndonald_note_in_s2 = 42\n\n\nif donald_note_in_s1 is None or donald_note_in_s2 is None or donald_note_in_s2 < 52:\n print(\"neutral\")\nelif donald_note_in_s1 == donald_note_in_s2:\n print(\"Entailment\")\nelif donald_note_in_s1 != donald_note_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A box of books weighs 42.0 pounds and each book weighs 3.0 pounds, \"statement 2\" :14.0 books are there in the box, \"options: \" Entailment or contradiction?", + "Output Program": [ + "book_in_s1 = 42/3\nbook_in_s2 = 14\n\nif book_in_s1 is None or book_in_s2 is None:\n print(\"neutral\")\nelif (book_in_s1 == book_in_s2):\n print(\"Entailment\")\nelif book_in_s1 != book_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Two dogsled teams raced across a 300 mile course in Wyoming, \"statement 2\" :Two dogsled teams raced across a less than 800 mile course in Wyoming, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "raced_across_in_s1 = 300\nraced_across_in_s2 = 0\nraced_across_in_s2 < 800\n\nif raced_across_in_s1 is None or raced_across_in_s2 is None:\n print(\"neutral\")\nelif (raced_across_in_s1 == raced_across_in_s2) or raced_across_in_s1 < 800:\n print(\"Entailment\")\nelif raced_across_in_s1 != raced_across_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Lionel ' s speed was 3 miles per hour and Walt ' s 3 miles per hour , how many miles had Lionel walked when he met Walt ?, \"statement 2\" :If Lionel ' s speed was less than 4 miles per hour and Walt ' s 3 miles per hour , how many miles had Lionel walked when he met Walt ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "lionel_speed_in_s1 = 3\nlionel_speed_in_s2 = 0\nlionel_speed_in_s2 < 4\n\nif lionel_speed_in_s1 is None or lionel_speed_in_s2 is None:\n print(\"neutral\")\nelif (lionel_speed_in_s1 == lionel_speed_in_s2) or lionel_speed_in_s1 < 4:\n print(\"Entailment\")\nelif lionel_speed_in_s1 != lionel_speed_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": While driving from City A to City B , Bob drives at a constant speed of 40 miles per hour, \"statement 2\" :While driving from City A to City B , Bob drives at a constant speed of less than 80 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "a_to_b_speed_in_s1 = 40\na_to_b_speed_in_s2 = 0\na_to_b_speed_in_s2 < 80\n\nif a_to_b_speed_in_s1 is None or a_to_b_speed_in_s2 is None:\n print(\"neutral\")\nelif (a_to_b_speed_in_s1 == a_to_b_speed_in_s2) or a_to_b_speed_in_s1 < 80:\n print(\"Entailment\")\nelif a_to_b_speed_in_s1 != a_to_b_speed_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 6970 , then what will be the share of Sameer in the profit ?, \"statement 2\" :5970 , then what will be the share of Sameer in the profit ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\ndominitor_in_s1 = 6970\ndominitor_in_s2 = 5970\n\n\nif dominitor_in_s1 is None or dominitor_in_s2 is None:\n print(\"neutral\")\nelif dominitor_in_s1 == dominitor_in_s2:\n print(\"Entailment\")\nelif dominitor_in_s1 != dominitor_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Fourteen passengers and two flight attendants were injured ., \"statement 2\" :14 passengers and 2 flight attendants were injured, \"options: \" Entailment or neutral?", + "Output Program": [ + "total_people_injured_in_s1 = 14+2\ntotal_people_injured_in_s2 = 14+2\n\nif total_people_injured_in_s1 is None or total_people_injured_in_s2 is None:\n print(\"neutral\")\nelif (total_people_injured_in_s1 == total_people_injured_in_s2):\n print(\"Entailment\")\nelif total_people_injured_in_s1 != total_people_injured_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": You are reading a book with 120.0 pages, and you want to read the same number of pages each night, \"statement 2\" :You would have 12.0 pages to read each night to finish in 10.0 days, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_pages_book_in_s1 = 120\ntotal_pages_book_in_s2 = 12*10\n\nif total_pages_book_in_s1 is None or total_pages_book_in_s2 is None:\n print(\"neutral\")\nelif (total_pages_book_in_s1 == total_pages_book_in_s2):\n print(\"Entailment\")\nelif total_pages_book_in_s1 != total_pages_book_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary can do a piece of work in 26 days, \"statement 2\" :Mary can do a piece of work in less than 26 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + " \nmarry_workh_in_s1 = 15\nmarry_workh_in_s2 = 0\nmarry_workh_in_s2 < 26\n\n\n\nif marry_workh_in_s1 is None or marry_workh_in_s2 is None:\n print(\"neutral\")\nelif marry_workh_in_s1 == marry_workh_in_s2:\n print(\"Entailment\")\nelif marry_workh_in_s1 != marry_workh_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What will Sally have to sell each item for to generate a 15 % profit ?, \"statement 2\" :What will Sally have to sell each item for to generate a 45 % profit ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "profit_percent_in_s1 = 15\nprofit_percent_in_s2 = 45\n\n\nif profit_percent_in_s1 is None or profit_percent_in_s2 is None:\n print(\"neutral\")\nelif profit_percent_in_s1 == profit_percent_in_s2:\n print(\"Entailment\")\nelif profit_percent_in_s1 != profit_percent_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After more than 4 years , Sandy \u2019 s age will be 34 years, \"statement 2\" :After 6 years , Sandy \u2019 s age will be 34 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandys_age_comparison_in_s1 = 0\nsandys_age_comparison_in_s1 > 4\nsandys_age_comparison_in_s2 = 6\n\n\nif sandys_age_comparison_in_s1 is None or sandys_age_comparison_in_s2 is None or sandys_age_comparison_in_s2 > 4:\n print(\"neutral\")\nelif sandys_age_comparison_in_s1 == sandys_age_comparison_in_s2:\n print(\"Entailment\")\nelif sandys_age_comparison_in_s1 != sandys_age_comparison_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Abhay double his speed , then he would take 1 hour less than Sammer, \"statement 2\" :If Abhay double his speed , then he would take less than 2 hour less than Sammer, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "abhay_time_speed_in_s1 = 1\nabhay_time_speed_in_s2 = 0\nabhay_time_speed_in_s2 < 2\n\nif abhay_time_speed_in_s1 is None or abhay_time_speed_in_s2 is None:\n print(\"neutral\")\nelif (abhay_time_speed_in_s1 == abhay_time_speed_in_s2) or abhay_time_speed_in_s1 < 2:\n print(\"Entailment\")\nelif abhay_time_speed_in_s1 != abhay_time_speed_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joan picked 37.0 oranges, and Sara picked 10.0 oranges and Alyssa picked 30.0 pears , \"statement 2\" :47.0 oranges were picked in total , \"options: \" Entailment or contradiction?", + "Output Program": [ + "oranges_picked_iin_s1 = 37+10\noranges_picked_iin_s2 = 47\n\nif oranges_picked_iin_s1 is None or oranges_picked_iin_s2 is None:\n print(\"neutral\")\nelif (oranges_picked_iin_s1 == oranges_picked_iin_s2):\n print(\"Entailment\")\nelif oranges_picked_iin_s1 != oranges_picked_iin_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In 4 years John will be twice as old as Frank, \"statement 2\" :In more than 3 years John will be twice as old as Frank, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "comparison_year_s1 = 4\ncomparison_year_s2 = 0\ncomparison_year_s2 > 3\n\nif comparison_year_s1 is None or comparison_year_s2 is None:\n print(\"neutral\")\nelif (comparison_year_s1 == comparison_year_s2) or comparison_year_s1 > 3:\n print(\"Entailment\")\nelif comparison_year_s1 != comparison_year_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a recent election , James received more than 4 percent of the 2,000 votes cast, \"statement 2\" :In a recent election , James received 5 percent of the 2,000 votes cast, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "james_vote_per_in_s1 = 0\njames_vote_per_in_s1 > 4\njames_vote_per_in_s2 = 5\n\n\nif james_vote_per_in_s1 is None or james_vote_per_in_s2 is None or james_vote_per_in_s2 > 4:\n print(\"neutral\")\nelif james_vote_per_in_s1 == james_vote_per_in_s2:\n print(\"Entailment\")\nelif james_vote_per_in_s1 != james_vote_per_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Kishore saved 10 % of his monthly salary, \"statement 2\" :Kishore saved 60 % of his monthly salary, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "salary_percent_in_s1 = 10\nsalary_percent_in_s2 = 60\n\n\nif salary_percent_in_s1 is None or salary_percent_in_s2 is None:\n print(\"neutral\")\nelif salary_percent_in_s1 == salary_percent_in_s2:\n print(\"Entailment\")\nelif salary_percent_in_s1 != salary_percent_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sujeet joined him 2 months later , investing Rs, \"statement 2\" :Sujeet joined him less than 6 months later , investing Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "joining_month_in_s1 = 2\njoining_month_in_s2 = 0\njoining_month_in_s2 < 6\n\nif joining_month_in_s1 is None or joining_month_in_s2 is None:\n print(\"neutral\")\nelif (joining_month_in_s1 == joining_month_in_s2) or joining_month_in_s1 < 6:\n print(\"Entailment\")\nelif joining_month_in_s1 != joining_month_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Albert borrowed a total of $ 5800 from Brian and Charlie, \"statement 2\" :Albert borrowed a total of $ less than 5800 from Brian and Charlie, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "money_in_s1 = 5800\nmoney_in_s2 = 0\nmoney_in_s2 < 5800\n\n\n\nif money_in_s2 is None or money_in_s1 is None:\n print(\"neutral\")\nelif money_in_s2 == money_in_s1:\n print(\"Entailment\")\nelif money_in_s2 != money_in_s1:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Carina has less than 85 ounces of coffee divided into 5 - and 10 - ounce packages, \"statement 2\" :Carina has 55 ounces of coffee divided into 5 - and 10 - ounce packages, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "coffe_ounce_in_s1 = 0\ncoffe_ounce_in_s1 < 85\ncoffe_ounce_in_s2 = 55\n\n\nif coffe_ounce_in_s1 is None or coffe_ounce_in_s2 is None or coffe_ounce_in_s2 < 85:\n print(\"neutral\")\nelif coffe_ounce_in_s1 == coffe_ounce_in_s2:\n print(\"Entailment\")\nelif coffe_ounce_in_s1 != coffe_ounce_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If 1 / 3 of the passengers on a ship are from North America , 1 / 8 are Europeans , 1 / 5 are from Africa , 1 / 6 are from Asia and the remaining 42 people are citizens of other continents , then how many passengers are on board the ship ?, \"statement 2\" :If 8 / 3 of the passengers on a ship are from North America , 1 / 8 are Europeans , 1 / 5 are from Africa , 1 / 6 are from Asia and the remaining 42 people are citizens of other continents , then how many passengers are on board the ship ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "passenger_s1 = {\n \"North America\":1/3,\n \"Europeans\":1/8,\n \"Africa\":1/5,\n \"Asia\":1/6,\n \"other\":42\n}\npassenger_s2 = {\n \"North America\":8/3,\n \"Europeans\":1/8,\n \"Africa\":1/5,\n \"Asia\":1/6,\n \"other\":42\n}\n\n\n\nif passenger_s1 is None or passenger_s2 is None:\n print(\"neutral\")\nelif passenger_s1 == passenger_s2:\n print(\"Entailment\")\nelif passenger_s2 != passenger_s1:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Jerry wants to raise his average by 2 points , what score must he earn on the fourth test ?, \"statement 2\" :If Jerry wants to raise his average by 5 points , what score must he earn on the fourth test ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jerry_avg_in_s1 = 2\njerry_avg_in_s2 = 5\n\n\nif jerry_avg_in_s1 is None or jerry_avg_in_s2 is None:\n print(\"neutral\")\nelif jerry_avg_in_s2 == jerry_avg_in_s1:\n print(\"Entailment\")\nelif jerry_avg_in_s2 != jerry_avg_in_s1:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": There are 5.0 flowers and 3.0 bees., \"statement 2\" :There are 2.0 fewer bees than flowers, \"options: \" Entailment or contradiction?", + "Output Program": [ + "bees_in_s1 = 3\nbees_in_s2 = 5-2\n\n\nif bees_in_s1 is None or bees_in_s2 is None:\n print(\"neutral\")\nelif (bees_in_s1 == bees_in_s2):\n print(\"Entailment\")\nelif bees_in_s1 != bees_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jack walks in a straight line toward Christina at a constant speed of 5 feet per second and Christina walks in a straight line toward Jack at a constant speed of 7 feet per second, \"statement 2\" :Jack walks in a straight line toward Christina at a constant speed of 4 feet per second and Christina walks in a straight line toward Jack at a constant speed of 7 feet per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jack_speed_in_s1 = 5\njack_speed_in_s2 = 4\nchris_speed_in_s1 = 7\nchris_speed_in_s2 = 7\n\n\nif jack_speed_in_s1 is None or jack_speed_in_s2 is None or chris_speed_in_s1 is None or chris_speed_in_s2 is None:\n print(\"neutral\")\nelif jack_speed_in_s1 == jack_speed_in_s2 and chris_speed_in_s1 == chris_speed_in_s2:\n print(\"Entailment\")\nelif jack_speed_in_s1 != jack_speed_in_s2 or chris_speed_in_s1 != chris_speed_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Caleb spends $ 74.50 on 50 hamburgers for the marching band, \"statement 2\" :Caleb spends $ 74.50 on more than 10 hamburgers for the marching band, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "spend_74_50_hamburger_in_s1 = 50\nspend_74_50_hamburger_in_s2 = 0\nspend_74_50_hamburger_in_s2 > 10\n\n\nif spend_74_50_hamburger_in_s1 is None or spend_74_50_hamburger_in_s2 is None:\n print(\"neutral\")\nelif (spend_74_50_hamburger_in_s1 == spend_74_50_hamburger_in_s2)or spend_74_50_hamburger_in_s1 > 10:\n print(\"Entailment\")\nelif spend_74_50_hamburger_in_s1 != spend_74_50_hamburger_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The Armed Forces Press Committee ( COPREFA ) admitted that the government troops sustained 11 casualties in these clashes , adding that they inflicted three casualties on the rebels ., \"statement 2\" :Three rebels were killed by government troops ., \"options: \" Entailment or neutral?", + "Output Program": [ + "casualties_in_rable_s1 = 3\ncasualties_in_rable_s2 = 3\n\nif casualties_in_rable_s1 is None or casualties_in_rable_s2 is None:\n print(\"neutral\")\nelif (casualties_in_rable_s1 == casualties_in_rable_s2):\n print(\"Entailment\")\nelif casualties_in_rable_s1 != casualties_in_rable_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Caleb spends $ 66.50 on 50 hamburgers for the marching band, \"statement 2\" :Caleb spends $ 66.50 on 80 hamburgers for the marching band, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hamburger_in_s1 = 50\nmoney_spend_in_s1 = 66.50\nhamburger_in_s2 = 80\nmoney_spend_in_s2 = 66.50\n\n\nif hamburger_in_s1 is None or hamburger_in_s2 is None or money_spend_in_s1 is None or money_spend_in_s2 is None:\n print(\"neutral\")\nelif hamburger_in_s1 == hamburger_in_s2 and money_spend_in_s1 == money_spend_in_s2:\n print(\"Entailment\")\nelif hamburger_in_s1 != hamburger_in_s2 or money_spend_in_s1 != money_spend_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nitin borrowed some money at the rate of 6 % p, \"statement 2\" :Nitin borrowed some money at the rate of more than 4 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "interest_rate_in_s1 = 6\ninterest_rate_in_s2 = 0\ninterest_rate_in_s2 > 4\n\n\nif interest_rate_in_s1 is None or interest_rate_in_s2 is None:\n print(\"neutral\")\nelif (interest_rate_in_s1 == interest_rate_in_s2) or interest_rate_in_s1 > 4:\n print(\"Entailment\")\nelif interest_rate_in_s1 != interest_rate_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tom Online revenues for the three months ended June 30 , 2005 were US $ 42.78 mn , an increase of 38.5 % over the same period in 2004 ., \"statement 2\" :Tom Online earned US $ 42.78 mn in three months ., \"options: \" Entailment or neutral?", + "Output Program": [ + "three_months_revenue_in_s1 = 42.78\nthree_months_revenue_in_s2 = 42.78\n\n\nif three_months_revenue_in_s1 is None or three_months_revenue_in_s2 is None:\n print(\"neutral\")\nelif (three_months_revenue_in_s1 == three_months_revenue_in_s2):\n print(\"Entailment\")\nelif three_months_revenue_in_s1 != three_months_revenue_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ratio between the school ages of Neelam and Shaan is 5 : 6 respectively, \"statement 2\" :The ratio between the school ages of Neelam and Shaan is 7 : 6 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nage_ratio_in_s1 = 5/6\nage_ratio_in_s2 = 7/6\n\n\nif age_ratio_in_s1 is None or age_ratio_in_s2 is None:\n print(\"neutral\")\nelif age_ratio_in_s1 == age_ratio_in_s2:\n print(\"Entailment\")\nelif age_ratio_in_s1 != age_ratio_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary needs some meat from the butchers shop a meter away from her house .\nEach step Mary takes is 20 centimeters .\nHow many minutes will it take if each step lasts a minute ?, \"statement 2\" :Mary needs some meat from the butchers shop a meter away from her house . Each step Mary takes is 60 centimeters . How many minutes will it take if each step lasts a minute ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nmarry_step_in_s1 = 20\nmarry_step_in_s2 = 60\n\n\nif marry_step_in_s1 is None or marry_step_in_s2 is None:\n print(\"neutral\")\nelif marry_step_in_s1 == marry_step_in_s2:\n print(\"Entailment\")\nelif marry_step_in_s1 != marry_step_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Yesterday it took Robert 3 hours to drive from City A to City B, \"statement 2\" :Yesterday it took Robert more than 3 hours to drive from City A to City B, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nrobert_time_in_s1 = 3\nrobert_time_in_s2 = 0\nrobert_time_in_s2 > 3\nrobert_time_in_s2 = 4\n\n\n\nif robert_time_in_s1 is None or robert_time_in_s2 is None:\n print(\"neutral\")\nelif robert_time_in_s1 == robert_time_in_s2:\n print(\"Entailment\")\nelif robert_time_in_s1 != robert_time_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In one day , Juan sends Keith two times as many messages as he sends Laurence , and Laurence sends Missy 8 times as many messages as he receives from Juan, \"statement 2\" :In one day , Juan sends Keith two times as many messages as he sends Laurence , and Laurence sends Missy more than 7 times as many messages as he receives from Juan, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "missy_send_message_in_s1 = 8\nmissy_send_message_in_s2 = 0\nmissy_send_message_in_s2 > 7\n\n\nif missy_send_message_in_s1 is None or missy_send_message_in_s2 is None:\n print(\"neutral\")\nelif (missy_send_message_in_s1 == missy_send_message_in_s2) or missy_send_message_in_s1 > 7:\n print(\"Entailment\")\nelif missy_send_message_in_s1 != missy_send_message_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": During a car trip , Maria stopped to rest after she traveled 1 / 2 of the total distance to her destination, \"statement 2\" :During a car trip , Maria stopped to rest after she traveled less than 1 / 2 of the total distance to her destination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nmaria_stopping_distance_in_s1 = 1/2\nmaria_stopping_distance_in_s2 = 1/3\nmaria_stopping_distance_in_s2 < 1/2\n\nif maria_stopping_distance_in_s1 is None or maria_stopping_distance_in_s1 is None:\n print(\"neutral\")\nelif maria_stopping_distance_in_s2 == maria_stopping_distance_in_s1:\n print(\"Entailment\")\nelif maria_stopping_distance_in_s1 != maria_stopping_distance_in_s2 or maria_stopping_distance_in_s2<1/2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Find by how much percentage Raj \u2019 s age\nis more than Hema \u2019 s when Raj will be 20 years old ., \"statement 2\" :Find by how much percentage Raj \u2019 s age is more than Hema \u2019 s when Raj will be 40 years old ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nraj_age_in_s1 = 20\nraj_age_in_s2 = 40\n\nif raj_age_in_s1 is None or raj_age_in_s2 is None:\n print(\"neutral\")\nelif raj_age_in_s1 == raj_age_in_s2:\n print(\"Entailment\")\nelif raj_age_in_s1 != raj_age_in_s2:\n print(\"contradiction\")" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": '' Someone just came in and shot my daughter and husband , '' Flores ' wife frantically told 911 ., \"statement 2\" :Raul Flores , daughter , 9 , shot dead ; wire calls 911, \"options: \" Entailment or neutral?", + "Output Program": [ + "news_s1 = None\nnews_s2 = None\n\nif news_s1 is None or news_s2 is None:\n print('neutral')\n\nelif news_s1 == news_s2:\n print('Entailment')\n\nelif news_s1 != news_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A $ 5,000 reward is offered ., \"statement 2\" :Know something ? Call 641-228-182 . A reward is offered, \"options: \" Entailment or neutral?", + "Output Program": [ + "reward_s1 = 5000\nreward_s2 = None\n\nif reward_s1 is None or reward_s2 is None:\n print('neutral')\n\nelif reward_s1 == reward_s2:\n print('Entailment')\n\nelif reward_s1 != reward_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At Veridux Corporation , there are 250 employees, \"statement 2\" :At Veridux Corporation , there are less than 650 employees, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "employees_s1 = 250\nemployees_s2 = 0\nemployees_s2 < 650\n\nif employees_s1 is None or employees_s2 is None:\n print('neutral')\n\nelif employees_s1 < 650:\n print('Entailment')\n\nelse:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ratio between the number of sheep and the number of horses at the Stewart farm is 2 to 7 , If each horse is fed 230 ounces of horse food per day and the farm needs a total 12,880 ounces of horse food per day , what is the number of sheep in the farm ?, \"statement 2\" :The ratio between the number of sheep and the number of horses at the Stewart farm is more than 2 to 7 , If each horse is fed 230 ounces of horse food per day and the farm needs a total 12,880 ounces of horse food per day , what is the number of sheep in the farm ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stewart_farm_ratio_s1 = 2/7\nstewart_farm_ratio_s2 = (2/7)+0.1\n\nif stewart_farm_ratio_s1 is None or stewart_farm_ratio_s2 is None:\n print('neutral')\n\nelif stewart_farm_ratio_s1 == stewart_farm_ratio_s2:\n print('Entailment')\n\nelif stewart_farm_ratio_s1 != stewart_farm_ratio_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": More than 1.2 million people have since viewed it ., \"statement 2\" :Over 1.2 million people have viewed it on YouTube, \"options: \" Entailment or neutral?", + "Output Program": [ + "youtube_s1 = 1.2+0.1\nyoutube_s2 = 1.2+0.1\n\nif youtube_s1 is None or youtube_s2 is None:\n print('neutral')\n\nelif youtube_s1 == youtube_s2:\n print('Entailment')\n\nelif youtube_s1 != youtube_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joe drives 420 miles at 60 miles per hour , and then he drives the next 120 miles at 40 miles per hour, \"statement 2\" :Joe drives 120 miles at 60 miles per hour , and then he drives the next 120 miles at 40 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "joe_drives_s1 = 420\njoe_drives_s2 = 120\n\nif joe_drives_s1 is None or joe_drives_s2 is None:\n print('neutral')\n\nelif joe_drives_s1 == joe_drives_s2:\n print('Entailment')\n\nelif joe_drives_s1 != joe_drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many seconds does Sandy take to cover a distance of 700 meters , if Sandy runs at a speed of 18 km / hr ?, \"statement 2\" :How many seconds does Sandy take to cover a distance of more than 200 meters , if Sandy runs at a speed of 18 km / hr ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_distance_s1 = 700\nsandy_distance_s2 = 200\n\nif sandy_distance_s1 is None or sandy_distance_s2 is None:\n print('neutral')\n\nelif sandy_distance_s1 > sandy_distance_s2:\n print('Entailment')\n\nelif sandy_distance_s1 != sandy_distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": By how much must Rebecca ' s annual income increase so that it constitutes 55 % of Rebecca and Jimmy ' s combined income ?, \"statement 2\" :By how much must Rebecca ' s annual income increase so that it constitutes less than 55 % of Rebecca and Jimmy ' s combined income ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "income_s1 = 55\nincome_s2 = 55-1 #Less than 55.\n\nif income_s1 is None or income_s2 is None:\n print('neutral')\n\nelif income_s1 == income_s2:\n print('Entailment')\n\nelif income_s1 != income_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were 58.0 geese and 37.0 ducks in the marsh., \"statement 2\" :16.0 more geese were in the marsh, \"options: \" Entailment or contradiction?", + "Output Program": [ + "income_s1 = 55\nincome_s2 = 55-1 #Less than 55.\n\nif income_s1 is None or income_s2 is None:\n print('neutral')\n\nelif income_s1 == income_s2:\n print('Entailment')\n\nelif income_s1 != income_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": -LRB- CNN -RRB- Vince Camuto , the iconic women 's footwear designer and co-founder of Nine West , has died ., \"statement 2\" :Vince Camuto has died at the age of 78, \"options: \" Entailment or neutral?", + "Output Program": [ + "vince_camuto_s1 = None\nvince_camuto_s2 = 78\n\nif vince_camuto_s1 is None or vince_camuto_s2 is None:\n print('neutral')\n\nelif vince_camuto_s1 == vince_camuto_s2:\n print('Entailment')\n\nelif vince_camuto_s1 != vince_camuto_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jake can dig a well in 16 days, \"statement 2\" :Jake can dig a well in less than 66 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jake_dig_s1 = 16\njake_dig_s2 = 66\n\nif jake_dig_s1 is None or jake_dig_s2 is None:\n print('neutral')\n\nelif jake_dig_s1 < jake_dig_s2:\n print('Entailment')\n\nelif jake_dig_s1 >= jake_dig_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The product of Diana ' s age , in years , and a third of Rashid ' s age , in years , is less than 72, \"statement 2\" :The product of Diana ' s age , in years , and a third of Rashid ' s age , in years , is 32, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "diana_age_s1 = None\ndiana_age_s2 = 32\n\nif diana_age_s1 is None or diana_age_s2 is None:\n print('neutral')\n\nelif diana_age_s1 == diana_age_s2:\n print('Entailment')\n\nelif diana_age_s1 != diana_age_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Victor has 15 cups if flour , 16 cups of sugar and 8 cups of milk, \"statement 2\" :Victor has less than 15 cups if flour , 16 cups of sugar and 8 cups of milk, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "victor_flour_s1 = 15\nvictor_flour_s2 = 15-1\n\nif victor_flour_s1 is None or victor_flour_s2 is None:\n print('neutral')\n\nelif victor_flour_s1 == victor_flour_s2:\n print('Entailment')\n\nelif victor_flour_s1 != victor_flour_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mr Yadav spends 60 % of his monthly salary on consumable items and 50 % of the remaining on clothes and transport, \"statement 2\" :Mr Yadav spends 10 % of his monthly salary on consumable items and 50 % of the remaining on clothes and transport, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "yadav_salary_s1 = 60\nyadav_salary_s2 = 10\n\nif yadav_salary_s1 is None or yadav_salary_s2 is None:\n print('neutral')\n\nelif yadav_salary_s1 == yadav_salary_s2:\n print('Entailment')\n\nelif yadav_salary_s1 != yadav_salary_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Exactly 5 / 7 of the ponies have horseshoes , and exactly 2 / 3 of the ponies with horseshoes are from Iceland, \"statement 2\" :Exactly 3 / 7 of the ponies have horseshoes , and exactly 2 / 3 of the ponies with horseshoes are from Iceland, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ponies_horseshows_s1 = 5/7\nponies_horseshows_s2 = 3/7\n\nif ponies_horseshows_s1 is None or ponies_horseshows_s2 is None:\n print('neutral')\n\nelif ponies_horseshows_s1 == ponies_horseshows_s2:\n print('Entailment')\n\nelif ponies_horseshows_s1 != ponies_horseshows_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many hours does it take Little Texas Drilling Company to produce 100 barrels of oil ?, \"statement 2\" :How many hours does it take Little Texas Drilling Company to produce 700 barrels of oil ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "oil_barrels_s1 = 100\noil_barrels_s2 = 700\n\nif oil_barrels_s1 is None or oil_barrels_s2 is None:\n print('neutral')\n\nelif oil_barrels_s1 == oil_barrels_s2:\n print('Entailment')\n\nelif oil_barrels_s1 != oil_barrels_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The 16 NATO members and the 14 countries which used to form the rival Warsaw Pact agreed that there would be significantly less equipment permitted in the area of application in Europe than there was under the original treaty ., \"statement 2\" :The NATO has 16 members ., \"options: \" Entailment or neutral?", + "Output Program": [ + "nato_members_s1 = 16\nnato_members_s2 = 16\n\nif nato_members_s1 is None or nato_members_s2 is None:\n print('neutral')\n\nelif nato_members_s1 == nato_members_s2:\n print('Entailment')\n\nelif nato_members_s1 != nato_members_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Mary received $ 800 more than Harry did , what was the profit made by their business in that year ?, \"statement 2\" :If Mary received $ more than 500 more than Harry did , what was the profit made by their business in that year ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mary_salary_s1 = 800\nmary_salary_s2 = 500\n\nif mary_salary_s1 is None or mary_salary_s2 is None:\n print('neutral')\n\nelif mary_salary_s1 > mary_salary_s2:\n print('Entailment')\n\nelif mary_salary_s1 != mary_salary_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jasmine has a toaster with two slots that toasts one side of each piece of bread at a time , and it takes one minute to do so .\nIf she wants to make 3 pieces of toast , what is the least amount of time she needs to toast them on both sides ?, \"statement 2\" :Jasmine has a toaster with two slots that toasts one side of each piece of bread at a time , and it takes one minute to do so . If she wants to make more than 3 pieces of toast , what is the least amount of time she needs to toast them on both sides ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "piece_of_toast_s1 = 3\npiece_of_toast_s2 = 3+1\n\nif piece_of_toast_s1 is None or piece_of_toast_s2 is None:\n print('neutral')\n\nelif piece_of_toast_s1 == piece_of_toast_s2:\n print('Entailment')\n\nelif piece_of_toast_s1 != piece_of_toast_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary can do a piece of work in 28 days, \"statement 2\" :Mary can do a piece of work in less than 38 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mary_work_s1 = 28\nmary_work_s2 = 38\n\nif mary_work_s1 is None or mary_work_s2 is None:\n print('neutral')\n\nelif mary_work_s1 < mary_work_s2:\n print('Entailment')\n\nelif mary_work_s1 != mary_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In the city of San Durango , 60 people own cats , dogs , or rabbits, \"statement 2\" :In the city of San Durango , more than 40 people own cats , dogs , or rabbits, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "san_durango_pet_s1 = 60\nsan_durango_pet_s2 = 40\n\nif san_durango_pet_s1 is None or san_durango_pet_s2 is None:\n print('neutral')\n\nelif san_durango_pet_s1 > san_durango_pet_s2:\n print('Entailment')\n\nelif san_durango_pet_s1 != san_durango_pet_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Fred and Sam are standing less than 70 miles apart and they start walking in a straight line toward each other at the same time, \"statement 2\" :Fred and Sam are standing 50 miles apart and they start walking in a straight line toward each other at the same time, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "fred_sam_distance_s1 = None\nfred_sam_distance_s2 = 50\n\nif fred_sam_distance_s1 is None or fred_sam_distance_s2 is None:\n print('neutral')\n\nelif fred_sam_distance_s1 == fred_sam_distance_s2:\n print('Entailment')\n\nelif fred_sam_distance_s1 != fred_sam_distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A shoe store sells Adidas shoes for $ 60 each and Puma shoes for $ 50 each, \"statement 2\" :A shoe store sells Adidas shoes for $ 10 each and Puma shoes for $ 50 each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mary_salary_s1 = 60\nmary_salary_s2 = 10\n\nif mary_salary_s1 is None or mary_salary_s2 is None:\n print('neutral')\n\nelif mary_salary_s1 == mary_salary_s2:\n print('Entailment')\n\nelif mary_salary_s1 != mary_salary_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lali builds a tower using only red , green , and blue toy bricks in a ratio of less than 7 : 3 : 1, \"statement 2\" :Lali builds a tower using only red , green , and blue toy bricks in a ratio of 4 : 3 : 1, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tower_colot_ratio_s1 = None\ntower_colot_ratio_s2 = 4/3/1\n\nif tower_colot_ratio_s1 is None or tower_colot_ratio_s2 is None:\n print('neutral')\n\nelif tower_colot_ratio_s1 == tower_colot_ratio_s2:\n print('Entailment')\n\nelif tower_colot_ratio_s1 != tower_colot_ratio_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the boys at Jones Elementary make up less than 60 % of the total school population of x students , what is x ?, \"statement 2\" :If the boys at Jones Elementary make up 20 % of the total school population of x students , what is x ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jones_elementary_boys_s1 = None\njones_elementary_boys_s2 = 20\n\nif jones_elementary_boys_s1 is None or jones_elementary_boys_s2 is None:\n print('neutral')\n\nelif jones_elementary_boys_s1 == jones_elementary_boys_s2:\n print('Entailment')\n\nelif jones_elementary_boys_s1 != jones_elementary_boys_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 24 stations between Ernakulam and Chennai, \"statement 2\" :There are 44 stations between Ernakulam and Chennai, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stations_s1 = 24\nstations_s2 = 44\n\nif stations_s1 is None or stations_s2 is None:\n print('neutral')\n\nelif stations_s1 == stations_s2:\n print('Entailment')\n\nelif stations_s1 != stations_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained more than 36 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained 76 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dacid_marks_s1 = None\ndacid_marks_s2 = 76 + 65 + 82 + 67 + 85\n\nif dacid_marks_s1 is None or dacid_marks_s2 is None:\n print('neutral')\n\nelif dacid_marks_s1 == dacid_marks_s2:\n print('Entailment')\n\nelif dacid_marks_s1 != dacid_marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": NHAI employs 100 men to build a highway of 2 km in 50 days working 8 hours a day, \"statement 2\" :NHAI employs 400 men to build a highway of 2 km in 50 days working 8 hours a day, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "nhai_employee_s1 = 100\nnhai_employee_s2 = 400\n\nif nhai_employee_s1 is None or nhai_employee_s2 is None:\n print('neutral')\n\nelif nhai_employee_s1 == nhai_employee_s2:\n print('Entailment')\n\nelif nhai_employee_s1 != nhai_employee_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 1620 in 8 % stock , Michael earns Rs, \"statement 2\" :more than 1620 in 8 % stock , Michael earns Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "michael_earns_s1 = 1620\nmichael_earns_s2 = 1620+1\n\nif michael_earns_s1 is None or michael_earns_s2 is None:\n print('neutral')\n\nelif michael_earns_s1 == michael_earns_s2:\n print('Entailment')\n\nelif michael_earns_s1 != michael_earns_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": News reports citing local authorities reported 16 deaths linked to E. coli in some raw vegetables ., \"statement 2\" :Media report 16 deaths linked to the outbreak , including 1 in Sweden, \"options: \" Entailment or neutral?", + "Output Program": [ + "sweden_death_s1 = None\nsweden_death_s2 = 1\n\nif sweden_death_s1 is None or sweden_death_s2 is None:\n print('neutral')\n\nelif sweden_death_s1 == sweden_death_s2:\n print('Entailment')\n\nelif sweden_death_s1 != sweden_death_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Sanoop returned 2 t - shirts to the retailer , and the average price of the remaining t - shirts was Rs, \"statement 2\" :If Sanoop returned less than 3 t - shirts to the retailer , and the average price of the remaining t - shirts was Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sanoop_tshirts_s1 = 2\nsanoop_tshirts_s2 = 3\n\nif sanoop_tshirts_s1 is None or sanoop_tshirts_s2 is None:\n print('neutral')\n\nelif sanoop_tshirts_s1 < sanoop_tshirts_s2:\n print('Entailment')\n\nelif sanoop_tshirts_s1 != sanoop_tshirts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Fred and Sam are standing 40 miles apart and they start walking in a straight line toward each other at the same time, \"statement 2\" :Fred and Sam are standing 20 miles apart and they start walking in a straight line toward each other at the same time, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "walking_s1 = 40\nwalking_s2 = 20\n\nif walking_s1 is None or walking_s2 is None:\n print('neutral')\n\nelif walking_s1 == walking_s2:\n print('Entailment')\n\nelif walking_s1 != walking_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Employers created 144,000 new payroll jobs in August as the unemployment rate dipped to 5.4 percent , a modest improvement over the 5.5 percent jobless rate in July , the Labor Department reported Friday ., \"statement 2\" :The Labor Department said this sector has added nearly 1 of every 5 of the new jobs created during the last 12 months ., \"options: \" Entailment or neutral?", + "Output Program": [ + "payroll_jobs_s1 = 144000\npayroll_jobs_s2 = None\n\nif payroll_jobs_s1 is None or payroll_jobs_s2 is None:\n print('neutral')\n\nelif payroll_jobs_s1 == payroll_jobs_s2:\n print('Entailment')\n\nelif payroll_jobs_s1 != payroll_jobs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A restaurant baked 5.0 cakes during lunch and sold 6.0 during dinner today and the restaurant baked 3.0 cakes yesterday , \"statement 2\" :2.0 cakes are left , \"options: \" Entailment or contradiction?", + "Output Program": [ + "cakes_left_s1 = 5+3-6\ncakes_left_s2 = 2\n\nif cakes_left_s1 is None or cakes_left_s2 is None:\n print('neutral')\n\nelif cakes_left_s1 == cakes_left_s2:\n print('Entailment')\n\nelif cakes_left_s1 != cakes_left_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What will Sally have to sell each item for to generate a less than 85 % profit ?, \"statement 2\" :What will Sally have to sell each item for to generate a 15 % profit ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sally_profit_s1 = None\nsally_profit_s2 = 15\n\nif sally_profit_s1 is None or sally_profit_s2 is None:\n print('neutral')\n\nelif sally_profit_s1 == sally_profit_s2:\n print('Entailment')\n\nelif sally_profit_s1 != sally_profit_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In 1956 Accardo won the Geneva Competition and in 1958 became the first prize winner of the Paganini Competition in Genoa . He has recorded Paganini 's famous 24 Caprices ( re-recorded in 1999 ) for solo violin and was the first to record all six of the Paganini Violin Concertos ., \"statement 2\" :Accardo composed 24 Caprices ., \"options: \" Entailment or neutral?", + "Output Program": [ + "caprices_s1 = 24\ncaprices_s2 = None\n\nif caprices_s1 is None or caprices_s2 is None:\n print('neutral')\n\nelif caprices_s1 == caprices_s2:\n print('Entailment')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Bill needs to walk from the corner of less than 3 nd Rd and 3 rd Ave to the corner of 8 th Rd and 7 th Ave in the shortest possible time , how many different routes could he take ?, \"statement 2\" :If Bill needs to walk from the corner of 2 nd Rd and 3 rd Ave to the corner of 8 th Rd and 7 th Ave in the shortest possible time , how many different routes could he take ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "routes_s1 = None\nroutes_s2 = 2\n\nif routes_s1 is None or routes_s2 is None:\n print('neutral')\n\nelif routes_s1 == routes_s2:\n print('Entailment')\n\nelif routes_s1 != routes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The event provided meals to more than 1,000 New Yorkers impacted by Superstorm Sandy and was a collaborative effort between Food Bank for New York City , Feeding America , the Food Network , the Cooking Channel and Southern Wine and Spirits of America ., \"statement 2\" :50 Cent served food to New Yorkers affected by Superstorm Sandy, \"options: \" Entailment or neutral?", + "Output Program": [ + "superstorme_s1 = 1000\nsuperstorme_s2 = None\n\nif superstorme_s1 is None or superstorme_s2 is None:\n print('neutral')\n\nelif superstorme_s1 == superstorme_s2:\n print('Entailment')\n\nelif superstorme_s1 != superstorme_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In an exam , Amar scored less than 74 percent , Bhavan scored 36 percent and Chetan 44 percent, \"statement 2\" :In an exam , Amar scored 64 percent , Bhavan scored 36 percent and Chetan 44 percent, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "aman_score_s1 = None\naman_score_s2 = 4\n\nif aman_score_s1 is None or aman_score_s2 is None:\n print('neutral')\n\nelif aman_score_s1 == aman_score_s2:\n print('Entailment')\n\nelif aman_score_s1 != aman_score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The meeting marks the first between Kim and a top official from China since the flareup between the two Koreas ., \"statement 2\" :The meeting between the two nations is the first since the flareup, \"options: \" Entailment or neutral?", + "Output Program": [ + "meeting_nations_s1 = 2\nmeeting_nations_s2 = 2\n\nif meeting_nations_s1 is None or meeting_nations_s2 is None:\n print('neutral')\n\nelif meeting_nations_s1 == meeting_nations_s2:\n print('Entailment')\n\nelif meeting_nations_s1 != meeting_nations_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the average speed of the whole journey was more than 16 mph , then what is Tom ' s speed driving from B to C in miles per hour ?, \"statement 2\" :If the average speed of the whole journey was 36 mph , then what is Tom ' s speed driving from B to C in miles per hour ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tom_speed_s1 = None\ntom_speed_s2 = 36\n\nif tom_speed_s1 is None or tom_speed_s2 is None:\n print('neutral')\n\nelif tom_speed_s1 == tom_speed_s2:\n print('Entailment')\n\nelif tom_speed_s1 != tom_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If twice the age of Sunil is more than Syam ' s age by 4 years , what is Sunil ' s age ?, \"statement 2\" :If twice the age of Sunil is more than Syam ' s age by more than 2 years , what is Sunil ' s age ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sunil_shyam_age_s1 = 4\nsunil_shyam_age_s2 = 2\n\nif sunil_shyam_age_s1 is None or sunil_shyam_age_s2 is None:\n print('neutral')\n\nelif sunil_shyam_age_s1 > sunil_shyam_age_s2:\n print('Entailment')\n\nelif sunil_shyam_age_s1 != sunil_shyam_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Since you ' re nice , you give John 7 baseball cards, \"statement 2\" :Since you ' re nice , you give John more than 7 baseball cards, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_cards_s1 = 7\njohn_cards_s2 = 7+1\n\nif john_cards_s1 is None or john_cards_s2 is None:\n print('neutral')\n\nelif john_cards_s1 == john_cards_s2:\n print('Entailment')\n\nelif john_cards_s1 != john_cards_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill works as a waitress at the local diner where she earns an hourly wage of $ 4.00 per hour and a standard tip rate of 15 % of the cost of the orders she serves, \"statement 2\" :Jill works as a waitress at the local diner where she earns an hourly wage of $ 4.00 per hour and a standard tip rate of 85 % of the cost of the orders she serves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "serves_cost_s1 = 15\nserves_cost_s2 = 85\n\nif serves_cost_s1 is None or serves_cost_s2 is None:\n print('neutral')\n\nelif serves_cost_s1 == serves_cost_s2:\n print('Entailment')\n\nelif serves_cost_s1 != serves_cost_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The average marks scored by Ganesh in English , Science , Mathematics and History is less than less than 88 from that scored by him in English , History , Geography and Mathematics, \"statement 2\" :The average marks scored by Ganesh in English , Science , Mathematics and History is less than 18 from that scored by him in English , History , Geography and Mathematics, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ganesh_average_s1 = None\nganesh_average_s2 = 18\n\nif ganesh_average_s1 is None or ganesh_average_s2 is None:\n print('neutral')\n\nelif ganesh_average_s1 == ganesh_average_s2:\n print('Entailment')\n\nelif ganesh_average_s1 != ganesh_average_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Investigators found a map in his possessions that included 34 locations marked as targets, \"statement 2\" :He said investigators found a map that included 34 locations marked as targets in McQuilliams ' possessions ., \"options: \" Entailment or neutral?", + "Output Program": [ + "location_target_s1 = 34\nlocation_target_s2 = 34\n\nif location_target_s1 is None or location_target_s2 is None:\n print('neutral')\n\nelif location_target_s1 == location_target_s2:\n print('Entailment')\n\nelif location_target_s1 != location_target_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A train leaves Delhi at 9 a, \"statement 2\" :A train leaves Delhi at more than 8 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "delhi_train_s1 = 9\ndelhi_train_s2 = 8\n\nif delhi_train_s1 is None or delhi_train_s2 is None:\n print('neutral')\n\nelif delhi_train_s1 > delhi_train_s2:\n print('Entailment')\n\nelif delhi_train_s1 != delhi_train_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If KING is coded as less than 67 and MASS is coded as 29 Then DOG is coded as, \"statement 2\" :If KING is coded as 17 and MASS is coded as 29 Then DOG is coded as, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "king_coded_s1 = None\nking_coded_s2 = 17\n\nif king_coded_s1 is None or king_coded_s2 is None:\n print('neutral')\n\nelif king_coded_s1 == king_coded_s2:\n print('Entailment')\n\nelif king_coded_s1 != king_coded_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 9000 which he and Dave earned at the end of 1 years, \"statement 2\" :more than 4000 which he and Dave earned at the end of 1 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dave_earned_s1 = 9000\ndave_earned_s2 = 4000\n\nif dave_earned_s1 is None or dave_earned_s2 is None:\n print('neutral')\n\nelif dave_earned_s1 > dave_earned_s2:\n print('Entailment')\n\nelif dave_earned_s1 != dave_earned_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": An investigation was launched into the Flight 370 matter , with Malaysian and aviation authorities reviewing video and other documentation to try to identify not only who the passengers were that used the stolen passports but how the illegal passports cleared security ., \"statement 2\" :Two passengers on the missing Malaysian Airlines flight were traveling on stolen passports, \"options: \" Entailment or neutral?", + "Output Program": [ + "flight_investigtion_s1 = None\nflight_investigtion_s2 = None\n\nif flight_investigtion_s1 is None or flight_investigtion_s2 is None:\n print('neutral')\n\nelif flight_investigtion_s1 == flight_investigtion_s2:\n print('Entailment')\n\nelif flight_investigtion_s1 != flight_investigtion_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": One hour after Matthew started waking from w to y , a distance of 45 km , Johnny started walking along the same road from y to w, \"statement 2\" :One hour after Matthew started waking from w to y , a distance of less than 55 km , Johnny started walking along the same road from y to w, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "matthew_distance_s1 = 45\nmatthew_distance_s2 = 55\n\nif matthew_distance_s1 is None or matthew_distance_s2 is None:\n print('neutral')\n\nelif matthew_distance_s1 < matthew_distance_s2:\n print('Entailment')\n\nelif matthew_distance_s1 != matthew_distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In 2003 , the number of girls attending Jefferson High School was equal to the number of boys, \"statement 2\" :In 6003 , the number of girls attending Jefferson High School was equal to the number of boys, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "high_school_girls_s1 = 2003\nhigh_school_girls_s2 = 6003\n\nif high_school_girls_s1 is None or high_school_girls_s2 is None:\n print('neutral')\n\nelif high_school_girls_s1 == high_school_girls_s2:\n print('Entailment')\n\nelif high_school_girls_s1 != high_school_girls_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rahim bought more than 40 books for Rs, \"statement 2\" :Rahim bought 50 books for Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rahim_book_s1 = None\nrahim_book_s2 = 50\n\nif rahim_book_s1 is None or rahim_book_s2 is None:\n print('neutral')\n\nelif rahim_book_s1 == rahim_book_s2:\n print('Entailment')\n\nelif rahim_book_s1 != rahim_book_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The plan could send nearly 3,000 troops , another U.S. military official familiar with the proposal said ., \"statement 2\" :Plan could send nearly 3,000 troops , source says, \"options: \" Entailment or neutral?", + "Output Program": [ + "troops_s1 = 3000\ntroops_s2 = 3000\n\nif troops_s1 is None or troops_s2 is None:\n print('neutral')\n\nelif troops_s1 == troops_s2:\n print('Entailment')\n\nelif troops_s1 != troops_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Joe goes with her 6 years old twin brothers , and they each took 3 rides in total, \"statement 2\" :If Joe goes with her more than 1 years old twin brothers , and they each took 3 rides in total, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "joe_brother_s1 = 6\njoe_brother_s2 = 1\n\nif joe_brother_s1 is None or joe_brother_s2 is None:\n print('neutral')\n\nelif joe_brother_s1 > joe_brother_s2:\n print('Entailment')\n\nelif joe_brother_s1 != joe_brother_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At the end of ' n ' years , Sandy got back 5 times the original investment, \"statement 2\" :At the end of ' n ' years , Sandy got back more than 3 times the original investment, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_investment_s1 = 5\nsandy_investment_s2 = 3\n\nif sandy_investment_s1 is None or sandy_investment_s2 is None:\n print('neutral')\n\nelif sandy_investment_s1 > sandy_investment_s2:\n print('Entailment')\n\nelif sandy_investment_s1 != sandy_investment_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Hong Kong ( CNN ) -- Chinese police have arrested nearly 1,000 suspected members of a banned religious group , state media reported ., \"statement 2\" :Almost 1,000 members of a banned religious group arrested in China, \"options: \" Entailment or neutral?", + "Output Program": [ + "members_arrested_s1 = 1000\nmembers_arrested_s2 = 1000\n\nif members_arrested_s1 is None or members_arrested_s2 is None:\n print('neutral')\n\nelif members_arrested_s1 == members_arrested_s2:\n print('Entailment')\n\nelif members_arrested_s1 != members_arrested_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sally has 9.0 orange balloons and 4.0 blue balloons and she found 2.0 more of the orange balloons , \"statement 2\" :Sally has 13.0 orange balloons now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "sally_ballons_s1 = 9+2\nsally_ballons_s2 = 13\n\nif sally_ballons_s1 is None or sally_ballons_s2 is None:\n print('neutral')\n\nelif sally_ballons_s1 == sally_ballons_s2:\n print('Entailment')\n\nelif sally_ballons_s1 != sally_ballons_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The spotted-eagle ray weighed about 75 to 80 pounds and had a 6-foot wingspan , Pino said ., \"statement 2\" :Spotted eagle ray weighed 75 to 80 pounds , official says, \"options: \" Entailment or neutral?", + "Output Program": [ + "ray_weighed_s1 = 75\nray_weighed_s2 = 75\n\nif ray_weighed_s1 is None or ray_weighed_s2 is None:\n print('neutral')\n\nelif ray_weighed_s1 == ray_weighed_s2:\n print('Entailment')\n\nelif ray_weighed_s1 != ray_weighed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Among those charged are 158 members and associates of MS-13 , with 105 others allegedly belonging to other gangs ., \"statement 2\" :Gang sweep nabs 158 members and associates of notorious MS-13 gang , among others, \"options: \" Entailment or neutral?", + "Output Program": [ + "charged_members_s1 = 158\ncharged_members_s2 = 158\n\nif charged_members_s1 is None or charged_members_s2 is None:\n print('neutral')\n\nelif charged_members_s1 == charged_members_s2:\n print('Entailment')\n\nelif charged_members_s1 != charged_members_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": David obtained more than 56 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"statement 2\" :David obtained 76 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "david_marks_s1 = None\ndavid_marks_s2 = 76 + 65 + 82 + 67 + 85\n\nif david_marks_s1 is None or david_marks_s2 is None:\n print('neutral')\n\nelif david_marks_s1 == david_marks_s2:\n print('Entailment')\n\nelif david_marks_s1 != david_marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Paul runs the first leg of the course in less than 82 seconds, \"statement 2\" :Paul runs the first leg of the course in 22 seconds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "paul_runs_s1 = None\npaul_runs_s2 = 22\n\nif paul_runs_s1 is None or paul_runs_s2 is None:\n print('neutral')\n\nelif paul_runs_s1 == paul_runs_s2:\n print('Entailment')\n\nelif paul_runs_s1 != paul_runs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Srinivas saves one coin of more than 4 on first day of the week , three coins of 5 on the second day of the week . Five coins of 5 on third day and so on, \"statement 2\" :Srinivas saves one coin of 5 on first day of the\nweek , three coins of 5 on the second day of the week .\nFive coins of 5 on third day and so on, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "srinivas_coin_s1 = None\nsrinivas_coin_s2 = 5\n\nif srinivas_coin_s1 is None or srinivas_coin_s2 is None:\n print('neutral')\n\nelif srinivas_coin_s1 == srinivas_coin_s2:\n print('Entailment')\n\nelif srinivas_coin_s1 != srinivas_coin_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Each week , Harry is paid x dollars per hour for the first 18 hours and 1.5 x dollars for each additional hour worked that week, \"statement 2\" :Each week , Harry is paid x dollars per hour for the first less than 68 hours and 1.5 x dollars for each additional hour worked that week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "harry_paid_dollar_s1 = 18\nharry_paid_dollar_s2 = 68\n\nif harry_paid_dollar_s1 is None or harry_paid_dollar_s2 is None:\n print('neutral')\n\nelif harry_paid_dollar_s1 < harry_paid_dollar_s2:\n print('Entailment')\n\nelif harry_paid_dollar_s1 != harry_paid_dollar_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Overland Park , Kansas ( CNN ) -- The man accused of killing three people at two Jewish-affiliated facilities in Kansas made no secret of his racist views , writing letters to newspapers and inviting people to white-supremacist meetings at his home , say those who knew him ., \"statement 2\" :Cross is accused of killing three people at two Jewish-affiliated facilities, \"options: \" Entailment or neutral?", + "Output Program": [ + "jewish_affiliated_s1 = None\njewish_affiliated_s2 = 3\n\nif jewish_affiliated_s1 is None or jewish_affiliated_s2 is None:\n print('neutral')\n\nelif jewish_affiliated_s1 == jewish_affiliated_s2:\n print('Entailment')\n\nelif jewish_affiliated_s1 != jewish_affiliated_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Victor has 15 cups if flour , 16 cups of sugar and 8 cups of milk, \"statement 2\" :Victor has less than 65 cups if flour , 16 cups of sugar and 8 cups of milk, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "victor_flour_s1 = 15\nvictor_flour_s2 = 65\n\nif victor_flour_s1 is None or victor_flour_s2 is None:\n print('neutral')\n\nelif victor_flour_s1 < victor_flour_s2:\n print('Entailment')\n\nelif victor_flour_s1 != victor_flour_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is more than 4 : 4 ?, \"statement 2\" :What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is 8 : 4 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "murali_speed_s1 = None\nmurali_speed_s2 = 8/4\n\nif murali_speed_s1 is None or murali_speed_s2 is None:\n print('neutral')\n\nelif murali_speed_s1 == murali_speed_s2:\n print('Entailment')\n\nelif murali_speed_s1 != murali_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": less than 2000 , what is Isabella ' s capital ?, \"statement 2\" :1000 , what is Isabella ' s capital ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "isabella_capital_s1 = None\nisabella_capital_s2 = 1000\n\nif isabella_capital_s1 is None or isabella_capital_s2 is None:\n print('neutral')\n\nelif isabella_capital_s1 == isabella_capital_s2:\n print('Entailment')\n\nelif isabella_capital_s1 != isabella_capital_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The Loneliest Road in America , U.S. Route 50 , Nevada, \"statement 2\" :Nevada stretch of U.S. Route 50 dubbed '' The Loneliest Road in America '', \"options: \" Entailment or neutral?", + "Output Program": [ + "road_route_s1 = 50\nroad_route_s2 = 50\n\nif road_route_s1 is None or road_route_s2 is None:\n print('neutral')\n\nelif road_route_s1 == road_route_s2:\n print('Entailment')\n\nelif road_route_s1 != road_route_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": But Vettel roared back through the field to finish sixth and deny title rival Fernando Alonso by three points with the Spaniard finishing the race in second place ., \"statement 2\" :Fernando Alonso finishes second and loses out by three points, \"options: \" Entailment or neutral?", + "Output Program": [ + "fernando_loses_s1 = None\nfernando_loses_s2 = 3\n\nif fernando_loses_s1 is None or fernando_loses_s2 is None:\n print('neutral')\n\nelif fernando_loses_s1 == fernando_loses_s2:\n print('Entailment')\n\nelif fernando_loses_s1 != fernando_loses_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Faiza has more than 5 purses , she gives 3 purse as gift, \"statement 2\" :Faiza has 7 purses , she gives 3 purse as gift, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "faiza_purses_s1 = None\nfaiza_purses_s2 = 7\n\nif faiza_purses_s1 is None or faiza_purses_s2 is None:\n print('neutral')\n\nelif faiza_purses_s1 == faiza_purses_s2:\n print('Entailment')\n\nelif faiza_purses_s1 != faiza_purses_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Dravid paid a total of $ less than 88 , excluding sales tax , to rent the tool , for how many hours did she rent it ?, \"statement 2\" :If Dravid paid a total of $ 38 , excluding sales tax , to rent the tool , for how many hours did she rent it ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dravid_paid_s1 = None\ndravid_paid_s2 = 38\n\nif dravid_paid_s1 is None or dravid_paid_s2 is None:\n print('neutral')\n\nelif dravid_paid_s1 == dravid_paid_s2:\n print('Entailment')\n\nelif dravid_paid_s1 != dravid_paid_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ayesha ' s father was less than 60 years of age when she was born while her mother was 32 years old when her brother six years younger to her was born, \"statement 2\" :Ayesha ' s father was 40 years of age when she was born while her mother was 32 years old when her brother six years younger to her was born, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "father_age_s1 = None\nfather_age_s2 = 40\n\nif father_age_s1 is None or father_age_s2 is None:\n print('neutral')\n\nelif father_age_s1 == father_age_s2:\n print('Entailment')\n\nelif father_age_s1 != father_age_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": While driving from City A to City B , Cara drives at a constant speed of 30 miles per hour, \"statement 2\" :While driving from City A to City B , Cara drives at a constant speed of less than 30 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cara_drives_s1 = 30\ncara_drives_s2 = 30-1 #Assuming less than 30.\n \nif cara_drives_s1 is None or cara_drives_s2 is None:\n print('neutral')\n\nelif cara_drives_s1 == cara_drives_s2:\n print('Entailment')\n\nelif cara_drives_s1 != cara_drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Angela \u2019 s grade was in the more than 40 th percentile out of 80 grades in her class, \"statement 2\" :Angela \u2019 s grade was in the 90 th percentile out of 80 grades in her class, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "angela_grade_s1 = None\nangela_grade_s2 = 90\n\nif angela_grade_s1 is None or angela_grade_s2 is None:\n print('neutral')\n\nelif angela_grade_s1 == angela_grade_s2:\n print('Entailment')\n\nelif angela_grade_s1 != angela_grade_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Kim can do a work in more than 1 days while David can do the same work in 2 days, \"statement 2\" :Kim can do a work in 3 days while David can do the same work in 2 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kim_work_s1 = None\nkim_work_s2 = 3\n\nif kim_work_s1 is None or kim_work_s2 is None:\n print('neutral')\n\nelif kim_work_s1 == kim_work_s2:\n print('Entailment')\n\nelif kim_work_s1 != kim_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": more than 4 % people of a village in Sri Lanka died by bombardment , 15 % of the remainder left the village on account of fear, \"statement 2\" :5 % people of a village in Sri Lanka died by bombardment , 15 % of the remainder left the village on account of fear, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bombardment_people_s1 = None\nbombardment_people_s2 = 5\n\nif bombardment_people_s1 is None or bombardment_people_s2 is None:\n print('neutral')\n\nelif bombardment_people_s1 == bombardment_people_s2:\n print('Entailment')\n\nelif bombardment_people_s1 != bombardment_people_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Robin uploaded 35.0 pictures from her phone and 5.0 from her camera to facebook, and she sorted the pics into 5.0 different albums with the same amount of pics in each album, \"statement 2\" :8.0 pictures were in each of the albums, \"options: \" Entailment or contradiction?", + "Output Program": [ + "robin_album_s1 = (35+5)/5\nrobin_album_s2 = 8\n\nif robin_album_s1 is None or robin_album_s2 is None:\n print('neutral')\n\nelif robin_album_s1 == robin_album_s2:\n print('Entailment')\n\nelif robin_album_s1 != robin_album_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": During the friendly match , the AC Milan midfielder had told the referee three times he was being abused ., \"statement 2\" :The German-born Boateng had told the referee three times he was being abused, \"options: \" Entailment or neutral?", + "Output Program": [ + "complained_refree_s1 = None\ncomplained_refree_s2 = 3\n\nif complained_refree_s1 is None or complained_refree_s2 is None:\n print('neutral')\n\nelif complained_refree_s1 == complained_refree_s2:\n print('Entailment')\n\nelif complained_refree_s1 != complained_refree_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Amanda goes to the toy store to buy less than 7 ball and 3 different board games, \"statement 2\" :Amanda goes to the toy store to buy 1 ball and 3 different board games, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amanda_ball_s1 = None\namanda_ball_s2 = 1\n\nif amanda_ball_s1 is None or amanda_ball_s2 is None:\n print('neutral')\n\nelif amanda_ball_s1 == amanda_ball_s2:\n print('Entailment')\n\nelif amanda_ball_s1 != amanda_ball_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alok ordered 16 chapatis , 5 plates of rice , 7 plates of mixed vegetable and 6 ice - cream cups, \"statement 2\" :Alok ordered less than 86 chapatis , 5 plates of rice , 7 plates of mixed vegetable and 6 ice - cream cups, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "alok_chapatis_s1 = 16\nalok_chapatis_s2 = 86\n\nif alok_chapatis_s1 is None or alok_chapatis_s2 is None:\n print('neutral')\n\nelif alok_chapatis_s1 < alok_chapatis_s2:\n print('Entailment')\n\nelif alok_chapatis_s1 != alok_chapatis_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": After 5 years , Arun ' s age will be 25 years, \"statement 2\" :After 7 years , Arun ' s age will be 25 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "arun_age_s1 = 5\narun_age_s2 = 7\n\nif arun_age_s1 is None or arun_age_s2 is None:\n print('neutral')\n\nelif arun_age_s1 == arun_age_s2:\n print('Entailment')\n\nelif arun_age_s1 != arun_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Kamal will complete work in 20 days, \"statement 2\" :Kamal will complete work in more than 20 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kamal_work_s1 = 20\nkamal_work_s2 = 20+1 #Being more than 20.\n\nif kamal_work_s1 is None or kamal_work_s2 is None:\n print('neutral')\n\nelif kamal_work_s1 == kamal_work_s2:\n print('Entailment')\n\nelif kamal_work_s1 != kamal_work_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A restaurant served 5.0 cakes during lunch and 6.0 during dinner today and the restaurant served 3.0 cakes yesterday , \"statement 2\" :16.0 cakes were served in total , \"options: \" Entailment or contradiction?", + "Output Program": [ + "cakes_served_s1 = 5+6\ncakes_served_s2 = 16\n\nif cakes_served_s1 is None or cakes_served_s2 is None:\n print('neutral')\n\nelif cakes_served_s1 == cakes_served_s2:\n print('Entailment')\n\nelif cakes_served_s1 != cakes_served_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Present ages of Sameer and Anand are in the ratio of less than 6 : 4 respectively, \"statement 2\" :Present ages of Sameer and Anand are in the ratio of 5 : 4 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sameer_anand_age_s1 = None\nsameer_anand_age_s2 = 5/4\n\nif sameer_anand_age_s1 is None or sameer_anand_age_s2 is None:\n print('neutral')\n\nelif sameer_anand_age_s1 == sameer_anand_age_s2:\n print('Entailment')\n\nelif sameer_anand_age_s1 != sameer_anand_age_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": We ordered 21.0 pizzas and each pizza has 8.0 slices, \"statement 2\" :164.0 slices of pizza are there altogether, \"options: \" Entailment or contradiction?", + "Output Program": [ + "pizza_slices_s1 = 21*8\npizza_slices_s2 = 164\n\nif pizza_slices_s1 is None or pizza_slices_s2 is None:\n print('neutral')\n\nelif pizza_slices_s1 == pizza_slices_s2:\n print('Entailment')\n\nelif pizza_slices_s1 != pizza_slices_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ratio of men to women in the Snyder community choir is less than 7 to 3, \"statement 2\" :The ratio of men to women in the Snyder community choir is 4 to 3, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "snyder_ratio_s1 = None\nsnyder_ratio_s2 = 4/3\n\nif snyder_ratio_s1 is None or snyder_ratio_s2 is None:\n print('neutral')\n\nelif snyder_ratio_s1 == snyder_ratio_s2:\n print('Entailment')\n\nelif snyder_ratio_s1 != snyder_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Martin bought 10 concert tickets , some at the full price of $ 2.00 per ticket , and some at a discounted price of $ 1.60 per ticket, \"statement 2\" :Martin bought 30 concert tickets , some at the full price of $ 2.00 per ticket , and some at a discounted price of $ 1.60 per ticket, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "concert_ticket_s1 = 10\nconcert_ticket_s2 = 30\n\nif concert_ticket_s1 is None or concert_ticket_s2 is None:\n print('neutral')\n\nelif concert_ticket_s1 == concert_ticket_s2:\n print('Entailment')\n\nelif concert_ticket_s1 != concert_ticket_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Andrea played the game , getting at least one score of each of 1 , 2 , 3 , 4 , and 5 , and never getting the same score in consecutive steps, \"statement 2\" :Andrea played the game , getting at least one score of each of more than 1 , 2 , 3 , 4 , and 5 , and never getting the same score in consecutive steps, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "andrea_game_s1 = [1,2,3,4,5]\nandrea_game_s2 = [1,2,3,4,5,6]\n\nif andrea_game_s1 is None or andrea_game_s2 is None:\n print('neutral')\n\nelif len(andrea_game_s1) == len(andrea_game_s2):\n print('Entailment')\n\nelif len(andrea_game_s1) != len(andrea_game_s2):\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jack had framed 24 photographs taken by Octavia , and 12 photographs taken by other photographers, \"statement 2\" :Jack had framed less than 84 photographs taken by Octavia , and 12 photographs taken by other photographers, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "framed_photographs_s1 = 24\nframed_photographs_s2 = 84\n\nif framed_photographs_s1 is None or framed_photographs_s2 is None:\n print('neutral')\n\nelif framed_photographs_s1 < framed_photographs_s2:\n print('Entailment')\n\nelif framed_photographs_s1 != framed_photographs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy gets 3 marks for each correct sum and loses 2 marks for each incorrect sum, \"statement 2\" :Sandy gets less than 3 marks for each correct sum and loses 2 marks for each incorrect sum, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_marks_s1 = 3\nsandy_marks_s2 = 3 - 1 #Less than 3\n\nif sandy_marks_s1 is None or sandy_marks_s2 is None:\n print('neutral')\n\nelif sandy_marks_s1 == sandy_marks_s2:\n print('Entailment')\n\nelif sandy_marks_s1 != sandy_marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy grew 6.0 carrots and Sam took 3.0 carrots, \"statement 2\" :Sandy has 3.0 carrots left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "sandy_carrot_s1 = 6-3\nsandy_carrot_s2 = 3\n\nif sandy_carrot_s1 is None or sandy_carrot_s2 is None:\n print('neutral')\n\nelif sandy_carrot_s1 == sandy_carrot_s2:\n print('Entailment')\n\nelif sandy_carrot_s1 != sandy_carrot_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 5535 find the share of Sravan ., \"statement 2\" :less than 7535 find the share of Sravan ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sravan_share_s1 = 5535\nsravan_share_s2 = 7535\n\nif sravan_share_s1 is None or sravan_share_s2 is None:\n print('neutral')\n\nelif sravan_share_s1 < sravan_share_s2:\n print('Entailment')\n\nelif sravan_share_s1 != sravan_share_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Each week , James is paid x dollars per per hour for the first 40 hours and 2 x dollars for each additional hour worked that week, \"statement 2\" :Each week , James is paid x dollars per per hour for the first more than 40 hours and 2 x dollars for each additional hour worked that week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "james_paid_s1 = 40\njames_paid_s2 = 40+1\n\nif james_paid_s1 is None or james_paid_s2 is None:\n print('neutral')\n\nelif james_paid_s1 == james_paid_s2:\n print('Entailment')\n\nelif james_paid_s1 != james_paid_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": The ratio of men to women in the Snyder community choir is 4 to 5, \"statement 2\" :The ratio of men to women in the Snyder community choir is more than 3 to 5, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "snyder_woman_s1 = 4\nsnyder_woman_s2 = 3\n\nif snyder_woman_s1 is None or snyder_woman_s2 is None:\n print('neutral')\n\nelif snyder_woman_s1 > snyder_woman_s2:\n print('Entailment')\n\nelif snyder_woman_s1 != snyder_woman_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John ' s Bank ' s saving amount is decreased less than 42 % due to loan payment and current balance is Rs, \"statement 2\" :John ' s Bank ' s saving amount is decreased 12 % due to loan payment and current balance is Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_saviong_s1 = None\njohn_saviong_s2 = 12\n\nif john_saviong_s1 is None or john_saviong_s2 is None:\n print('neutral')\n\nelif john_saviong_s1 == john_saviong_s2:\n print('Entailment')\n\nelif john_saviong_s1 != john_saviong_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How much loss would Indu has suffered had she given it to Bindu for less than 7 years at 4 % per annum simple interest ?, \"statement 2\" :How much loss would Indu has suffered had she given it to Bindu for 2 years at 4 % per annum simple interest ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "indu_loss_s1 = None\nindu_loss_s2 = 2\n\nif indu_loss_s1 is None or indu_loss_s2 is None:\n print('neutral')\n\nelif indu_loss_s1 == indu_loss_s2:\n print('Entailment')\n\nelif indu_loss_s1 != indu_loss_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Teresa jogged 25.0 kilometers at 5.0 kilometers per hour, \"statement 2\" :Teresa jogged for 5.0 hours, \"options: \" Entailment or contradiction?", + "Output Program": [ + "teresa_jogged_s1 = 25/5\nteresa_jogged_s2 = 5\n\nif teresa_jogged_s1 is None or teresa_jogged_s2 is None:\n print('neutral')\n\nelif teresa_jogged_s1 == teresa_jogged_s2:\n print('Entailment')\n\nelif teresa_jogged_s1 != teresa_jogged_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Assuming that Karen drives at an average speed of 60 mph and Tom drives at an average speed of 45 mph , how many H miles will Tom drive before Karen wins the bet ?, \"statement 2\" :Assuming that Karen drives at an average speed of more than 20 mph and Tom drives at an average speed of 45 mph , how many H miles will Tom drive before Karen wins the bet ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "karen_speed_s1 = 60\nkaren_speed_s2 = 40\n\nif karen_speed_s1 is None or karen_speed_s2 is None:\n print('neutral')\n\nelif karen_speed_s1 > karen_speed_s2:\n print('Entailment')\n\nelif karen_speed_s1 != karen_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": When Professor Wang looked at the rosters for this term ' s classes , she saw that the roster for her economics class ( E ) had less than 76 names , the roster for her marketing class ( M ) had 28 , and the roster for her statistics class ( S ) had 18, \"statement 2\" :When Professor Wang looked at the rosters for this term ' s classes , she saw that the roster for her economics class ( E ) had 16 names , the roster for her marketing class ( M ) had 28 , and the roster for her statistics class ( S ) had 18, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "economy_class_s1 = None\neconomy_class_s2 = 16\n\nif economy_class_s1 is None or economy_class_s2 is None:\n print('neutral')\n\nelif economy_class_s1 == economy_class_s2:\n print('Entailment')\n\nelif economy_class_s1 != economy_class_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many possible ways can 1 girls ( Rebecca , Kate , Ashley ) go on a date with 3 boys ( Peter , Kyle , Sam ) ?, \"statement 2\" :How many possible ways can less than 7 girls ( Rebecca , Kate , Ashley ) go on a date with 3 boys ( Peter , Kyle , Sam ) ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "girls_date_s1 = 3\ngirls_date_s2 = 7\n\nif girls_date_s1 is None or girls_date_s2 is None:\n print('neutral')\n\nelif girls_date_s1 < girls_date_s2:\n print('Entailment')\n\nelif girls_date_s1 != girls_date_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill is dividing her less than 66 - person class into two teams of equal size for a basketball game, \"statement 2\" :Jill is dividing her 16 - person class into two teams of equal size for a basketball game, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jill_class_divide_s1 = None\njill_class_divide_s2 = 16\n\nif jill_class_divide_s1 is None or jill_class_divide_s2 is None:\n print('neutral')\n\nelif jill_class_divide_s1 == jill_class_divide_s2:\n print('Entailment')\n\nelif jill_class_divide_s1 != jill_class_divide_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the number of such passengers that used Miami Airport was less than 5 / 4 the number that used Kennedy Airport and 3 times the number that used Logan Airport , approximately how many millions of these passengers used Logan Airport that year ?, \"statement 2\" :If the number of such passengers that used Miami Airport was 1 / 4 the number that used Kennedy Airport and 3 times the number that used Logan Airport , approximately how many millions of these passengers used Logan Airport that year ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miami_airport_people_s1 = None\nmiami_airport_people_s2 = 1/4\n\nif miami_airport_people_s1 is None or miami_airport_people_s2 is None:\n print('neutral')\n\nelif miami_airport_people_s1 == miami_airport_people_s2:\n print('Entailment')\n\nelif miami_airport_people_s1 != miami_airport_people_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many minutes does it take Sharuk to type 25 words if he types at the rate of 5 words per minute ?, \"statement 2\" :How many minutes does it take Sharuk to type 65 words if he types at the rate of 5 words per minute ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "word_typed_s1 = 25\nword_typed_s2 = 65\n\nif word_typed_s1 is None or word_typed_s2 is None:\n print('neutral')\n\nelif word_typed_s1 == word_typed_s2:\n print('Entailment')\n\nelif word_typed_s1 != word_typed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Melanie picked 7.0 plums and 4.0 oranges from the orchard and Sam gave her 3.0 plums, \"statement 2\" :She has 14.0 plums now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "melaine_plums_s1 = 7+3\nmelaine_plums_s2 = 14\n\nif melaine_plums_s1 is None or melaine_plums_s2 is None:\n print('neutral')\n\nelif melaine_plums_s1 == melaine_plums_s2:\n print('Entailment')\n\nelif melaine_plums_s1 != melaine_plums_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many liters of blue paint must be added to 24 liters of Fuchsia to change it to Mauve paint ?, \"statement 2\" :How many liters of blue paint must be added to less than 74 liters of Fuchsia to change it to Mauve paint ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "blue_paint_s1 = 24\nblue_paint_s2 = 74\n\nif blue_paint_s1 is None or blue_paint_s2 is None:\n print('neutral')\n\nelif blue_paint_s1 < blue_paint_s2:\n print('Entailment')\n\nelif blue_paint_s1 != blue_paint_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the distance between their homes is 60 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"statement 2\" :If the distance between their homes is more than 60 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_between_home_s1 = 60\ndistance_between_home_s2 = 60+1\n\nif distance_between_home_s1 is None or distance_between_home_s2 is None:\n print('neutral')\n\nelif distance_between_home_s1 == distance_between_home_s2:\n print('Entailment')\n\nelif distance_between_home_s1 != distance_between_home_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shekar scored more than 46 , 65 , 82 , 67 and 95 marks in Mathematics , Science , Social studies , English and Biology respectively, \"statement 2\" :Shekar scored 76 , 65 , 82 , 67 and 95 marks in Mathematics , Science , Social studies , English and Biology respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shekhar_marks_s1 = None\nshekhar_marks_s2 = 76 + 65 + 82 + 67 + 95\n\nif shekhar_marks_s1 is None or shekhar_marks_s2 is None:\n print('neutral')\n\nelif shekhar_marks_s1 == shekhar_marks_s2:\n print('Entailment')\n\nelif shekhar_marks_s1 != shekhar_marks_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He will be less than 8 / 3 times as old as Tom 6 years hence, \"statement 2\" :He will be 5 / 3 times as old as Tom 6 years hence, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_ratio_s1 = None\nage_ratio_s2 = 5/3\n\nif age_ratio_s1 is None or age_ratio_s2 is None:\n print('neutral')\n\nelif age_ratio_s1 == age_ratio_s2:\n print('Entailment')\n\nelif age_ratio_s1 != age_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many seconds does Sandy take to cover a distance of more than 100 meters , if Sandy runs at a speed of 18 km / hr ?, \"statement 2\" :How many seconds does Sandy take to cover a distance of 600 meters , if Sandy runs at a speed of 18 km / hr ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_distance_seconds_s1 = None\nsandy_distance_seconds_s2 = 600\n\nif sandy_distance_seconds_s1 is None or sandy_distance_seconds_s2 is None:\n print('neutral')\n\nelif sandy_distance_seconds_s1 == sandy_distance_seconds_s2:\n print('Entailment')\n\nelif sandy_distance_seconds_s1 != sandy_distance_seconds_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John traveled 80 % of the way from Yellow - town to Green - fields by train at an average speed of 80 miles per hour, \"statement 2\" :John traveled more than 10 % of the way from Yellow - town to Green - fields by train at an average speed of 80 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "yellow_train_s1 = 80\nyellow_train_s2 = 10\n\nif yellow_train_s1 is None or yellow_train_s2 is None:\n print('neutral')\n\nelif yellow_train_s1 > yellow_train_s2:\n print('Entailment')\n\nelif yellow_train_s1 != yellow_train_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the ratio of their ages is less than 8 : 9 , how old is Sandy ?, \"statement 2\" :If the ratio of their ages is 7 : 9 , how old is Sandy ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_age_s1 = None\nratio_age_s2 = 7/9\n\nif ratio_age_s1 is None or ratio_age_s2 is None:\n print('neutral')\n\nelif ratio_age_s1 == ratio_age_s2:\n print('Entailment')\n\nelif ratio_age_s1 != ratio_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many oranges must Mary put back so that the average price of the pieces of fruit that she keeps is 45 \u00a2 ?, \"statement 2\" :How many oranges must Mary put back so that the average price of the pieces of fruit that she keeps is less than 75 \u00a2 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "fruit_prince_s1 = 45\nfruit_prince_s2 = 75\n\nif fruit_prince_s1 is None or fruit_prince_s2 is None:\n print('neutral')\n\nelif fruit_prince_s1 < fruit_prince_s2:\n print('Entailment')\n\nelif fruit_prince_s1 != fruit_prince_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If , five years from now , the sum E of their ages will be 51 , how old is Stephanie ?, \"statement 2\" :If , five years from now , the sum E of their ages will be less than 71 , how old is Stephanie ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stephaine_s1 = 51\nstephaine_s2 = 71\n\nif stephaine_s1 is None or stephaine_s2 is None:\n print('neutral')\n\nelif stephaine_s1 < stephaine_s2:\n print('Entailment')\n\nelif stephaine_s1 != stephaine_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In my bungalow in Bangalore I have a beautiful rose garden . The four sides of the garden are known to be less than 70 , 16 , 12 and 10 rods, \"statement 2\" :In my bungalow in Bangalore I have a beautiful rose garden .\nThe four sides of the garden are known to be 20 , 16 , 12 and 10 rods, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "garden_side_s1 = None\ngarden_side_s2 = 20 + 16 + 12 + 10\n\nif garden_side_s1 is None or garden_side_s2 is None:\n print('neutral')\n\nelif garden_side_s1 == garden_side_s2:\n print('Entailment')\n\nelif garden_side_s1 != garden_side_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Renu can do a piece of work in 8 days , but with the help of her friend Suma , she can do it in 3 days, \"statement 2\" :Renu can do a piece of work in more than 7 days , but with the help of her friend Suma , she can do it in 3 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "renu_work_s1 = 8\nrenu_work_s2 = 7\n\nif renu_work_s1 is None or renu_work_s2 is None:\n print('neutral')\n\nelif renu_work_s1 > renu_work_s2:\n print('Entailment')\n\nelif renu_work_s1 != renu_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Working independently , Ann can do\nthe same job in 9 hours, \"statement 2\" :Working independently , Ann can do the same job in 7 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ann_work_s1 = 9\nann_work_s2 = 7\n\nif ann_work_s1 is None or ann_work_s2 is None:\n print('neutral')\n\nelif ann_work_s1 > ann_work_s2:\n print('Entailment')\n\nelif ann_work_s1 != ann_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The earthquake is blamed for killing more than 212,000 people , injuring 300,000 and leaving more than 1 million homeless in the city of 3 million and surrounding communities ., \"statement 2\" :Quake killed more than 212,000 people , left more than 1 million homeless in city , nearby, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_killed_earthquake_s1 = 212000\npeople_killed_earthquake_s2 = 212000\n\nif people_killed_earthquake_s1 is None or people_killed_earthquake_s2 is None:\n print('neutral')\n\nelif people_killed_earthquake_s1 == people_killed_earthquake_s2:\n print('Entailment')\n\nelif people_killed_earthquake_s1 != people_killed_earthquake_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In how many ways can you seat 4 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"statement 2\" :In how many ways can you seat more than 4 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_on_bench_s1 = 4\npeople_on_bench_s2 = 4+1 #More than 4.\n\nif people_on_bench_s1 is None or people_on_bench_s2 is None:\n print('neutral')\n\nelif people_on_bench_s1 == people_on_bench_s2:\n print('Entailment')\n\nelif people_on_bench_s1 != people_on_bench_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Guna has 8 flavors of ice cream in him parlor, \"statement 2\" :Guna has more than 8 flavors of ice cream in him parlor, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "flavor_of_incecream_s1 = 8\nflavor_of_incecream_s2 = 8+1 #More than 8.\n\nif flavor_of_incecream_s1 is None or flavor_of_incecream_s2 is None:\n print('neutral')\n\nelif flavor_of_incecream_s1 == flavor_of_incecream_s2:\n print('Entailment')\n\nelif flavor_of_incecream_s1 != flavor_of_incecream_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Yesterday it took Robert more than 1 hours to drive from City A to City B, \"statement 2\" :Yesterday it took Robert 4 hours to drive from City A to City B, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "robert_driver_s1 = None\nrobert_driver_s2 = 4\n\nif robert_driver_s1 is None or robert_driver_s2 is None:\n print('neutral')\n\nelif robert_driver_s1 == robert_driver_s2:\n print('Entailment')\n\nelif robert_driver_s1 != robert_driver_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the boys at Jones Elementary make up more than 60 % of the total school population of x students , what is x ?, \"statement 2\" :If the boys at Jones Elementary make up 70 % of the total school population of x students , what is x ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jones_boys_s1 = None\njones_boys_s2 = 70\n\nif jones_boys_s1 is None or jones_boys_s2 is None:\n print('neutral')\n\nelif jones_boys_s1 == jones_boys_s2:\n print('Entailment')\n\nelif jones_boys_s1 != jones_boys_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Suresh can complete a job in 15 hours, \"statement 2\" :Suresh can complete a job in less than 75 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_killed_earthquake_s1 = 15\npeople_killed_earthquake_s2 = 75\n\nif people_killed_earthquake_s1 is None or people_killed_earthquake_s2 is None:\n print('neutral')\n\nelif people_killed_earthquake_s1 < people_killed_earthquake_s2:\n print('Entailment')\n\nelif people_killed_earthquake_s1 != people_killed_earthquake_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The federal government allows taxpayers a $ 500 exemption for housing victims of a Midwestern disaster ., \"statement 2\" :If you house a victim of a Midwestern disaster , IRS offers $ 500 tax exemption, \"options: \" Entailment or neutral?", + "Output Program": [ + "tax_exemption_s1 = 500\ntax_exemption_s2 = 500\n\nif tax_exemption_s1 is None or tax_exemption_s2 is None:\n print('neutral')\n\nelif tax_exemption_s1 == tax_exemption_s2:\n print('Entailment')\n\nelif tax_exemption_s1 != tax_exemption_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nitin borrowed some money at the rate of 6 % p, \"statement 2\" :Nitin borrowed some money at the rate of more than 3 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "money_borrowed_rate_s1 = 6\nmoney_borrowed_rate_s2 = 3\n\nif money_borrowed_rate_s1 is None or money_borrowed_rate_s2 is None:\n print('neutral')\n\nelif money_borrowed_rate_s1 > money_borrowed_rate_s2:\n print('Entailment')\n\nelif money_borrowed_rate_s1 != money_borrowed_rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The New Iberia Research Center has received more than $ 37 million in grants from the NIH , according to the center 's Web site ., \"statement 2\" :New Iberia Research Center in Louisiana houses more than 6,500 primates, \"options: \" Entailment or neutral?", + "Output Program": [ + "grants_from_nih_s1 = 37\ngrants_from_nih_s2 = None\n\nif grants_from_nih_s1 is None or grants_from_nih_s2 is None:\n print('neutral')\n\nelif grants_from_nih_s1 == grants_from_nih_s2:\n print('Entailment')\n\nelif grants_from_nih_s1 != grants_from_nih_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Two twins sisters Sita and Geeta were standing back to back and suddenly they started running in opposite directions for less than 20 km each, \"statement 2\" :Two twins sisters Sita and Geeta were standing back to back and suddenly they started running in opposite directions for 10 km each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sita_geeta_distance_s1 = None\nsita_geeta_distance_s2 = 10\n\nif sita_geeta_distance_s1 is None or sita_geeta_distance_s2 is None:\n print('neutral')\n\nelif sita_geeta_distance_s1 == sita_geeta_distance_s2:\n print('Entailment')\n\nelif sita_geeta_distance_s1 != sita_geeta_distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jack wants to take more than 3 apples, \"statement 2\" :Jack wants to take 5 apples, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jack_apples_s1 = None\njack_apples_s2 = 5\n\nif jack_apples_s1 is None or jack_apples_s2 is None:\n print('neutral')\n\nelif jack_apples_s1 == jack_apples_s2:\n print('Entailment')\n\nelif jack_apples_s1 != jack_apples_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In an exam , Amar scored 64 percent , Bhavan scored 36 percent and Chetan 44 percent, \"statement 2\" :In an exam , Amar scored more than 14 percent , Bhavan scored 36 percent and Chetan 44 percent, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amar_score_s1 = 64\namar_score_s2 = 14\n\nif amar_score_s1 is None or amar_score_s2 is None:\n print('neutral')\n\nelif amar_score_s1 > amar_score_s2:\n print('Entailment')\n\nelif amar_score_s1 != amar_score_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In the biology lab of ` ` Jefferson ' ' High School there are 5.4 * 10 ^ 6 germs , equally divided among 10,800 Petri dishes, \"statement 2\" :In the biology lab of ` ` Jefferson ' ' High School there are 5.4 * more than 10 ^ 6 germs , equally divided among 10,800 Petri dishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "germs_in_bilogy_lab_s1 = 5.4*(10**6)\ngerms_in_bilogy_lab_s2 = 5.4*(10**6)+1 #More than that number.\n\nif germs_in_bilogy_lab_s1 is None or germs_in_bilogy_lab_s2 is None:\n print('neutral')\n\nelif germs_in_bilogy_lab_s1 == germs_in_bilogy_lab_s2:\n print('Entailment')\n\nelif germs_in_bilogy_lab_s1 != germs_in_bilogy_lab_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": According to the statement , 281 of the 3,050 passengers and 22 of 1,165 crew members of Explorer of the Seas reported vomiting and diarrhea ., \"statement 2\" :281 passengers and 22 crew on Explorer of the Seas report gastrointestinal problems, \"options: \" Entailment or neutral?", + "Output Program": [ + "passengers_s1 = 281\npassengers_s2 = 281\n\nif passengers_s1 is None or passengers_s2 is None:\n print('neutral')\n\nelif passengers_s1 == passengers_s2:\n print('Entailment')\n\nelif passengers_s1 != passengers_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Andy solves problems 75 to 125 inclusive in a Math exercise, \"statement 2\" :Andy solves problems 25 to 125 inclusive in a Math exercise, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "math_problem_s1 = 75\nmath_problem_s2 = 25\n\nif math_problem_s1 is None or math_problem_s2 is None:\n print('neutral')\n\nelif math_problem_s1 == math_problem_s2:\n print('Entailment')\n\nelif math_problem_s1 != math_problem_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A train leaves Delhi at more than 4 a, \"statement 2\" :A train leaves Delhi at 9 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "train_leaves_s1 = None\ntrain_leaves_s2 = 9\n\nif train_leaves_s1 is None or train_leaves_s2 is None:\n print('neutral')\n\nelif train_leaves_s1 == train_leaves_s2:\n print('Entailment')\n\nelif train_leaves_s1 != train_leaves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Morgan Construction has less than 5 Senior Managing Directors and 4 Managing Directors, \"statement 2\" :Morgan Construction has 4 Senior Managing Directors and 4 Managing Directors, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "megan_director_s1 = None\nmegan_director_s2 = 4\n\nif megan_director_s1 is None or megan_director_s2 is None:\n print('neutral')\n\nelif megan_director_s1 == megan_director_s2:\n print('Entailment')\n\nelif megan_director_s1 != megan_director_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": One day , Raviraj left home and cycled 20 Km southwards , turned right and cycled 10 km and turned right and cycled 20 Km and turned left and cycled 20 Km, \"statement 2\" :One day , Raviraj left home and cycled 80 Km southwards , turned right and cycled 10 km and turned right and cycled 20 Km and turned left and cycled 20 Km, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "raviraj_ditance_s1 = 20\nraviraj_ditance_s2 = 80\n\nif raviraj_ditance_s1 is None or raviraj_ditance_s2 is None:\n print('neutral')\n\nelif raviraj_ditance_s1 == raviraj_ditance_s2:\n print('Entailment')\n\nelif raviraj_ditance_s1 != raviraj_ditance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are less than 88 stations between Hyderabad and Bangalore, \"statement 2\" :There are 18 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hyderabad_banglore_s1 = None\nhyderabad_banglore_s2 = 18\n\nif hyderabad_banglore_s1 is None or hyderabad_banglore_s2 is None:\n print('neutral')\n\nelif hyderabad_banglore_s1 == hyderabad_banglore_s2:\n print('Entailment')\n\nelif hyderabad_banglore_s1 != hyderabad_banglore_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jack and Christina are standing 150 feet apart on a level surface, \"statement 2\" :Jack and Christina are standing less than 450 feet apart on a level surface, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "feet_apart_surface_s1 = 150\nfeet_apart_surface_s2 = 450\n\nif feet_apart_surface_s1 is None or feet_apart_surface_s2 is None:\n print('neutral')\n\nelif feet_apart_surface_s1 < feet_apart_surface_s2:\n print('Entailment')\n\nelif feet_apart_surface_s1 != feet_apart_surface_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alka bought 15 books for Rs, \"statement 2\" :Alka bought less than 75 books for Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "books_bought_s1 = 15\nbooks_bought_s2 = 75\n\nif books_bought_s1 is None or books_bought_s2 is None:\n print('neutral')\n\nelif books_bought_s1 < books_bought_s2:\n print('Entailment')\n\nelif books_bought_s1 != books_bought_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Last year 28 members of a certain club traveled to England , 28 members traveled to France , and 30 members traveled to Italy, \"statement 2\" :Last year more than 28 members of a certain club traveled to England , 28 members traveled to France , and 30 members traveled to Italy, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "members_of_certain_club_s1 = 28\nmembers_of_certain_club_s2 = 28+1 #More than 28.\n\nif members_of_certain_club_s1 is None or members_of_certain_club_s2 is None:\n print('neutral')\n\nelif members_of_certain_club_s1 == members_of_certain_club_s2:\n print('Entailment')\n\nelif members_of_certain_club_s1 != members_of_certain_club_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Only Jay Z 's nine nominations topped them ., \"statement 2\" :Jay Z gets nine nominations, \"options: \" Entailment or neutral?", + "Output Program": [ + "jayz_nomination_s1 = 9\njayz_nomination_s2 = 9\n\nif jayz_nomination_s1 is None or jayz_nomination_s2 is None:\n print('neutral')\n\nelif jayz_nomination_s1 == jayz_nomination_s2:\n print('Entailment')\n\nelif jayz_nomination_s1 != jayz_nomination_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Calculate the average mark scored by Belinda if she had the following scores in an examination : more than 46 , 50 , 60 , 67 and 79 marks ( out of 100 ) in English Language , Spanish Language , Social Studies , Fine Art , and Physical Education respectively ?, \"statement 2\" :Calculate the average mark scored by Belinda if she had the following scores in an examination : 86 , 50 , 60 , 67 and 79 marks ( out of 100 ) in English Language , Spanish Language , Social Studies , Fine Art , and Physical Education respectively ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "belinda_average_s1 = None\nbelinda_average_s2 = 86 + 50 + 60 + 67 + 79\n\nif belinda_average_s1 is None or belinda_average_s2 is None:\n print('neutral')\n\nelif belinda_average_s1 == belinda_average_s2:\n print('Entailment')\n\nelif belinda_average_s1 != belinda_average_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The pilot of a small aircraft with a 40 - gallon fuel tank wants to fly to Cleveland , which is 480 miles away, \"statement 2\" :The pilot of a small aircraft with a more than 10 - gallon fuel tank wants to fly to Cleveland , which is 480 miles away, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "fuel_tank_s1 = 40\nfuel_tank_s2 = 10\n\nif fuel_tank_s1 is None or fuel_tank_s2 is None:\n print('neutral')\n\nelif fuel_tank_s1 > fuel_tank_s2:\n print('Entailment')\n\nelif fuel_tank_s1 != fuel_tank_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained more than 53 , 69 , 92 , 64 and 82 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained 73 , 69 , 92 , 64 and 82 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dacid_marks_s1 = None\ndacid_marks_s2 = 73 + 69 + 92 + 64 + 82\n\nif dacid_marks_s1 is None or dacid_marks_s2 is None:\n print('neutral')\n\nelif dacid_marks_s1 == dacid_marks_s2:\n print('Entailment')\n\nelif dacid_marks_s1 != dacid_marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is 2 : 3 ?, \"statement 2\" :What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is 8 : 3 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_distance_s1 = 2/3\naverage_distance_s2 = 8/3\n\nif average_distance_s1 is None or average_distance_s2 is None:\n print('neutral')\n\nelif average_distance_s1 == average_distance_s2:\n print('Entailment')\n\nelif average_distance_s1 != average_distance_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Sally had 760.0 quarters in her bank and she spent 418.0 of her quarters , \"statement 2\" :She has 342.0 quarters now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "sally_quarters_s1 = 760-418\nsally_quarters_s2 = 342\n\nif sally_quarters_s1 is None or sally_quarters_s2 is None:\n print('neutral')\n\nelif sally_quarters_s1 == sally_quarters_s2:\n print('Entailment')\n\nelif sally_quarters_s1 != sally_quarters_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Third-placed Valencia lost ground after being held to a 1-1 draw at Sporting Gijon , needing a second-half equalizer from Juan Mata ., \"statement 2\" :Third-placed Valencia lose ground following 1-1 draw away to Sporting Gijon, \"options: \" Entailment or neutral?", + "Output Program": [ + "sporting_gijon_s1 = 1/1\nsporting_gijon_s2 = 1/1\n\nif sporting_gijon_s1 is None or sporting_gijon_s2 is None:\n print('neutral')\n\nelif sporting_gijon_s1 == sporting_gijon_s2:\n print('Entailment')\n\nelif sporting_gijon_s1 != sporting_gijon_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many seconds does Sandy take to cover a distance of 600 meters , if Sandy runs at a speed of 18 km / hr ?, \"statement 2\" :How many seconds does Sandy take to cover a distance of less than 600 meters , if Sandy runs at a speed of 18 km / hr ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_distance_s1 = 600\nsandy_distance_s2 = 600-1 #Less than 600.\n\nif sandy_distance_s1 is None or sandy_distance_s2 is None:\n print('neutral')\n\nelif sandy_distance_s1 == sandy_distance_s2:\n print('Entailment')\n\nelif sandy_distance_s1 != sandy_distance_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Wendy uploaded 79.0 pictures to Facebook on Monday and she uploaded 44.0 pictures to Facebook on Tuesday, then split all the pictures into 5.0 different albums, \"statement 2\" :20.1 pictures were in each album , \"options: \" Entailment or contradiction?", + "Output Program": [ + "wendy_uploaded_s1 = (79+44)/5\nwendy_uploaded_s2 = 20.1\n\nif wendy_uploaded_s1 is None or wendy_uploaded_s2 is None:\n print('neutral')\n\nelif wendy_uploaded_s1 == wendy_uploaded_s2:\n print('Entailment')\n\nelif wendy_uploaded_s1 != wendy_uploaded_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He works at it for 20 days and then Rajesh finished it in 30 days, \"statement 2\" :He works at it for more than 20 days and then Rajesh finished it in 30 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "works_day_s1 = 20\nworks_day_s2 = 20+1 # More than 1.\n\nif works_day_s1 is None or works_day_s2 is None:\n print('neutral')\n\nelif works_day_s1 == works_day_s2:\n print('Entailment')\n\nelif works_day_s1 != works_day_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Maddie has less than 8 apples , if she give 3 to mike , how many does she have left ?, \"statement 2\" :Maddie has 6 apples , if she give 3 to mike , how many does she have left ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "maddie_apple_s1 = None\nmaddie_apple_s2 = 6\n\nif maddie_apple_s1 is None or maddie_apple_s2 is None:\n print('neutral')\n\nelif maddie_apple_s1 == maddie_apple_s2:\n print('Entailment')\n\nelif maddie_apple_s1 != maddie_apple_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": David obtained 36 , 35 , 42 , 57 and 55 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"statement 2\" :David obtained 66 , 35 , 42 , 57 and 55 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "david_average_marks_s1 = (36 + 35 + 42 + 57 + 55)/5\ndavid_average_marks_s2 = (66 + 35 + 42 + 57 + 55)/5\n\nif david_average_marks_s1 is None or david_average_marks_s2 is None:\n print('neutral')\n\nelif david_average_marks_s1 == david_average_marks_s2:\n print('Entailment')\n\nelif david_average_marks_s1 != david_average_marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dawson has to secure 30 % marks to clear his exam of class 8 th .\nHe got 30 marks and failed by 36 marks .\nWhat is the maximum marks ?, \"statement 2\" :Dawson has to secure more than 20 % marks to clear his exam of class 8 th . He got 30 marks and failed by 36 marks . What is the maximum marks ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dawson_marks_s1 = 30\ndawson_marks_s2 = 20\n\nif dawson_marks_s1 is None or dawson_marks_s2 is None:\n print('neutral')\n\nelif dawson_marks_s1 > dawson_marks_s2:\n print('Entailment')\n\nelif dawson_marks_s1 != dawson_marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lee Colle insures its students for thefts up to $ less than 2000, \"statement 2\" :Lee Colle insures its students for thefts up to $ 1000, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "lee_insures_s1 = None\nlee_insures_s2 = 1000\n\nif lee_insures_s1 is None or lee_insures_s2 is None:\n print('neutral')\n\nelif lee_insures_s1 == lee_insures_s2:\n print('Entailment')\n\nelif lee_insures_s1 != lee_insures_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Dravid paid a total of $ 38 , excluding sales tax , to rent the tool , for how many hours did she rent it ?, \"statement 2\" :If Dravid paid a total of $ less than 88 , excluding sales tax , to rent the tool , for how many hours did she rent it ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dravid_rent_s1 = 38\ndravid_rent_s2 = 88\n\nif dravid_rent_s1 is None or dravid_rent_s2 is None:\n print('neutral')\n\nelif dravid_rent_s1 < dravid_rent_s2:\n print('Entailment')\n\nelif dravid_rent_s1 != dravid_rent_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The latest congressional action authorizes $ 1 million in additional funding to '' provide for a swift completion '' of the U.S. Department of Agriculture 's probe into the Rancho Feeding Corporation ., \"statement 2\" :The House OKs $ 1 million for a USDA investigation of a California slaughterhouse, \"options: \" Entailment or neutral?", + "Output Program": [ + "swift_funding_s1 = 1\nswift_funding_s2 = 1\n\nif swift_funding_s1 is None or swift_funding_s2 is None:\n print('neutral')\n\nelif swift_funding_s1 == swift_funding_s2:\n print('Entailment')\n\nelif swift_funding_s1 != swift_funding_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ganesh covers the distance from X to Y at an average speed of more than 50 Km / hr, \"statement 2\" :Ganesh covers the distance from X to Y at an average speed of 60 Km / hr, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ganesh_distance_s1 = None\nganesh_distance_s2 = 60\n\nif ganesh_distance_s1 is None or ganesh_distance_s2 is None:\n print('neutral')\n\nelif ganesh_distance_s1 == ganesh_distance_s2:\n print('Entailment')\n\nelif ganesh_distance_s1 != ganesh_distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ratio of present ages of Nisha and Shilpa is 7 : 8 respectively, \"statement 2\" :The ratio of present ages of Nisha and Shilpa is more than 3 : 8 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "nisha_age_ratio_s1 = 7/8\nnisha_age_ratio_s2 = 3/8\n\nif nisha_age_ratio_s1 is None or nisha_age_ratio_s2 is None:\n print('neutral')\n\nelif nisha_age_ratio_s1 > nisha_age_ratio_s2:\n print('Entailment')\n\nelif nisha_age_ratio_s1 != nisha_age_ratio_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sobha ' s father was 38 years of age when she was born while her mother was 36 years old when her brother four years younger to her was born, \"statement 2\" :Sobha ' s father was more than 28 years of age when she was born while her mother was 36 years old when her brother four years younger to her was born, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sobha_father_age_s1 = 38\nsobha_father_age_s2 = 28\n\nif sobha_father_age_s1 is None or sobha_father_age_s2 is None:\n print('neutral')\n\nelif sobha_father_age_s1 > sobha_father_age_s2:\n print('Entailment')\n\nelif sobha_father_age_s1 != sobha_father_age_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Adolfo made a tower with 35.0 blocks and he added 65.0 more blocks to the tower, \"statement 2\" :101.0 total blocks are in the tower now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "adolfo_tower_s1 = 35+65\nadolfo_tower_s2 = 101\n\nif adolfo_tower_s1 is None or adolfo_tower_s2 is None:\n print('neutral')\n\nelif adolfo_tower_s1 == adolfo_tower_s2:\n print('Entailment')\n\nelif adolfo_tower_s1 != adolfo_tower_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the distance between their homes is more than 70 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"statement 2\" :If the distance between their homes is 80 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "home_distance_s1 = None\nhome_distance_s2 = 80\n\nif home_distance_s1 is None or home_distance_s2 is None:\n print('neutral')\n\nelif home_distance_s1 == home_distance_s2:\n print('Entailment')\n\nelif home_distance_s1 != home_distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 35.0 bottle caps in every box of Beverly's bottle cap collection, and the bottle caps are organized into 7.0 boxes, \"statement 2\" :245.0 bottle caps are there in total, \"options: \" Entailment or contradiction?", + "Output Program": [ + "beverly_bottle_cap_s1 = 35*7\nbeverly_bottle_cap_s2 = 245\n\nif beverly_bottle_cap_s1 is None or beverly_bottle_cap_s2 is None:\n print('neutral')\n\nelif beverly_bottle_cap_s1 == beverly_bottle_cap_s2:\n print('Entailment')\n\nelif beverly_bottle_cap_s1 != beverly_bottle_cap_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tim and Stacy need to select seats in a row of chairs that are numbered in order from 1 to 5, \"statement 2\" :Tim and Stacy need to select seats in a row of chairs that are numbered in order from less than 1 to 5, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "seats_row_s1 = [1,2,3,4,5]\nseats_row_s2 = [1,2,3,4]\n\nif seats_row_s1 is None or seats_row_s2 is None:\n print('neutral')\n\nelif len(seats_row_s1) == len(seats_row_s2):\n print('Entailment')\n\nelif len(seats_row_s1) != len(seats_row_s2):\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In the city of San Durango , 60 people own cats , dogs , or rabbits, \"statement 2\" :In the city of San Durango , more than 60 people own cats , dogs , or rabbits, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "san_durango_pets_s1 = 60\nsan_durango_pets_s2 = 60+1 #More than 60.\n\nif san_durango_pets_s1 is None or san_durango_pets_s2 is None:\n print('neutral')\n\nelif san_durango_pets_s1 == san_durango_pets_s2:\n print('Entailment')\n\nelif san_durango_pets_s1 != san_durango_pets_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Veena ranks less than 84 rd from the top in a class of 182, \"statement 2\" :Veena ranks 44 rd from the top in a class of 182, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "veena_ranks_s1 = None\nveena_ranks_s2 = 44\n\nif veena_ranks_s1 is None or veena_ranks_s2 is None:\n print('neutral')\n\nelif veena_ranks_s1 == veena_ranks_s2:\n print('Entailment')\n\nelif veena_ranks_s1 != veena_ranks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Canadian health officials have confirmed three cases of Enterovirus D68 in British Columbia ., \"statement 2\" :Canada confirms three cases in British Columbia, \"options: \" Entailment or neutral?", + "Output Program": [ + "canada_enterovirus_cases_s1 = 3\ncanada_enterovirus_cases_s2 = 3\n\nif canada_enterovirus_cases_s1 is None or canada_enterovirus_cases_s2 is None:\n print('neutral')\n\nelif canada_enterovirus_cases_s1 == canada_enterovirus_cases_s2:\n print('Entailment')\n\nelif canada_enterovirus_cases_s1 != canada_enterovirus_cases_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mona and Sona go around a circular track of length 400 m on a bike at speeds of 18 kmph and 36 kmph, \"statement 2\" :Mona and Sona go around a circular track of length less than 400 m on a bike at speeds of 18 kmph and 36 kmph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "circular_track_s1 = 400\ncircular_track_s2 = 400+1 #More than 400.\n\nif circular_track_s1 is None or circular_track_s2 is None:\n print('neutral')\n\nelif circular_track_s1 == circular_track_s2:\n print('Entailment')\n\nelif circular_track_s1 != circular_track_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Suresh can complete a job in 15 hours, \"statement 2\" :Suresh can complete a job in more than 15 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "suresh_job_hours_s1 = 15\nsuresh_job_hours_s2 = 15+1 #More than 1.\n\nif suresh_job_hours_s1 is None or suresh_job_hours_s2 is None:\n print('neutral')\n\nelif suresh_job_hours_s1 == suresh_job_hours_s2:\n print('Entailment')\n\nelif suresh_job_hours_s1 != suresh_job_hours_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Shreehari walks in the speed of 4.5 km / hr from his house , in what time will he reach his school which is 750 m long from his house ?, \"statement 2\" :If Shreehari walks in the speed of 4.5 km / hr from his house , in what time will he reach his school which is less than 850 m long from his house ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "school_distance_s1 = 750\nschool_distance_s2 = 850\n\nif school_distance_s1 is None or school_distance_s2 is None:\n print('neutral')\n\nelif school_distance_s1 < school_distance_s2:\n print('Entailment')\n\nelif school_distance_s1 != school_distance_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Albert borrowed a total of $ 6000 from Brian and Charlie, \"statement 2\" :Albert borrowed a total of $ 8000 from Brian and Charlie, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "albert_borrowed_s1 = 6000\nalbert_borrowed_s2 = 8000\n\nif albert_borrowed_s1 is None or albert_borrowed_s2 is None:\n print('neutral')\n\nelif albert_borrowed_s1 == albert_borrowed_s2:\n print('Entailment')\n\nelif albert_borrowed_s1 != albert_borrowed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sean , who weighs 200 pounds , is in the elevator with two packages weighing 150 pounds and 280 pounds, \"statement 2\" :Sean , who weighs less than 300 pounds , is in the elevator with two packages weighing 150 pounds and 280 pounds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sean_weight_s1 = 200\nsean_weight_s2 = 300\n\nif sean_weight_s1 is None or sean_weight_s2 is None:\n print('neutral')\n\nelif sean_weight_s1 < sean_weight_s2:\n print('Entailment')\n\nelif sean_weight_s1 != sean_weight_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": On his way back , James drives 60 miles per hour and stops in Town B which is midway between Town A and Town C, \"statement 2\" :On his way back , James drives less than 70 miles per hour and stops in Town B which is midway between Town A and Town C, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "james_drives_s1 = 60\njames_drives_s2 = 70\n\nif james_drives_s1 is None or james_drives_s2 is None:\n print('neutral')\n\nelif james_drives_s1 < james_drives_s2:\n print('Entailment')\n\nelif james_drives_s1 != james_drives_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The farmer had 127.0 apples and his neighbor gave him 88.0 pounds of apples, \"statement 2\" :He has 215.0 pounds of apples now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "apples_pound_s1 = 127+88\napples_pound_s2 = 215\n\nif apples_pound_s1 is None or apples_pound_s2 is None:\n print('neutral')\n\nelif apples_pound_s1 == apples_pound_s2:\n print('Entailment')\n\nelif apples_pound_s1 != apples_pound_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Yolanda ' s walking rate was 3 miles per hour and Bob \u0442 ' s was 4 miles per hour , how many miles had Bob walked when they met ?, \"statement 2\" :If Yolanda ' s walking rate was less than 7 miles per hour and Bob \u0442 ' s was 4 miles per hour , how many miles had Bob walked when they met ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "yolanda_walking_rate_s1 = 3\nyolanda_walking_rate_s2 = 7\n\nif yolanda_walking_rate_s1 is None or yolanda_walking_rate_s2 is None:\n print('neutral')\n\nelif yolanda_walking_rate_s1 < yolanda_walking_rate_s2:\n print('Entailment')\n\nelif yolanda_walking_rate_s1 != yolanda_walking_rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sam ranked 9 th from the top and 38 th from the bottom in a class, \"statement 2\" :Sam ranked less than 9 th from the top and 38 th from the bottom in a class, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sam_ranked_s1 = 9\nsam_ranked_s2 = 9-1 #Less than 9.\n\nif sam_ranked_s1 is None or sam_ranked_s2 is None:\n print('neutral')\n\nelif sam_ranked_s1 == sam_ranked_s2:\n print('Entailment')\n\nelif sam_ranked_s1 != sam_ranked_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A U.S. official said the man who was shot dead belonged to the Navy 's Special Warfare Development Group , more commonly known as SEAL Team Six ., \"statement 2\" :A U.S. official says the man killed in the rescue was a member of Navy SEAL Team Six, \"options: \" Entailment or neutral?", + "Output Program": [ + "team_sealed_s1 = 6\nteam_sealed_s2 = 6\n\nif team_sealed_s1 is None or team_sealed_s2 is None:\n print('neutral')\n\nelif team_sealed_s1 == team_sealed_s2:\n print('Entailment')\n\nelif team_sealed_s1 != team_sealed_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a Private Company 20 Nos, \"statement 2\" :In a Private Company less than 50 Nos, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "private_company_nos_s1 = 20\nprivate_company_nos_s2 = 50\n\nif private_company_nos_s1 is None or private_company_nos_s2 is None:\n print('neutral')\n\nelif private_company_nos_s1 < private_company_nos_s2:\n print('Entailment')\n\nelif private_company_nos_s1 != private_company_nos_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary is 8 years younger than Albert, \"statement 2\" :Mary is more than 1 years younger than Albert, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mary_albert_age_s1 = 8\nmary_albert_age_s2 = 1\n\nif mary_albert_age_s1 is None or mary_albert_age_s2 is None:\n print('neutral')\n\nelif mary_albert_age_s1 > mary_albert_age_s2:\n print('Entailment')\n\nelif mary_albert_age_s1 != mary_albert_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Each week , James is paid x dollars per per hour for the first more than 30 hours and 2 x dollars for each additional hour worked that week, \"statement 2\" :Each week , James is paid x dollars per per hour for the first 40 hours and 2 x dollars for each additional hour worked that week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "james_paid_s1 = None\njames_paid_s2 = 40\n\nif james_paid_s1 is None or james_paid_s2 is None:\n print('neutral')\n\nelif james_paid_s1 == james_paid_s2:\n print('Entailment')\n\nelif james_paid_s1 != james_paid_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Susan drove an average speed of more than 20 miles per hour for the first 40 miles of a trip then at a average speed of 15 miles / hr for the remaining 40 miles of the trip if she made no stops during the trip what was susan ' s avg speed in miles / hr for the entire trip, \"statement 2\" :Susan drove an average speed of 30 miles per hour for the first 40 miles of a trip then at a average speed of 15 miles / hr for the remaining 40 miles of the trip if she made no stops during the trip what was susan ' s avg speed in miles / hr for the entire trip, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "susan_drove_s1 = None\nsusan_drove_s2 = 30\n\nif susan_drove_s1 is None or susan_drove_s2 is None:\n print('neutral')\n\nelif susan_drove_s1 == susan_drove_s2:\n print('Entailment')\n\nelif susan_drove_s1 != susan_drove_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Annie , working alone , can do the same job in just 9 hours, \"statement 2\" :Annie , working alone , can do the same job in just 6 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "annie_work_hour_s1 = 9\nannie_work_hour_s2 = 6\n\nif annie_work_hour_s1 is None or annie_work_hour_s2 is None:\n print('neutral')\n\nelif annie_work_hour_s1 == annie_work_hour_s2:\n print('Entailment')\n\nelif annie_work_hour_s1 != annie_work_hour_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rob has 8 toy trucks, \"statement 2\" :Rob has more than 5 toy trucks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rob_toy_truck_s1 = 8\nrob_toy_truck_s2 = 5\n\nif rob_toy_truck_s1 is None or rob_toy_truck_s2 is None:\n print('neutral')\n\nelif rob_toy_truck_s1 > rob_toy_truck_s2:\n print('Entailment')\n\nelif rob_toy_truck_s1 != rob_toy_truck_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 300 seniors at Morse High School , and 50 % of them have cars, \"statement 2\" :There are less than 300 seniors at Morse High School , and 50 % of them have cars, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "morse_high_school_student_s1 = 300\nmorse_high_school_student_s2 = 300-1\n\nif morse_high_school_student_s1 is None or morse_high_school_student_s2 is None:\n print('neutral')\n\nelif morse_high_school_student_s1 == morse_high_school_student_s2:\n print('Entailment')\n\nelif morse_high_school_student_s1 != morse_high_school_student_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 4 buses runs between Chennai and Mysore, \"statement 2\" :more than 4 buses runs between Chennai and Mysore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "chennai_mysore_buses_s1 = 4\nchennai_mysore_buses_s2 = 4+1 #More than 1.\n\nif chennai_mysore_buses_s1 is None or chennai_mysore_buses_s2 is None:\n print('neutral')\n\nelif chennai_mysore_buses_s1 == chennai_mysore_buses_s2:\n print('Entailment')\n\nelif chennai_mysore_buses_s1 != chennai_mysore_buses_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Meg and Bob are among the 6 participants in a cycling race, \"statement 2\" :Meg and Bob are among the 2 participants in a cycling race, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cycling_race_participants_s1 = 6\ncycling_race_participants_s2 = 2\n\nif cycling_race_participants_s1 is None or cycling_race_participants_s2 is None:\n print('neutral')\n\nelif cycling_race_participants_s1 == cycling_race_participants_s2:\n print('Entailment')\n\nelif cycling_race_participants_s1 != cycling_race_participants_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sacha runs at a constant speed of less than 80 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"statement 2\" :Sacha runs at a constant speed of 10 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sacha_speed_s1 = None\nsacha_speed_s2 = 10\n\nif sacha_speed_s1 is None or sacha_speed_s2 is None:\n print('neutral')\n\nelif sacha_speed_s1 == sacha_speed_s2:\n print('Entailment')\n\nelif sacha_speed_s1 != sacha_speed_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Yolanda ' s walking rate was 3 miles per hour and Bob \u0442 ' s was 4 miles per hour , how many miles had Bob walked when they met ?, \"statement 2\" :If Yolanda ' s walking rate was less than 3 miles per hour and Bob \u0442 ' s was 4 miles per hour , how many miles had Bob walked when they met ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "yolanda_walking_rate_s1 = 3\nyolanda_walking_rate_s2 = 3-1 #Less than 3.\n\nif yolanda_walking_rate_s1 is None or yolanda_walking_rate_s2 is None:\n print('neutral')\n\nelif yolanda_walking_rate_s1 == yolanda_walking_rate_s2:\n print('Entailment')\n\nelif yolanda_walking_rate_s1 != yolanda_walking_rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Matthew ' s walking rate was 3 km per hour and Johnny ' s was 4 km per hour , how many km had Johnny walked when they met ?, \"statement 2\" :Matthew ' s walking rate was more than 3 km per hour and Johnny ' s was 4 km per hour , how many km had Johnny walked when they met ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "matthew_walking_rate_s1 = 3\nmatthew_walking_rate_s2 = 3+1 #More than 3.\n\nif matthew_walking_rate_s1 is None or matthew_walking_rate_s2 is None:\n print('neutral')\n\nelif matthew_walking_rate_s1 == matthew_walking_rate_s2:\n print('Entailment')\n\nelif matthew_walking_rate_s1 != matthew_walking_rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jill invited 37.0 people to her birthday party, and each pizza is divided into 8 equal parts and each person eats 1.0 slice, \"statement 2\" :6.0 pizzas were eaten, \"options: \" Entailment or contradiction?", + "Output Program": [ + "jill_pizza_party_s1 = 37/6\njill_pizza_party_s2 = 6\n\nif jill_pizza_party_s1 is None or jill_pizza_party_s2 is None:\n print('neutral')\n\nelif jill_pizza_party_s1 == jill_pizza_party_s2:\n print('Entailment')\n\nelif jill_pizza_party_s1 != jill_pizza_party_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": When Professor Wang looked at the rosters for this term ' s classes , she saw that the roster for her economics class ( E ) had 26 names , the roster for her marketing class ( M ) had 28 , and the roster for her statistics class ( S ) had 18, \"statement 2\" :When Professor Wang looked at the rosters for this term ' s classes , she saw that the roster for her economics class ( E ) had less than 26 names , the roster for her marketing class ( M ) had 28 , and the roster for her statistics class ( S ) had 18, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "economic_class_roster_s1 = 26\neconomic_class_roster_s2 = 26-1\n\nif economic_class_roster_s1 is None or economic_class_roster_s2 is None:\n print('neutral')\n\nelif economic_class_roster_s1 == economic_class_roster_s2:\n print('Entailment')\n\nelif economic_class_roster_s1 != economic_class_roster_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jerry travels 8 miles at an average speed of 40 miles per hour , stops for 13 minutes , and then travels another 20 miles at an average speed of 60 miles per hour, \"statement 2\" :Jerry travels more than 3 miles at an average speed of 40 miles per hour , stops for 13 minutes , and then travels another 20 miles at an average speed of 60 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jerry_travels_s1 = 8\njerry_travels_s2 = 3\n\nif jerry_travels_s1 is None or jerry_travels_s2 is None:\n print('neutral')\n\nelif jerry_travels_s1 > jerry_travels_s2:\n print('Entailment')\n\nelif jerry_travels_s1 != jerry_travels_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": It ended Lorenzo 's two-race winning streak and boosted Marquez 's overall advantage to a substantial 39 points with only four races remaining ., \"statement 2\" :With four races remaining , Marc Marquez leads the MotoGP standings by 39 points, \"options: \" Entailment or neutral?", + "Output Program": [ + "motogp_points_s1 = 9\nmotogp_points_s2 = 9\n\nif motogp_points_s1 is None or motogp_points_s2 is None:\n print('neutral')\n\nelif motogp_points_s1 == motogp_points_s2:\n print('Entailment')\n\nelif motogp_points_s1 != motogp_points_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Speed of Bruce is 30 m / s and that of Bhishma is 20 m / s, \"statement 2\" :Speed of Bruce is less than 60 m / s and that of Bhishma is 20 m / s, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bruce_speed_s1 = 30\nbruce_speed_s2 = 60\n\nif bruce_speed_s1 is None or bruce_speed_s2 is None:\n print('neutral')\n\nelif bruce_speed_s1 < bruce_speed_s2:\n print('Entailment')\n\nelif bruce_speed_s1 != bruce_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": How many minutes does it take Sharuk to type less than 65 words if he types at the rate of 5 words per minute ?, \"statement 2\" :How many minutes does it take Sharuk to type 25 words if he types at the rate of 5 words per minute ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sharuk_word_s1 = None\nsharuk_word_s2 = 25\n\nif sharuk_word_s1 is None or sharuk_word_s2 is None:\n print('neutral')\n\nelif sharuk_word_s1 == sharuk_word_s2:\n print('Entailment')\n\nelif sharuk_word_s1 != sharuk_word_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After they have worked together for 12 days Matt stops and Peter completes the remaining work in 8 days, \"statement 2\" :After they have worked together for less than 82 days Matt stops and Peter completes the remaining work in 8 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_of_work_s1 = 12\ndays_of_work_s2 = 82\n\nif days_of_work_s1 is None or days_of_work_s2 is None:\n print('neutral')\n\nelif days_of_work_s1 < days_of_work_s2:\n print('Entailment')\n\nelif days_of_work_s1 != days_of_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained less than 86 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained 76 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dacid_marks_s1 = None\ndacid_marks_s2 = 76 + 65 + 82 + 67 + 85\n\nif dacid_marks_s1 is None or dacid_marks_s2 is None:\n print('neutral')\n\nelif dacid_marks_s1 == dacid_marks_s2:\n print('Entailment')\n\nelif dacid_marks_s1 != dacid_marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The deal comes some two weeks after a $ 16 billion deal was reached between AT & T and SBC , a top rival for Qwest ., \"statement 2\" :The two firms sealed the deal despite what was thought to be a higher offer from rival US carrier Qwest ., \"options: \" Entailment or neutral?", + "Output Program": [ + "at_sbc_deal_s1 = 16\nat_sbc_deal_s2 = None\n\nif at_sbc_deal_s1 is None or at_sbc_deal_s2 is None:\n print('neutral')\n\nelif at_sbc_deal_s1 == at_sbc_deal_s2:\n print('Entailment')\n\nelif at_sbc_deal_s1 != at_sbc_deal_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Foreign aid comprises less than 1 % of the federal budget ., \"statement 2\" :Foreign assistance comprises less than 1 % of the federal budget , he says, \"options: \" Entailment or neutral?", + "Output Program": [ + "budget_compromise_s1 = 1-0.1 #Less than 1.\nbudget_compromise_s2 = 1-0.1 #Less than 1.\n\nif budget_compromise_s1 is None or budget_compromise_s2 is None:\n print('neutral')\n\nelif budget_compromise_s1 == budget_compromise_s2:\n print('Entailment')\n\nelif budget_compromise_s1 != budget_compromise_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Patrick purchased more than 10 pencils and sold them at a loss equal to the selling price of 30 pencils, \"statement 2\" :Patrick purchased 80 pencils and sold them at a loss equal to the selling price of 30 pencils, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "patrick_pencils_s1 = None\npatrick_pencils_s2 = 80\n\nif patrick_pencils_s1 is None or patrick_pencils_s2 is None:\n print('neutral')\n\nelif patrick_pencils_s1 == patrick_pencils_s2:\n print('Entailment')\n\nelif patrick_pencils_s1 != patrick_pencils_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Leo gains less than 60 pounds , he will weigh 50 % more than his sister Kendra, \"statement 2\" :If Leo gains 10 pounds , he will weigh 50 % more than his sister Kendra, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "leo_gains_s1 = None\nleo_gains_s2 = 10\n\nif leo_gains_s1 is None or leo_gains_s2 is None:\n print('neutral')\n\nelif leo_gains_s1 == leo_gains_s2:\n print('Entailment')\n\nelif leo_gains_s1 != leo_gains_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": A restaurant made 9.0 hamburgers to serve during lunch and only 3.0 were actually served , \"statement 2\" :6.0 hamburgers were left over from lunch , \"options: \" Entailment or contradiction?", + "Output Program": [ + "hamburger_left_to_serve_s1 = 9-3\nhamburger_left_to_serve_s2 = 6\n\nif hamburger_left_to_serve_s1 is None or hamburger_left_to_serve_s2 is None:\n print('neutral')\n\nelif hamburger_left_to_serve_s1 == hamburger_left_to_serve_s2:\n print('Entailment')\n\nelif hamburger_left_to_serve_s1 != hamburger_left_to_serve_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Accomplices of the three inmates hijacked a helicopter and forced the pilot to land in the prison courtyard , Interpol said ., \"statement 2\" :Three inmates escape from Belgium prison in helicopter, \"options: \" Entailment or neutral?", + "Output Program": [ + "hijacked_helicopter_s1 = None\nhijacked_helicopter_s2 = None\n\nif hijacked_helicopter_s1 is None or hijacked_helicopter_s2 is None:\n print('neutral')\n\nelif hijacked_helicopter_s1 == hijacked_helicopter_s2:\n print('Entailment')\n\nelif hijacked_helicopter_s1 != hijacked_helicopter_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shekar scored more than 46 , 65 , 82 , 67 and 85 marks in Mathematics , Science , Social studies , English and Biology respectively, \"statement 2\" :Shekar scored 76 , 65 , 82 , 67 and 85 marks in Mathematics , Science , Social studies , English and Biology respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shekhar_scored_s1 = None\nshekhar_scored_s2 = 76 + 65 + 82 + 67 + 85\n\nif shekhar_scored_s1 is None or shekhar_scored_s2 is None:\n print('neutral')\n\nelif shekhar_scored_s1 == shekhar_scored_s2:\n print('Entailment')\n\nelif shekhar_scored_s1 != shekhar_scored_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": I read 21.0 pages of my English book yesterday and today, I read 17.0 pages, \"statement 2\" :The total number of pages I read is 38.0, \"options: \" Entailment or contradiction?", + "Output Program": [ + "pages_read_s1 = 21+17\npages_read_s2 = 38\n\nif pages_read_s1 is None or pages_read_s2 is None:\n print('neutral')\n\nelif pages_read_s1 == pages_read_s2:\n print('Entailment')\n\nelif pages_read_s1 != pages_read_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many clothing combinations does Barbara have , if she doesn \u2019 t wear more than 2 specific shirts with 5 specific pants ?, \"statement 2\" :How many clothing combinations does Barbara have , if she doesn \u2019 t wear 6 specific shirts with 5 specific pants ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "specific_shirt_s1 = None\nspecific_shirt_s2 = 6\n\nif specific_shirt_s1 is None or specific_shirt_s2 is None:\n print('neutral')\n\nelif specific_shirt_s1 == specific_shirt_s2:\n print('Entailment')\n\nelif specific_shirt_s1 != specific_shirt_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 380 and Andrew ' s share is Rs, \"statement 2\" :less than 680 and Andrew ' s share is Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "andrew_shares_s1 = 380\nandrew_shares_s2 = 680\n\nif andrew_shares_s1 is None or andrew_shares_s2 is None:\n print('neutral')\n\nelif andrew_shares_s1 < andrew_shares_s2:\n print('Entailment')\n\nelif andrew_shares_s1 != andrew_shares_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Working independently , Ann can do\nthe same job in 9 hours, \"statement 2\" :Working independently , Ann can do the same job in more than 7 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ann_job_hour_s1 = 9\nann_job_hour_s2 = 7\n\nif ann_job_hour_s1 is None or ann_job_hour_s2 is None:\n print('neutral')\n\nelif ann_job_hour_s1 > ann_job_hour_s2:\n print('Entailment')\n\nelif ann_job_hour_s1 != ann_job_hour_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the trip home took 1 / 2 hour longer than the trip to the beach , how many kilometers l did Carl drive each way ?, \"statement 2\" :If the trip home took more than 1 / 2 hour longer than the trip to the beach , how many kilometers l did Carl drive each way ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "home_trip_time_s1 = 1/2\nhome_trip_time_s2 = 1/2-1\n\nif home_trip_time_s1 is None or home_trip_time_s2 is None:\n print('neutral')\n\nelif home_trip_time_s1 == home_trip_time_s2:\n print('Entailment')\n\nelif home_trip_time_s1 != home_trip_time_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sony and Johnny caught 40 fishes, \"statement 2\" :Sony and Johnny caught 50 fishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sony_johnny_fishes_s1 = 40\nsony_johnny_fishes_s2 = 50\n\nif sony_johnny_fishes_s1 is None or sony_johnny_fishes_s2 is None:\n print('neutral')\n\nelif sony_johnny_fishes_s1 == sony_johnny_fishes_s2:\n print('Entailment')\n\nelif sony_johnny_fishes_s1 != sony_johnny_fishes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Winson earns $ 10.00 per hour for the first 40 hours he works per week , and twice this rate for overtime, \"statement 2\" :Winson earns $ 10.00 per hour for the first more than 10 hours he works per week , and twice this rate for overtime, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "winson_earns_s1 = 10\nwinson_earns_s2 = 10\n\nif winson_earns_s1 is None or winson_earns_s2 is None:\n print('neutral')\n\nelif winson_earns_s1 == winson_earns_s2:\n print('Entailment')\n\nelif winson_earns_s1 != winson_earns_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Each of the 59 members in Mount school class is required to sign up for a minimum of one and a maximum of three academic clubs, \"statement 2\" :Each of the less than 79 members in Mount school class is required to sign up for a minimum of one and a maximum of three academic clubs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mount_school_class_s1 = 59\nmount_school_class_s2 = 79\n\nif mount_school_class_s1 is None or mount_school_class_s2 is None:\n print('neutral')\n\nelif mount_school_class_s1 < mount_school_class_s2:\n print('Entailment')\n\nelif mount_school_class_s1 != mount_school_class_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Pinky returned four chocolate to the retailer , and the average price of the remaining chocolate was 2 \u00a2 , then what is the average price , in cents , of the four returned chocolates ?, \"statement 2\" :If Pinky returned four chocolate to the retailer , and the average price of the remaining chocolate was less than 4 \u00a2 , then what is the average price , in cents , of the four returned chocolates ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_chocolate_price_s1 = 2\naverage_chocolate_price_s2 = 4\n\nif average_chocolate_price_s1 is None or average_chocolate_price_s2 is None:\n print('neutral')\n\nelif average_chocolate_price_s1 < average_chocolate_price_s2:\n print('Entailment')\n\nelif average_chocolate_price_s1 != average_chocolate_price_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ganesh covers the distance from X to Y at an average speed of 43 Km / hr, \"statement 2\" :Ganesh covers the distance from X to Y at an average speed of 53 Km / hr, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ganesh_distance_s1 = 43\nganesh_distance_s2 = 53\n\nif ganesh_distance_s1 is None or ganesh_distance_s2 is None:\n print('neutral')\n\nelif ganesh_distance_s1 == ganesh_distance_s2:\n print('Entailment')\n\nelif ganesh_distance_s1 != ganesh_distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Jos \u00e9 reads at a constant rate of 2 pages every 6 minutes , how many seconds will it take him to read N pages ?, \"statement 2\" :If Jos \u00e9 reads at a constant rate of less than 3 pages every 6 minutes , how many seconds will it take him to read N pages ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pages_every_minute_s1 = 2\npages_every_minute_s2 = 3\n\nif pages_every_minute_s1 is None or pages_every_minute_s2 is None:\n print('neutral')\n\nelif pages_every_minute_s1 < pages_every_minute_s2:\n print('Entailment')\n\nelif pages_every_minute_s1 != pages_every_minute_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Raviraj invested an amount of less than 7000000 at compound interest rate of 10 pcpa for a period of three years, \"statement 2\" :Raviraj invested an amount of 1000000 at compound interest rate of 10 pcpa for a period of three years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "raviraj_invested_s1 = None\nraviraj_invested_s2 = 1000000\n\nif raviraj_invested_s1 is None or raviraj_invested_s2 is None:\n print('neutral')\n\nelif raviraj_invested_s1 == raviraj_invested_s2:\n print('Entailment')\n\nelif raviraj_invested_s1 != raviraj_invested_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Adams ' s internet provider offers unlimited traffic which costs $ 0.5 per day charged off at less than 42 a, \"statement 2\" :Adams ' s internet provider offers unlimited traffic which costs $ 0.5 per day charged off at 12 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "adam_internet_charge_s1 = None\nadam_internet_charge_s2 = 12\n\nif adam_internet_charge_s1 is None or adam_internet_charge_s2 is None:\n print('neutral')\n\nelif adam_internet_charge_s1 == adam_internet_charge_s2:\n print('Entailment')\n\nelif adam_internet_charge_s1 != adam_internet_charge_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many oranges must Mary put back so that the average price of the pieces of fruit that she keeps is 45 \u00a2 ?, \"statement 2\" :How many oranges must Mary put back so that the average price of the pieces of fruit that she keeps is less than 45 \u00a2 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_price_fruit_s1 = 45\naverage_price_fruit_s2 = 45-1 #Less than 45.\n\nif average_price_fruit_s1 is None or average_price_fruit_s2 is None:\n print('neutral')\n\nelif average_price_fruit_s1 == average_price_fruit_s2:\n print('Entailment')\n\nelif average_price_fruit_s1 != average_price_fruit_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After more than 5 years , Arun ' s age will be 19 years, \"statement 2\" :After 7 years , Arun ' s age will be 19 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "arun_age_s1 = None\narun_age_s2 = 7\n\nif arun_age_s1 is None or arun_age_s2 is None:\n print('neutral')\n\nelif arun_age_s1 == arun_age_s2:\n print('Entailment')\n\nelif arun_age_s1 != arun_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": While driving from City A to City B , Cara drives at a constant speed of less than 60 miles per hour, \"statement 2\" :While driving from City A to City B , Cara drives at a constant speed of 30 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cara_speed_s1 = None\ncara_speed_s2 = 30\n\nif cara_speed_s1 is None or cara_speed_s2 is None:\n print('neutral')\n\nelif cara_speed_s1 == cara_speed_s2:\n print('Entailment')\n\nelif cara_speed_s1 != cara_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Martin bought less than 80 concert tickets , some at the full price of $ 2.00 per ticket , and some at a discounted price of $ 1.60 per ticket, \"statement 2\" :Martin bought 10 concert tickets , some at the full price of $ 2.00 per ticket , and some at a discounted price of $ 1.60 per ticket, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "martin_ticket_s1 = None\nmartin_ticket_s2 = 10\n\nif martin_ticket_s1 is None or martin_ticket_s2 is None:\n print('neutral')\n\nelif martin_ticket_s1 == martin_ticket_s2:\n print('Entailment')\n\nelif martin_ticket_s1 != martin_ticket_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sakshi can do a piece of work in 20 days, \"statement 2\" :Sakshi can do a piece of work in 50 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sakshi_work_s1 = 20\nsakshi_work_s2 = 50\n\nif sakshi_work_s1 is None or sakshi_work_s2 is None:\n print('neutral')\n\nelif sakshi_work_s1 == sakshi_work_s2:\n print('Entailment')\n\nelif sakshi_work_s1 != sakshi_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill has 7 gallons of water stored in quart , half - gallon , and one gallon jars, \"statement 2\" :Jill has 3 gallons of water stored in quart , half - gallon , and one gallon jars, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "water_gallons_s1 = 7\nwater_gallons_s2 = 3\n\nif water_gallons_s1 is None or water_gallons_s2 is None:\n print('neutral')\n\nelif water_gallons_s1 == water_gallons_s2:\n print('Entailment')\n\nelif water_gallons_s1 != water_gallons_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Today John is less than 8 times older than Mark, \"statement 2\" :Today John is 3 times older than Mark, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_age_difference_s1 = None\njohn_age_difference_s2 = 3\n\nif john_age_difference_s1 is None or john_age_difference_s2 is None:\n print('neutral')\n\nelif john_age_difference_s1 == john_age_difference_s2:\n print('Entailment')\n\nelif john_age_difference_s1 != john_age_difference_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If John needs to pay exactly $ 128 , what is the least number of bills he will need to use ?, \"statement 2\" :If John needs to pay exactly $ less than 628 , what is the least number of bills he will need to use ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_payment_s1 = 128\njohn_payment_s2 = 628\n\nif john_payment_s1 is None or john_payment_s2 is None:\n print('neutral')\n\nelif john_payment_s1 < john_payment_s2:\n print('Entailment')\n\nelif john_payment_s1 != john_payment_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are less than 4500 hunters in Piscataquis County then how many fishermen are there ?, \"statement 2\" :If there are 1500 hunters in Piscataquis County then how many fishermen are there ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "fishermen_s1 = None\nfishermen_s2 = 1500\n\nif fishermen_s1 is None or fishermen_s2 is None:\n print('neutral')\n\nelif fishermen_s1 == fishermen_s2:\n print('Entailment')\n\nelif fishermen_s1 != fishermen_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 5 % people of a village in Sri Lanka died by bombardment , 15 % of the remainder left the village on account of fear, \"statement 2\" :less than 6 % people of a village in Sri Lanka died by bombardment , 15 % of the remainder left the village on account of fear, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "srilanka_bombardmant_s1 = 5\nsrilanka_bombardmant_s2 = 6\n\nif srilanka_bombardmant_s1 is None or srilanka_bombardmant_s2 is None:\n print('neutral')\n\nelif srilanka_bombardmant_s1 < srilanka_bombardmant_s2:\n print('Entailment')\n\nelif srilanka_bombardmant_s1 != srilanka_bombardmant_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Hayley has 25.0 meatballs and Kirsten gave her 11.0 more, \"statement 2\" :Hayley has 36.0 meatballs now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "hayley_meatball_s1 = 25+11\nhayley_meatball_s2 = 36\n\nif hayley_meatball_s1 is None or hayley_meatball_s2 is None:\n print('neutral')\n\nelif hayley_meatball_s1 == hayley_meatball_s2:\n print('Entailment')\n\nelif hayley_meatball_s1 != hayley_meatball_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Kiran , an eight years old boy has 27 toys, \"statement 2\" :Kiran , an eight years old boy has more than 27 toys, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kiran_toys_s1 = 27\nkiran_toys_s2 = 27+1\n\nif kiran_toys_s1 is None or kiran_toys_s2 is None:\n print('neutral')\n\nelif kiran_toys_s1 == kiran_toys_s2:\n print('Entailment')\n\nelif kiran_toys_s1 != kiran_toys_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joke is faster than Paul , Joke and Paul each walk 24 KM, \"statement 2\" :Joke is faster than Paul , Joke and Paul each walk more than 24 KM, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "joke_paul_distance_s1 = 24\njoke_paul_distance_s2 = 24+1\n\nif joke_paul_distance_s1 is None or joke_paul_distance_s2 is None:\n print('neutral')\n\nelif joke_paul_distance_s1 == joke_paul_distance_s2:\n print('Entailment')\n\nelif joke_paul_distance_s1 != joke_paul_distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At the faculty of Aerospace Engineering , less than 412 students study Random - processing methods , 232 students study Scramjet rocket engines and 114 students study them both, \"statement 2\" :At the faculty of Aerospace Engineering , 312 students study Random - processing methods , 232 students study Scramjet rocket engines and 114 students study them both, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "aerospace_students_s1 = None\naerospace_students_s2 = 312\n\nif aerospace_students_s1 is None or aerospace_students_s2 is None:\n print('neutral')\n\nelif aerospace_students_s1 == aerospace_students_s2:\n print('Entailment')\n\nelif aerospace_students_s1 != aerospace_students_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jose joined him 2 months later , investing Rs, \"statement 2\" :Jose joined him 8 months later , investing Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "josh_joined_month_s1 = 2\njosh_joined_month_s2 = 8\n\nif josh_joined_month_s1 is None or josh_joined_month_s2 is None:\n print('neutral')\n\nelif josh_joined_month_s1 == josh_joined_month_s2:\n print('Entailment')\n\nelif josh_joined_month_s1 != josh_joined_month_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": loyd wants to fence his Square shaped land of less than 720 Sqft each side, \"statement 2\" :loyd wants to fence his Square shaped land of 120 Sqft each side, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "land_fenced_s1 = None\nland_fenced_s2 = 120\n\nif land_fenced_s1 is None or land_fenced_s2 is None:\n print('neutral')\n\nelif land_fenced_s1 == land_fenced_s2:\n print('Entailment')\n\nelif land_fenced_s1 != land_fenced_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 11.0 rulers and 34.0 crayons in the drawer and Tim placed 14.0 rulers in the drawer , \"statement 2\" :29.0 rulers are now there in all , \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_rulers_s1 = 11+14\ntotal_rulers_s2 = 29\n\nif total_rulers_s1 is None or total_rulers_s2 is None:\n print('neutral')\n\nelif total_rulers_s1 == total_rulers_s2:\n print('Entailment')\n\nelif total_rulers_s1 != total_rulers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Sanoop returned 3 t - shirts to the retailer , and the average price of the remaining t - shirts was Rs, \"statement 2\" :If Sanoop returned 4 t - shirts to the retailer , and the average price of the remaining t - shirts was Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "t_shirts_removed_s1 = 3\nt_shirts_removed_s2 = 4\n\nif t_shirts_removed_s1 is None or t_shirts_removed_s2 is None:\n print('neutral')\n\nelif t_shirts_removed_s1 == t_shirts_removed_s2:\n print('Entailment')\n\nelif t_shirts_removed_s1 != t_shirts_removed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Vincent bought 10.0 books about animals, 1.0 book about outer space, and 3.0 books about trains and he paid $16.0 for all the books combined, \"statement 2\" :The average price for 1.0 book is 4.6, \"options: \" Entailment or contradiction?", + "Output Program": [ + "book_average_price_s1 = (10+1+3)/16\nbook_average_price_s2 = 4.6\n\nif book_average_price_s1 is None or book_average_price_s2 is None:\n print('neutral')\n\nelif book_average_price_s1 == book_average_price_s2:\n print('Entailment')\n\nelif book_average_price_s1 != book_average_price_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Each week , James is paid x dollars per per hour for the first more than 20 hours and 2 x dollars for each additional hour worked that week, \"statement 2\" :Each week , James is paid x dollars per per hour for the first 40 hours and 2 x dollars for each additional hour worked that week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hours_paid_s1 = None\nhours_paid_s2 = 40\n\nif hours_paid_s1 is None or hours_paid_s2 is None:\n print('neutral')\n\nelif hours_paid_s1 == hours_paid_s2:\n print('Entailment')\n\nelif hours_paid_s1 != hours_paid_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a school, there are 542.0 girls and 387.0 boys., \"statement 2\" :928.0 pupils are there in that school, \"options: \" Entailment or contradiction?", + "Output Program": [ + "school_population_s1 = 542+387\nschool_population_s2 = 928\n\nif school_population_s1 is None or school_population_s2 is None:\n print('neutral')\n\nelif school_population_s1 == school_population_s2:\n print('Entailment')\n\nelif school_population_s1 != school_population_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were 150.0 book shelves and each book shelf had 15.0 books, \"statement 2\" :2250.0 books were on the shelves, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_books_s1 = 150*15\ntotal_books_s2 = 2250\n\nif total_books_s1 is None or total_books_s2 is None:\n print('neutral')\n\nelif total_books_s1 == total_books_s2:\n print('Entailment')\n\nelif total_books_s1 != total_books_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The next day , Alice took the test , and with this grade included , the new average was more than 29, \"statement 2\" :The next day , Alice took the test , and with this grade included , the new average was 79, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "test_average_s1 = None\ntest_average_s2 = 79\n\nif test_average_s1 is None or test_average_s2 is None:\n print('neutral')\n\nelif test_average_s1 == test_average_s2:\n print('Entailment')\n\nelif test_average_s1 != test_average_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Jim pays 30 dollars , how much will Joe have to pay ?, \"statement 2\" :If Jim pays more than 30 dollars , how much will Joe have to pay ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jim_pays_s1 = 30\njim_pays_s2 = 30+1\n\nif jim_pays_s1 is None or jim_pays_s2 is None:\n print('neutral')\n\nelif jim_pays_s1 == jim_pays_s2:\n print('Entailment')\n\nelif jim_pays_s1 != jim_pays_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Donald carries a total of less than 40 notes ( of either $ 10 or \u20ac 10 , ) then what is the total number of notes ( of either $ 10 or \u20ac 10 , ) they take ?, \"statement 2\" :If Donald carries a total of 30 notes ( of either $ 10 or \u20ac 10 , ) then what is the total number of notes ( of either $ 10 or \u20ac 10 , ) they take ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "donald_carries_s1 = None\ndonald_carries_s2 = 30\n\nif donald_carries_s1 is None or donald_carries_s2 is None:\n print('neutral')\n\nelif donald_carries_s1 == donald_carries_s2:\n print('Entailment')\n\nelif donald_carries_s1 != donald_carries_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Cade had 87.0 marbles and he got 8.0 from Dylan, \"statement 2\" :He has 98.0 marbles now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "cade_marbles_s1 = 87+8\ncade_marbles_s2 = 98\n\nif cade_marbles_s1 is None or cade_marbles_s2 is None:\n print('neutral')\n\nelif cade_marbles_s1 == cade_marbles_s2:\n print('Entailment')\n\nelif cade_marbles_s1 != cade_marbles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": -- The phone will be called the iPhone 5 or iPhone 4S ., \"statement 2\" :Rumor has it the phone will be called iPhone 5 or iPhone 4S, \"options: \" Entailment or neutral?", + "Output Program": [ + "iphone_model_s1 = 5\niphone_model_s2 = 5\n\nif iphone_model_s1 is None or iphone_model_s2 is None:\n print('neutral')\n\nelif iphone_model_s1 == iphone_model_s2:\n print('Entailment')\n\nelif iphone_model_s1 != iphone_model_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Snyder has 4 more men and 6 more women than Leigh , how many men are in the Snyder choir ?, \"statement 2\" :If Snyder has less than 7 more men and 6 more women than Leigh , how many men are in the Snyder choir ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "snyder_men_s1 = 4\nsnyder_men_s2 = 7\n\nif snyder_men_s1 is None or snyder_men_s2 is None:\n print('neutral')\n\nelif snyder_men_s1 < snyder_men_s2:\n print('Entailment')\n\nelif snyder_men_s1 != snyder_men_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Martha has 3 dogs and 4 cats, \"statement 2\" :Martha has less than 3 dogs and 4 cats, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "martha_dogs_s1 = 3\nmartha_dogs_s2 = 3-1\n\nif martha_dogs_s1 is None or martha_dogs_s2 is None:\n print('neutral')\n\nelif martha_dogs_s1 == martha_dogs_s2:\n print('Entailment')\n\nelif martha_dogs_s1 != martha_dogs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If gas costs $ less than 6 / gallon , then how many miles can Dan \u2019 s car go on $ 54 of gas ?, \"statement 2\" :If gas costs $ 4 / gallon , then how many miles can Dan \u2019 s car go on $ 54 of gas ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gas_cost_s1 = None\ngas_cost_s2 = 4\n\nif gas_cost_s1 is None or gas_cost_s2 is None:\n print('neutral')\n\nelif gas_cost_s1 == gas_cost_s2:\n print('Entailment')\n\nelif gas_cost_s1 != gas_cost_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the ratio of hybrid Tajima ' s to non hybrid Franks is 5 : 4 and there are 280 total automobiles owned by the dealership , how many hybrid Franks are there ?, \"statement 2\" :If the ratio of hybrid Tajima ' s to non hybrid Franks is more than 4 : 4 and there are 280 total automobiles owned by the dealership , how many hybrid Franks are there ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hybrid_ratio_s1 = 5/4\nhybrid_ratio_s2 = 4/4\n\nif hybrid_ratio_s1 is None or hybrid_ratio_s2 is None:\n print('neutral')\n\nelif hybrid_ratio_s1 > hybrid_ratio_s2:\n print('Entailment')\n\nelif hybrid_ratio_s1 != hybrid_ratio_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Efrida and Frazer who live less than 53 miles apart , meet at a restaurant that is directly north of Efrida ' s home and directly east of Frazer ' s home, \"statement 2\" :Efrida and Frazer who live 13 miles apart , meet at a restaurant that is directly north of Efrida ' s home and directly east of Frazer ' s home, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "efrida_frazer_distance_s1 = None\nefrida_frazer_distance_s2 = 13\n\nif efrida_frazer_distance_s1 is None or efrida_frazer_distance_s2 is None:\n print('neutral')\n\nelif efrida_frazer_distance_s1 == efrida_frazer_distance_s2:\n print('Entailment')\n\nelif efrida_frazer_distance_s1 != efrida_frazer_distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The school is planning a field trip and there are 14.0 students and 2.0 seats on each school bus, \"statement 2\" :7.0 buses are needed to take the trip, \"options: \" Entailment or contradiction?", + "Output Program": [ + "school_buses_s1 = 14/2\nschool_buses_s2 = 7\n\nif school_buses_s1 is None or school_buses_s2 is None:\n print('neutral')\n\nelif school_buses_s1 == school_buses_s2:\n print('Entailment')\n\nelif school_buses_s1 != school_buses_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ayesha ' s father was 38 years of age when she was born while her mother was 36 years old when her brother four years younger to her was born, \"statement 2\" :Ayesha ' s father was less than 48 years of age when she was born while her mother was 36 years old when her brother four years younger to her was born, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ayesha_father_age_s1 = 38\nayesha_father_age_s2 = 48\n\nif ayesha_father_age_s1 is None or ayesha_father_age_s2 is None:\n print('neutral')\n\nelif ayesha_father_age_s1 < ayesha_father_age_s2:\n print('Entailment')\n\nelif ayesha_father_age_s1 != ayesha_father_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ayesha ' s father was 34 years of age when she was born while her mother was 30 years old when her brother four years younger to her was born, \"statement 2\" :Ayesha ' s father was 14 years of age when she was born while her mother was 30 years old when her brother four years younger to her was born, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ayesha_father_age_s1 = 34\nayesha_father_age_s2 = 14\n\nif ayesha_father_age_s1 is None or ayesha_father_age_s2 is None:\n print('neutral')\n\nelif ayesha_father_age_s1 == ayesha_father_age_s2:\n print('Entailment')\n\nelif ayesha_father_age_s1 != ayesha_father_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mourinho and Van Gaal are vying to become only the third manager after Ottmar Hitzfeld and Ernst Happel to win the Champions League with two different clubs ., \"statement 2\" :Mourinho and Van Gaal aiming to become the third manager to win tournament with two teams, \"options: \" Entailment or neutral?", + "Output Program": [ + "winning_against_s1 = 2\nwinning_against_s2 = 2\n\nif winning_against_s1 is None or winning_against_s2 is None:\n print('neutral')\n\nelif winning_against_s1 == winning_against_s2:\n print('Entailment')\n\nelif winning_against_s1 != winning_against_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Yolanda ' s walking rate was 3 miles per hour and Bob \u0442 ' s was 4 miles per hour , how many miles had Bob walked when they met ?, \"statement 2\" :If Yolanda ' s walking rate was 6 miles per hour and Bob \u0442 ' s was 4 miles per hour , how many miles had Bob walked when they met ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "yolanda_walking_rate_s1 = 3\nyolanda_walking_rate_s2 = 6\n\nif yolanda_walking_rate_s1 is None or yolanda_walking_rate_s2 is None:\n print('neutral')\n\nelif yolanda_walking_rate_s1 == yolanda_walking_rate_s2:\n print('Entailment')\n\nelif yolanda_walking_rate_s1 != yolanda_walking_rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The second , Mary Kristene Chapa , 18 , was in serious condition at a local hospital with a gunshot wound to the head ., \"statement 2\" :One victim died , the other is in serious condition, \"options: \" Entailment or neutral?", + "Output Program": [ + "victim_age_s1 = 18\nvictim_age_s2 = None\n\nif victim_age_s1 is None or victim_age_s2 is None:\n print('neutral')\n\nelif victim_age_s1 == victim_age_s2:\n print('Entailment')\n\nelif victim_age_s1 != victim_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": When x dividedby 288 , the remainder is 47, \"statement 2\" :When x dividedby more than 188 , the remainder is 47, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_divided_by_x_s1 = 288\nnumber_divided_by_x_s2 = 188\n\nif number_divided_by_x_s1 is None or number_divided_by_x_s2 is None:\n print('neutral')\n\nelif number_divided_by_x_s1 > number_divided_by_x_s2:\n print('Entailment')\n\nelif number_divided_by_x_s1 != number_divided_by_x_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Human rights groups say police detained some 2,500 people after the attack on the Hilton hotel in Taba and mistreated many of them ., \"statement 2\" :Some 2,500 people have been arrested after the attack on the Hilton hotel in Taba ., \"options: \" Entailment or neutral?", + "Output Program": [ + "attackers_arrested_s1 = 2500\nattackers_arrested_s2 = 2500\n\nif attackers_arrested_s1 is None or attackers_arrested_s2 is None:\n print('neutral')\n\nelif attackers_arrested_s1 == attackers_arrested_s2:\n print('Entailment')\n\nelif attackers_arrested_s1 != attackers_arrested_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": David obtained more than 66 , 65 , 82 , 67 and 85 marks ( out in 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :David obtained 76 , 65 , 82 , 67 and 85 marks ( out in 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "david_marks_s1 = None\ndavid_marks_s2 = 76 + 65 + 82 + 67 + 85\n\nif david_marks_s1 is None or david_marks_s2 is None:\n print('neutral')\n\nelif david_marks_s1 == david_marks_s2:\n print('Entailment')\n\nelif david_marks_s1 != david_marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": George ' s drawer has less than 80 loose black socks , 15 loose blue socks , and 8 loose white socks, \"statement 2\" :George ' s drawer has 10 loose black socks , 15 loose blue socks , and 8 loose white socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "lose_black_socks_s1 = None\nlose_black_socks_s2 = 10\n\nif lose_black_socks_s1 is None or lose_black_socks_s2 is None:\n print('neutral')\n\nelif lose_black_socks_s1 == lose_black_socks_s2:\n print('Entailment')\n\nelif lose_black_socks_s1 != lose_black_socks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": I have 4.0 pencil boxes, and I fill each box with 648.0 pencils, \"statement 2\" :I will have 2592.0 pencils , \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_pencils_s1 = 648*4\ntotal_pencils_s2 = 2592\n\nif total_pencils_s1 is None or total_pencils_s2 is None:\n print('neutral')\n\nelif total_pencils_s1 == total_pencils_s2:\n print('Entailment')\n\nelif total_pencils_s1 != total_pencils_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a friendship gang Andrew has 8 gang , in how many ways can he invite one or more of the gang to his house ?, \"statement 2\" :In a friendship gang Andrew has more than 8 gang , in how many ways can he invite one or more of the gang to his house ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "andrew_gang_s1 = 8\nandrew_gang_s2 = 8+1\n\nif andrew_gang_s1 is None or andrew_gang_s2 is None:\n print('neutral')\n\nelif andrew_gang_s1 == andrew_gang_s2:\n print('Entailment')\n\nelif andrew_gang_s1 != andrew_gang_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": General Dynamics , the maker of land combat systems , warships and Gulfstream business jets , reported net earnings of $ 374m in the third quarter , or $ 1.84 per share ., \"statement 2\" :General Dynamics loses $ 374m ., \"options: \" Entailment or neutral?", + "Output Program": [ + "dynamic_loses_s1 = None\ndynamic_loses_s2 = 347\n\nif dynamic_loses_s1 is None or dynamic_loses_s2 is None:\n print('neutral')\n\nelif dynamic_loses_s1 == dynamic_loses_s2:\n print('Entailment')\n\nelif dynamic_loses_s1 != dynamic_loses_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are more than 130 baseball fans in the town , each of whom is a fan of exactly one of those three teams , how many NY Mets fans are there in this town ?, \"statement 2\" :If there are 330 baseball fans in the town , each of whom is a fan of exactly one of those three teams , how many NY Mets fans are there in this town ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "baseball_fans_s1 = None\nbaseball_fans_s2 = 330\n\nif baseball_fans_s1 is None or baseball_fans_s2 is None:\n print('neutral')\n\nelif baseball_fans_s1 == baseball_fans_s2:\n print('Entailment')\n\nelif baseball_fans_s1 != baseball_fans_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If it takes Cathy 27 minutes to stretch and Jim continues to run during this time , how many minutes will it take Cathy to catch up to Jim ?, \"statement 2\" :If it takes Cathy less than 57 minutes to stretch and Jim continues to run during this time , how many minutes will it take Cathy to catch up to Jim ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cathy_stretch_minutes_s1 = 27\ncathy_stretch_minutes_s2 = 57\n\nif cathy_stretch_minutes_s1 is None or cathy_stretch_minutes_s2 is None:\n print('neutral')\n\nelif cathy_stretch_minutes_s1 < cathy_stretch_minutes_s2:\n print('Entailment')\n\nelif cathy_stretch_minutes_s1 != cathy_stretch_minutes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Grady and Howard are among those 6 friends but can never sit next to each other , how many 6 - person seating arrangements are possible ?, \"statement 2\" :If Grady and Howard are among those 5 friends but can never sit next to each other , how many 6 - person seating arrangements are possible ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\ngrady_howards_friends_s1 = 6\ngrady_howards_friends_s2 = 5\n\nif grady_howards_friends_s1 is None or grady_howards_friends_s2 is None:\n print('neutral')\n\nelif grady_howards_friends_s1 == grady_howards_friends_s2:\n print('Entailment')\n\nelif grady_howards_friends_s1 != grady_howards_friends_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 1.0 evening , a restaurant served a total of 0.5 loaf of wheat bread and 0.4 loaf of white bread ., \"statement 2\" :1.2 loaves were served in all, \"options: \" Entailment or contradiction?", + "Output Program": [ + "loaves_served_s1 = 0.4+0.5\nloaves_served_s2 = 1.2\n\nif loaves_served_s1 is None or loaves_served_s2 is None:\n print('neutral')\n\nelif loaves_served_s1 == loaves_served_s2:\n print('Entailment')\n\nelif loaves_served_s1 != loaves_served_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The distance between their homes is more than 12 kilometers , Ella ' s walking speed is 5 km / h , and Ed ' s walking speed is 3 km / h, \"statement 2\" :The distance between their homes is 42 kilometers , Ella ' s walking speed is 5 km / h , and Ed ' s walking speed is 3 km / h, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "home_distance_s1 = 12\nhome_distance_s2 = 42\n\nif home_distance_s1 is None or home_distance_s2 is None:\n print('neutral')\n\nelif home_distance_s1 < home_distance_s2:\n print('Entailment')\n\nelif home_distance_s1 != home_distance_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sobha ' s father was more than 28 years of age when she was born while her mother was 36 years old when her brother four years younger to her was born, \"statement 2\" :Sobha ' s father was 38 years of age when she was born while her mother was 36 years old when her brother four years younger to her was born, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sobha_father_age_s1 = None\nsobha_father_age_s2 = 38\n\nif sobha_father_age_s1 is None or sobha_father_age_s2 is None:\n print('neutral')\n\nelif sobha_father_age_s1 == sobha_father_age_s2:\n print('Entailment')\n\nelif sobha_father_age_s1 != sobha_father_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Martin bought less than 20 concert tickets , some at the full price of $ 2.00 per ticket , and some at a discounted price of $ 1.60 per ticket, \"statement 2\" :Martin bought 10 concert tickets , some at the full price of $ 2.00 per ticket , and some at a discounted price of $ 1.60 per ticket, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "martin_ticket_s1 = None\nmartin_ticket_s2 = 10\n\nif martin_ticket_s1 is None or martin_ticket_s2 is None:\n print('neutral')\n\nelif martin_ticket_s1 == martin_ticket_s2:\n print('Entailment')\n\nelif martin_ticket_s1 != martin_ticket_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In an exam , Amar scored less than 84 percent , Bhavan scored 36 percent and Chetan 44 percent, \"statement 2\" :In an exam , Amar scored 64 percent , Bhavan scored 36 percent and Chetan 44 percent, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "aman_scored_s1 = None\naman_scored_s2 = 64\n\nif aman_scored_s1 is None or aman_scored_s2 is None:\n print('neutral')\n\nelif aman_scored_s1 == aman_scored_s2:\n print('Entailment')\n\nelif aman_scored_s1 != aman_scored_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 3000 and Christine ' s share is Rs, \"statement 2\" :more than 1000 and Christine ' s share is Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "christine_share_s1 = 3000\nchristine_share_s2 = 1000\n\nif christine_share_s1 is None or christine_share_s2 is None:\n print('neutral')\n\nelif christine_share_s1 > christine_share_s2:\n print('Entailment')\n\nelif christine_share_s1 != christine_share_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Maddie has 24 apples , if she give 12 to mike , how many does she have left ?, \"statement 2\" :Maddie has 44 apples , if she give 12 to mike , how many does she have left ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "maddie_appled_s1 = 24\nmaddie_appled_s2 = 44\n\nif maddie_appled_s1 is None or maddie_appled_s2 is None:\n print('neutral')\n\nelif maddie_appled_s1 > maddie_appled_s2:\n print('Entailment')\n\nelif maddie_appled_s1 != maddie_appled_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The farmers reported that they harvest 45.0 sacks of apples from each of the 8.0 sections of the orchard daily., \"statement 2\" :360.0 sacks are harvested every day, \"options: \" Entailment or contradiction?", + "Output Program": [ + "apple_harvest_s1 = 45*8\napple_harvest_s2 = 360\n\nif apple_harvest_s1 is None or apple_harvest_s2 is None:\n print('neutral')\n\nelif apple_harvest_s1 == apple_harvest_s2:\n print('Entailment')\n\nelif apple_harvest_s1 != apple_harvest_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Carina has 55 ounces of coffee divided into 5 - and 10 - ounce packages, \"statement 2\" :Carina has less than 55 ounces of coffee divided into 5 - and 10 - ounce packages, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "carina_coffee_s1 = 55\ncarina_coffee_s2 = 55-1\n\nif carina_coffee_s1 is None or carina_coffee_s2 is None:\n print('neutral')\n\nelif carina_coffee_s1 == carina_coffee_s2:\n print('Entailment')\n\nelif carina_coffee_s1 != carina_coffee_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the toy store is stocked with 3 types of balls and 6 types of board games , how many different selections E of the 4 items can Amanda make ?, \"statement 2\" :If the toy store is stocked with 4 types of balls and 6 types of board games , how many different selections E of the 4 items can Amanda make ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "toy_types_s1 = 3\ntoy_types_s2 = 4\n\nif toy_types_s1 is None or toy_types_s2 is None:\n print('neutral')\n\nelif toy_types_s1 == toy_types_s2:\n print('Entailment')\n\nelif toy_types_s1 != toy_types_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jack walks in a straight line toward Christina at a constant speed of less than 8 feet per second and Christina walks in a straight line toward Jack at a constant speed of 8 feet per second, \"statement 2\" :Jack walks in a straight line toward Christina at a constant speed of 7 feet per second and Christina walks in a straight line toward Jack at a constant speed of 8 feet per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jack_speed_s1 = None\njack_speed_s2 = 7\n\nif jack_speed_s1 is None or jack_speed_s2 is None:\n print('neutral')\n\nelif jack_speed_s1 == jack_speed_s2:\n print('Entailment')\n\nelif jack_speed_s1 != jack_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 4 more women than men on Centerville ' s board of education, \"statement 2\" :There are more than 4 more women than men on Centerville ' s board of education, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "centerville_women_s1 = 4\ncenterville_women_s2 = 4+1\n\nif centerville_women_s1 is None or centerville_women_s2 is None:\n print('neutral')\n\nelif centerville_women_s1 == centerville_women_s2:\n print('Entailment')\n\nelif centerville_women_s1 != centerville_women_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sandy is younger than Molly by less than 64 years, \"statement 2\" :Sandy is younger than Molly by 14 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_molly_age_s1 = None\nsandy_molly_age_s2 = 14\n\nif sandy_molly_age_s1 is None or sandy_molly_age_s2 is None:\n print('neutral')\n\nelif sandy_molly_age_s1 == sandy_molly_age_s2:\n print('Entailment')\n\nelif sandy_molly_age_s1 != sandy_molly_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alok ordered less than 36 chapatis , 5 plates of rice , 7 plates of mixed vegetable and 6 ice - cream cups, \"statement 2\" :Alok ordered 16 chapatis , 5 plates of rice , 7 plates of mixed vegetable and 6 ice - cream cups, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "alok_chapatis_s1 = None\nalok_chapatis_s2 = 16\n\nif alok_chapatis_s1 is None or alok_chapatis_s2 is None:\n print('neutral')\n\nelif alok_chapatis_s1 == alok_chapatis_s2:\n print('Entailment')\n\nelif alok_chapatis_s1 != alok_chapatis_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Carolyn bought 15 gumballs , Lew bought 12 gumballs , and Carey bought X gumballs, \"statement 2\" :Carolyn bought less than 75 gumballs , Lew bought 12 gumballs , and Carey bought X gumballs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "carolyn_gumballs_s1 = 15\ncarolyn_gumballs_s2 = 75\n\nif carolyn_gumballs_s1 is None or carolyn_gumballs_s2 is None:\n print('neutral')\n\nelif carolyn_gumballs_s1 < carolyn_gumballs_s2:\n print('Entailment')\n\nelif carolyn_gumballs_s1 != carolyn_gumballs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At the end of ' n ' years , Sandy got back more than 3 times the original investment, \"statement 2\" :At the end of ' n ' years , Sandy got back 5 times the original investment, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_investment_s1 = None\nsandy_investment_s2 = 5\n\nif sandy_investment_s1 is None or sandy_investment_s2 is None:\n print('neutral')\n\nelif sandy_investment_s1 == sandy_investment_s2:\n print('Entailment')\n\nelif sandy_investment_s1 != sandy_investment_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": And the CNN/ORC International survey also indicates that more than six in 10 Americans say that Speaker of the House John Boehner should be replaced ., \"statement 2\" :More than six in 10 say Speaker of the House John Boehner should lose his job, \"options: \" Entailment or neutral?", + "Output Program": [ + "american_speaker_s1 = 10+1\namerican_speaker_s2 = 10+1\n\nif american_speaker_s1 is None or american_speaker_s2 is None:\n print('neutral')\n\nelif american_speaker_s1 == american_speaker_s2:\n print('Entailment')\n\nelif american_speaker_s1 != american_speaker_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In Kaya ' s teacher ' s desk there are less than 64 pink highlighters , 28 yellow highlighters , and 25 blue highlighters, \"statement 2\" :In Kaya ' s teacher ' s desk there are 24 pink highlighters , 28 yellow highlighters , and 25 blue highlighters, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kaya_teacher_desk_s1 = None\nkaya_teacher_desk_s2 = 24\n\nif kaya_teacher_desk_s1 is None or kaya_teacher_desk_s2 is None:\n print('neutral')\n\nelif kaya_teacher_desk_s1 == kaya_teacher_desk_s2:\n print('Entailment')\n\nelif kaya_teacher_desk_s1 != kaya_teacher_desk_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Last year 12 members of the club traveled to both England and France , 6 members traveled to both England and Italy , and 0 members traveled to both France and Italy, \"statement 2\" :Last year less than 12 members of the club traveled to both England and France , 6 members traveled to both England and Italy , and 0 members traveled to both France and Italy, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "members_traveled_s1 = 12\nmembers_traveled_s2 = 12-1\n\nif members_traveled_s1 is None or members_traveled_s2 is None:\n print('neutral')\n\nelif members_traveled_s1 == members_traveled_s2:\n print('Entailment')\n\nelif members_traveled_s1 != members_traveled_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sheila works 8 hours per day on Monday , Wednesday and Friday , and 6 hours per day on Tuesday and Thursday, \"statement 2\" :Sheila works more than 5 hours per day on Monday , Wednesday and Friday , and 6 hours per day on Tuesday and Thursday, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sheila_works_s1 = 8\nsheila_works_s2 = 5\n\nif sheila_works_s1 is None or sheila_works_s2 is None:\n print('neutral')\n\nelif sheila_works_s1 > sheila_works_s2:\n print('Entailment')\n\nelif sheila_works_s1 != sheila_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Robert ate more than 5 chocolates , Nickel ate 3 chocolates, \"statement 2\" :Robert ate 7 chocolates , Nickel ate 3 chocolates, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "robert_chocolate_s1 = None\nrobert_chocolate_s2 = 7\n\nif robert_chocolate_s1 is None or robert_chocolate_s2 is None:\n print('neutral')\n\nelif robert_chocolate_s1 == robert_chocolate_s2:\n print('Entailment')\n\nelif robert_chocolate_s1 != robert_chocolate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Carl can wash all the windows of his house in 6 hours, \"statement 2\" :Carl can wash all the windows of his house in less than 6 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "carl_wash_s1 = 6\ncarl_wash_s2 = 6-1\n\nif carl_wash_s1 is None or carl_wash_s2 is None:\n print('neutral')\n\nelif carl_wash_s1 == carl_wash_s2:\n print('Entailment')\n\nelif carl_wash_s1 != carl_wash_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shridhar together earned 19800, \"statement 2\" :Shridhar together earned less than 79800, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shridhar_s1 = 19800\nshridhar_s2 = 79800\n\nif shridhar_s1 is None or shridhar_s2 is None:\n print('neutral')\n\nelif shridhar_s1 < shridhar_s2:\n print('Entailment')\n\nelif shridhar_s1 != shridhar_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Fred walks at a constant speed of more than 5 miles per hour and Sam walks at a constant speed of 5 miles per hour , how many miles has Sam walked when they meet ?, \"statement 2\" :If Fred walks at a constant speed of 6 miles per hour and Sam walks at a constant speed of 5 miles per hour , how many miles has Sam walked when they meet ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "fred_speed_s1 = None\nfred_speed_s2 = 6\n\nif fred_speed_s1 is None or fred_speed_s2 is None:\n print('neutral')\n\nelif fred_speed_s1 == fred_speed_s2:\n print('Entailment')\n\nelif fred_speed_s1 != fred_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Carina has more than 30 ounces of coffee divided into 5 - and 10 - ounce packages, \"statement 2\" :Carina has 70 ounces of coffee divided into 5 - and 10 - ounce packages, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "carine_coffee_s1 = None\ncarine_coffee_s2 = 70\n\nif carine_coffee_s1 is None or carine_coffee_s2 is None:\n print('neutral')\n\nelif carine_coffee_s1 == carine_coffee_s2:\n print('Entailment')\n\nelif carine_coffee_s1 != carine_coffee_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Pens , Pencils and Markers in a Jenna ' s desk are in the ratio of 2 : 2 : 5, \"statement 2\" :Pens , Pencils and Markers in a Jenna ' s desk are in the ratio of 3 : 2 : 5, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jenna_desk_ratio_s1 = 2/2/5\njenna_desk_ratio_s2 = 3/2/5\n\nif jenna_desk_ratio_s1 is None or jenna_desk_ratio_s2 is None:\n print('neutral')\n\nelif jenna_desk_ratio_s1 == jenna_desk_ratio_s2:\n print('Entailment')\n\nelif jenna_desk_ratio_s1 != jenna_desk_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were originally 20817.0 houses in Lincoln County and During a housing boom , developers built 97741.0 , \"statement 2\" :118558.0 houses are there now in Lincoln County , \"options: \" Entailment or contradiction?", + "Output Program": [ + "lincoln_county_houses_s1 = 20817+97741\nlincoln_county_houses_s2 = 118558\n\nif lincoln_county_houses_s1 is None or lincoln_county_houses_s2 is None:\n print('neutral')\n\nelif lincoln_county_houses_s1 == lincoln_county_houses_s2:\n print('Entailment')\n\nelif lincoln_county_houses_s1 != lincoln_county_houses_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nick ' s average ( arithmetic mean ) test score on 4 tests is 78, \"statement 2\" :Nick ' s average ( arithmetic mean ) test score on 3 tests is 78, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "nick_test_s1 = 4\nnick_test_s2 = 3\n\nif nick_test_s1 is None or nick_test_s2 is None:\n print('neutral')\n\nelif nick_test_s1 == nick_test_s2:\n print('Entailment')\n\nelif nick_test_s1 != nick_test_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the distance between their homes is less than 610 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 7 km / h , what is the distance traveled by Brad ?, \"statement 2\" :If the distance between their homes is 110 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 7 km / h , what is the distance traveled by Brad ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "home_distance_s1 = None\nhome_distance_s2 = 110\n\nif home_distance_s1 is None or home_distance_s2 is None:\n print('neutral')\n\nelif home_distance_s1 == home_distance_s2:\n print('Entailment')\n\nelif home_distance_s1 != home_distance_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ben left a job paying $ 75,000 per year to accept a sales job paying $ 45,000 per year plus less than 75 percent commission, \"statement 2\" :Ben left a job paying $ 75,000 per year to accept a sales job paying $ 45,000 per year plus 15 percent commission, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sales_job_percent_s1 = None\nsales_job_percent_s2 = 15\n\nif sales_job_percent_s1 is None or sales_job_percent_s2 is None:\n print('neutral')\n\nelif sales_job_percent_s1 == sales_job_percent_s2:\n print('Entailment')\n\nelif sales_job_percent_s1 != sales_job_percent_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Of a certain group of 100 people , 40 graduated from High School K , 65 graduated from College Y , and 30 live in City Z, \"statement 2\" :Of a certain group of less than 800 people , 40 graduated from High School K , 65 graduated from College Y , and 30 live in City Z, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "certain_group_people_s1 = 100\ncertain_group_people_s2 = 800\n\nif certain_group_people_s1 is None or certain_group_people_s2 is None:\n print('neutral')\n\nelif certain_group_people_s1 < certain_group_people_s2:\n print('Entailment')\n\nelif certain_group_people_s1 != certain_group_people_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many miles from home can Aaron jog so that he spends a total of 3 hours jogging and walking ?, \"statement 2\" :How many miles from home can Aaron jog so that he spends a total of less than 4 hours jogging and walking ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "aaron_jog_hour_s1 = 3\naaron_jog_hour_s2 = 4\n\nif aaron_jog_hour_s1 is None or aaron_jog_hour_s2 is None:\n print('neutral')\n\nelif aaron_jog_hour_s1 < aaron_jog_hour_s2:\n print('Entailment')\n\nelif aaron_jog_hour_s1 != aaron_jog_hour_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": There are 14240.0 books in a library and they are arranged on shelves that hold 8.0 books each, \"statement 2\" :1780.0 shelves are in the library, \"options: \" Entailment or contradiction?", + "Output Program": [ + "books_shelves_s1 = 14240/8\nbooks_shelves_s2 = 1780\n\nif books_shelves_s1 is None or books_shelves_s2 is None:\n print('neutral')\n\nelif books_shelves_s1 == books_shelves_s2:\n print('Entailment')\n\nelif books_shelves_s1 != books_shelves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": David obtained more than 26 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"statement 2\" :David obtained 76 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "david_marks_s1 = None\ndavid_marks_s2 = 76 + 65 + 82 + 67 + 85\n\nif david_marks_s1 is None or david_marks_s2 is None:\n print('neutral')\n\nelif david_marks_s1 == david_marks_s2:\n print('Entailment')\n\nelif david_marks_s1 != david_marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If 6 years are subtracted from the present age of Arun and the remainder is divided by 18 , then the present age of his grandson Gokul is obtained, \"statement 2\" :If less than 7 years are subtracted from the present age of Arun and the remainder is divided by 18 , then the present age of his grandson Gokul is obtained, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "arun_present_age_s1 = 6\narun_present_age_s2 = 7\n\nif arun_present_age_s1 is None or arun_present_age_s2 is None:\n print('neutral')\n\nelif arun_present_age_s1 < arun_present_age_s2:\n print('Entailment')\n\nelif arun_present_age_s1 != arun_present_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mike picked 7.0 apples, Nancy picked 3.0 apples, but Keith ate 6.0 apples and 4.0 pears, at the farm., \"statement 2\" :4.0 apples are left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "mike_apples_s1 = 7+3-6\nmike_apples_s2 = 4\n\nif mike_apples_s1 is None or mike_apples_s2 is None:\n print('neutral')\n\nelif mike_apples_s1 == mike_apples_s2:\n print('Entailment')\n\nelif mike_apples_s1 != mike_apples_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 25.0 children were riding on the bus and at the bus stop 18.0 children got on the bus, \"statement 2\" :43.0 children are now riding on the bus , \"options: \" Entailment or contradiction?", + "Output Program": [ + "bus_children_s1 = 25+18\nbus_children_s2 = 43\n\nif bus_children_s1 is None or bus_children_s2 is None:\n print('neutral')\n\nelif bus_children_s1 == bus_children_s2:\n print('Entailment')\n\nelif bus_children_s1 != bus_children_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a BCCI meeting there are less than 42 people, \"statement 2\" :In a BCCI meeting there are 12 people, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bcci_people_s1 = None\nbcci_people_s2 = 12\n\nif bcci_people_s1 is None or bcci_people_s2 is None:\n print('neutral')\n\nelif bcci_people_s1 == bcci_people_s2:\n print('Entailment')\n\nelif bcci_people_s1 != bcci_people_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Todd has 54.0 pieces of gum and Steve gave him 16.0 more pieces, \"statement 2\" :Todd has 70.0 pieces of gum now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "todd_gum_s1 = 54+16\ntodd_gum_s2 = 70\n\nif todd_gum_s1 is None or todd_gum_s2 is None:\n print('neutral')\n\nelif todd_gum_s1 == todd_gum_s2:\n print('Entailment')\n\nelif todd_gum_s1 != todd_gum_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Susan Atkins , shown here after her indictment in the Manson murders , has been denied parole 17 times ., \"statement 2\" :She has been denied parole on 17 previous occasions, \"options: \" Entailment or neutral?", + "Output Program": [ + "parole_denied_s1 = 17\nparole_denied_s2 = 17\n\nif parole_denied_s1 is None or parole_denied_s2 is None:\n print('neutral')\n\nelif parole_denied_s1 == parole_denied_s2:\n print('Entailment')\n\nelif parole_denied_s1 != parole_denied_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mrs. Hilt impressed 2436.0 fans at the basketball game on Friday, and the fans were seated in equal groups on 3.0 sets of bleachers, \"statement 2\" :812.0 fans were on each set, \"options: \" Entailment or contradiction?", + "Output Program": [ + "fans_each_set_s1 = 2436/3\nfans_each_set_s2 = 812\n\nif fans_each_set_s1 is None or fans_each_set_s2 is None:\n print('neutral')\n\nelif fans_each_set_s1 == fans_each_set_s2:\n print('Entailment')\n\nelif fans_each_set_s1 != fans_each_set_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John has 10 pairs of matched socks, \"statement 2\" :John has more than 10 pairs of matched socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_socks_pair_s1 = 10\njohn_socks_pair_s2 = 10+1\n\nif john_socks_pair_s1 is None or john_socks_pair_s2 is None:\n print('neutral')\n\nelif john_socks_pair_s1 == john_socks_pair_s2:\n print('Entailment')\n\nelif john_socks_pair_s1 != john_socks_pair_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A militant group beheaded three Iraqi Kurdish hostages , showing the killings in a videotape posted on a Web site yesterday , while another group announced that it had kidnapped at least 15 Iraqi National Guardsmen ., \"statement 2\" :A group claimed to have kidnapped 15 members of the Iraqi National Guard ., \"options: \" Entailment or neutral?", + "Output Program": [ + "members_kidnapped_s1 = 15\nmembers_kidnapped_s2 = 15\n\nif members_kidnapped_s1 is None or members_kidnapped_s2 is None:\n print('neutral')\n\nelif members_kidnapped_s1 == members_kidnapped_s2:\n print('Entailment')\n\nelif members_kidnapped_s1 != members_kidnapped_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The number of hours that Pat , a resident of Town X , watched television last week was between 1 and 2 standard deviations below the mean, \"statement 2\" :The number of hours that Pat , a resident of Town X , watched television last week was between less than 1 and 2 standard deviations below the mean, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "television_std_s1 = 1/2\ntelevision_std_s2 = 1/2+0.1\n\nif television_std_s1 is None or television_std_s2 is None:\n print('neutral')\n\nelif television_std_s1 == television_std_s2:\n print('Entailment')\n\nelif television_std_s1 != television_std_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Angela \u2019 s grade was in the 90 th percentile out of 80 grades in her class, \"statement 2\" :Angela \u2019 s grade was in the more than 90 th percentile out of 80 grades in her class, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "angela_percentile_s1 = 90\nangela_percentile_s2 = 90+1\n\nif angela_percentile_s1 is None or angela_percentile_s2 is None:\n print('neutral')\n\nelif angela_percentile_s1 == angela_percentile_s2:\n print('Entailment')\n\nelif angela_percentile_s1 != angela_percentile_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Chang Li has pet cockroaches that multiply at the same rate every week .\nThe first week he had 5 , the next week he had 10 , the second week he had 20 , and the fourth week he had 80, \"statement 2\" :Chang Li has pet cockroaches that multiply at the same rate every week . The first week he had more than 5 , the next week he had 10 , the second week he had 20 , and the fourth week he had 80, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cockroaches_s1 = 5\ncockroaches_s2 = 5+1\n\nif cockroaches_s1 is None or cockroaches_s2 is None:\n print('neutral')\n\nelif cockroaches_s1 == cockroaches_s2:\n print('Entailment')\n\nelif cockroaches_s1 != cockroaches_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": And El Salvador reported nine deaths from the storm ., \"statement 2\" :Nine dead in El Salvador, \"options: \" Entailment or neutral?", + "Output Program": [ + "death_from_storm_s1 = 9\ndeath_from_storm_s2 = 9\n\nif death_from_storm_s1 is None or death_from_storm_s2 is None:\n print('neutral')\n\nelif death_from_storm_s1 == death_from_storm_s2:\n print('Entailment')\n\nelif death_from_storm_s1 != death_from_storm_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Last week James worked a total of 42 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"statement 2\" :Last week James worked a total of less than 42 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "james_worked_s1 = 42\njames_worked_s2 = 42-1\n\nif james_worked_s1 is None or james_worked_s2 is None:\n print('neutral')\n\nelif james_worked_s1 == james_worked_s2:\n print('Entailment')\n\nelif james_worked_s1 != james_worked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Clarissa is driving home from work , 110 miles away, \"statement 2\" :Clarissa is driving home from work , 710 miles away, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "clarrissa_drived_s1 = 110\nclarrissa_drived_s2 = 710\n\nif clarrissa_drived_s1 is None or clarrissa_drived_s2 is None:\n print('neutral')\n\nelif clarrissa_drived_s1 == clarrissa_drived_s2:\n print('Entailment')\n\nelif clarrissa_drived_s1 != clarrissa_drived_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 8 years ago Jason was 12 times older, \"statement 2\" :more than 8 years ago Jason was 12 times older, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jason_years_ago_s1 = 8\njason_years_ago_s2 = 8+1\n\nif jason_years_ago_s1 is None or jason_years_ago_s2 is None:\n print('neutral')\n\nelif jason_years_ago_s1 == jason_years_ago_s2:\n print('Entailment')\n\nelif jason_years_ago_s1 != jason_years_ago_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": More than half a million sandbags have been prepared , the statement said , adding that people in flood areas are being told to move to safety ., \"statement 2\" :Fifty homes have been damaged across the state , according to the statement, \"options: \" Entailment or neutral?", + "Output Program": [ + "house_damaged_s1 = None\nhouse_damaged_s2 = 50\n\nif house_damaged_s1 is None or house_damaged_s2 is None:\n print('neutral')\n\nelif house_damaged_s1 == house_damaged_s2:\n print('Entailment')\n\nelif house_damaged_s1 != house_damaged_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Henry were to add 5 gallons of water to a tank that is already 3 / 4 full of water , the tank would be 7 / 8 full, \"statement 2\" :If Henry were to add 6 gallons of water to a tank that is already 3 / 4 full of water , the tank would be 7 / 8 full, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gallons_add_s1 = 5\ngallons_add_s2 = 6\n\nif gallons_add_s1 is None or gallons_add_s2 is None:\n print('neutral')\n\nelif gallons_add_s1 == gallons_add_s2:\n print('Entailment')\n\nelif gallons_add_s1 != gallons_add_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Olmert was found guilty of breach of trust , but was acquitted on two corruption-related charges ., \"statement 2\" :He is convicted of breach of trust and acquitted on two corruption-related charges, \"options: \" Entailment or neutral?", + "Output Program": [ + "corruption_charges_s1 = 2\ncorruption_charges_s2 = 2\n\nif corruption_charges_s1 is None or corruption_charges_s2 is None:\n print('neutral')\n\nelif corruption_charges_s1 == corruption_charges_s2:\n print('Entailment')\n\nelif corruption_charges_s1 != corruption_charges_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In addition to ordering 20 people released , the Supreme Court called for the review of cases involving six others who were convicted in the massacre ., \"statement 2\" :Mexican high court orders release of 20 convicted in 1997 killings of 45 people, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_killed_s1 = None\npeople_killed_s2 = 45\n\nif people_killed_s1 is None or people_killed_s2 is None:\n print('neutral')\n\nelif people_killed_s1 == people_killed_s2:\n print('Entailment')\n\nelif people_killed_s1 != people_killed_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Annie , working alone , can do the same job in just 9 hours, \"statement 2\" :Annie , working alone , can do the same job in just more than 7 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "annie_job_hours_s1 = 9\nannie_job_hours_s2 = 7\n\nif annie_job_hours_s1 is None or annie_job_hours_s2 is None:\n print('neutral')\n\nelif annie_job_hours_s1 > annie_job_hours_s2:\n print('Entailment')\n\nelif annie_job_hours_s1 != annie_job_hours_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Aarti had prior experience in that route and mentioned that the speed of stream was more than 1 kmph, \"statement 2\" :Aarti had prior experience in that route and mentioned that the speed of stream was 4 kmph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stream_speed_s1 = None\nstream_speed_s2 = 4\n\nif stream_speed_s1 is None or stream_speed_s2 is None:\n print('neutral')\n\nelif stream_speed_s1 == stream_speed_s2:\n print('Entailment')\n\nelif stream_speed_s1 != stream_speed_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": less than 6 friends A , B , C went for week end party to McDonald ' s restaurant and there they measure there weights in some order in 7 rounds, \"statement 2\" :3 friends A , B , C went for week end party to McDonald ' s restaurant and there they measure there weights in some order in 7 rounds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "friend_party_s1 = None\nfriend_party_s2 = 3\n\nif friend_party_s1 is None or friend_party_s2 is None:\n print('neutral')\n\nelif friend_party_s1 == friend_party_s2:\n print('Entailment')\n\nelif friend_party_s1 != friend_party_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A shoe store sells Adidas shoes for $ more than 10 each and Puma shoes for $ 50 each, \"statement 2\" :A shoe store sells Adidas shoes for $ 60 each and Puma shoes for $ 50 each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "adidas_shoes_s1 = None\nadidas_shoes_s2 = 60\n\nif adidas_shoes_s1 is None or adidas_shoes_s2 is None:\n print('neutral')\n\nelif adidas_shoes_s1 == adidas_shoes_s2:\n print('Entailment')\n\nelif adidas_shoes_s1 != adidas_shoes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Denise removes 5.0 bananas from a jar and there were originally 46.0 bananas in the jar, \"statement 2\" :42.0 bananas are left in the jar, \"options: \" Entailment or contradiction?", + "Output Program": [ + "denise_bananas_s1 = 46-1\ndenise_bananas_s2 = 42\n\nif denise_bananas_s1 is None or denise_bananas_s2 is None:\n print('neutral')\n\nelif denise_bananas_s1 == denise_bananas_s2:\n print('Entailment')\n\nelif denise_bananas_s1 != denise_bananas_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the average speed of the whole journey was 36 mph , then what is Tom ' s speed driving from B to C in miles per hour ?, \"statement 2\" :If the average speed of the whole journey was more than 36 mph , then what is Tom ' s speed driving from B to C in miles per hour ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "journey_average_speed_s1 = 36\njourney_average_speed_s2 = 36+1\n\nif journey_average_speed_s1 is None or journey_average_speed_s2 is None:\n print('neutral')\n\nelif journey_average_speed_s1 == journey_average_speed_s2:\n print('Entailment')\n\nelif journey_average_speed_s1 != journey_average_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many miles from home can Aaron jog so that he spends a total of less than 4 hours jogging and walking ?, \"statement 2\" :How many miles from home can Aaron jog so that he spends a total of 3 hours jogging and walking ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "aaron_jog_s1 = None\naaron_jog_s2 = 3\n\nif aaron_jog_s1 is None or aaron_jog_s2 is None:\n print('neutral')\n\nelif aaron_jog_s1 == aaron_jog_s2:\n print('Entailment')\n\nelif aaron_jog_s1 != aaron_jog_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": A starts from Delhi with a speed of less than 35 kmph at 7 a, \"statement 2\" :A starts from Delhi with a speed of 25 kmph at 7 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "delhi_speed_s1 = None\ndelhi_speed_s2 = 25\n\nif delhi_speed_s1 is None or delhi_speed_s2 is None:\n print('neutral')\n\nelif delhi_speed_s1 == delhi_speed_s2:\n print('Entailment')\n\nelif delhi_speed_s1 != delhi_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Energy is a central theme of the Automotive X Prize -- a self-described '' $ 10 million competition to inspire a new generation of viable , superefficient vehicles that people want to buy . '', \"statement 2\" :Others competed for the $ 10 million Automotive X Prize, \"options: \" Entailment or neutral?", + "Output Program": [ + "automative_prize_s1 = None\nautomative_prize_s2 = 10\n\nif automative_prize_s1 is None or automative_prize_s2 is None:\n print('neutral')\n\nelif automative_prize_s1 == automative_prize_s2:\n print('Entailment')\n\nelif automative_prize_s1 != automative_prize_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 18 stations between Hyderabad and Bangalore, \"statement 2\" :There are 28 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_stations_s1 = 18\ntotal_stations_s2 = 28\n\nif total_stations_s1 is None or total_stations_s2 is None:\n print('neutral')\n\nelif total_stations_s1 == total_stations_s2:\n print('Entailment')\n\nelif total_stations_s1 != total_stations_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If neha is 10\nBoth Sonali and priyanka is 15\nBoth sadaf and tanu is 10 .\nhow much is prinka by the same system ?, \"statement 2\" :If neha is less than 10 Both Sonali and priyanka is 15 Both sadaf and tanu is 10 . how much is prinka by the same system ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "neha_system_s1 = 10\nneha_system_s2 = 10-1\n\nif neha_system_s1 is None or neha_system_s2 is None:\n print('neutral')\n\nelif neha_system_s1 == neha_system_s2:\n print('Entailment')\n\nelif neha_system_s1 != neha_system_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If an outfit consists of less than 5 shirt , 1 pair of jeans , and 1 pair of sneakers , how many different outfits does Jordan have ?, \"statement 2\" :If an outfit consists of 1 shirt , 1 pair of jeans , and 1 pair of sneakers , how many different outfits does Jordan have ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_outfit_s1 = None\ntotal_outfit_s2 = 1\n\nif total_outfit_s1 is None or total_outfit_s2 is None:\n print('neutral')\n\nelif total_outfit_s1 == total_outfit_s2:\n print('Entailment')\n\nelif total_outfit_s1 != total_outfit_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In how many ways can you seat more than 2 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"statement 2\" :In how many ways can you seat 9 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_on_bench_s1 = None\npeople_on_bench_s2 = 9\n\nif people_on_bench_s1 is None or people_on_bench_s2 is None:\n print('neutral')\n\nelif people_on_bench_s1 == people_on_bench_s2:\n print('Entailment')\n\nelif people_on_bench_s1 != people_on_bench_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a group of more than 1 boys & 4 girls a Committee of 4 persons is to be formed, \"statement 2\" :In a group of 6 boys & 4 girls a Committee of 4 persons is to be formed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boy_group_s1 = None\nboy_group_s2 = 6\n\nif boy_group_s1 is None or boy_group_s2 is None:\n print('neutral')\n\nelif boy_group_s1 == boy_group_s2:\n print('Entailment')\n\nelif boy_group_s1 != boy_group_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The number of hours that Pat , a resident of Town X , watched television last week was between 1 and 2 standard deviations below the mean, \"statement 2\" :The number of hours that Pat , a resident of Town X , watched television last week was between 7 and 2 standard deviations below the mean, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "television_std_s1 = 1/2\ntelevision_std_s2 = 7/2\n\nif television_std_s1 is None or television_std_s2 is None:\n print('neutral')\n\nelif television_std_s1 == television_std_s2:\n print('Entailment')\n\nelif television_std_s1 != television_std_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rihanna brought home less than 550 pens but while packing them , she misplaced some of them, \"statement 2\" :Rihanna brought home 150 pens but while packing them , she misplaced some of them, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rihanna_s1 = None\nrihanna_s2 = 150\n\nif rihanna_s1 is None or rihanna_s2 is None:\n print('neutral')\n\nelif rihanna_s1 == rihanna_s2:\n print('Entailment')\n\nelif rihanna_s1 != rihanna_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joe drives less than 620 miles at 60 miles per hour , and then he drives the next 120 miles at 40 miles per hour, \"statement 2\" :Joe drives 420 miles at 60 miles per hour , and then he drives the next 120 miles at 40 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "joe_drives_s1 = None\njoe_drives_s2 = 420\n\nif joe_drives_s1 is None or joe_drives_s2 is None:\n print('neutral')\n\nelif joe_drives_s1 == joe_drives_s2:\n print('Entailment')\n\nelif joe_drives_s1 != joe_drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The first Barbie doll was sold for $ 3 ., \"statement 2\" :The first Barbie cost 3 dollars ., \"options: \" Entailment or neutral?", + "Output Program": [ + "barbie_prize_s1 = 3\nbarbie_prize_s2 = 3\n\nif barbie_prize_s1 is None or barbie_prize_s2 is None:\n print('neutral')\n\nelif barbie_prize_s1 == barbie_prize_s2:\n print('Entailment')\n\nelif barbie_prize_s1 != barbie_prize_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": During a car trip , Maria stopped to rest after she traveled 1 / 2 of the total distance to her destination, \"statement 2\" :During a car trip , Maria stopped to rest after she traveled less than 7 / 2 of the total distance to her destination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "maria_traveled_s1 = 1/2\nmaria_traveled_s2 = 7/2\n\nif maria_traveled_s1 is None or maria_traveled_s2 is None:\n print('neutral')\n\nelif maria_traveled_s1 < maria_traveled_s2:\n print('Entailment')\n\nelif maria_traveled_s1 != maria_traveled_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": David obtained more than 26 , 35 , 42 , 57 and 55 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"statement 2\" :David obtained 36 , 35 , 42 , 57 and 55 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "david_marks_s1 = None\ndavid_marks_s2 = 36 + 35 + 42 + 57 + 55\n\nif david_marks_s1 is None or david_marks_s2 is None:\n print('neutral')\n\nelif david_marks_s1 == david_marks_s2:\n print('Entailment')\n\nelif david_marks_s1 != david_marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A train leaves Delhi at more than 6 a, \"statement 2\" :A train leaves Delhi at 9 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "train_leaves_s1 = None\ntrain_leaves_s2 = 9\n\nif train_leaves_s1 is None or train_leaves_s2 is None:\n print('neutral')\n\nelif train_leaves_s1 == train_leaves_s2:\n print('Entailment')\n\nelif train_leaves_s1 != train_leaves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": less than 4620 in 8 % stock , Michael earns Rs, \"statement 2\" :1620 in 8 % stock , Michael earns Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "michael_earns_s1 = None\nmichael_earns_s2 = 1620\n\nif michael_earns_s1 is None or michael_earns_s2 is None:\n print('neutral')\n\nelif michael_earns_s1 == michael_earns_s2:\n print('Entailment')\n\nelif michael_earns_s1 != michael_earns_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a group of 6 boys & 4 girls a Committee of 4 persons is to be formed, \"statement 2\" :In a group of less than 6 boys & 4 girls a Committee of 4 persons is to be formed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "groups_boy_s1 = 6\ngroups_boy_s2 = 6-1\n\nif groups_boy_s1 is None or groups_boy_s2 is None:\n print('neutral')\n\nelif groups_boy_s1 == groups_boy_s2:\n print('Entailment')\n\nelif groups_boy_s1 != groups_boy_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Renu can do a piece of work in more than 7 days , but with the help of her friend Suma , she can do it in 3 days, \"statement 2\" :Renu can do a piece of work in 8 days , but with the help of her friend Suma , she can do it in 3 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "renu_work_s1 = None\nrenu_work_s2 = 8\n\nif renu_work_s1 is None or renu_work_s2 is None:\n print('neutral')\n\nelif renu_work_s1 == renu_work_s2:\n print('Entailment')\n\nelif renu_work_s1 != renu_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Michael earned $ 358 last week , how many hours did he work ?, \"statement 2\" :If Michael earned $ 558 last week , how many hours did he work ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "michael_earned_s1 = 358\nmichael_earned_s2 = 558\n\nif michael_earned_s1 is None or michael_earned_s2 is None:\n print('neutral')\n\nelif michael_earned_s1 == michael_earned_s2:\n print('Entailment')\n\nelif michael_earned_s1 != michael_earned_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Jerry wants to raise his average by 2 points , what score must he earn on the fourth test ?, \"statement 2\" :If Jerry wants to raise his average by less than 8 points , what score must he earn on the fourth test ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jerry_average_point_s1 = 2\njerry_average_point_s2 = 8\n\nif jerry_average_point_s1 is None or jerry_average_point_s2 is None:\n print('neutral')\n\nelif jerry_average_point_s1 < jerry_average_point_s2:\n print('Entailment')\n\nelif jerry_average_point_s1 != jerry_average_point_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 7.0 crayons in the drawer and Mary put 3.0 more crayons in the drawer, \"statement 2\" :9.0 crayons are in the drawer now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "drawer_crayons_s1 = 7+3\ndrawer_crayons_s2 = 9\n\nif drawer_crayons_s1 is None or drawer_crayons_s2 is None:\n print('neutral')\n\nelif drawer_crayons_s1 < drawer_crayons_s2:\n print('Entailment')\n\nelif drawer_crayons_s1 != drawer_crayons_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rita can knit a pair of socks in less than 6 days, \"statement 2\" :Rita can knit a pair of socks in 3 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "socks_knits_s1 = None\nsocks_knits_s2 = 3\n\nif socks_knits_s1 is None or socks_knits_s2 is None:\n print('neutral')\n\nelif socks_knits_s1 < socks_knits_s2:\n print('Entailment')\n\nelif socks_knits_s1 != socks_knits_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Matthew ' s walking rate was 3 km per hour and Johnny ' s was 4 km per hour , how many km had Johnny walked when they met ?, \"statement 2\" :Matthew ' s walking rate was less than 4 km per hour and Johnny ' s was 4 km per hour , how many km had Johnny walked when they met ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "matthew_walking_rate_s1 = 3\nmatthew_walking_rate_s2 = 4\n\nif matthew_walking_rate_s1 is None or matthew_walking_rate_s2 is None:\n print('neutral')\n\nelif matthew_walking_rate_s1 < matthew_walking_rate_s2:\n print('Entailment')\n\nelif matthew_walking_rate_s1 != matthew_walking_rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Frank is 15 years younger then John, \"statement 2\" :Frank is less than 25 years younger then John, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "frank_john_difference_s1 = 15\nfrank_john_difference_s2 = 25\n\nif frank_john_difference_s1 is None or frank_john_difference_s2 is None:\n print('neutral')\n\nelif frank_john_difference_s1 < frank_john_difference_s2:\n print('Entailment')\n\nelif frank_john_difference_s1 != frank_john_difference_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill has 21 gallons of water stored in quart , half - gallon , and one gallon jars, \"statement 2\" :Jill has 31 gallons of water stored in quart , half - gallon , and one gallon jars, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gallons_of_water_s1 = 21\ngallons_of_water_s2 = 31\n\nif gallons_of_water_s1 is None or gallons_of_water_s2 is None:\n print('neutral')\n\nelif gallons_of_water_s1 == gallons_of_water_s2:\n print('Entailment')\n\nelif gallons_of_water_s1 != gallons_of_water_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Marfa , Alpine and Marathon sit along U.S. 90 like hitching posts ., \"statement 2\" :The towns of Marfa , Alpine and Marathon sit along U.S. 90 like hitching posts, \"options: \" Entailment or neutral?", + "Output Program": [ + "hitching_post_s1 = 90\nhitching_post_s2 = 90\n\nif hitching_post_s1 is None or hitching_post_s2 is None:\n print('neutral')\n\nelif hitching_post_s1 == hitching_post_s2:\n print('Entailment')\n\nelif hitching_post_s1 != hitching_post_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are only three African-Americans on the 53-person police force ., \"statement 2\" :Of Ferguson 's 53 police officers , three are African-American, \"options: \" Entailment or neutral?", + "Output Program": [ + "police_officers_s1 = 53\npolice_officers_s2 = 53\n\nif police_officers_s1 is None or police_officers_s2 is None:\n print('neutral')\n\nelif police_officers_s1 == police_officers_s2:\n print('Entailment')\n\nelif police_officers_s1 != police_officers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shop Offered 20 % offer for every Shirt , Smith bought a shirt at Rs, \"statement 2\" :Shop Offered less than 50 % offer for every Shirt , Smith bought a shirt at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shirt_offered_s1 = 20\nshirt_offered_s2 = 50\n\nif shirt_offered_s1 is None or shirt_offered_s2 is None:\n print('neutral')\n\nelif shirt_offered_s1 < shirt_offered_s2:\n print('Entailment')\n\nelif shirt_offered_s1 != shirt_offered_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 20000 after 8 months , Sravan advances Rs, \"statement 2\" :10000 after 8 months , Sravan advances Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sravan_advances_s1 = 20000\nsravan_advances_s2 = 10000\n\nif sravan_advances_s1 is None or sravan_advances_s2 is None:\n print('neutral')\n\nelif sravan_advances_s1 == sravan_advances_s2:\n print('Entailment')\n\nelif sravan_advances_s1 != sravan_advances_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The average number of shirts with Salman , Ambani and Dalmiya is 60 , if all of them reached a shopping mall in Delhi and purchased 6 shirts each of them then average number of shirt each of them now has, \"statement 2\" :The average number of shirts with Salman , Ambani and Dalmiya is 70 , if all of them reached a shopping mall in Delhi and purchased 6 shirts each of them then average number of shirt each of them now has, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "family_members_s1 = 60\nfamily_members_s2 = 70\n\nif family_members_s1 is None or family_members_s2 is None:\n print('neutral')\n\nelif family_members_s1 == family_members_s2:\n print('Entailment')\n\nelif family_members_s1 != family_members_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Julie has more than 5 friends, \"statement 2\" :Julie has 7 friends, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "julie_friends_s1 = None\njulie_friends_s2 = 7\n\nif julie_friends_s1 is None or julie_friends_s2 is None:\n print('neutral')\n\nelif julie_friends_s1 == julie_friends_s2:\n print('Entailment')\n\nelif julie_friends_s1 != julie_friends_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Martin bought more than 2 packet milk at an average price ( arithmetic mean ) of 20 \u00a2, \"statement 2\" :Martin bought 5 packet milk at an average price ( arithmetic mean ) of 20 \u00a2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "martin_milk_packet_s1 = None\nmartin_milk_packet_s2 = 5\n\nif martin_milk_packet_s1 is None or martin_milk_packet_s2 is None:\n print('neutral')\n\nelif martin_milk_packet_s1 == martin_milk_packet_s2:\n print('Entailment')\n\nelif martin_milk_packet_s1 != martin_milk_packet_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jake , Paul and Hari together dig the well in 8 days, \"statement 2\" :Jake , Paul and Hari together dig the well in more than 7 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "paul_dig_well_s1 = 8\npaul_dig_well_s2 = 7\n\nif paul_dig_well_s1 is None or paul_dig_well_s2 is None:\n print('neutral')\n\nelif paul_dig_well_s1 > paul_dig_well_s2:\n print('Entailment')\n\nelif paul_dig_well_s1 != paul_dig_well_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are less than 78 stations between Kolkatta and Chennai, \"statement 2\" :There are 28 stations between Kolkatta and Chennai, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_stations_s1 = None\ntotal_stations_s2 = 28\n\nif total_stations_s1 is None or total_stations_s2 is None:\n print('neutral')\n\nelif total_stations_s1 == total_stations_s2:\n print('Entailment')\n\nelif total_stations_s1 != total_stations_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": New voters also are less likely to be Republicans ( 27 percent , compared with 36 percent of repeat voters ) and more apt to be liberals ( 28 percent vs. 17 percent ) ., \"statement 2\" :Among likely voters in this survey , 36 percent are Democrats ., \"options: \" Entailment or neutral?", + "Output Program": [ + "total_stations_s1 = None\ntotal_stations_s2 = 28\n\nif total_stations_s1 is None or total_stations_s2 is None:\n print('neutral')\n\nelif total_stations_s1 == total_stations_s2:\n print('Entailment')\n\nelif total_stations_s1 != total_stations_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Last week James worked a total of 42 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"statement 2\" :Last week James worked a total of less than 62 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "james_worked_s1 = 42\njames_worked_s2 = 62\n\nif james_worked_s1 is None or james_worked_s2 is None:\n print('neutral')\n\nelif james_worked_s1 < james_worked_s2:\n print('Entailment')\n\nelif james_worked_s1 != james_worked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Fred walks at a constant speed of 5 miles per hour and Sam walks at a constant speed of 5 miles per hour , how many miles has Sam walked when they meet ?, \"statement 2\" :If Fred walks at a constant speed of more than 1 miles per hour and Sam walks at a constant speed of 5 miles per hour , how many miles has Sam walked when they meet ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "fred_constant_speed_s1 = 5\nfred_constant_speed_s2 = 1\n\nif fred_constant_speed_s1 is None or fred_constant_speed_s2 is None:\n print('neutral')\n\nelif fred_constant_speed_s1 > fred_constant_speed_s2:\n print('Entailment')\n\nelif fred_constant_speed_s1 != fred_constant_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Albert borrowed a total of $ more than 1000 from Brian and Charlie, \"statement 2\" :Albert borrowed a total of $ 6000 from Brian and Charlie, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "albert_borrowed_s1 = None\nalbert_borrowed_s2 = 6000\n\nif albert_borrowed_s1 is None or albert_borrowed_s2 is None:\n print('neutral')\n\nelif albert_borrowed_s1 == albert_borrowed_s2:\n print('Entailment')\n\nelif albert_borrowed_s1 != albert_borrowed_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lucy deposited $ 67600 in an investment fund that provided 16 percent annual return compounded quarterly, \"statement 2\" :Lucy deposited $ 47600 in an investment fund that provided 16 percent annual return compounded quarterly, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "lucy_deposited_s1 = 67600\nlucy_deposited_s2 = 47600\n\nif lucy_deposited_s1 is None or lucy_deposited_s2 is None:\n print('neutral')\n\nelif lucy_deposited_s1 == lucy_deposited_s2:\n print('Entailment')\n\nelif lucy_deposited_s1 != lucy_deposited_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the height difference between the two if the Empire\nState Building is 443 m tall and the Petronas Towers is 452 m tall ?, \"statement 2\" :What is the height difference between the two if the Empire State Building is less than 443 m tall and the Petronas Towers is 452 m tall ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "state_building_s1 = 443\nstate_building_s2 = 443-1\n\nif state_building_s1 is None or state_building_s2 is None:\n print('neutral')\n\nelif state_building_s1 == state_building_s2:\n print('Entailment')\n\nelif state_building_s1 != state_building_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sally had 39.0 baseball cards , and 9.0 were torn and Sara bought 24.0 of Sally 's baseball cards , \"statement 2\" :Sally has 14.0 baseball cards now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "sally_baseball_s1 = 39\nsally_baseball_s2 = 14\n\nif sally_baseball_s1 is None or sally_baseball_s2 is None:\n print('neutral')\n\nelif sally_baseball_s1 == sally_baseball_s2:\n print('Entailment')\n\nelif sally_baseball_s1 != sally_baseball_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alex joined him 8 months later , investing Rs, \"statement 2\" :Alex joined him more than 7 months later , investing Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "alex_joined_s1 = 8\nalex_joined_s2 = 7\n\nif alex_joined_s1 is None or alex_joined_s2 is None:\n print('neutral')\n\nelif alex_joined_s1 > alex_joined_s2:\n print('Entailment')\n\nelif alex_joined_s1 != alex_joined_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": David obtained 76 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"statement 2\" :David obtained 86 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "david_average_s1 = (76 + 65 + 82 + 67 + 85)/5\ndavid_average_s2 = (86 + 65 + 82 + 67 + 85)/5\n\nif david_average_s1 is None or david_average_s2 is None:\n print('neutral')\n\nelif david_average_s1 == david_average_s2:\n print('Entailment')\n\nelif david_average_s1 != david_average_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John has 6 friends who want to ride in his new car that can accommodate only 3 people at a time ( John plus 2 passengers ), \"statement 2\" :John has more than 5 friends who want to ride in his new car that can accommodate only 3 people at a time ( John plus 2 passengers ), \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_frinds_s1 = 6\njohn_frinds_s2 = 5\n\nif john_frinds_s1 is None or john_frinds_s2 is None:\n print('neutral')\n\nelif john_frinds_s1 > john_frinds_s2:\n print('Entailment')\n\nelif john_frinds_s1 != john_frinds_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many different combinations of more than 1 passengers can be formed from John ' s 6 friends ?, \"statement 2\" :How many different combinations of 2 passengers can be formed from John ' s 6 friends ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "passengers_combination_s1 = None\npassengers_combination_s2 = 2\n\nif passengers_combination_s1 is None or passengers_combination_s2 is None:\n print('neutral')\n\nelif passengers_combination_s1 > passengers_combination_s2:\n print('Entailment')\n\nelif passengers_combination_s1 != passengers_combination_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Martin has to secure 80 % marks to clear his exam of class 9 th .\nHe got 200 marks and failed by 200 marks .\nWhat is the maximum marks ?, \"statement 2\" :Martin has to secure more than 10 % marks to clear his exam of class 9 th . He got 200 marks and failed by 200 marks . What is the maximum marks ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "martin_secure_s1 = 80\nmartin_secure_s2 = 10\n\nif martin_secure_s1 is None or martin_secure_s2 is None:\n print('neutral')\n\nelif martin_secure_s1 > martin_secure_s2:\n print('Entailment')\n\nelif martin_secure_s1 != martin_secure_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Today Katherine , who is 40 years old , and her daughter , who is 10 years old , celebrate their birthdays, \"statement 2\" :Today Katherine , who is less than 70 years old , and her daughter , who is 10 years old , celebrate their birthdays, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "katherine_age_s1 = 40\nkatherine_age_s2 = 70\n\nif katherine_age_s1 is None or katherine_age_s2 is None:\n print('neutral')\n\nelif katherine_age_s1 < katherine_age_s2:\n print('Entailment')\n\nelif katherine_age_s1 != katherine_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": While driving from City A to City B , Bob drives at a constant speed of 40 miles per hour, \"statement 2\" :While driving from City A to City B , Bob drives at a constant speed of 30 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "a_b_driving_s1 = 40\na_b_driving_s2 = 30\n\nif a_b_driving_s1 is None or a_b_driving_s2 is None:\n print('neutral')\n\nelif a_b_driving_s1 == a_b_driving_s2:\n print('Entailment')\n\nelif a_b_driving_s1 != a_b_driving_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Missy received 18 messages from Laurence , how many messages does Keith receive from Juan ?, \"statement 2\" :If Missy received less than 38 messages from Laurence , how many messages does Keith receive from Juan ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "missy_received_s1 = 18\nmissy_received_s2 = 38\n\nif missy_received_s1 is None or missy_received_s2 is None:\n print('neutral')\n\nelif missy_received_s1 < missy_received_s2:\n print('Entailment')\n\nelif missy_received_s1 != missy_received_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Yolanda ' s walking rate was 3 miles per hour and Bob \u0442 ' s was 4 miles per hour , how many miles had Bob walked when they met ?, \"statement 2\" :If Yolanda ' s walking rate was more than 2 miles per hour and Bob \u0442 ' s was 4 miles per hour , how many miles had Bob walked when they met ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "yolanda_walking_rate_s1 = 3\nyolanda_walking_rate_s2 = 2\n\nif yolanda_walking_rate_s1 is None or yolanda_walking_rate_s2 is None:\n print('neutral')\n\nelif yolanda_walking_rate_s1 > yolanda_walking_rate_s2:\n print('Entailment')\n\nelif yolanda_walking_rate_s1 != yolanda_walking_rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": However , most luxury lingerie is made of materials with less than 4 % cotton -- and will not be allowed ., \"statement 2\" :This includes fine lingerie -- most is made of materials with 4 % of cotton and less, \"options: \" Entailment or neutral?", + "Output Program": [ + "cotton_material_s1 = 4-1\ncotton_material_s2 = 4-1\n\nif cotton_material_s1 is None or cotton_material_s2 is None:\n print('neutral')\n\nelif cotton_material_s1 == cotton_material_s2:\n print('Entailment')\n\nelif cotton_material_s1 != cotton_material_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Patrick purchased 90 pencils and sold them at a loss equal to the selling price of 40 pencils, \"statement 2\" :Patrick purchased more than 50 pencils and sold them at a loss equal to the selling price of 40 pencils, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "patrick_purchased_s1 = 90\npatrick_purchased_s2 = 50\n\nif patrick_purchased_s1 is None or patrick_purchased_s2 is None:\n print('neutral')\n\nelif patrick_purchased_s1 > patrick_purchased_s2:\n print('Entailment')\n\nelif patrick_purchased_s1 != patrick_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jaime earned enough money by selling seashells at 22 cents each to buy several used paperback books at 55 cents each, \"statement 2\" :Jaime earned enough money by selling seashells at less than 22 cents each to buy several used paperback books at 55 cents each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "seashells_price_s1 = 22\nseashells_price_s2 = 22-1\n\nif seashells_price_s1 is None or seashells_price_s2 is None:\n print('neutral')\n\nelif seashells_price_s1 == seashells_price_s2:\n print('Entailment')\n\nelif seashells_price_s1 != seashells_price_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Three of the patients were in critical condition , two in serious , the department said ., \"statement 2\" :Three people are in critical condition, \"options: \" Entailment or neutral?", + "Output Program": [ + "serious_patients_s1 = None\nserious_patients_s2 = 3\n\nif serious_patients_s1 is None or serious_patients_s2 is None:\n print('neutral')\n\nelif serious_patients_s1 == serious_patients_s2:\n print('Entailment')\n\nelif serious_patients_s1 != serious_patients_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Suresh works for 9 hours and then the remaining job is completed by Ashutosh, \"statement 2\" :Suresh works for more than 3 hours and then the remaining job is completed by Ashutosh, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "suresh_works_s1 = 9\nsuresh_works_s2 = 3\n\nif suresh_works_s1 is None or suresh_works_s2 is None:\n print('neutral')\n\nelif suresh_works_s1 > suresh_works_s2:\n print('Entailment')\n\nelif suresh_works_s1 != suresh_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joe drives less than 460 miles at 60 miles per hour , and then he drives the next 120 miles at 40 miles per hour, \"statement 2\" :Joe drives 360 miles at 60 miles per hour , and then he drives the next 120 miles at 40 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "joe_drives_s1 = None\njoe_drives_s2 = 360\n\nif joe_drives_s1 is None or joe_drives_s2 is None:\n print('neutral')\n\nelif joe_drives_s1 == joe_drives_s2:\n print('Entailment')\n\nelif joe_drives_s1 != joe_drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Prabhu purchased 30 kg of rice at the rate of 17.50 per kg and another 30 kg rice at a certain rate, \"statement 2\" :Prabhu purchased more than 30 kg of rice at the rate of 17.50 per kg and another 30 kg rice at a certain rate, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "prabhu_purchased_s1 = 30\nprabhu_purchased_s2 = 30+1\n\nif prabhu_purchased_s1 is None or prabhu_purchased_s2 is None:\n print('neutral')\n\nelif prabhu_purchased_s1 == prabhu_purchased_s2:\n print('Entailment')\n\nelif prabhu_purchased_s1 != prabhu_purchased_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Martha has less than 5 dogs and 4 cats, \"statement 2\" :Martha has 4 dogs and 4 cats, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "martha_dogs_s1 = None\nmartha_dogs_s2 = 4\n\nif martha_dogs_s1 is None or martha_dogs_s2 is None:\n print('neutral')\n\nelif martha_dogs_s1 == martha_dogs_s2:\n print('Entailment')\n\nelif martha_dogs_s1 != martha_dogs_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill , who lives in City C , plans to visit 5 different cities , M , L , S , N , and O, \"statement 2\" :Jill , who lives in City C , plans to visit less than 6 different cities , M , L , S , N , and O, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jill_cities_s1 = 5\njill_cities_s2 = 6\n\nif jill_cities_s1 is None or jill_cities_s2 is None:\n print('neutral')\n\nelif jill_cities_s1 < jill_cities_s2:\n print('Entailment')\n\nelif jill_cities_s1 != jill_cities_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": When x dividedby 288 , the remainder is 47, \"statement 2\" :When x dividedby 588 , the remainder is 47, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "no_divided_x_s1 = 288\nno_divided_x_s2 = 588\n\nif no_divided_x_s1 is None or no_divided_x_s2 is None:\n print('neutral')\n\nelif no_divided_x_s1 == no_divided_x_s2:\n print('Entailment')\n\nelif no_divided_x_s1 != no_divided_x_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Kaleb saved 21 dollars, and got 15 dollars for his allowance and he gambles it and wins 6 times the amount, \"statement 2\" :He has 216.0 dollars now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "kaleb_dollars_s1 = (21+15)*6\nkaleb_dollars_s2 = 216\n\nif kaleb_dollars_s1 is None or kaleb_dollars_s2 is None:\n print('neutral')\n\nelif kaleb_dollars_s1 == kaleb_dollars_s2:\n print('Entailment')\n\nelif kaleb_dollars_s1 != kaleb_dollars_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Woods has been been on the Ryder Cup team seven times and has a record of 13-17-2 ., \"statement 2\" :Tiger Woods has played in seven Ryder Cups, \"options: \" Entailment or neutral?", + "Output Program": [ + "ryder_cup_team_s1 = 7\nryder_cup_team_s2 = 7\n\nif ryder_cup_team_s1 is None or ryder_cup_team_s2 is None:\n print('neutral')\n\nelif ryder_cup_team_s1 == ryder_cup_team_s2:\n print('Entailment')\n\nelif ryder_cup_team_s1 != ryder_cup_team_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Raman mixed 54 kg of butter at Rs, \"statement 2\" :Raman mixed less than 54 kg of butter at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "raman_butter_s1 = 54\nraman_butter_s2 = 54-1\n\nif raman_butter_s1 is None or raman_butter_s2 is None:\n print('neutral')\n\nelif raman_butter_s1 == raman_butter_s2:\n print('Entailment')\n\nelif raman_butter_s1 != raman_butter_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If exactly 4 of the packages Steve bought contained 7 pens , how many pens did Steve buy ?, \"statement 2\" :If exactly more than 4 of the packages Steve bought contained 7 pens , how many pens did Steve buy ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "steve_packages_s1 = 4\nsteve_packages_s2 = 4+1\n\nif steve_packages_s1 is None or steve_packages_s2 is None:\n print('neutral')\n\nelif steve_packages_s1 == steve_packages_s2:\n print('Entailment')\n\nelif steve_packages_s1 != steve_packages_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Arun purchased 30 kg of wheat at the rate of Rs, \"statement 2\" :Arun purchased 70 kg of wheat at the rate of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "arun_wheat_s1 = 30\narun_wheat_s2 = 70\n\nif arun_wheat_s1 is None or arun_wheat_s2 is None:\n print('neutral')\n\nelif arun_wheat_s1 == arun_wheat_s2:\n print('Entailment')\n\nelif arun_wheat_s1 != arun_wheat_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jane and Thomas are among the 7 people from which a committee of 3 people is to be selected, \"statement 2\" :Jane and Thomas are among the 5 people from which a committee of 3 people is to be selected, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "committee_s1 = 7\ncommittee_s2 = 5\n\nif committee_s1 is None or committee_s2 is None:\n print('neutral')\n\nelif committee_s1 == committee_s2:\n print('Entailment')\n\nelif committee_s1 != committee_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At Sandi \u2019 s Pet Shop , 25 cups of bird seed are used every 5 days to feed 15 parakeets, \"statement 2\" :At Sandi \u2019 s Pet Shop , less than 25 cups of bird seed are used every 5 days to feed 15 parakeets, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bird_cups_s1 = 25\nbird_cups_s2 = 25-1\n\nif bird_cups_s1 is None or bird_cups_s2 is None:\n print('neutral')\n\nelif bird_cups_s1 == bird_cups_s2:\n print('Entailment')\n\nelif bird_cups_s1 != bird_cups_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": loyd wants to fence his Square shaped land of 120 Sqft each side, \"statement 2\" :loyd wants to fence his Square shaped land of 820 Sqft each side, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "land_sqft_s1 = 120\nland_sqft_s2 = 820\n\nif land_sqft_s1 is None or land_sqft_s2 is None:\n print('neutral')\n\nelif land_sqft_s1 == land_sqft_s2:\n print('Entailment')\n\nelif land_sqft_s1 != land_sqft_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In the city of San Durango , 80 people own cats , dogs , or rabbits, \"statement 2\" :In the city of San Durango , less than 80 people own cats , dogs , or rabbits, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "durango_pets_s1 = 80\ndurango_pets_s2 = 80-1\n\nif durango_pets_s1 is None or durango_pets_s2 is None:\n print('neutral')\n\nelif durango_pets_s1 == durango_pets_s2:\n print('Entailment')\n\nelif durango_pets_s1 != durango_pets_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A runner runs the less than 50 miles from Marathon to Athens at a constant speed, \"statement 2\" :A runner runs the 40 miles from Marathon to Athens at a constant speed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "runner_marathon_s1 = None\nrunner_marathon_s2 = 40\n\nif runner_marathon_s1 is None or runner_marathon_s2 is None:\n print('neutral')\n\nelif runner_marathon_s1 == runner_marathon_s2:\n print('Entailment')\n\nelif runner_marathon_s1 != runner_marathon_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Murali travelled from city A to city B at a speed of 40 kmph and from city B to city C at 60 kmph, \"statement 2\" :Murali travelled from city A to city B at a speed of more than 40 kmph and from city B to city C at 60 kmph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "murali_speed_s1 = 40\nmurali_speed_s2 = 40+1\n\nif murali_speed_s1 is None or murali_speed_s2 is None:\n print('neutral')\n\nelif murali_speed_s1 == murali_speed_s2:\n print('Entailment')\n\nelif murali_speed_s1 != murali_speed_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Gross ' imprisonment to that of five convicted Cuban intelligence agents , three of whom continue to serve sentences in the United States . '', \"statement 2\" :Cuban authorities want the U.S. to swap Gross for three imprisoned Cuban spies, \"options: \" Entailment or neutral?", + "Output Program": [ + "cuban_intelligence_s1 = None\ncuban_intelligence_s2 = None\n\nif cuban_intelligence_s1 is None or cuban_intelligence_s2 is None:\n print('neutral')\n\nelif cuban_intelligence_s1 == cuban_intelligence_s2:\n print('Entailment')\n\nelif cuban_intelligence_s1 != cuban_intelligence_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ramesh is 2 : 1 while that between Mr, \"statement 2\" :Ramesh is 6 : 1 while that between Mr, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ramesh_ratio_s1 = 2/1\nramesh_ratio_s2 = 6/1\n\nif ramesh_ratio_s1 is None or ramesh_ratio_s2 is None:\n print('neutral')\n\nelif ramesh_ratio_s1 == ramesh_ratio_s2:\n print('Entailment')\n\nelif ramesh_ratio_s1 != ramesh_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": And goods from the EU represent 16 % of all Russian imports , EU numbers show ., \"statement 2\" :Russia gets 16 % of all its imports from the European Union, \"options: \" Entailment or neutral?", + "Output Program": [ + "euporean_union_import_s1 = 16\neuporean_union_import_s2 = 16\n\nif euporean_union_import_s1 is None or euporean_union_import_s2 is None:\n print('neutral')\n\nelif euporean_union_import_s1 == euporean_union_import_s2:\n print('Entailment')\n\nelif euporean_union_import_s1 != euporean_union_import_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a group of less than 8 boys & 4 girls a Committee of 4 persons is to be formed, \"statement 2\" :In a group of 6 boys & 4 girls a Committee of 4 persons is to be formed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "committe_boys_s1 = None\ncommitte_boys_s2 = 6\n\nif committe_boys_s1 is None or committe_boys_s2 is None:\n print('neutral')\n\nelif committe_boys_s1 == committe_boys_s2:\n print('Entailment')\n\nelif committe_boys_s1 != committe_boys_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": After less than 50 minutes , Pat stops to stretch, \"statement 2\" :After 30 minutes , Pat stops to stretch, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pat_stretch_s1 = None\npat_stretch_s2 = 30\n\nif pat_stretch_s1 is None or pat_stretch_s2 is None:\n print('neutral')\n\nelif pat_stretch_s1 == pat_stretch_s2:\n print('Entailment')\n\nelif pat_stretch_s1 != pat_stretch_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": -- Sandy killed at least six people in the state , said Gov., \"statement 2\" :Sandy has killed at least 56 people in the United States, \"options: \" Entailment or neutral?", + "Output Program": [ + "sandy_killed_s1 = None\nsandy_killed_s2 = 56\n\nif sandy_killed_s1 is None or sandy_killed_s2 is None:\n print('neutral')\n\nelif sandy_killed_s1 == sandy_killed_s2:\n print('Entailment')\n\nelif sandy_killed_s1 != sandy_killed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The total judgment was more than $ 85 million ., \"statement 2\" :Each was awarded more than $ 7 million, \"options: \" Entailment or neutral?", + "Output Program": [ + "awarded_s1 = None\nawarded_s2 = 7\n\nif awarded_s1 is None or awarded_s2 is None:\n print('neutral')\n\nelif awarded_s1 == awarded_s2:\n print('Entailment')\n\nelif awarded_s1 != awarded_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Dave has more than one of each of the listed garments , and can make 2400 different outfits , then for how many garments does Dave have exactly five choices ?, \"statement 2\" :If Dave has more than one of each of the listed garments , and can make more than 2400 different outfits , then for how many garments does Dave have exactly five choices ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "different_outfits_s1 = 2400\ndifferent_outfits_s2 = 2400+1\n\nif different_outfits_s1 is None or different_outfits_s2 is None:\n print('neutral')\n\nelif different_outfits_s1 == different_outfits_s2:\n print('Entailment')\n\nelif different_outfits_s1 != different_outfits_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The quake 's epicenter was reported to be in Negros , about 360 miles south-southeast of Manila ., \"statement 2\" :It struck in Negros , about 360 miles south-southeast of Manila, \"options: \" Entailment or neutral?", + "Output Program": [ + "quake_epicenter_s1 = 360\nquake_epicenter_s2 = 360\n\nif quake_epicenter_s1 is None or quake_epicenter_s2 is None:\n print('neutral')\n\nelif quake_epicenter_s1 == quake_epicenter_s2:\n print('Entailment')\n\nelif quake_epicenter_s1 != quake_epicenter_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Peter reads at a constant rate of less than 7 pages every 5 minutes , how many seconds will it take him to read N pages ?, \"statement 2\" :If Peter reads at a constant rate of 1 pages every 5 minutes , how many seconds will it take him to read N pages ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "peter_speed_s1 = None\npeter_speed_s2 = 1\n\nif peter_speed_s1 is None or peter_speed_s2 is None:\n print('neutral')\n\nelif peter_speed_s1 == peter_speed_s2:\n print('Entailment')\n\nelif peter_speed_s1 != peter_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the distance between their homes is 30 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"statement 2\" :If the distance between their homes is more than 20 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "home_distance_s1 = 30\nhome_distance_s2 = 20\n\nif home_distance_s1 is None or home_distance_s2 is None:\n print('neutral')\n\nelif home_distance_s1 > home_distance_s2:\n print('Entailment')\n\nelif home_distance_s1 != home_distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": It could go more than 1 times as fast as Mohan \u2019 s old Mercedes, \"statement 2\" :It could go 4 times as fast as Mohan \u2019 s old Mercedes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mohan_speed_comparison_s1 = None\nmohan_speed_comparison_s2 = 4\n\nif mohan_speed_comparison_s1 is None or mohan_speed_comparison_s2 is None:\n print('neutral')\n\nelif mohan_speed_comparison_s1 == mohan_speed_comparison_s2:\n print('Entailment')\n\nelif mohan_speed_comparison_s1 != mohan_speed_comparison_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Of a certain group of 100 people , 40 graduated from High School A , 65 graduated from College Y , and 30 live in City Z, \"statement 2\" :Of a certain group of less than 300 people , 40 graduated from High School A , 65 graduated from College Y , and 30 live in City Z, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "certain_group_people_s1 = 100\ncertain_group_people_s2 = 300\n\nif certain_group_people_s1 is None or certain_group_people_s2 is None:\n print('neutral')\n\nelif certain_group_people_s1 < certain_group_people_s2:\n print('Entailment')\n\nelif certain_group_people_s1 != certain_group_people_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In how many ways can you seat less than 7 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"statement 2\" :In how many ways can you seat 4 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bench_seat_s1 = None\nbench_seat_s2 = 4\n\nif bench_seat_s1 is None or bench_seat_s2 is None:\n print('neutral')\n\nelif bench_seat_s1 == bench_seat_s2:\n print('Entailment')\n\nelif bench_seat_s1 != bench_seat_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He said that `` there is evidence that Cristiani was involved in the murder of the six Jesuit priests '' which occurred on 16 November in San Salvador ., \"statement 2\" :Cristiani is accused of the assassination of six Jesuits ., \"options: \" Entailment or neutral?", + "Output Program": [ + "murder_accused_s1 = 6\nmurder_accused_s2 = 6\n\nif murder_accused_s1 is None or murder_accused_s2 is None:\n print('neutral')\n\nelif murder_accused_s1 == murder_accused_s2:\n print('Entailment')\n\nelif murder_accused_s1 != murder_accused_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 20000 after 8 months , Sravan advances Rs, \"statement 2\" :less than 30000 after 8 months , Sravan advances Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "after_months_s1 = 20000\nafter_months_s2 = 30000\n\nif after_months_s1 is None or after_months_s2 is None:\n print('neutral')\n\nelif after_months_s1 < after_months_s2:\n print('Entailment')\n\nelif after_months_s1 != after_months_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 3 friends A , B , C went for week end party to McDonald ' s restaurant and there they measure there weights in some order in 7 rounds, \"statement 2\" :less than 6 friends A , B , C went for week end party to McDonald ' s restaurant and there they measure there weights in some order in 7 rounds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "friends_party_s1 = 3\nfriends_party_s2 = 6\n\nif friends_party_s1 is None or friends_party_s2 is None:\n print('neutral')\n\nelif friends_party_s1 < friends_party_s2:\n print('Entailment')\n\nelif friends_party_s1 != friends_party_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": more than 4000 which he and Dave earned at the end of 1 years, \"statement 2\" :9000 which he and Dave earned at the end of 1 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dave_earned_s1 = None\ndave_earned_s2 = 9000\n\nif dave_earned_s1 is None or dave_earned_s2 is None:\n print('neutral')\n\nelif dave_earned_s1 == dave_earned_s2:\n print('Entailment')\n\nelif dave_earned_s1 != dave_earned_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Andrew purchased 8 kg of grapes at the rate of 70 per kg and 9 kg of mangoes at the rate of 55 per kg, \"statement 2\" :Andrew purchased more than 5 kg of grapes at the rate of 70 per kg and 9 kg of mangoes at the rate of 55 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "grapes_purchased_s1 = 8\ngrapes_purchased_s2 = 5\n\nif grapes_purchased_s1 is None or grapes_purchased_s2 is None:\n print('neutral')\n\nelif grapes_purchased_s1 > grapes_purchased_s2:\n print('Entailment')\n\nelif grapes_purchased_s1 != grapes_purchased_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rahim bought more than 25 books for Rs, \"statement 2\" :Rahim bought 65 books for Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rahim_bought_s1 = None\nrahim_bought_s2 = 65\n\nif rahim_bought_s1 is None or rahim_bought_s2 is None:\n print('neutral')\n\nelif rahim_bought_s1 == rahim_bought_s2:\n print('Entailment')\n\nelif rahim_bought_s1 != rahim_bought_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Kishore saved 10 % of his monthly salary, \"statement 2\" :Kishore saved more than 10 % of his monthly salary, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kishore_saved_s1 = 10\nkishore_saved_s2 = 10+1\n\nif kishore_saved_s1 is None or kishore_saved_s2 is None:\n print('neutral')\n\nelif kishore_saved_s1 == kishore_saved_s2:\n print('Entailment')\n\nelif kishore_saved_s1 != kishore_saved_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the ratio between the one - third age of Neelam and half of Shaan ' s age of 5 : 9 , then what is the school age of Shaan ?, \"statement 2\" :If the ratio between the one - third age of Neelam and half of Shaan ' s age of 8 : 9 , then what is the school age of Shaan ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_difference_s1 = 5/9\nage_difference_s2 = 8/9\n\nif age_difference_s1 is None or age_difference_s2 is None:\n print('neutral')\n\nelif age_difference_s1 == age_difference_s2:\n print('Entailment')\n\nelif age_difference_s1 != age_difference_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Altogether , Steve is spending less than 7 hours a day on the roads, \"statement 2\" :Altogether , Steve is spending 6 hours a day on the roads, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "steve_spends_s1 = None\nsteve_spends_s2 = 6\n\nif steve_spends_s1 is None or steve_spends_s2 is None:\n print('neutral')\n\nelif steve_spends_s1 == steve_spends_s2:\n print('Entailment')\n\nelif steve_spends_s1 != steve_spends_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tom drives from town Q to town B , driving at a constant speed of 60 miles per hour, \"statement 2\" :Tom drives from town Q to town B , driving at a constant speed of more than 60 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tom_dives_s1 = 60\ntom_dives_s2 = 60+1\n\nif tom_dives_s1 is None or tom_dives_s2 is None:\n print('neutral')\n\nelif tom_dives_s1 == tom_dives_s2:\n print('Entailment')\n\nelif tom_dives_s1 != tom_dives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Victor has 15 cups if flour , 16 cups of sugar and 8 cups of milk, \"statement 2\" :Victor has 75 cups if flour , 16 cups of sugar and 8 cups of milk, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "victor_flour_s1 = 15\nvictor_flour_s2 = 16\n\nif victor_flour_s1 is None or victor_flour_s2 is None:\n print('neutral')\n\nelif victor_flour_s1 == victor_flour_s2:\n print('Entailment')\n\nelif victor_flour_s1 != victor_flour_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": less than 680 and Andrew ' s share is Rs, \"statement 2\" :380 and Andrew ' s share is Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "andrew_shares_s1 = None\nandrew_shares_s2 = 380\n\nif andrew_shares_s1 is None or andrew_shares_s2 is None:\n print('neutral')\n\nelif andrew_shares_s1 == andrew_shares_s2:\n print('Entailment')\n\nelif andrew_shares_s1 != andrew_shares_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Yesterday it took Robert 4 hours to drive from City A to City B, \"statement 2\" :Yesterday it took Robert more than 1 hours to drive from City A to City B, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "robert_drives_s1 = 4\nrobert_drives_s2 = 1\n\nif robert_drives_s1 is None or robert_drives_s2 is None:\n print('neutral')\n\nelif robert_drives_s1 > robert_drives_s2:\n print('Entailment')\n\nelif robert_drives_s1 != robert_drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rahim bought 50 books for Rs, \"statement 2\" :Rahim bought 80 books for Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rahim_bought_s1 = 50\nrahim_bought_s2 = 80\n\nif rahim_bought_s1 is None or rahim_bought_s2 is None:\n print('neutral')\n\nelif rahim_bought_s1 == rahim_bought_s2:\n print('Entailment')\n\nelif rahim_bought_s1 != rahim_bought_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At the same time Joyce gets on an elevator on the less than 81 st floor of the same building and rides down at a rate of 78 floors per minute, \"statement 2\" :At the same time Joyce gets on an elevator on the 61 st floor of the same building and rides down at a rate of 78 floors per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "elevator_floor_s1 = None\nelevator_floor_s2 = 61\n\nif elevator_floor_s1 is None or elevator_floor_s2 is None:\n print('neutral')\n\nelif elevator_floor_s1 == elevator_floor_s2:\n print('Entailment')\n\nelif elevator_floor_s1 != elevator_floor_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Mel saved more than $ 10 by purchasing a sweater at a 15 percent discount , what is the smallest amount the original price of the sweater could be , to the nearest dollar ?, \"statement 2\" :If Mel saved more than $ less than 30 by purchasing a sweater at a 15 percent discount , what is the smallest amount the original price of the sweater could be , to the nearest dollar ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mel_saved_s1 = 10\nmel_saved_s2 = 30\n\nif mel_saved_s1 is None or mel_saved_s2 is None:\n print('neutral')\n\nelif mel_saved_s1 < mel_saved_s2:\n print('Entailment')\n\nelif mel_saved_s1 != mel_saved_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A spokesman from Peshawar 's Lady Reading Hospital says that the three people killed included a woman , a civilian and a member of the Frontier Corps ., \"statement 2\" :A suicide blast has killed 3 and injured 13 in Peshawar , Pakistan, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_injured_s1 = None\npeople_injured_s2 = 13\n\nif people_injured_s1 is None or people_injured_s2 is None:\n print('neutral')\n\nelif people_injured_s1 == people_injured_s2:\n print('Entailment')\n\nelif people_injured_s1 != people_injured_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If she worked one 8 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"statement 2\" :If she worked one more than 8 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hour_shift_s1 = 8\nhour_shift_s2 = 8+1\n\nif hour_shift_s1 is None or hour_shift_s2 is None:\n print('neutral')\n\nelif hour_shift_s1 == hour_shift_s2:\n print('Entailment')\n\nelif hour_shift_s1 != hour_shift_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are less than 52 more FGH supermarkets in the US than in Canada , how many FGH supermarkets are there in the US ?, \"statement 2\" :If there are 22 more FGH supermarkets in the US than in Canada , how many FGH supermarkets are there in the US ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "fgh_supermarket_s1 = None\nfgh_supermarket_s2 = 22\n\nif fgh_supermarket_s1 is None or fgh_supermarket_s2 is None:\n print('neutral')\n\nelif fgh_supermarket_s1 == fgh_supermarket_s2:\n print('Entailment')\n\nelif fgh_supermarket_s1 != fgh_supermarket_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After less than 38 minutes , Cathy stops to stretch, \"statement 2\" :After 18 minutes , Cathy stops to stretch, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cathy_stretch_s1 = None\ncathy_stretch_s2 = 18\n\nif cathy_stretch_s1 is None or cathy_stretch_s2 is None:\n print('neutral')\n\nelif cathy_stretch_s1 == cathy_stretch_s2:\n print('Entailment')\n\nelif cathy_stretch_s1 != cathy_stretch_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Jerry wants to raise his average by 2 points , what score must he earn on the fourth test ?, \"statement 2\" :If Jerry wants to raise his average by 3 points , what score must he earn on the fourth test ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "raising_average_s1 = 2\nraising_average_s2 = 3\n\nif raising_average_s1 is None or raising_average_s2 is None:\n print('neutral')\n\nelif raising_average_s1 == raising_average_s2:\n print('Entailment')\n\nelif raising_average_s1 != raising_average_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Carolyn bought 16 gumballs , Lew bought 12 gumballs , and Bob bought X gumballs, \"statement 2\" :Carolyn bought less than 26 gumballs , Lew bought 12 gumballs , and Bob bought X gumballs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "carolyn_gumballs_s1 = 16\ncarolyn_gumballs_s2 = 26\n\nif carolyn_gumballs_s1 is None or carolyn_gumballs_s2 is None:\n print('neutral')\n\nelif carolyn_gumballs_s1 < carolyn_gumballs_s2:\n print('Entailment')\n\nelif carolyn_gumballs_s1 != carolyn_gumballs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Swetha takes a trip and drives more than 4 hours from Town A to Town C at a rate of 40 miles per hour, \"statement 2\" :Swetha takes a trip and drives 8 hours from Town A to Town C at a rate of 40 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "swetha_drives_s1 = None\nswetha_drives_s2 = 8\n\nif swetha_drives_s1 is None or swetha_drives_s2 is None:\n print('neutral')\n\nelif swetha_drives_s1 < swetha_drives_s2:\n print('Entailment')\n\nelif swetha_drives_s1 != swetha_drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A restaurant served 6.0 cakes at dinner today but 5.0 were returned and the restaurant served 3.0 cakes successfully yesterday, \"statement 2\" :4.0 cakes were sold successfully total, \"options: \" Entailment or contradiction?", + "Output Program": [ + "cakes_served_s1 = 6-5+3\ncakes_served_s2 = 4\n\nif cakes_served_s1 is None or cakes_served_s2 is None:\n print('neutral')\n\nelif cakes_served_s1 == cakes_served_s2:\n print('Entailment')\n\nelif cakes_served_s1 != cakes_served_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": With the Eastern Cape being so key to the country 's vehicle exports , some compare it to America 's Motor City : Detroit ., \"statement 2\" :The Eastern Cape provides 51 % of South Africa 's vehicle exports, \"options: \" Entailment or neutral?", + "Output Program": [ + "eastern_cape_s1 = None\neastern_cape_s2 = 51\n\nif eastern_cape_s1 is None or eastern_cape_s2 is None:\n print('neutral')\n\nelif eastern_cape_s1 == eastern_cape_s2:\n print('Entailment')\n\nelif eastern_cape_s1 != eastern_cape_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": than how many more employees should NHAI hire to finish it in time working 10 hours a day ?, \"statement 2\" :than how many more employees should NHAI hire to finish it in time working more than 10 hours a day ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "nhai_hire_hours_s1 = 10\nnhai_hire_hours_s2 = 10+1\n\nif nhai_hire_hours_s1 is None or nhai_hire_hours_s2 is None:\n print('neutral')\n\nelif nhai_hire_hours_s1 == nhai_hire_hours_s2:\n print('Entailment')\n\nelif nhai_hire_hours_s1 != nhai_hire_hours_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 6522.0 liters of oil, minus 5165.0 liters of oil, leaked into the water from a broken oil pipe in the sea., \"statement 2\" :1357.0 liters of oil were leaked into the water, \"options: \" Entailment or contradiction?", + "Output Program": [ + "oil_leaked_s1 = 6522-5165\noil_leaked_s2 = 1357\n\nif oil_leaked_s1 is None or oil_leaked_s2 is None:\n print('neutral')\n\nelif oil_leaked_s1 == oil_leaked_s2:\n print('Entailment')\n\nelif oil_leaked_s1 != oil_leaked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Deforestation , which clears the way for food to be grown , accounts for 18 percent of the food and agriculture sector 's emissions ., \"statement 2\" :Food and Agricultural sector contribute over 33 percent of global emissions, \"options: \" Entailment or neutral?", + "Output Program": [ + "food_agriculture_emission_s1 = 18\nfood_agriculture_emission_s2 = None\n\nif food_agriculture_emission_s1 is None or food_agriculture_emission_s2 is None:\n print('neutral')\n\nelif food_agriculture_emission_s1 == food_agriculture_emission_s2:\n print('Entailment')\n\nelif food_agriculture_emission_s1 != food_agriculture_emission_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 30 percent of Andrea ' s living room floor is covered by a carpet that is 4 feet by 9 feet, \"statement 2\" :more than 10 percent of Andrea ' s living room floor is covered by a carpet that is 4 feet by 9 feet, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "andrea_room_carpet_s1 = 30\nandrea_room_carpet_s2 = 10\n\nif andrea_room_carpet_s1 is None or andrea_room_carpet_s2 is None:\n print('neutral')\n\nelif andrea_room_carpet_s1 > andrea_room_carpet_s2:\n print('Entailment')\n\nelif andrea_room_carpet_s1 != andrea_room_carpet_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": ( CNN ) -- More than 700 infants and 40 health care workers have been exposed to tuberculosis , commonly called TB , at a hospital in El Paso , Texas , according to the city 's Department of Public Health ., \"statement 2\" :706 infants and 43 workers were exposed to TB, \"options: \" Entailment or neutral?", + "Output Program": [ + "infants_tuberculosis_s1 = None\ninfants_tuberculosis_s2 = 706\n\nif infants_tuberculosis_s1 is None or infants_tuberculosis_s2 is None:\n print('neutral')\n\nelif infants_tuberculosis_s1 > infants_tuberculosis_s2:\n print('Entailment')\n\nelif infants_tuberculosis_s1 != infants_tuberculosis_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Albert borrowed a total of $ 5700 from Brian and Charlie, \"statement 2\" :Albert borrowed a total of $ 7700 from Brian and Charlie, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "albert_burrowed_s1 = 5700\nalbert_burrowed_s2 = 7700\n\nif albert_burrowed_s1 is None or albert_burrowed_s2 is None:\n print('neutral')\n\nelif albert_burrowed_s1 == albert_burrowed_s2:\n print('Entailment')\n\nelif albert_burrowed_s1 != albert_burrowed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The World Court , or International Court of Justice ( ICJ ) , located in The Hague , is made up of fifteen permanent judges plus two judges nominated by the parties involved in the dispute under consideration ., \"statement 2\" :Two judges of the ICJ are nominated by the parties involved ., \"options: \" Entailment or neutral?", + "Output Program": [ + "judges_nominated_s1 = 2\njudges_nominated_s2 = 2\n\nif judges_nominated_s1 is None or judges_nominated_s2 is None:\n print('neutral')\n\nelif judges_nominated_s1 == judges_nominated_s2:\n print('Entailment')\n\nelif judges_nominated_s1 != judges_nominated_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are 10 Pens , the number of Markers in Jenna ' s desk is :, \"statement 2\" :If there are less than 20 Pens , the number of Markers in Jenna ' s desk is :, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jenna_pen_s1 = 10\njenna_pen_s2 = 20\n\nif jenna_pen_s1 is None or jenna_pen_s2 is None:\n print('neutral')\n\nelif jenna_pen_s1 < jenna_pen_s2:\n print('Entailment')\n\nelif jenna_pen_s1 != jenna_pen_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lilly has 10 fish and Rosy has 11 fish, \"statement 2\" :Lilly has less than 70 fish and Rosy has 11 fish, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "lily_fish_s1 = 10\nlily_fish_s2 = 70\n\nif lily_fish_s1 is None or lily_fish_s2 is None:\n print('neutral')\n\nelif lily_fish_s1 < lily_fish_s2:\n print('Entailment')\n\nelif lily_fish_s1 != lily_fish_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 1,250 people visited the zoo on Friday and 3 times as many people visited on Friday than on Saturday, \"statement 2\" :416.666666667 people visited the zoo on Saturday, \"options: \" Entailment or contradiction?", + "Output Program": [ + "zoo_visited_saturday_s1 = round(1250/3, 9)\nzoo_visited_saturday_s2 = 416.666666667\n\nif zoo_visited_saturday_s1 is None or zoo_visited_saturday_s2 is None:\n print('neutral')\n\nelif zoo_visited_saturday_s1 == zoo_visited_saturday_s2:\n print('Entailment')\n\nelif zoo_visited_saturday_s1 != zoo_visited_saturday_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": It takes John exactly 30 minutes to rake a lawn and it takes his son Todd exactly 60 minutes to rake the same lawn, \"statement 2\" :It takes John exactly 40 minutes to rake a lawn and it takes his son Todd exactly 60 minutes to rake the same lawn, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_rake_lawn_s1 = 30\njohn_rake_lawn_s2 = 40\n\nif john_rake_lawn_s1 is None or john_rake_lawn_s2 is None:\n print('neutral')\n\nelif john_rake_lawn_s1 == john_rake_lawn_s2:\n print('Entailment')\n\nelif john_rake_lawn_s1 != john_rake_lawn_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Addison High School \u2019 s senior class has 160 boys and 200 girls, \"statement 2\" :Addison High School \u2019 s senior class has 760 boys and 200 girls, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "senior_class_boys_s1 = 160\nsenior_class_boys_s2 = 760\n\nif senior_class_boys_s1 is None or senior_class_boys_s2 is None:\n print('neutral')\n\nelif senior_class_boys_s1 == senior_class_boys_s2:\n print('Entailment')\n\nelif senior_class_boys_s1 != senior_class_boys_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mr Yadav spends more than 40 % of his monthly salary on consumable items and 50 % of the remaining on clothes and transport, \"statement 2\" :Mr Yadav spends 60 % of his monthly salary on consumable items and 50 % of the remaining on clothes and transport, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "yadav_spends_s1 = None\nyadav_spends_s2 = 60\n\nif yadav_spends_s1 is None or yadav_spends_s2 is None:\n print('neutral')\n\nelif yadav_spends_s1 == yadav_spends_s2:\n print('Entailment')\n\nelif yadav_spends_s1 != yadav_spends_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joan 's cat had 8.0 kittens and she got 2.0 more from her friends , \"statement 2\" :She has 6.0 kittens now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "joan_kittens_s1 = 8+2\njoan_kittens_s2 = 6\n\nif joan_kittens_s1 is None or joan_kittens_s2 is None:\n print('neutral')\n\nelif joan_kittens_s1 == joan_kittens_s2:\n print('Entailment')\n\nelif joan_kittens_s1 != joan_kittens_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jenny can divide her sweets equally to 5 people and also to 6 people equally but not to 12 people, \"statement 2\" :Jenny can divide her sweets equally to more than 4 people and also to 6 people equally but not to 12 people, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jenny_divides_sweet_s1 = 5\njenny_divides_sweet_s2 = 4\n\nif jenny_divides_sweet_s1 is None or jenny_divides_sweet_s2 is None:\n print('neutral')\n\nelif jenny_divides_sweet_s1 > jenny_divides_sweet_s2:\n print('Entailment')\n\nelif jenny_divides_sweet_s1 != jenny_divides_sweet_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": One man held a blue cap that he had stuffed with money ., \"statement 2\" :Men snatch bills from youngsters ; one man stuffs blue cap with money, \"options: \" Entailment or neutral?", + "Output Program": [ + "money_cap_s1 = None\nmoney_cap_s2 = None\n\nif money_cap_s1 is None or money_cap_s2 is None:\n print('neutral')\n\nelif money_cap_s1 > money_cap_s2:\n print('Entailment')\n\nelif money_cap_s1 != money_cap_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He will be 5 / 3 times as old as Tom 6 years hence, \"statement 2\" :He will be more than 5 / 3 times as old as Tom 6 years hence, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tom_age_difference_s1 = 5/3\ntom_age_difference_s2 = (5/3)+0.1\n\nif tom_age_difference_s1 is None or tom_age_difference_s2 is None:\n print('neutral')\n\nelif tom_age_difference_s1 > tom_age_difference_s2:\n print('Entailment')\n\nelif tom_age_difference_s1 != tom_age_difference_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jessica found 8.0 seashells and she gave Joan 6.0 seashells, \"statement 2\" :Jessica has 2.0 seashells left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "jessica_seashells_s1 = 8-6\njessica_seashells_s2 = 2\n\nif jessica_seashells_s1 is None or jessica_seashells_s2 is None:\n print('neutral')\n\nelif jessica_seashells_s1 == jessica_seashells_s2:\n print('Entailment')\n\nelif jessica_seashells_s1 != jessica_seashells_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jessica can text more than 75 words per minute , while Maurice can text 25 words per minute, \"statement 2\" :Jessica can text 85 words per minute , while Maurice can text 25 words per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jessica_texts_s1 = None\njessica_texts_s2 = 25\n\nif jessica_texts_s1 is None or jessica_texts_s2 is None:\n print('neutral')\n\nelif jessica_texts_s1 == jessica_texts_s2:\n print('Entailment')\n\nelif jessica_texts_s1 != jessica_texts_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John was thrice as old as Tom 6 yrs back, \"statement 2\" :John was thrice as old as Tom more than 4 yrs back, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jason_tom_age_difference_s1 = 3\njason_tom_age_difference_s2 = 3\n\nif jason_tom_age_difference_s1 is None or jason_tom_age_difference_s2 is None:\n print('neutral')\n\nelif jason_tom_age_difference_s1 == jason_tom_age_difference_s2:\n print('Entailment')\n\nelif jason_tom_age_difference_s1 != jason_tom_age_difference_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 2.0 pencils in the drawer and Tim placed 3.0 pencils in the drawer , \"statement 2\" :5.0 pencils are now there in total , \"options: \" Entailment or contradiction?", + "Output Program": [ + "pencils_drawer_s1 = 2+3\npencils_drawer_s2 = 5\n\nif pencils_drawer_s1 is None or pencils_drawer_s2 is None:\n print('neutral')\n\nelif pencils_drawer_s1 == pencils_drawer_s2:\n print('Entailment')\n\nelif pencils_drawer_s1 != pencils_drawer_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John has less than 70 pairs of matched socks, \"statement 2\" :John has 10 pairs of matched socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "socks_pair_s1 = None\nsocks_pair_s2 = 10\n\nif socks_pair_s1 is None or socks_pair_s2 is None:\n print('neutral')\n\nelif socks_pair_s1 == socks_pair_s2:\n print('Entailment')\n\nelif socks_pair_s1 != socks_pair_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": How much loss would Indu has suffered had she given it to Bindu for 2 years at 4 % per annum simple interest ?, \"statement 2\" :How much loss would Indu has suffered had she given it to Bindu for 8 years at 4 % per annum simple interest ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "indu_loss_s1 = 2\nindu_loss_s2 = 8\n\nif indu_loss_s1 is None or indu_loss_s2 is None:\n print('neutral')\n\nelif indu_loss_s1 == indu_loss_s2:\n print('Entailment')\n\nelif indu_loss_s1 != indu_loss_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": City A to city B , Andrew drove for 1 hr at 50 mph and for 3 hours at 60 mph, \"statement 2\" :City A to city B , Andrew drove for less than 7 hr at 50 mph and for 3 hours at 60 mph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "andrew_drove_s1 = 1\nandrew_drove_s2 = 7\n\nif andrew_drove_s1 is None or andrew_drove_s2 is None:\n print('neutral')\n\nelif andrew_drove_s1 < andrew_drove_s2:\n print('Entailment')\n\nelif andrew_drove_s1 != andrew_drove_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If T = 5 / 9 * ( K - 32 ) , and if T = 35 , then what is the value of K ?, \"statement 2\" :If T = more than 1 / 9 * ( K - 32 ) , and if T = 35 , then what is the value of K ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "value_of_t_s1 = 35\nvalue_of_t_s2 = 35\n\nif value_of_t_s1 is None or value_of_t_s2 is None:\n print('neutral')\n\nelif value_of_t_s1 == value_of_t_s2:\n print('Entailment')\n\nelif value_of_t_s1 != value_of_t_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": While driving from City A to City B , Jim drives at a constant speed of less than 70 miles per hour, \"statement 2\" :While driving from City A to City B , Jim drives at a constant speed of 40 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jim_drives_s1 = None\njim_drives_s2 = 40\n\nif jim_drives_s1 is None or jim_drives_s2 is None:\n print('neutral')\n\nelif jim_drives_s1 == jim_drives_s2:\n print('Entailment')\n\nelif jim_drives_s1 != jim_drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Burj Khalifa stands at 830 meters high and\nSears stands at 527 meters high , how much higher is Burj Khalifa than Sears ?, \"statement 2\" :If Burj Khalifa stands at less than 830 meters high and Sears stands at 527 meters high , how much higher is Burj Khalifa than Sears ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "burj_khalifa_height_s1 = 830\nburj_khalifa_height_s2 = 830-1\n\nif burj_khalifa_height_s1 is None or burj_khalifa_height_s2 is None:\n print('neutral')\n\nelif burj_khalifa_height_s1 == burj_khalifa_height_s2:\n print('Entailment')\n\nelif burj_khalifa_height_s1 != burj_khalifa_height_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Renu can do a piece of work in 8 days , but with the help of her friend Suma , she can do it in 3 days, \"statement 2\" :Renu can do a piece of work in less than 8 days , but with the help of her friend Suma , she can do it in 3 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "renu_work_s1 = 8\nrenu_work_s2 = 8-1\n\nif renu_work_s1 is None or renu_work_s2 is None:\n print('neutral')\n\nelif renu_work_s1 == renu_work_s2:\n print('Entailment')\n\nelif renu_work_s1 != renu_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the distance between their homes is less than 80 kilometers , Maxwell ' s walking speed is 3 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"statement 2\" :If the distance between their homes is 50 kilometers , Maxwell ' s walking speed is 3 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "home_distance_s1 = None\nhome_distance_s2 = 50\n\nif home_distance_s1 is None or home_distance_s2 is None:\n print('neutral')\n\nelif home_distance_s1 == home_distance_s2:\n print('Entailment')\n\nelif home_distance_s1 != home_distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy can do a job in 18 days and Molly can do the same job in 36 days, \"statement 2\" :Sandy can do a job in more than 18 days and Molly can do the same job in 36 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_jon_s1 = 18\nsandy_jon_s2 = 18+1\n\nif sandy_jon_s1 is None or sandy_jon_s2 is None:\n print('neutral')\n\nelif sandy_jon_s1 == sandy_jon_s2:\n print('Entailment')\n\nelif sandy_jon_s1 != sandy_jon_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Among the dead were four police officers from three different agencies , Sandoval said ., \"statement 2\" :This includes four police officers from three different agencies, \"options: \" Entailment or neutral?", + "Output Program": [ + "police_officer_s1 = 4\npolice_officer_s2 = 4\n\nif police_officer_s1 is None or police_officer_s2 is None:\n print('neutral')\n\nelif police_officer_s1 == police_officer_s2:\n print('Entailment')\n\nelif police_officer_s1 != police_officer_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is 4 : 3 , After 6 Years Rahul age will be 26 years, \"statement 2\" :Ratio between Rahul and Deepak is less than 7 : 3 , After 6 Years Rahul age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rahul_deepak_ratio_s1 = 4/3\nrahul_deepak_ratio_s2 = 7/2\n\nif rahul_deepak_ratio_s1 is None or rahul_deepak_ratio_s2 is None:\n print('neutral')\n\nelif rahul_deepak_ratio_s1 < rahul_deepak_ratio_s2:\n print('Entailment')\n\nelif rahul_deepak_ratio_s1 != rahul_deepak_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many possible ways can 4 girls ( Rebecca , Kate , Ashley ) go on a date with 4 boys ( Peter , Kyle , Sam ) ?, \"statement 2\" :How many possible ways can more than 2 girls ( Rebecca , Kate , Ashley ) go on a date with 4 boys ( Peter , Kyle , Sam ) ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_girls_s1 = 4/3\ntotal_girls_s2 = 7/2\n\nif total_girls_s1 is None or total_girls_s2 is None:\n print('neutral')\n\nelif total_girls_s1 < total_girls_s2:\n print('Entailment')\n\nelif total_girls_s1 != total_girls_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Martha has less than 8 dogs and 4 cats, \"statement 2\" :Martha has 5 dogs and 4 cats, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "martha_dogs_s1 = None\nmartha_dogs_s2 = 5\n\nif martha_dogs_s1 is None or martha_dogs_s2 is None:\n print('neutral')\n\nelif martha_dogs_s1 == martha_dogs_s2:\n print('Entailment')\n\nelif martha_dogs_s1 != martha_dogs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alyssa picked 42.0 pears from the pear tree and Nancy sold 17.0 of the pears , \"statement 2\" :25.0 pears were left , \"options: \" Entailment or contradiction?", + "Output Program": [ + "alyssa_pears_s1 = 42-17\nalyssa_pears_s2 = 25\n\nif alyssa_pears_s1 is None or alyssa_pears_s2 is None:\n print('neutral')\n\nelif alyssa_pears_s1 == alyssa_pears_s2:\n print('Entailment')\n\nelif alyssa_pears_s1 != alyssa_pears_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ashok and Pyarelal invested money together in a business and share a capital of Ashok is 1 / 9 of that of Pyarelal, \"statement 2\" :Ashok and Pyarelal invested money together in a business and share a capital of Ashok is less than 1 / 9 of that of Pyarelal, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ashok_pyarelal_ratio_s1 = 1/9\nashok_pyarelal_ratio_s2 = (1/9)-0.1\n\nif ashok_pyarelal_ratio_s1 is None or ashok_pyarelal_ratio_s2 is None:\n print('neutral')\n\nelif ashok_pyarelal_ratio_s1 == ashok_pyarelal_ratio_s2:\n print('Entailment')\n\nelif ashok_pyarelal_ratio_s1 != ashok_pyarelal_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In how many ways can you seat 9 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"statement 2\" :In how many ways can you seat more than 2 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bench_seats_s1 = 9\nbench_seats_s2 = 2\n\nif bench_seats_s1 is None or bench_seats_s2 is None:\n print('neutral')\n\nelif bench_seats_s1 > bench_seats_s2:\n print('Entailment')\n\nelif bench_seats_s1 != bench_seats_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a recent election , Geoff received 15 percent of the 6,000 votes cast, \"statement 2\" :In a recent election , Geoff received 35 percent of the 6,000 votes cast, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "geoff_received_s1 = 15\ngeoff_received_s2 = 35\n\nif geoff_received_s1 is None or geoff_received_s2 is None:\n print('neutral')\n\nelif geoff_received_s1 == geoff_received_s2:\n print('Entailment')\n\nelif geoff_received_s1 != geoff_received_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a group of 6 boys & 4 girls a Committee of 4 persons is to be formed, \"statement 2\" :In a group of less than 8 boys & 4 girls a Committee of 4 persons is to be formed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "committee_boys_s1 = 6\ncommittee_boys_s2 = 8\n\nif committee_boys_s1 is None or committee_boys_s2 is None:\n print('neutral')\n\nelif committee_boys_s1 < committee_boys_s2:\n print('Entailment')\n\nelif committee_boys_s1 != committee_boys_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Molly ' s age in 18 years will be four times her age eighteen years ago, \"statement 2\" :Molly ' s age in less than 38 years will be four times her age eighteen years ago, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "molly_age_future_s1 = 18\nmolly_age_future_s2 = 38\n\nif molly_age_future_s1 is None or molly_age_future_s2 is None:\n print('neutral')\n\nelif molly_age_future_s1 < molly_age_future_s2:\n print('Entailment')\n\nelif molly_age_future_s1 != molly_age_future_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 18 stations between Hyderabad and Bangalore, \"statement 2\" :There are less than 58 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_stations_s1 = 15\ntotal_stations_s2 = 58\n\nif total_stations_s1 is None or total_stations_s2 is None:\n print('neutral')\n\nelif total_stations_s1 < total_stations_s2:\n print('Entailment')\n\nelif total_stations_s1 != total_stations_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jill is dividing her 14 - person class into two teams of equal size for a basketball game, \"statement 2\" :Jill is dividing her less than 44 - person class into two teams of equal size for a basketball game, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jill_dividing_s1 = 14\njill_dividing_s2 = 44\n\nif jill_dividing_s1 is None or jill_dividing_s2 is None:\n print('neutral')\n\nelif jill_dividing_s1 < jill_dividing_s2:\n print('Entailment')\n\nelif jill_dividing_s1 != jill_dividing_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Each of farmer Cunningham 's 6048.0 lambs is either black or white and there are 193.0 white ones , \"statement 2\" :5854.0 of Farmer Cunningham 's lambs are black , \"options: \" Entailment or contradiction?", + "Output Program": [ + "black_lambs_s1 = 6048-193\nblack_lambs_s2 = 5854\n\nif black_lambs_s1 is None or black_lambs_s2 is None:\n print('neutral')\n\nelif black_lambs_s1 == black_lambs_s2:\n print('Entailment')\n\nelif black_lambs_s1 != black_lambs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 3000 and Christine ' s share is Rs, \"statement 2\" :less than 3000 and Christine ' s share is Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "christine_s1 = 3000\nchristine_s2 = 3000-1\n\nif christine_s1 is None or christine_s2 is None:\n print('neutral')\n\nelif christine_s1 == christine_s2:\n print('Entailment')\n\nelif christine_s1 != christine_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Bob runs at a constant rate of 8 minutes per mile , how many miles farther south can he run and still be able to return to the parking lot in 50 minutes ?, \"statement 2\" :If Bob runs at a constant rate of less than 8 minutes per mile , how many miles farther south can he run and still be able to return to the parking lot in 50 minutes ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bob_run_rate_s1 = 8\nbob_run_rate_s2 = 8-1\n\nif bob_run_rate_s1 is None or bob_run_rate_s2 is None:\n print('neutral')\n\nelif bob_run_rate_s1 == bob_run_rate_s2:\n print('Entailment')\n\nelif bob_run_rate_s1 != bob_run_rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jake drives at a constant speed of more than 19 km per hour, \"statement 2\" :Jake drives at a constant speed of 29 km per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jake_drives_s1 = None\njake_drives_s2 = 29\n\nif jake_drives_s1 is None or jake_drives_s2 is None:\n print('neutral')\n\nelif jake_drives_s1 == jake_drives_s2:\n print('Entailment')\n\nelif jake_drives_s1 != jake_drives_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dan \u2019 s car gets 32 miles per gallon, \"statement 2\" :Dan \u2019 s car gets less than 52 miles per gallon, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dan_car_gallon_s1 = 32\ndan_car_gallon_s2 = 52\n\nif dan_car_gallon_s1 is None or dan_car_gallon_s2 is None:\n print('neutral')\n\nelif dan_car_gallon_s1 < dan_car_gallon_s2:\n print('Entailment')\n\nelif dan_car_gallon_s1 != dan_car_gallon_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Twenty-nine people have lost their lives in Alagoas and more than 600 are missing , Agencia Brasil said ., \"statement 2\" :More than 600 people still missing, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_missing_s1 = 600+1\npeople_missing_s2 = 600+1\n\nif people_missing_s1 is None or people_missing_s2 is None:\n print('neutral')\n\nelif people_missing_s1 == people_missing_s2:\n print('Entailment')\n\nelif people_missing_s1 != people_missing_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Two of Spain 's other injury doubts , Arsenal midfielder Cesc Fabregas and Liverpool striker Fernando Torres , both came on a substitutes against Poland -- and scored -- as they look to step up their fitness ., \"statement 2\" :Fernando Torres and Cesc Fabregas both came on as substitutes as Spain won 6-0, \"options: \" Entailment or neutral?", + "Output Program": [ + "spain_lead_s1 = None\nspain_lead_s2 = 6\n\nif spain_lead_s1 is None or spain_lead_s2 is None:\n print('neutral')\n\nelif spain_lead_s1 == spain_lead_s2:\n print('Entailment')\n\nelif spain_lead_s1 != spain_lead_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Albert \u2019 s monthly earnings rise by 26 % , he would earn $ 693, \"statement 2\" :If Albert \u2019 s monthly earnings rise by 46 % , he would earn $ 693, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "monthly_earning_rise_s1 = 26\nmonthly_earning_rise_s2 = 46\n\nif monthly_earning_rise_s1 is None or monthly_earning_rise_s2 is None:\n print('neutral')\n\nelif monthly_earning_rise_s1 == monthly_earning_rise_s2:\n print('Entailment')\n\nelif monthly_earning_rise_s1 != monthly_earning_rise_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Robin has 18.0 pieces of gum and her brother gave her 44.0 more pieces, \"statement 2\" :Robin has 62.0 pieces of gum now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "robin_gum_s1 = 18+44\nrobin_gum_s2 = 62\n\nif robin_gum_s1 is None or robin_gum_s2 is None:\n print('neutral')\n\nelif robin_gum_s1 == robin_gum_s2:\n print('Entailment')\n\nelif robin_gum_s1 != robin_gum_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": City A to city B , Andrew drove for 1 hour at 50 mph and for 3 hours at 60 mph, \"statement 2\" :City A to city B , Andrew drove for less than 8 hour at 50 mph and for 3 hours at 60 mph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "andrew_drove_s1 = 1\nandrew_drove_s2 = 8\n\nif andrew_drove_s1 is None or andrew_drove_s2 is None:\n print('neutral')\n\nelif andrew_drove_s1 < andrew_drove_s2:\n print('Entailment')\n\nelif andrew_drove_s1 != andrew_drove_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than 70 % ?\nI will see what is the quickest way to solve it then I will provide the explanation, \"statement 2\" :If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than more than 70 % ? I will see what is the quickest way to solve it then I will provide the explanation, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "departure_rate_s1 = 70\ndeparture_rate_s2 = 70+1\n\nif departure_rate_s1 is None or departure_rate_s2 is None:\n print('neutral')\n\nelif departure_rate_s1 == departure_rate_s2:\n print('Entailment')\n\nelif departure_rate_s1 != departure_rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Amanda goes to the toy store to buy 1 ball and 3 different board games, \"statement 2\" :Amanda goes to the toy store to buy less than 7 ball and 3 different board games, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amanda_buy_balls_s1 = 1\namanda_buy_balls_s2 = 7\n\nif amanda_buy_balls_s1 is None or amanda_buy_balls_s2 is None:\n print('neutral')\n\nelif amanda_buy_balls_s1 < amanda_buy_balls_s2:\n print('Entailment')\n\nelif amanda_buy_balls_s1 != amanda_buy_balls_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": We asked other CNN.com readers for their take on '' Halo 3 . '', \"statement 2\" :CNN.com asked readers to share their early reviews of '' Halo 3 '', \"options: \" Entailment or neutral?", + "Output Program": [ + "review_halo_version_s1 = 3\nreview_halo_version_s2 = 3\n\nif review_halo_version_s1 is None or review_halo_version_s2 is None:\n print('neutral')\n\nelif review_halo_version_s1 == review_halo_version_s2:\n print('Entailment')\n\nelif review_halo_version_s1 != review_halo_version_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Warrant lists eight counts of first-degree murder for Guy Heinze Jr. ., \"statement 2\" :Heinze 's son , Guy Heinze Jr. , 22 , faces eight counts of first-degree murder in the deaths ., \"options: \" Entailment or neutral?", + "Output Program": [ + "first_degree_murder_s1 = 8\nfirst_degree_murder_s2 = 8\n\nif first_degree_murder_s1 is None or first_degree_murder_s2 is None:\n print('neutral')\n\nelif first_degree_murder_s1 == first_degree_murder_s2:\n print('Entailment')\n\nelif first_degree_murder_s1 != first_degree_murder_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary needs some meat from the butchers shop a meter away from her house . Each step Mary takes is less than 60 centimeters . How many minutes will it take if each step lasts a minute ?, \"statement 2\" :Mary needs some meat from the butchers shop a meter away from her house .\nEach step Mary takes is 20 centimeters .\nHow many minutes will it take if each step lasts a minute ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mary_step_s1 = None\nmary_step_s2 = 20\n\nif mary_step_s1 is None or mary_step_s2 is None:\n print('neutral')\n\nelif mary_step_s1 == mary_step_s2:\n print('Entailment')\n\nelif mary_step_s1 != mary_step_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the agreed period of the debenture was less than 38 months : calculate the amount of interest Jaclyn will earn for each quarter, \"statement 2\" :If the agreed period of the debenture was 18 months : calculate the amount of interest Jaclyn will earn for each quarter, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "debenture_period_s1 = None\ndebenture_period_s2 = 18\n\nif debenture_period_s1 is None or debenture_period_s2 is None:\n print('neutral')\n\nelif debenture_period_s1 == debenture_period_s2:\n print('Entailment')\n\nelif debenture_period_s1 != debenture_period_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If there are less than 65 males altogether , how many gerbils does Claire have ?, \"statement 2\" :If there are 25 males altogether , how many gerbils does Claire have ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "males_count_s1 = None\nmales_count_s2 = 25\n\nif males_count_s1 is None or males_count_s2 is None:\n print('neutral')\n\nelif males_count_s1 == males_count_s2:\n print('Entailment')\n\nelif males_count_s1 != males_count_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jagan recorded the radius of some echina at a particular spot as more than 1 mm, \"statement 2\" :Jagan recorded the radius of some echina at a particular spot as 7 mm, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "echina_radius_s1 = None\nechina_radius_s2 = 7\n\nif echina_radius_s1 is None or echina_radius_s2 is None:\n print('neutral')\n\nelif echina_radius_s1 == echina_radius_s2:\n print('Entailment')\n\nelif echina_radius_s1 != echina_radius_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the minimum number of packages of Aero flight tees Bill must purchase to ensure that he has at least less than 30 golf tees for each member of his foursome , if he will buy no more than 3 packages of the generic golf tees ?, \"statement 2\" :What is the minimum number of packages of Aero flight tees Bill must purchase to ensure that he has at least 20 golf tees for each member of his foursome , if he will buy no more than 3 packages of the generic golf tees ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "golf_tees_s1 = None\ngolf_tees_s2 = 20\n\nif golf_tees_s1 is None or golf_tees_s2 is None:\n print('neutral')\n\nelif golf_tees_s1 == golf_tees_s2:\n print('Entailment')\n\nelif golf_tees_s1 != golf_tees_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jesse has 21.0 bananas, and he shares them among 3.0 friends, \"statement 2\" :Each friend gets 2.0 bananas, \"options: \" Entailment or contradiction?", + "Output Program": [ + "friends_banana_s1 = 21/3\nfriends_banana_s2 = 2\n\nif friends_banana_s1 is None or friends_banana_s2 is None:\n print('neutral')\n\nelif friends_banana_s1 == friends_banana_s2:\n print('Entailment')\n\nelif friends_banana_s1 != friends_banana_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Carol budgeted 18 dollars for gifts for each of the 15 people on her Christmas list, \"statement 2\" :Carol budgeted less than 28 dollars for gifts for each of the 15 people on her Christmas list, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "carol_budgeted_s1 = 18\ncarol_budgeted_s2 = 28\n\nif carol_budgeted_s1 is None or carol_budgeted_s2 is None:\n print('neutral')\n\nelif carol_budgeted_s1 < carol_budgeted_s2:\n print('Entailment')\n\nelif carol_budgeted_s1 != carol_budgeted_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The expulsion of Albanians , which has distracted NATO with a parallel relief operation , has only served to harden the resolve of NATO 's 19 members , who are now willing to approve attacks on more sensitive targets , like Milosevic 's homes and Yugoslavia 's state-run television ., \"statement 2\" :NATO has 16 members ., \"options: \" Entailment or neutral?", + "Output Program": [ + "resolve_members_s1 = 19\nresolve_members_s2 = None\n\nif resolve_members_s1 is None or resolve_members_s2 is None:\n print('neutral')\n\nelif resolve_members_s1 == resolve_members_s2:\n print('Entailment')\n\nelif resolve_members_s1 != resolve_members_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ganesh covers the distance from X to Y at an average speed of 60 Km / hr, \"statement 2\" :Ganesh covers the distance from X to Y at an average speed of more than 50 Km / hr, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ganesh_covers_s1 = 60\nganesh_covers_s2 = 50\n\nif ganesh_covers_s1 is None or ganesh_covers_s2 is None:\n print('neutral')\n\nelif ganesh_covers_s1 > ganesh_covers_s2:\n print('Entailment')\n\nelif ganesh_covers_s1 != ganesh_covers_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained 76 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained less than 86 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dacid_obtained_s1 = 76 + 65 + 82 + 67 + 85\ndacid_obtained_s2 = 86 + 65 + 82 + 67 + 85\n\nif dacid_obtained_s1 is None or dacid_obtained_s2 is None:\n print('neutral')\n\nelif dacid_obtained_s1 < dacid_obtained_s2:\n print('Entailment')\n\nelif dacid_obtained_s1 != dacid_obtained_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Pinky returned four chocolate to the retailer , and the average price of the remaining chocolate was 2 \u00a2 , then what is the average price , in cents , of the four returned chocolates ?, \"statement 2\" :If Pinky returned four chocolate to the retailer , and the average price of the remaining chocolate was 4 \u00a2 , then what is the average price , in cents , of the four returned chocolates ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_chocolate_prize_s1 = 2\naverage_chocolate_prize_s2 = 4\n\nif average_chocolate_prize_s1 is None or average_chocolate_prize_s2 is None:\n print('neutral')\n\nelif average_chocolate_prize_s1 == average_chocolate_prize_s2:\n print('Entailment')\n\nelif average_chocolate_prize_s1 != average_chocolate_prize_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": City thrashed West Bromwich Albion 4-0 at the Etihad Stadium to cut United 's lead to five points with five games to go ., \"statement 2\" :Manchester City cut the gap to five points at the top, \"options: \" Entailment or neutral?", + "Output Program": [ + "city_thrased_lead_s1 = 4\ncity_thrased_lead_s2 = None\n\nif city_thrased_lead_s1 is None or city_thrased_lead_s2 is None:\n print('neutral')\n\nelif city_thrased_lead_s1 == city_thrased_lead_s2:\n print('Entailment')\n\nelif city_thrased_lead_s1 != city_thrased_lead_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is less than 4 : 3 ? A, \"statement 2\" :What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is 2 : 3 ?\nA, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_ration_s1 = None\ndistance_ration_s2 = 2/3\n\nif distance_ration_s1 is None or distance_ration_s2 is None:\n print('neutral')\n\nelif distance_ration_s1 == distance_ration_s2:\n print('Entailment')\n\nelif distance_ration_s1 != distance_ration_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Adam sat with his friends in the Chinnaswamy stadium at Madurai to watch the less than 700 metres running race organized by the Asian athletics Association, \"statement 2\" :Adam sat with his friends in the Chinnaswamy stadium at Madurai to watch the 100 metres running race organized by the Asian athletics Association, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "running_race_s1 = None\nrunning_race_s2 = 100\n\nif running_race_s1 is None or running_race_s2 is None:\n print('neutral')\n\nelif running_race_s1 == running_race_s2:\n print('Entailment')\n\nelif running_race_s1 != running_race_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Maddie has 24 apples , if she give 12 to mike , how many does she have left ?, \"statement 2\" :Maddie has less than 34 apples , if she give 12 to mike , how many does she have left ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "maddie_apple_s1 = 24\nmaddie_apple_s2 = 34\n\nif maddie_apple_s1 is None or maddie_apple_s2 is None:\n print('neutral')\n\nelif maddie_apple_s1 < maddie_apple_s2:\n print('Entailment')\n\nelif maddie_apple_s1 != maddie_apple_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary selects a total of less than 80 apples and oranges from the food stand , and the average ( arithmetic mean ) price of the 10 pieces of fruit is 54 \u00a2, \"statement 2\" :Mary selects a total of 10 apples and oranges from the food stand , and the average ( arithmetic mean ) price of the 10 pieces of fruit is 54 \u00a2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mary_selects_apple_s1 = None\nmary_selects_apple_s2 = 10\n\nif mary_selects_apple_s1 is None or mary_selects_apple_s2 is None:\n print('neutral')\n\nelif mary_selects_apple_s1 == mary_selects_apple_s2:\n print('Entailment')\n\nelif mary_selects_apple_s1 != mary_selects_apple_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary had 33.0 Pokemon cards , and 6.0 were torn and Mary gave Sam 23.0 of her Pokemon cards , \"statement 2\" :Mary has 10.0 Pokemon cards now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "mary_pokemon_cards_s1 = 33-23\nmary_pokemon_cards_s2 = 10\n\nif mary_pokemon_cards_s1 is None or mary_pokemon_cards_s2 is None:\n print('neutral')\n\nelif mary_pokemon_cards_s1 == mary_pokemon_cards_s2:\n print('Entailment')\n\nelif mary_pokemon_cards_s1 != mary_pokemon_cards_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Missy received less than 38 messages from Laurence , how many messages does Keith receive from Juan ?, \"statement 2\" :If Missy received 18 messages from Laurence , how many messages does Keith receive from Juan ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "missy_messages_received_s1 = None\nmissy_messages_received_s2 = 18\n\nif missy_messages_received_s1 is None or missy_messages_received_s2 is None:\n print('neutral')\n\nelif missy_messages_received_s1 == missy_messages_received_s2:\n print('Entailment')\n\nelif missy_messages_received_s1 != missy_messages_received_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Kishore saved 10 % of his monthly salary, \"statement 2\" :Kishore saved less than 20 % of his monthly salary, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kishore_saved_s1 = 10\nkishore_saved_s2 = 20\n\nif kishore_saved_s1 is None or kishore_saved_s2 is None:\n print('neutral')\n\nelif kishore_saved_s1 < kishore_saved_s2:\n print('Entailment')\n\nelif kishore_saved_s1 != kishore_saved_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jerry \u2019 s average ( arithmetic mean ) score on the first 3 of 4 tests is 85, \"statement 2\" :Jerry \u2019 s average ( arithmetic mean ) score on the first less than 8 of 4 tests is 85, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jerry_average_s1 = 85\njerry_average_s2 = 85\n\nif jerry_average_s1 is None or jerry_average_s2 is None:\n print('neutral')\n\nelif jerry_average_s1 == jerry_average_s2:\n print('Entailment')\n\nelif jerry_average_s1 != jerry_average_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The sides of right triangle ABC are such that the length of side AC is 1.25 times the length of side AB , which itself is less than 5 units more than the length of side BC, \"statement 2\" :The sides of right triangle ABC are such that the length of side AC is 1.25 times the length of side AB , which itself is 4 units more than the length of side BC, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "triangle_unit_s1 = None\ntriangle_unit_s2 = 4\n\nif triangle_unit_s1 is None or triangle_unit_s2 is None:\n print('neutral')\n\nelif triangle_unit_s1 == triangle_unit_s2:\n print('Entailment')\n\nelif triangle_unit_s1 != triangle_unit_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At the arcade Cody won 49.0 tickets, and he spent 25.0 tickets on a beanie and later won 6.0 more tickets, \"statement 2\" :He would have 28.0 tickets , \"options: \" Entailment or contradiction?", + "Output Program": [ + "cody_tickets_s1 = 49-45+6\ncody_tickets_s2 = 28\n\nif cody_tickets_s1 is None or cody_tickets_s2 is None:\n print('neutral')\n\nelif cody_tickets_s1 == cody_tickets_s2:\n print('Entailment')\n\nelif cody_tickets_s1 != cody_tickets_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the rosters for Professor Wang ' s more than 1 classes are combined with no student ' s name listed more than once , how many names will be on the combined roster ?, \"statement 2\" :If the rosters for Professor Wang ' s 3 classes are combined with no student ' s name listed more than once , how many names will be on the combined roster ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "wang_classes_s1 = None\nwang_classes_s2 = 3\n\nif wang_classes_s1 is None or wang_classes_s2 is None:\n print('neutral')\n\nelif wang_classes_s1 == wang_classes_s2:\n print('Entailment')\n\nelif wang_classes_s1 != wang_classes_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sheila works more than 3 hours per day on Monday , Wednesday and Friday , and 6 hours per day on Tuesday and Thursday, \"statement 2\" :Sheila works 8 hours per day on Monday , Wednesday and Friday , and 6 hours per day on Tuesday and Thursday, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sheila_works_s1 = None\nsheila_works_s2 = 8\n\nif sheila_works_s1 is None or sheila_works_s2 is None:\n print('neutral')\n\nelif sheila_works_s1 == sheila_works_s2:\n print('Entailment')\n\nelif sheila_works_s1 != sheila_works_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Since leaving the Braves , Jones has bounced between teams and leagues , playing the last two as a reserve for the New York Yankees ., \"statement 2\" :Jones played for the Altanta Braves for 12 seasons, \"options: \" Entailment or neutral?", + "Output Program": [ + "jones_seasons_s1 = None\njones_seasons_s2 = 12\n\nif jones_seasons_s1 is None or jones_seasons_s2 is None:\n print('neutral')\n\nelif jones_seasons_s1 == jones_seasons_s2:\n print('Entailment')\n\nelif jones_seasons_s1 != jones_seasons_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Angela \u2019 s grade was in the 90 th percentile out of 80 grades in her class, \"statement 2\" :Angela \u2019 s grade was in the more than 40 th percentile out of 80 grades in her class, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "angela_grade_s1 = 90\nangela_grade_s2 = 40\n\nif angela_grade_s1 is None or angela_grade_s2 is None:\n print('neutral')\n\nelif angela_grade_s1 > angela_grade_s2:\n print('Entailment')\n\nelif angela_grade_s1 != angela_grade_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": '' The reason is that the Lakers signed a deal with Warners for $ 3 billion ., \"statement 2\" :He cites how the Lakers struck a $ 3 billion deal with Time Warner Cable, \"options: \" Entailment or neutral?", + "Output Program": [ + "lakers_deal_s1 = 3\nlakers_deal_s2 = 3\n\nif lakers_deal_s1 is None or lakers_deal_s2 is None:\n print('neutral')\n\nelif lakers_deal_s1 == lakers_deal_s2:\n print('Entailment')\n\nelif lakers_deal_s1 != lakers_deal_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bookman purchased 30 copies of a new book released recently , 10 of which are hardback and sold for $ 20 each , and rest are paperback and sold for $ 10 each, \"statement 2\" :Bookman purchased less than 30 copies of a new book released recently , 10 of which are hardback and sold for $ 20 each , and rest are paperback and sold for $ 10 each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bookman_purchased_s1 = 30\nbookman_purchased_s2 = 30-1\n\nif bookman_purchased_s1 is None or bookman_purchased_s2 is None:\n print('neutral')\n\nelif bookman_purchased_s1 == bookman_purchased_s2:\n print('Entailment')\n\nelif bookman_purchased_s1 != bookman_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The outbreak is responsible for 15 deaths in Germany and one in Sweden , according to the World Health Organization ., \"statement 2\" :Sixteen deaths are linked to the outbreak , including one in Sweden , World Health Organization says, \"options: \" Entailment or neutral?", + "Output Program": [ + "germany_death_s1 = 15\ngermany_death_s2 = None\n\nif germany_death_s1 is None or germany_death_s2 is None:\n print('neutral')\n\nelif germany_death_s1 == germany_death_s2:\n print('Entailment')\n\nelif germany_death_s1 != germany_death_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Renu can do a piece of work in 6 days , but with the help of her friend Suma , she can do it in 3 days, \"statement 2\" :Renu can do a piece of work in more than 5 days , but with the help of her friend Suma , she can do it in 3 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "renu_work_s1 = 6\nrenu_work_s2 = 5\n\nif renu_work_s1 is None or renu_work_s2 is None:\n print('neutral')\n\nelif renu_work_s1 > renu_work_s2:\n print('Entailment')\n\nelif renu_work_s1 != renu_work_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In less than 3979 approximately 1 / 3 of the 37.3 million airline passengers traveling to or from the United States used Kennedy Airport, \"statement 2\" :In 1979 approximately 1 / 3 of the 37.3 million airline passengers traveling to or from the United States used Kennedy Airport, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "airline_passengers_s1 = None\nairline_passengers_s2 = 1979\n\nif airline_passengers_s1 is None or airline_passengers_s2 is None:\n print('neutral')\n\nelif airline_passengers_s1 == airline_passengers_s2:\n print('Entailment')\n\nelif airline_passengers_s1 != airline_passengers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Andy has less than 30 pairs of matched gloves, \"statement 2\" :Andy has 20 pairs of matched gloves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "andy_gloves_s1 = None\nandy_gloves_s2 = 20\n\nif andy_gloves_s1 is None or andy_gloves_s2 is None:\n print('neutral')\n\nelif andy_gloves_s1 == andy_gloves_s2:\n print('Entailment')\n\nelif andy_gloves_s1 != andy_gloves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Before December, customers bought 6444.0 ear muffs from the mall and During December, they bought 1346.0 less earmuffs than before, \"statement 2\" :5100.0 earmuffs were sold in December, \"options: \" Entailment or contradiction?", + "Output Program": [ + "earmuffs_sold_s1 = 6444+1346\nearmuffs_sold_s2 = 5100\n\nif earmuffs_sold_s1 is None or earmuffs_sold_s2 is None:\n print('neutral')\n\nelif earmuffs_sold_s1 == earmuffs_sold_s2:\n print('Entailment')\n\nelif earmuffs_sold_s1 != earmuffs_sold_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a recent election , Geoff received 1 percent of the 6,000 votes cast, \"statement 2\" :In a recent election , Geoff received less than 1 percent of the 6,000 votes cast, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "geoff_received_s1 = 1\ngeoff_received_s2 = 1-0.1\n\nif geoff_received_s1 is None or geoff_received_s2 is None:\n print('neutral')\n\nelif geoff_received_s1 == geoff_received_s2:\n print('Entailment')\n\nelif geoff_received_s1 != geoff_received_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Baker Ram is storing cake boxes in cartons that measure less than 45 inches by 42 inches by 60 inches, \"statement 2\" :Baker Ram is storing cake boxes in cartons that measure 25 inches by 42 inches by 60 inches, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cartons_measure_s1 = None\ncartons_measure_s2 = 25\n\nif cartons_measure_s1 is None or cartons_measure_s2 is None:\n print('neutral')\n\nelif cartons_measure_s1 == cartons_measure_s2:\n print('Entailment')\n\nelif cartons_measure_s1 != cartons_measure_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jack walks in a straight line toward Christina at a constant speed of 7 feet per second and Christina walks in a straight line toward Jack at a constant speed of 8 feet per second, \"statement 2\" :Jack walks in a straight line toward Christina at a constant speed of less than 8 feet per second and Christina walks in a straight line toward Jack at a constant speed of 8 feet per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jack_speed_s1 = 7\njack_speed_s2 = 8\n\nif jack_speed_s1 is None or jack_speed_s2 is None:\n print('neutral')\n\nelif jack_speed_s1 < jack_speed_s2:\n print('Entailment')\n\nelif jack_speed_s1 != jack_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jack walks in a straight line toward Christina at a constant speed of 3 feet per second and Christina walks in a straight line toward Jack at a constant speed of 3 feet per second, \"statement 2\" :Jack walks in a straight line toward Christina at a constant speed of less than 3 feet per second and Christina walks in a straight line toward Jack at a constant speed of 3 feet per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jack_speed_s1 = 3\njack_speed_s2 = 3-1\n\nif jack_speed_s1 is None or jack_speed_s2 is None:\n print('neutral')\n\nelif jack_speed_s1 == jack_speed_s2:\n print('Entailment')\n\nelif jack_speed_s1 != jack_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John was thrice as old as Tom 6 yrs back, \"statement 2\" :John was thrice as old as Tom less than 6 yrs back, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_back_s1 = 6\nyears_back_s2 = 6-1\n\nif years_back_s1 is None or years_back_s2 is None:\n print('neutral')\n\nelif years_back_s1 == years_back_s2:\n print('Entailment')\n\nelif years_back_s1 != years_back_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a group of 100 people , 55 have visited Iceland and 43 have visited Norway, \"statement 2\" :In a group of less than 600 people , 55 have visited Iceland and 43 have visited Norway, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "group_visited_iceland_s1 = 100\ngroup_visited_iceland_s2 = 600\n\nif group_visited_iceland_s1 is None or group_visited_iceland_s2 is None:\n print('neutral')\n\nelif group_visited_iceland_s1 < group_visited_iceland_s2:\n print('Entailment')\n\nelif group_visited_iceland_s1 != group_visited_iceland_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": NEW YORK ( CNN ) -- More than $ 20 million from dozens of clients is unaccounted for in the aftermath of what police say was a murder-suicide by the attorney who invested the money , according to a source with direct knowledge of deceased lawyer William Parente 's financial dealings ., \"statement 2\" :Parente may have taken more than $ 27 million from dozens of clients, \"options: \" Entailment or neutral?", + "Output Program": [ + "money_unaccounted_s1 = None\nmoney_unaccounted_s2 = 27\n\nif money_unaccounted_s1 is None or money_unaccounted_s2 is None:\n print('neutral')\n\nelif money_unaccounted_s1 < money_unaccounted_s2:\n print('Entailment')\n\nelif money_unaccounted_s1 != money_unaccounted_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 2000 , Deepak ' s share is :, \"statement 2\" :8000 , Deepak ' s share is :, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "deepak_share_s1 = 2000\ndeepak_share_s2 = 8000\n\nif deepak_share_s1 is None or deepak_share_s2 is None:\n print('neutral')\n\nelif deepak_share_s1 == deepak_share_s2:\n print('Entailment')\n\nelif deepak_share_s1 != deepak_share_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sotomayor was easily confirmed in a 68-31 vote ., \"statement 2\" :Sonia Sotomayor wins confirmation by 68-31 vote, \"options: \" Entailment or neutral?", + "Output Program": [ + "sotomayor_vote_s1 = 68/31\nsotomayor_vote_s2 = 68/31\n\nif sotomayor_vote_s1 is None or sotomayor_vote_s2 is None:\n print('neutral')\n\nelif sotomayor_vote_s1 == sotomayor_vote_s2:\n print('Entailment')\n\nelif sotomayor_vote_s1 != sotomayor_vote_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Yesterday it took Robert 4 hours to drive from City A to City B, \"statement 2\" :Yesterday it took Robert 3 hours to drive from City A to City B, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "robert_drives_s1 = 4\nrobert_drives_s2 = 3\n\nif robert_drives_s1 is None or robert_drives_s2 is None:\n print('neutral')\n\nelif robert_drives_s1 == robert_drives_s2:\n print('Entailment')\n\nelif robert_drives_s1 != robert_drives_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At Veridux Corporation , there are 200 employees, \"statement 2\" :At Veridux Corporation , there are less than 300 employees, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "veridux_employees_s1 = 200\nveridux_employees_s2 = 300\n\nif veridux_employees_s1 is None or veridux_employees_s2 is None:\n print('neutral')\n\nelif veridux_employees_s1 < veridux_employees_s2:\n print('Entailment')\n\nelif veridux_employees_s1 != veridux_employees_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Four different children have jelly beans : Aaron has 7 , Bianca has 7 , Callie has 8 , and Dante has 11, \"statement 2\" :Four different children have jelly beans : Aaron has more than 6 , Bianca has 7 , Callie has 8 , and Dante has 11, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "aaron_jellybenas_s1 = 7\naaron_jellybenas_s2 = 6\n\nif aaron_jellybenas_s1 is None or aaron_jellybenas_s2 is None:\n print('neutral')\n\nelif aaron_jellybenas_s1 > aaron_jellybenas_s2:\n print('Entailment')\n\nelif aaron_jellybenas_s1 != aaron_jellybenas_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ratio of men to women in the Snyder community choir is 4 to 6, \"statement 2\" :The ratio of men to women in the Snyder community choir is less than 4 to 6, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "snyder_gender_ratio_s1 = 4/6\nsnyder_gender_ratio_s2 = (4/6)-0.1\n\nif snyder_gender_ratio_s1 is None or snyder_gender_ratio_s2 is None:\n print('neutral')\n\nelif snyder_gender_ratio_s1 == snyder_gender_ratio_s2:\n print('Entailment')\n\nelif snyder_gender_ratio_s1 != snyder_gender_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sacha runs at a constant speed of 10 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"statement 2\" :Sacha runs at a constant speed of less than 80 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sacha_speed_s1 = 10\nsacha_speed_s2 = 80\n\nif sacha_speed_s1 is None or sacha_speed_s2 is None:\n print('neutral')\n\nelif sacha_speed_s1 < sacha_speed_s2:\n print('Entailment')\n\nelif sacha_speed_s1 != sacha_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Of a certain group of 100 people , 40 graduated from High School A , 65 graduated from College Y , and 30 live in City Z, \"statement 2\" :Of a certain group of 600 people , 40 graduated from High School A , 65 graduated from College Y , and 30 live in City Z, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "certain_group_peoples_s1 = 100\ncertain_group_peoples_s2 = 600\n\nif certain_group_peoples_s1 is None or certain_group_peoples_s2 is None:\n print('neutral')\n\nelif certain_group_peoples_s1 == certain_group_peoples_s2:\n print('Entailment')\n\nelif certain_group_peoples_s1 != certain_group_peoples_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rebecca ' s annual income is $ less than 50 , and Jimmy ' s annual income is $ 10 ,, \"statement 2\" :Rebecca ' s annual income is $ 20 , and Jimmy ' s annual income is $ 10 ,, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rebecca_income_s1 = None\nrebecca_income_s2 = 20\n\nif rebecca_income_s1 is None or rebecca_income_s2 is None:\n print('neutral')\n\nelif rebecca_income_s1 == rebecca_income_s2:\n print('Entailment')\n\nelif rebecca_income_s1 != rebecca_income_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 5 % people of a village in Sri Lanka died by bombardment , 15 % of the remainder left the village on account of fear, \"statement 2\" :3 % people of a village in Sri Lanka died by bombardment , 15 % of the remainder left the village on account of fear, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bombardment_peoples_s1 = 5\nbombardment_peoples_s2 = 3\n\nif bombardment_peoples_s1 is None or bombardment_peoples_s2 is None:\n print('neutral')\n\nelif bombardment_peoples_s1 == bombardment_peoples_s2:\n print('Entailment')\n\nelif bombardment_peoples_s1 != bombardment_peoples_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jake drives at a constant speed of 29 km per hour, \"statement 2\" :Jake drives at a constant speed of more than 19 km per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jake_drives_s1 = 29\njake_drives_s2 = 19\n\nif jake_drives_s1 is None or jake_drives_s2 is None:\n print('neutral')\n\nelif jake_drives_s1 > jake_drives_s2:\n print('Entailment')\n\nelif jake_drives_s1 != jake_drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tanya is 25 % more efficient than Sakshi, \"statement 2\" :Tanya is 55 % more efficient than Sakshi, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tanya_efficient_s1 = 25\ntanya_efficient_s2 = 55\n\nif tanya_efficient_s1 is None or tanya_efficient_s2 is None:\n print('neutral')\n\nelif tanya_efficient_s1 == tanya_efficient_s2:\n print('Entailment')\n\nelif tanya_efficient_s1 != tanya_efficient_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mike picked 32.0 limes, and Alyssa ate 25.0 limes and Tom picked 12.0 plums , \"statement 2\" :10.0 limes were left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "mike_limes_s1 = 32+25\nmike_limes_s2 = 10\n\nif mike_limes_s1 is None or mike_limes_s2 is None:\n print('neutral')\n\nelif mike_limes_s1 == mike_limes_s2:\n print('Entailment')\n\nelif mike_limes_s1 != mike_limes_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jason has 7.0 violet balloons and 4.0 red balloons and he lost 3.0 of the violet balloons , \"statement 2\" :Jason has 3.0 violet balloons now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "jason_violet_ballons_s1 = 7-3\njason_violet_ballons_s2 = 3\n\nif jason_violet_ballons_s1 is None or jason_violet_ballons_s2 is None:\n print('neutral')\n\nelif jason_violet_ballons_s1 == jason_violet_ballons_s2:\n print('Entailment')\n\nelif jason_violet_ballons_s1 != jason_violet_ballons_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a certain province in France there are 11 cities, \"statement 2\" :In a certain province in France there are less than 81 cities, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "france_cities_s1 = 11\nfrance_cities_s2 = 81\n\nif france_cities_s1 is None or france_cities_s2 is None:\n print('neutral')\n\nelif france_cities_s1 < france_cities_s2:\n print('Entailment')\n\nelif france_cities_s1 != france_cities_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Zack has 3 red fish , 5 yellow fish and 7 green fish, \"statement 2\" :Zack has 6 red fish , 5 yellow fish and 7 green fish, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "zack_red_fish_s1 = 3\nzack_red_fish_s2 = 6\n\nif zack_red_fish_s1 is None or zack_red_fish_s2 is None:\n print('neutral')\n\nelif zack_red_fish_s1 == zack_red_fish_s2:\n print('Entailment')\n\nelif zack_red_fish_s1 != zack_red_fish_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": ( CNN ) -- Indonesian police are searching for potentially hundreds of escaped inmates following a deadly prison riot in Medan , the capital of the province of North Sumatra ., \"statement 2\" :More than 200 inmates escaped from Indonesian prison following deadly riot, \"options: \" Entailment or neutral?", + "Output Program": [ + "inmates_escaped_s1 = None\ninmates_escaped_s2 = 200+1\n\nif inmates_escaped_s1 is None or inmates_escaped_s2 is None:\n print('neutral')\n\nelif inmates_escaped_s1 == inmates_escaped_s2:\n print('Entailment')\n\nelif inmates_escaped_s1 != inmates_escaped_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Carl drove from his home to the beach at an average speed of more than 70 kilometers per hour and returned home by the same route at an average speed of 70 kilometers per hour, \"statement 2\" :Carl drove from his home to the beach at an average speed of 80 kilometers per hour and returned home by the same route at an average speed of 70 kilometers per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "carl_average_speed_s1 = None\ncarl_average_speed_s2 = 80\n\nif carl_average_speed_s1 is None or carl_average_speed_s2 is None:\n print('neutral')\n\nelif carl_average_speed_s1 == carl_average_speed_s2:\n print('Entailment')\n\nelif carl_average_speed_s1 != carl_average_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Victor has 15 cups if flour , 16 cups of sugar and 8 cups of milk, \"statement 2\" :Victor has 45 cups if flour , 16 cups of sugar and 8 cups of milk, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "victor_flour_s1 = 15\nvictor_flour_s2 = 45\n\nif victor_flour_s1 is None or victor_flour_s2 is None:\n print('neutral')\n\nelif victor_flour_s1 == victor_flour_s2:\n print('Entailment')\n\nelif victor_flour_s1 != victor_flour_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Randy has 78.0 blocks and he uses 19.0 blocks to build a tower, \"statement 2\" :59.0 blocks are left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "randy_block_tower_s1 = 78-19\nrandy_block_tower_s2 = 59\n\nif randy_block_tower_s1 is None or randy_block_tower_s2 is None:\n print('neutral')\n\nelif randy_block_tower_s1 == randy_block_tower_s2:\n print('Entailment')\n\nelif randy_block_tower_s1 != randy_block_tower_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": present ages of Ram and Rahim are in the ratio of 4 : 3 respectively, \"statement 2\" :present ages of Ram and Rahim are in the ratio of more than 1 : 3 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ram_rahim_age_ratio_s1 = 4/3\nram_rahim_age_ratio_s2 = 1/3\n\nif ram_rahim_age_ratio_s1 is None or ram_rahim_age_ratio_s2 is None:\n print('neutral')\n\nelif ram_rahim_age_ratio_s1 > ram_rahim_age_ratio_s2:\n print('Entailment')\n\nelif ram_rahim_age_ratio_s1 != ram_rahim_age_ratio_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": City A to city B , Ameer drove for 1 hour at 60 mph and for 3 hours at 50 mph, \"statement 2\" :City A to city B , Ameer drove for 3 hour at 60 mph and for 3 hours at 50 mph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ameer_drove_s1 = 1\nameer_drove_s2 = 3\n\nif ameer_drove_s1 is None or ameer_drove_s2 is None:\n print('neutral')\n\nelif ameer_drove_s1 == ameer_drove_s2:\n print('Entailment')\n\nelif ameer_drove_s1 != ameer_drove_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mike bought some toys and he bought marbles for $9.05, a football for $4.95, and received $6.52 for returning a baseball, \"statement 2\" :The net amount Mike spent on toys is 3.7, \"options: \" Entailment or contradiction?", + "Output Program": [ + "mike_spent_s1 = 9.05 + 4.95 - 6.52\nmike_spent_s2 = 3.7\n\nif mike_spent_s1 is None or mike_spent_s2 is None:\n print('neutral')\n\nelif mike_spent_s1 == mike_spent_s2:\n print('Entailment')\n\nelif mike_spent_s1 != mike_spent_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The average marks scored by Ganesh in English , Science , Mathematics and History is less than 20 from that scored by him in English , History , Geography and Mathematics, \"statement 2\" :The average marks scored by Ganesh in English , Science , Mathematics and History is less than less than 40 from that scored by him in English , History , Geography and Mathematics, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ganesh_average_s1 = 20\nganesh_average_s2 = 40\n\nif ganesh_average_s1 is None or ganesh_average_s2 is None:\n print('neutral')\n\nelif ganesh_average_s1 < ganesh_average_s2:\n print('Entailment')\n\nelif ganesh_average_s1 != ganesh_average_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are 25 males altogether , how many gerbils does Claire have ?, \"statement 2\" :If there are 15 males altogether , how many gerbils does Claire have ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_males_s1 = 25\ntotal_males_s2 = 15\n\nif total_males_s1 is None or total_males_s2 is None:\n print('neutral')\n\nelif total_males_s1 == total_males_s2:\n print('Entailment')\n\nelif total_males_s1 != total_males_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the average speed of the whole journey was 36 mph , then what is Tom ' s speed driving from B to C in miles per hour ?, \"statement 2\" :If the average speed of the whole journey was more than 16 mph , then what is Tom ' s speed driving from B to C in miles per hour ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_speed_s1 = 36\naverage_speed_s2 = 16\n\nif average_speed_s1 is None or average_speed_s2 is None:\n print('neutral')\n\nelif average_speed_s1 > average_speed_s2:\n print('Entailment')\n\nelif average_speed_s1 != average_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If T = 5 / 9 * ( K - 32 ) , and if T = 75 , then what is the value of K ?, \"statement 2\" :If T = more than 5 / 9 * ( K - 32 ) , and if T = 75 , then what is the value of K ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "value_of_t_s1 = 75\nvalue_of_t_s2 = 75+1\n\nif value_of_t_s1 is None or value_of_t_s2 is None:\n print('neutral')\n\nelif value_of_t_s1 == value_of_t_s2:\n print('Entailment')\n\nelif value_of_t_s1 != value_of_t_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": James takes a trip and drives more than 1 hours from Town A to Town C at a rate of 30 miles per hour, \"statement 2\" :James takes a trip and drives 7 hours from Town A to Town C at a rate of 30 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "james_drives_s1 = 1\njames_drives_s2 = 7\n\nif james_drives_s1 is None or james_drives_s2 is None:\n print('neutral')\n\nelif james_drives_s1 == james_drives_s2:\n print('Entailment')\n\nelif james_drives_s1 != james_drives_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Veena ranks 73 rd from the top in a class of 182, \"statement 2\" :Veena ranks less than 73 rd from the top in a class of 182, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "veena_ranks_s1 = 73\nveena_ranks_s2 = 73-1\n\nif veena_ranks_s1 is None or veena_ranks_s2 is None:\n print('neutral')\n\nelif veena_ranks_s1 == veena_ranks_s2:\n print('Entailment')\n\nelif veena_ranks_s1 != veena_ranks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sheila works 8 hours per day on Monday , Wednesday and Friday , and 6 hours per day on Tuesday and Thursday, \"statement 2\" :Sheila works 2 hours per day on Monday , Wednesday and Friday , and 6 hours per day on Tuesday and Thursday, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sheila_works_s1 = 8\nsheila_works_s2 = 2\n\nif sheila_works_s1 is None or sheila_works_s2 is None:\n print('neutral')\n\nelif sheila_works_s1 == sheila_works_s2:\n print('Entailment')\n\nelif sheila_works_s1 != sheila_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John ' s Bank ' s saving amount is decreased 12 % due to loan payment and current balance is Rs, \"statement 2\" :John ' s Bank ' s saving amount is decreased less than 42 % due to loan payment and current balance is Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_bank_amount_decreased_s1 = 12\njohn_bank_amount_decreased_s2 = 42\n\nif john_bank_amount_decreased_s1 is None or john_bank_amount_decreased_s2 is None:\n print('neutral')\n\nelif john_bank_amount_decreased_s1 < john_bank_amount_decreased_s2:\n print('Entailment')\n\nelif john_bank_amount_decreased_s1 != john_bank_amount_decreased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Josh had 142.0 pencils and he got 31.0 pencils from Dorothy, \"statement 2\" :Josh has 173.0 pencils now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "john_pencils_s1 = 142+31\njohn_pencils_s2 = 173\n\nif john_pencils_s1 is None or john_pencils_s2 is None:\n print('neutral')\n\nelif john_pencils_s1 == john_pencils_s2:\n print('Entailment')\n\nelif john_pencils_s1 != john_pencils_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": But campaigners say the photo ops and lofty words offered by Peng and other public figures do little to improve the lot of the almost half a million people living with HIV or AIDS in China ., \"statement 2\" :Laws prohibit discrimination against the 430,000 people living with HIV/AIDS in China, \"options: \" Entailment or neutral?", + "Output Program": [ + "discriminate_against_s1 = 500000\ndiscriminate_against_s2 = 430000\n\nif discriminate_against_s1 is None or discriminate_against_s2 is None:\n print('neutral')\n\nelif discriminate_against_s1 > discriminate_against_s2:\n print('Entailment')\n\nelif discriminate_against_s1 != discriminate_against_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a shop , more than 20 % socks are white and rest are black, \"statement 2\" :In a shop , 40 % socks are white and rest are black, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "white_socks_s1 = None\nwhite_socks_s2 = 40\n\nif white_socks_s1 is None or white_socks_s2 is None:\n print('neutral')\n\nelif white_socks_s1 == white_socks_s2:\n print('Entailment')\n\nelif white_socks_s1 != white_socks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Suraj has a certain average of runs for 12 innings, \"statement 2\" :Suraj has a certain average of runs for less than 62 innings, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "suraj_average_runs_s1 = 12\nsuraj_average_runs_s2 = 62\n\nif suraj_average_runs_s1 is None or suraj_average_runs_s2 is None:\n print('neutral')\n\nelif suraj_average_runs_s1 < suraj_average_runs_s2:\n print('Entailment')\n\nelif suraj_average_runs_s1 != suraj_average_runs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In Kaya ' s teacher ' s desk there are 24 pink highlighters , 28 yellow highlighters , and 25 blue highlighters, \"statement 2\" :In Kaya ' s teacher ' s desk there are less than 24 pink highlighters , 28 yellow highlighters , and 25 blue highlighters, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pink_highlighters_s1 = 24\npink_highlighters_s2 = 24-1\n\nif pink_highlighters_s1 is None or pink_highlighters_s2 is None:\n print('neutral')\n\nelif pink_highlighters_s1 == pink_highlighters_s2:\n print('Entailment')\n\nelif pink_highlighters_s1 != pink_highlighters_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Tom received $ more than 400 more than Jerry did , what was the profit made by their business in that year ?, \"statement 2\" :If Tom received $ 800 more than Jerry did , what was the profit made by their business in that year ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tom_received_s1 = None\ntom_received_s2 = 800\n\nif tom_received_s1 is None or tom_received_s2 is None:\n print('neutral')\n\nelif tom_received_s1 == tom_received_s2:\n print('Entailment')\n\nelif tom_received_s1 != tom_received_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In 1979 approximately 1 / 3 of the 37.3 million airline passengers traveling to or from the United States used Kennedy Airport, \"statement 2\" :In less than 3979 approximately 1 / 3 of the 37.3 million airline passengers traveling to or from the United States used Kennedy Airport, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "airline_passengers_s1 = 37.3\nairline_passengers_s2 = 37.3\n\nif airline_passengers_s1 is None or airline_passengers_s2 is None:\n print('neutral')\n\nelif airline_passengers_s1 == airline_passengers_s2:\n print('Entailment')\n\nelif airline_passengers_s1 != airline_passengers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": '' An Unexpected Journey '' was followed closely by '' Django Unchained , '' which has an estimated download count of 8.1 million -- just 300,000 fewer than '' The Hobbit , '' even though '' The Hobbit 's '' worldwide box office take was more than twice what Django made ., \"statement 2\" :'' The Hobbit : An Unexpected Journey '' had about 8.4 million downloads, \"options: \" Entailment or neutral?", + "Output Program": [ + "estimated_download_fewer_s1 = 300000\nestimated_download_fewer_s2 = None\n\nif estimated_download_fewer_s1 is None or estimated_download_fewer_s2 is None:\n print('neutral')\n\nelif estimated_download_fewer_s1 == estimated_download_fewer_s2:\n print('Entailment')\n\nelif estimated_download_fewer_s1 != estimated_download_fewer_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Martha has more than 2 dogs and 4 cats, \"statement 2\" :Martha has 6 dogs and 4 cats, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "martha_dogs_s1 = None\nmartha_dogs_s2 = 6\n\nif martha_dogs_s1 is None or martha_dogs_s2 is None:\n print('neutral')\n\nelif martha_dogs_s1 == martha_dogs_s2:\n print('Entailment')\n\nelif martha_dogs_s1 != martha_dogs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were 3409.0 pieces of candy in a jar, and 145.0 pieces were red and the rest were blue, \"statement 2\" :3260.0 candy pieces were blue, \"options: \" Entailment or contradiction?", + "Output Program": [ + "blue_candies_s1 = 2409-145\nblue_candies_s2 = 3260\n\nif blue_candies_s1 is None or blue_candies_s2 is None:\n print('neutral')\n\nelif blue_candies_s1 == blue_candies_s2:\n print('Entailment')\n\nelif blue_candies_s1 != blue_candies_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ratio between the number of sheep and the number of horses at the Stewart farm is 2 to 7 , If each horse is fed 230 ounces of horse food per day and the farm needs a total 12,880 ounces of horse food per day , what is the number of sheep in the farm ?, \"statement 2\" :The ratio between the number of sheep and the number of horses at the Stewart farm is less than 5 to 7 , If each horse is fed 230 ounces of horse food per day and the farm needs a total 12,880 ounces of horse food per day , what is the number of sheep in the farm ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stewart_animal_ratio_s1 = 2/7\nstewart_animal_ratio_s2 = 5/7\n\nif stewart_animal_ratio_s1 is None or stewart_animal_ratio_s2 is None:\n print('neutral')\n\nelif stewart_animal_ratio_s1 < stewart_animal_ratio_s2:\n print('Entailment')\n\nelif stewart_animal_ratio_s1 != stewart_animal_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joe \u2019 s average ( arithmetic mean ) test score across 4 equally weighted tests was 90, \"statement 2\" :Joe \u2019 s average ( arithmetic mean ) test score across 2 equally weighted tests was 90, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "equally_weighted_tests_s1 = 4\nequally_weighted_tests_s2 = 2\n\nif equally_weighted_tests_s1 is None or equally_weighted_tests_s2 is None:\n print('neutral')\n\nelif equally_weighted_tests_s1 == equally_weighted_tests_s2:\n print('Entailment')\n\nelif equally_weighted_tests_s1 != equally_weighted_tests_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The stolen vehicles were worth more than $ 1 million ., \"statement 2\" :The stolen vehicles were worth more than $ 1 million , officials said, \"options: \" Entailment or neutral?", + "Output Program": [ + "stolen_vehicle_worth_s1 = None\nstolen_vehicle_worth_s2 = 1+0.1\n\nif stolen_vehicle_worth_s1 is None or stolen_vehicle_worth_s2 is None:\n print('neutral')\n\nelif stolen_vehicle_worth_s1 == stolen_vehicle_worth_s2:\n print('Entailment')\n\nelif stolen_vehicle_worth_s1 != stolen_vehicle_worth_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shannon, Brenda\u2019s neighbor, joined Brenda in making bracelets and she brought 48.0 heart-shaped stones and wanted to have 8.0 of this type of stone in each of the bracelet she makes, \"statement 2\" :Shannon can make 6.0 bracelets with heart-shaped stones, \"options: \" Entailment or contradiction?", + "Output Program": [ + "bracelets_s1 = 48/8\nbracelets_s2 = 6\n\nif bracelets_s1 is None or bracelets_s2 is None:\n print('neutral')\n\nelif bracelets_s1 == bracelets_s2:\n print('Entailment')\n\nelif bracelets_s1 != bracelets_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Team captain Butt said Pakistan gave 100 percent throughout a match ., \"statement 2\" :Everyone on the team gave '' 100 percent , '' captain Salman Butt says, \"options: \" Entailment or neutral?", + "Output Program": [ + "pakistan_gave_s1 = 100\npakistan_gave_s2 = 100\n\nif pakistan_gave_s1 is None or pakistan_gave_s2 is None:\n print('neutral')\n\nelif pakistan_gave_s1 == pakistan_gave_s2:\n print('Entailment')\n\nelif pakistan_gave_s1 != pakistan_gave_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He will be 5 / 3 times as old as Tom 6 years hence, \"statement 2\" :He will be more than 1 / 3 times as old as Tom 6 years hence, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tom_age_s1 = 5/3\ntom_age_s2 = 1/3\n\nif tom_age_s1 is None or tom_age_s2 is None:\n print('neutral')\n\nelif tom_age_s1 > tom_age_s2:\n print('Entailment')\n\nelif tom_age_s1 != tom_age_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In an exam , Amar scored more than 34 percent , Bhavan scored 36 percent and Chetan 44 percent, \"statement 2\" :In an exam , Amar scored 64 percent , Bhavan scored 36 percent and Chetan 44 percent, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "aman_scored_s1 = None\naman_scored_s2 = 34\n\nif aman_scored_s1 is None or aman_scored_s2 is None:\n print('neutral')\n\nelif aman_scored_s1 == aman_scored_s2:\n print('Entailment')\n\nelif aman_scored_s1 != aman_scored_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mrs. Santiago has 58.0 red roses and Mrs. Garrett has 24.0, \"statement 2\" :The total number of roses is 77.0, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_roses_s1 = 58+24\ntotal_roses_s2 = 77\n\nif total_roses_s1 is None or total_roses_s2 is None:\n print('neutral')\n\nelif total_roses_s1 == total_roses_s2:\n print('Entailment')\n\nelif total_roses_s1 != total_roses_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary played the game , getting at least one score of each of 1 , 2 , 3 and 4 and never getting the same score in consecutive steps, \"statement 2\" :Mary played the game , getting at least one score of each of more than 1 , 2 , 3 and 4 and never getting the same score in consecutive steps, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mary_score_s1 = [1,2,3,4]\nmary_score_s2 = [1,2,3,4,5]\n\nif mary_score_s1 is None or mary_score_s2 is None:\n print('neutral')\n\nelif len(mary_score_s1) == len(mary_score_s2):\n print('Entailment')\n\nelif len(mary_score_s1) != len(mary_score_s2):\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the perimeter of \u0394 ACD is more than 3 + 3 \u221a 3 , what is the perimeter of equilateral triangle \u0394 ABC ?, \"statement 2\" :If the perimeter of \u0394 ACD is 9 + 3 \u221a 3 , what is the perimeter of equilateral triangle \u0394 ABC ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "parameter_acd_s1 = None\nparameter_acd_s2 = 9+3\n\nif parameter_acd_s1 is None or parameter_acd_s2 is None:\n print('neutral')\n\nelif parameter_acd_s1 == parameter_acd_s2:\n print('Entailment')\n\nelif parameter_acd_s1 != parameter_acd_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Exactly more than 3 / 7 of the ponies have horseshoes , and exactly 2 / 3 of the ponies with horseshoes are from Iceland, \"statement 2\" :Exactly 5 / 7 of the ponies have horseshoes , and exactly 2 / 3 of the ponies with horseshoes are from Iceland, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ponies_horseshoes_s1 = None\nponies_horseshoes_s2 = 5/7\n\nif ponies_horseshoes_s1 is None or ponies_horseshoes_s2 is None:\n print('neutral')\n\nelif ponies_horseshoes_s1 == ponies_horseshoes_s2:\n print('Entailment')\n\nelif ponies_horseshoes_s1 != ponies_horseshoes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mr Yadav spends more than 10 % of his monthly salary on consumable items and 50 % of the remaining on clothes and transport, \"statement 2\" :Mr Yadav spends 60 % of his monthly salary on consumable items and 50 % of the remaining on clothes and transport, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "yadav_spends_s1 = None\nyadav_spends_s2 = 60\n\nif yadav_spends_s1 is None or yadav_spends_s2 is None:\n print('neutral')\n\nelif yadav_spends_s1 == yadav_spends_s2:\n print('Entailment')\n\nelif yadav_spends_s1 != yadav_spends_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shridhar is 3 : 2, \"statement 2\" :Shridhar is less than 6 : 2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shridhar_ratio_s1 = 3/2\nshridhar_ratio_s2 = 6/2\n\nif shridhar_ratio_s1 is None or shridhar_ratio_s2 is None:\n print('neutral')\n\nelif shridhar_ratio_s1 < shridhar_ratio_s2:\n print('Entailment')\n\nelif shridhar_ratio_s1 != shridhar_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 120000 for 6 months , whereas Dave invested his amount for the whole yr , what was the amount invested by Dave ?, \"statement 2\" :more than 120000 for 6 months , whereas Dave invested his amount for the whole yr , what was the amount invested by Dave ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dave_invested_s1 = 120000\ndave_invested_s2 = 120000+1\n\nif dave_invested_s1 is None or dave_invested_s2 is None:\n print('neutral')\n\nelif dave_invested_s1 == dave_invested_s2:\n print('Entailment')\n\nelif dave_invested_s1 != dave_invested_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Glen drives at a constant speed of 37 km per hour, \"statement 2\" :Glen drives at a constant speed of less than 67 km per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "glen_drives_s1 = 37\nglen_drives_s2 = 67\n\nif glen_drives_s1 is None or glen_drives_s2 is None:\n print('neutral')\n\nelif glen_drives_s1 < glen_drives_s2:\n print('Entailment')\n\nelif glen_drives_s1 != glen_drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 360 million European citizens in 15 member states and yet we can not find just 20 men and women with the relevant professional competence and work experience to be commissioners ., \"statement 2\" :There are 360 million European citizens ., \"options: \" Entailment or neutral?", + "Output Program": [ + "european_citizens_s1 = 360\neuropean_citizens_s2 = 360\n\nif european_citizens_s1 is None or european_citizens_s2 is None:\n print('neutral')\n\nelif european_citizens_s1 == european_citizens_s2:\n print('Entailment')\n\nelif european_citizens_s1 != european_citizens_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": George had 28.0 socks, and he threw away 4.0 old ones that didn't fit and bought 36.0 new ones, \"statement 2\" :He would have 58.0 socks , \"options: \" Entailment or contradiction?", + "Output Program": [ + "george_socks_s1 = 28-4+36\ngeorge_socks_s2 = 58\n\nif george_socks_s1 is None or george_socks_s2 is None:\n print('neutral')\n\nelif george_socks_s1 == george_socks_s2:\n print('Entailment')\n\nelif george_socks_s1 != george_socks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Goldman Limited has 5 Senior Managing Directors and 6 Managing Directors, \"statement 2\" :Goldman Limited has more than 5 Senior Managing Directors and 6 Managing Directors, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "senior_director_s1 = 5\nsenior_director_s2 = 5+1\n\nif senior_director_s1 is None or senior_director_s2 is None:\n print('neutral')\n\nelif senior_director_s1 == senior_director_s2:\n print('Entailment')\n\nelif senior_director_s1 != senior_director_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were a total of 13.0 hockey games a month and the season is played for 14.0 months, \"statement 2\" :177.0 hockey games are played in the season , \"options: \" Entailment or contradiction?", + "Output Program": [ + "hockey_games_s1 = 13*14\nhockey_games_s2 = 177\n\nif hockey_games_s1 is None or hockey_games_s2 is None:\n print('neutral')\n\nelif hockey_games_s1 == hockey_games_s2:\n print('Entailment')\n\nelif hockey_games_s1 != hockey_games_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many jelly beans must Dante give to Aaron to ensure that no child has more than 1 fewer jelly beans than any other child ?, \"statement 2\" :How many jelly beans must Dante give to Aaron to ensure that no child has more than 6 fewer jelly beans than any other child ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "child_jelly_s1 = 1\nchild_jelly_s2 = 6\n\nif child_jelly_s1 is None or child_jelly_s2 is None:\n print('neutral')\n\nelif child_jelly_s1 == child_jelly_s2:\n print('Entailment')\n\nelif child_jelly_s1 != child_jelly_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": When Professor Wang looked at the rosters for this term ' s classes , she saw that the roster for her economics class ( E ) had 24 names , the roster for her marketing class ( M ) had 28 , and the roster for her statistics class ( S ) had 18, \"statement 2\" :When Professor Wang looked at the rosters for this term ' s classes , she saw that the roster for her economics class ( E ) had more than 24 names , the roster for her marketing class ( M ) had 28 , and the roster for her statistics class ( S ) had 18, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "economy_class_s1 = 24\neconomy_class_s2 = 24+1\n\nif economy_class_s1 is None or economy_class_s2 is None:\n print('neutral')\n\nelif economy_class_s1 == economy_class_s2:\n print('Entailment')\n\nelif economy_class_s1 != economy_class_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mrs. Hilt reads 5.0 books a day., \"statement 2\" :She read 16.0 books, \"options: \" Entailment or contradiction?", + "Output Program": [ + "hilt_reads_s1 = 5\nhilt_reads_s2 = 16\n\nif hilt_reads_s1 is None or hilt_reads_s2 is None:\n print('neutral')\n\nelif hilt_reads_s1 == hilt_reads_s2:\n print('Entailment')\n\nelif hilt_reads_s1 != hilt_reads_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are 25 males altogether , how many gerbils does Claire have ?, \"statement 2\" :If there are more than 25 males altogether , how many gerbils does Claire have ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "males_together_s1 = 25\nmales_together_s2 = 25+1\n\nif males_together_s1 is None or males_together_s2 is None:\n print('neutral')\n\nelif males_together_s1 == males_together_s2:\n print('Entailment')\n\nelif males_together_s1 != males_together_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": less than 6 years ago Kate was 5 times as old as her Son, \"statement 2\" :5 years ago Kate was 5 times as old as her Son, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_ago_s1 = None\nyears_ago_s2 = 5\n\nif years_ago_s1 is None or years_ago_s2 is None:\n print('neutral')\n\nelif years_ago_s1 == years_ago_s2:\n print('Entailment')\n\nelif years_ago_s1 != years_ago_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": On the first day of her vacation , Louisa traveled less than 350 miles, \"statement 2\" :On the first day of her vacation , Louisa traveled 250 miles, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "louisa_traveled_s1 = None\nlouisa_traveled_s2 = 250\n\nif louisa_traveled_s1 is None or louisa_traveled_s2 is None:\n print('neutral')\n\nelif louisa_traveled_s1 == louisa_traveled_s2:\n print('Entailment')\n\nelif louisa_traveled_s1 != louisa_traveled_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": David obtained 72 , 60 , 35 , 62 and 84 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"statement 2\" :David obtained more than 22 , 60 , 35 , 62 and 84 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "david_average_s1 = (72 + 60 + 35 + 62 + 84)/5\ndavid_average_s2 = (22 + 60 + 35 + 62 + 83)/5\n\nif david_average_s1 is None or david_average_s2 is None:\n print('neutral')\n\nelif david_average_s1 > david_average_s2:\n print('Entailment')\n\nelif david_average_s1 != david_average_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is 2 : 3 ?, \"statement 2\" :What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is less than 3 : 3 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_ratio_s1 = 2/3\ndistance_ratio_s2 = 3/3\n\nif distance_ratio_s1 is None or distance_ratio_s2 is None:\n print('neutral')\n\nelif distance_ratio_s1 < distance_ratio_s2:\n print('Entailment')\n\nelif distance_ratio_s1 != distance_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bulger has pleaded not guilty to all counts against him , including his alleged role in 19 murders ., \"statement 2\" :Bulger is accused in 19 murders, \"options: \" Entailment or neutral?", + "Output Program": [ + "bulger_accused_s1 = 19\nbulger_accused_s2 = 19\n\nif bulger_accused_s1 is None or bulger_accused_s2 is None:\n print('neutral')\n\nelif bulger_accused_s1 == bulger_accused_s2:\n print('Entailment')\n\nelif bulger_accused_s1 != bulger_accused_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Aamir saves 32 % of his monthly salary, \"statement 2\" :Aamir saves less than 52 % of his monthly salary, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amir_saves_s1 = 32\namir_saves_s2 = 52\n\nif amir_saves_s1 is None or amir_saves_s2 is None:\n print('neutral')\n\nelif amir_saves_s1 < amir_saves_s2:\n print('Entailment')\n\nelif amir_saves_s1 != amir_saves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Henry has to secure 70 % marks to clear his exam of class 6 th .\nHe got 110 marks and failed by 100 marks .\nWhat is the maximum marks ?, \"statement 2\" :Henry has to secure less than 70 % marks to clear his exam of class 6 th . He got 110 marks and failed by 100 marks . What is the maximum marks ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "henry_secure_s1 = 70\nhenry_secure_s2 = 70-1\n\nif henry_secure_s1 is None or henry_secure_s2 is None:\n print('neutral')\n\nelif henry_secure_s1 == henry_secure_s2:\n print('Entailment')\n\nelif henry_secure_s1 != henry_secure_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": ( CNN ) -- Up for auction : Spanish airport costing up to a reported $ 1.5 billion , little used ., \"statement 2\" :Airport costing $ 1.5 billion is for sale at $ 150 million, \"options: \" Entailment or neutral?", + "Output Program": [ + "airport_costing_sale_s1 = None\nairport_costing_sale_s2 = 150\n\nif airport_costing_sale_s1 is None or airport_costing_sale_s2 is None:\n print('neutral')\n\nelif airport_costing_sale_s1 == airport_costing_sale_s2:\n print('Entailment')\n\nelif airport_costing_sale_s1 != airport_costing_sale_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 3.0 boats on the lake and there are 5.0 people total in the boats, \"statement 2\" :5.5 people are in each boat on average, \"options: \" Entailment or contradiction?", + "Output Program": [ + "boat_average_s1 = 5/3\nboat_average_s2 = 5.5\n\nif boat_average_s1 is None or boat_average_s2 is None:\n print('neutral')\n\nelif boat_average_s1 == boat_average_s2:\n print('Entailment')\n\nelif boat_average_s1 != boat_average_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ramzi walked for less than 6 days, \"statement 2\" :Ramzi walked for 3 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ramzi_walked_s1 = None\nramzi_walked_s2 = 3\n\nif ramzi_walked_s1 is None or ramzi_walked_s2 is None:\n print('neutral')\n\nelif ramzi_walked_s1 == ramzi_walked_s2:\n print('Entailment')\n\nelif ramzi_walked_s1 != ramzi_walked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Two dogsled teams raced across a more than 100 mile course in Wyoming, \"statement 2\" :Two dogsled teams raced across a 300 mile course in Wyoming, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "teams_race_s1 = None\nteams_race_s2 = 300\n\nif teams_race_s1 is None or teams_race_s2 is None:\n print('neutral')\n\nelif teams_race_s1 == teams_race_s2:\n print('Entailment')\n\nelif teams_race_s1 != teams_race_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Sandy went to the mall to buy clothes and she spent 13.99 on shorts, 12.14 on a shirt, and received 7.43 for returning a jacket, \"statement 2\" :The net amount of money that Sandy spent on clothes is 17.5, \"options: \" Entailment or contradiction?", + "Output Program": [ + "sandy_spent_s1 = 13.99 + 12.14 - 7.43\nsandy_spent_s2 = 17.5\n\nif sandy_spent_s1 is None or sandy_spent_s2 is None:\n print('neutral')\n\nelif sandy_spent_s1 == sandy_spent_s2:\n print('Entailment')\n\nelif sandy_spent_s1 != sandy_spent_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 1000 , what is Isabella ' s capital ?, \"statement 2\" :5000 , what is Isabella ' s capital ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "isabella_s1 = 1000\nisabella_s2 = 5000\n\nif isabella_s1 is None or isabella_s2 is None:\n print('neutral')\n\nelif isabella_s1 == isabella_s2:\n print('Entailment')\n\nelif isabella_s1 != isabella_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a certain town , the ratio of NY Yankees fans to NY Mets fans is 3 : 2 , and the ratio of NY Mets fans to Boston Red Sox fans is 4 : 5, \"statement 2\" :In a certain town , the ratio of NY Yankees fans to NY Mets fans is 5 : 2 , and the ratio of NY Mets fans to Boston Red Sox fans is 4 : 5, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "yankees_ratio_s1 = 3/2\nyankees_ratio_s2 = 5/2\n\nif yankees_ratio_s1 is None or yankees_ratio_s2 is None:\n print('neutral')\n\nelif yankees_ratio_s1 == yankees_ratio_s2:\n print('Entailment')\n\nelif yankees_ratio_s1 != yankees_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The European Council is made up of the Heads of State or Government of the fifteen Member States of the EU , the Foreign Ministers and the President of the Commission . It must not be confused with the Council of Europe , which is an international organisation , nor with the Council of the European Union ., \"statement 2\" :There are 15 Member States in the Council of Europe ., \"options: \" Entailment or neutral?", + "Output Program": [ + "member_states_s1 = None\nmember_states_s2 = 15\n\nif member_states_s1 is None or member_states_s2 is None:\n print('neutral')\n\nelif member_states_s1 == member_states_s2:\n print('Entailment')\n\nelif member_states_s1 != member_states_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sanoop bought 8 t - shirts at an average price ( arithmetic mean ) of Rs, \"statement 2\" :Sanoop bought 7 t - shirts at an average price ( arithmetic mean ) of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sanoop_tshirts_s1 = 8\nsanoop_tshirts_s2 = 7\n\nif sanoop_tshirts_s1 is None or sanoop_tshirts_s2 is None:\n print('neutral')\n\nelif sanoop_tshirts_s1 == sanoop_tshirts_s2:\n print('Entailment')\n\nelif sanoop_tshirts_s1 != sanoop_tshirts_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In an exam , Amar scored 64 percent , Bhavan scored 36 percent and Chetan 44 percent, \"statement 2\" :In an exam , Amar scored less than 74 percent , Bhavan scored 36 percent and Chetan 44 percent, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amar_scored_s1 = 64\namar_scored_s2 = 74\n\nif amar_scored_s1 is None or amar_scored_s2 is None:\n print('neutral')\n\nelif amar_scored_s1 < amar_scored_s2:\n print('Entailment')\n\nelif amar_scored_s1 != amar_scored_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jose joined him 2 months later , investing Rs, \"statement 2\" :Jose joined him less than 2 months later , investing Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jose_joined_s1 = 2\njose_joined_s2 = 2-1\n\nif jose_joined_s1 is None or jose_joined_s2 is None:\n print('neutral')\n\nelif jose_joined_s1 < jose_joined_s2:\n print('Entailment')\n\nelif jose_joined_s1 != jose_joined_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mr Shivkumar started a business , investing less than 75000 in 1996, \"statement 2\" :Mr Shivkumar started a business , investing 25000 in 1996, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shivkumar_investing_s1 = None\nshivkumar_investing_s2 = 25000\n\nif shivkumar_investing_s1 is None or shivkumar_investing_s2 is None:\n print('neutral')\n\nelif shivkumar_investing_s1 < shivkumar_investing_s2:\n print('Entailment')\n\nelif shivkumar_investing_s1 != shivkumar_investing_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill has more than 4 gallons of water stored in quart , half - gallon , and one gallon jars, \"statement 2\" :Jill has 7 gallons of water stored in quart , half - gallon , and one gallon jars, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gallons_water_s1 = None\ngallons_water_s2 = 7\n\nif gallons_water_s1 is None or gallons_water_s2 is None:\n print('neutral')\n\nelif gallons_water_s1 < gallons_water_s2:\n print('Entailment')\n\nelif gallons_water_s1 != gallons_water_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Half of the Malmo family members have blue eyes , and 4 / 5 of the family members who have blue eyes do not wear glasses, \"statement 2\" :Half of the Malmo family members have blue eyes , and less than 7 / 5 of the family members who have blue eyes do not wear glasses, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "glasses_ration_s1 = 4/5\nglasses_ration_s2 = 7/5\n\nif glasses_ration_s1 is None or glasses_ration_s2 is None:\n print('neutral')\n\nelif glasses_ration_s1 < glasses_ration_s2:\n print('Entailment')\n\nelif glasses_ration_s1 != glasses_ration_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Abhay double his speed , then he would take less than 2 hour less than Sammer, \"statement 2\" :If Abhay double his speed , then he would take 1 hour less than Sammer, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "abhay_speed_s1 = None\nabhay_speed_s2 = 1\n\nif abhay_speed_s1 is None or abhay_speed_s2 is None:\n print('neutral')\n\nelif abhay_speed_s1 == abhay_speed_s2:\n print('Entailment')\n\nelif abhay_speed_s1 != abhay_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jaime earned enough money by selling seashells at 35 cents each to buy several used paperback books at 55 cents each, \"statement 2\" :Jaime earned enough money by selling seashells at less than 35 cents each to buy several used paperback books at 55 cents each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "seashells_price_s1 = 35\nseashells_price_s2 = 35-1\n\nif seashells_price_s1 is None or seashells_price_s2 is None:\n print('neutral')\n\nelif seashells_price_s1 == seashells_price_s2:\n print('Entailment')\n\nelif seashells_price_s1 != seashells_price_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The distance between their homes is 45 kilometers , Cara ' s walking speed is 6 km / h , and Don ' s walking speed is 5 km / h, \"statement 2\" :The distance between their homes is 75 kilometers , Cara ' s walking speed is 6 km / h , and Don ' s walking speed is 5 km / h, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "home_distance_s1 = 45\nhome_distance_s2 = 75\n\nif home_distance_s1 is None or home_distance_s2 is None:\n print('neutral')\n\nelif home_distance_s1 == home_distance_s2:\n print('Entailment')\n\nelif home_distance_s1 != home_distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": It takes John exactly less than 60 minutes to rake a lawn and it takes his son Todd exactly 60 minutes to rake the same lawn, \"statement 2\" :It takes John exactly 30 minutes to rake a lawn and it takes his son Todd exactly 60 minutes to rake the same lawn, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "lawn_rake_s1 = None\nlawn_rake_s2 = 30\n\nif lawn_rake_s1 is None or lawn_rake_s2 is None:\n print('neutral')\n\nelif lawn_rake_s1 == lawn_rake_s2:\n print('Entailment')\n\nelif lawn_rake_s1 != lawn_rake_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": They both work together for more than 4 days and then Sushil goes away, \"statement 2\" :They both work together for 5 days and then Sushil goes away, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "days_worked_s1 = None\ndays_worked_s2 = 5\n\nif days_worked_s1 is None or days_worked_s2 is None:\n print('neutral')\n\nelif days_worked_s1 == days_worked_s2:\n print('Entailment')\n\nelif days_worked_s1 != days_worked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In the city of San Durango , 90 people own cats , dogs , or rabbits, \"statement 2\" :In the city of San Durango , 60 people own cats , dogs , or rabbits, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "durango_pets_s1 = 90\ndurango_pets_s2 = 60\n\nif durango_pets_s1 is None or durango_pets_s2 is None:\n print('neutral')\n\nelif durango_pets_s1 == durango_pets_s2:\n print('Entailment')\n\nelif durango_pets_s1 != durango_pets_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Christie 's auctioned this nude photo of Madonna ( partially shown ) taken by Lee Friedlander for $ 37,500 ., \"statement 2\" :Lee Friedlander pic sold by Christie 's for $ 37,500, \"options: \" Entailment or neutral?", + "Output Program": [ + "photo_price_s1 = 37500\nphoto_price_s2 = 37500\n\nif photo_price_s1 is None or photo_price_s2 is None:\n print('neutral')\n\nelif photo_price_s1 == photo_price_s2:\n print('Entailment')\n\nelif photo_price_s1 != photo_price_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 84.0 leaves and there are 139.0 ladybugs on the leaves, \"statement 2\" :The average number of ladybugs on each leaf is 1.9, \"options: \" Entailment or contradiction?", + "Output Program": [ + "ladybug_average_s1 = 139/84\nladybug_average_s2 = 1.9\n\nif ladybug_average_s1 is None or ladybug_average_s2 is None:\n print('neutral')\n\nelif ladybug_average_s1 == ladybug_average_s2:\n print('Entailment')\n\nelif ladybug_average_s1 != ladybug_average_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bookman purchased 30 copies of a new book released recently , 10 of which are hardback and sold for $ 20 each , and rest are paperback and sold for $ 10 each, \"statement 2\" :Bookman purchased less than 40 copies of a new book released recently , 10 of which are hardback and sold for $ 20 each , and rest are paperback and sold for $ 10 each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bookman_purchased_s1 = 20\nbookman_purchased_s2 = 40\n\nif bookman_purchased_s1 is None or bookman_purchased_s2 is None:\n print('neutral')\n\nelif bookman_purchased_s1 < bookman_purchased_s2:\n print('Entailment')\n\nelif bookman_purchased_s1 != bookman_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In another class of 100 students there were 19 grades higher than Angela \u2019 s, \"statement 2\" :In another class of less than 600 students there were 19 grades higher than Angela \u2019 s, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "higher_than_angela_s1 = 100\nhigher_than_angela_s2 = 600\n\nif higher_than_angela_s1 is None or higher_than_angela_s2 is None:\n print('neutral')\n\nelif higher_than_angela_s1 < higher_than_angela_s2:\n print('Entailment')\n\nelif higher_than_angela_s1 != higher_than_angela_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Reigning champions Borussia Dortmund routed Moenchengladbach 5-0 to rise to third in the table ., \"statement 2\" :Borussia Dortmund up to third after 5-0 rout of Moenchengladbach, \"options: \" Entailment or neutral?", + "Output Program": [ + "moenchengladbach_lead_s1 = 5\nmoenchengladbach_lead_s2 = 5\n\nif moenchengladbach_lead_s1 is None or moenchengladbach_lead_s2 is None:\n print('neutral')\n\nelif moenchengladbach_lead_s1 == moenchengladbach_lead_s2:\n print('Entailment')\n\nelif moenchengladbach_lead_s1 != moenchengladbach_lead_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If she worked four more than 7 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"statement 2\" :If she worked four 9 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jill_worked_s1 = None\njill_worked_s2 = 9\n\nif jill_worked_s1 is None or jill_worked_s2 is None:\n print('neutral')\n\nelif jill_worked_s1 == jill_worked_s2:\n print('Entailment')\n\nelif jill_worked_s1 != jill_worked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The attack killed four Somali civilians and 17 Ugandan and Burundian soldiers , including the mission 's second in command , Burundian Maj. Gen. Juvenal Niyonguruza , he said ., \"statement 2\" :Seventeen soldiers , four civilians killed in attack on African Union base, \"options: \" Entailment or neutral?", + "Output Program": [ + "civilian_killed_s1 = None\ncivilian_killed_s2 = 4\n\nif civilian_killed_s1 is None or civilian_killed_s2 is None:\n print('neutral')\n\nelif civilian_killed_s1 == civilian_killed_s2:\n print('Entailment')\n\nelif civilian_killed_s1 != civilian_killed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If KING is coded as less than 47 and MASS is coded as 29 Then DON is coded as, \"statement 2\" :If KING is coded as 17 and MASS is coded as 29 Then DON is coded as, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "king_coded_s1 = None\nking_coded_s2 = 17\n\nif king_coded_s1 is None or king_coded_s2 is None:\n print('neutral')\n\nelif king_coded_s1 == king_coded_s2:\n print('Entailment')\n\nelif king_coded_s1 != king_coded_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Bob runs at a constant rate of more than 6 minutes per mile , how many miles farther south can he run and still be able to return to the parking lot in 50 minutes ?, \"statement 2\" :If Bob runs at a constant rate of 8 minutes per mile , how many miles farther south can he run and still be able to return to the parking lot in 50 minutes ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bob_constant_rate_s1 = None\nbob_constant_rate_s2 = 8\n\nif bob_constant_rate_s1 is None or bob_constant_rate_s2 is None:\n print('neutral')\n\nelif bob_constant_rate_s1 == bob_constant_rate_s2:\n print('Entailment')\n\nelif bob_constant_rate_s1 != bob_constant_rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Fred had 7.0 dimes in his bank and his sister borrowed 3.0 of his dimes , \"statement 2\" :Fred has 4.0 dimes now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "fred_dimes_s1 = 7-3\nfred_dimes_s2 = 4\n\nif fred_dimes_s1 is None or fred_dimes_s2 is None:\n print('neutral')\n\nelif fred_dimes_s1 == fred_dimes_s2:\n print('Entailment')\n\nelif fred_dimes_s1 != fred_dimes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After 5 years , Arun ' s age will be 25 years, \"statement 2\" :After less than 8 years , Arun ' s age will be 25 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "after_years_s1 = 5\nafter_years_s2 = 8\n\nif after_years_s1 is None or after_years_s2 is None:\n print('neutral')\n\nelif after_years_s1 < after_years_s2:\n print('Entailment')\n\nelif after_years_s1 != after_years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 4200 among John , Jose & Binoy in the ration 2 : 4 : 6, \"statement 2\" :7200 among John , Jose & Binoy in the ration 2 : 4 : 6, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_total_s1 = 4200\njohn_total_s2 = 7200\n\nif john_total_s1 is None or john_total_s2 is None:\n print('neutral')\n\nelif john_total_s1 == john_total_s2:\n print('Entailment')\n\nelif john_total_s1 != john_total_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Another 65 people remain missing and 750 have been rescued , it said ., \"statement 2\" :Rescuers have saved 750 people , but dozens remain missing, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_rescued_s1 = 750\npeople_rescued_s2 = 750\n\nif people_rescued_s1 is None or people_rescued_s2 is None:\n print('neutral')\n\nelif people_rescued_s1 == people_rescued_s2:\n print('Entailment')\n\nelif people_rescued_s1 != people_rescued_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The town of Milburg has 5256.0 grown-ups and children and 2987.0 are children, \"statement 2\" :2269.0 adults live in Milburg, \"options: \" Entailment or contradiction?", + "Output Program": [ + "town_adults_s1 = 5256-2987\ntown_adults_s2 = 2269\n\nif town_adults_s1 is None or town_adults_s2 is None:\n print('neutral')\n\nelif town_adults_s1 == town_adults_s2:\n print('Entailment')\n\nelif town_adults_s1 != town_adults_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": ( CNN ) -- Fortune 's latest ranking of America 's 500 largest corporations includes more women CEOs than ever before ., \"statement 2\" :Women helm 18 of America 's biggest 500 corporations, \"options: \" Entailment or neutral?", + "Output Program": [ + "women_helm_s1 = None\nwomen_helm_s2 = 18\n\nif women_helm_s1 is None or women_helm_s2 is None:\n print('neutral')\n\nelif women_helm_s1 == women_helm_s2:\n print('Entailment')\n\nelif women_helm_s1 != women_helm_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a shop , 40 % socks are white and rest are black, \"statement 2\" :In a shop , 80 % socks are white and rest are black, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "white_socks_s1 = 40\nwhite_socks_s2 = 80\n\nif white_socks_s1 is None or white_socks_s2 is None:\n print('neutral')\n\nelif white_socks_s1 == white_socks_s2:\n print('Entailment')\n\nelif white_socks_s1 != white_socks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The money would bring the running tab for both conflicts to about $ 947 billion , according to figures from the Congressional Research Service ., \"statement 2\" :Funds would bring tab for Iraq and Afghanistan wars to $ 947 billion, \"options: \" Entailment or neutral?", + "Output Program": [ + "war_funds_s1 = None\nwar_funds_s2 = 947\n\nif war_funds_s1 is None or war_funds_s2 is None:\n print('neutral')\n\nelif war_funds_s1 == war_funds_s2:\n print('Entailment')\n\nelif war_funds_s1 != war_funds_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He will be 5 / 3 times as old as Tom 6 years hence, \"statement 2\" :He will be less than 5 / 3 times as old as Tom 6 years hence, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tom_age_difference_s1 = 5/3\ntom_age_difference_s2 = (5/3)-0.1\n\nif tom_age_difference_s1 is None or tom_age_difference_s2 is None:\n print('neutral')\n\nelif tom_age_difference_s1 == tom_age_difference_s2:\n print('Entailment')\n\nelif tom_age_difference_s1 != tom_age_difference_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many ways are there for 2 males and 3 females to sit ( around a circular table ) if no male should sit next to a male ( and no female next to female ) and Mary wants to sit with her back on the wall ?, \"statement 2\" :How many ways are there for 6 males and 3 females to sit ( around a circular table ) if no male should sit next to a male ( and no female next to female ) and Mary wants to sit with her back on the wall ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "male_table_s1 = 2\nmale_table_s2 = 3\n\nif male_table_s1 is None or male_table_s2 is None:\n print('neutral')\n\nelif male_table_s1 == male_table_s2:\n print('Entailment')\n\nelif male_table_s1 != male_table_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 12 stations between Ernakulam and Chennai, \"statement 2\" :There are less than 22 stations between Ernakulam and Chennai, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_stations_s1 = 12\ntotal_stations_s2 = 22\n\nif total_stations_s1 is None or total_stations_s2 is None:\n print('neutral')\n\nelif total_stations_s1 < total_stations_s2:\n print('Entailment')\n\nelif total_stations_s1 != total_stations_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At the end of ' n ' years , Sandy got back less than 8 times the original investment, \"statement 2\" :At the end of ' n ' years , Sandy got back 3 times the original investment, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_original_investment_s1 = None\nsandy_original_investment_s2 = 3\n\nif sandy_original_investment_s1 is None or sandy_original_investment_s2 is None:\n print('neutral')\n\nelif sandy_original_investment_s1 == sandy_original_investment_s2:\n print('Entailment')\n\nelif sandy_original_investment_s1 != sandy_original_investment_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How much loss would Indu has suffered had she given it to Bindu for less than 4 years at 4 % per annum simple interest ?, \"statement 2\" :How much loss would Indu has suffered had she given it to Bindu for 2 years at 4 % per annum simple interest ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "indu_loss_s1 = None\nindu_loss_s2 = 2\n\nif indu_loss_s1 is None or indu_loss_s2 is None:\n print('neutral')\n\nelif indu_loss_s1 == indu_loss_s2:\n print('Entailment')\n\nelif indu_loss_s1 != indu_loss_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Billy has 12 apples, \"statement 2\" :Billy has 62 apples, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "billy_apples_s1 = 12\nbilly_apples_s2 = 62\n\nif billy_apples_s1 is None or billy_apples_s2 is None:\n print('neutral')\n\nelif billy_apples_s1 == billy_apples_s2:\n print('Entailment')\n\nelif billy_apples_s1 != billy_apples_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": For dinner , Cara ate 240 grams of bread which was eight times as much bread as she ate for lunch , and six times as much bread as she ate for breakfast, \"statement 2\" :For dinner , Cara ate more than 240 grams of bread which was eight times as much bread as she ate for lunch , and six times as much bread as she ate for breakfast, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cara_ate_bread_s1 = 240\ncara_ate_bread_s2 = 240+1\n\nif cara_ate_bread_s1 is None or cara_ate_bread_s2 is None:\n print('neutral')\n\nelif cara_ate_bread_s1 == cara_ate_bread_s2:\n print('Entailment')\n\nelif cara_ate_bread_s1 != cara_ate_bread_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tom alone cleans the entire house in 6 hours, \"statement 2\" :Tom alone cleans the entire house in less than 6 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tom_cleans_s1 = 6\ntom_cleans_s2 = 6-1\n\nif tom_cleans_s1 is None or tom_cleans_s2 is None:\n print('neutral')\n\nelif tom_cleans_s1 == tom_cleans_s2:\n print('Entailment')\n\nelif tom_cleans_s1 != tom_cleans_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": When Hayes and Hawke-Petit returned with the money , the two men allegedly set the home on fire and fled ., \"statement 2\" :Hayes is on trial for the murder of a mother and two daughters, \"options: \" Entailment or neutral?", + "Output Program": [ + "money_returned_s1 = None\nmoney_returned_s2 = None\n\nif money_returned_s1 is None or money_returned_s2 is None:\n print('neutral')\n\nelif money_returned_s1 == money_returned_s2:\n print('Entailment')\n\nelif money_returned_s1 != money_returned_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A sandbox is 312.0 centimeters long and 146.0 centimeters wide., \"statement 2\" :The sandbox covers 45552.0 square centimeters of ground, \"options: \" Entailment or contradiction?", + "Output Program": [ + "sanbox_cover_s1 = 312*146\nsanbox_cover_s2 = 45552\n\nif sanbox_cover_s1 is None or sanbox_cover_s2 is None:\n print('neutral')\n\nelif sanbox_cover_s1 == sanbox_cover_s2:\n print('Entailment')\n\nelif sanbox_cover_s1 != sanbox_cover_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The total of the ages of Amar , Akbar and Anthony is more than 30 years, \"statement 2\" :The total of the ages of Amar , Akbar and Anthony is 80 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_age_s1 = None\ntotal_age_s2 = 80\n\nif total_age_s1 is None or total_age_s2 is None:\n print('neutral')\n\nelif total_age_s1 == total_age_s2:\n print('Entailment')\n\nelif total_age_s1 != total_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Bill needs to walk from the corner of 2 nd Rd and 3 rd Ave to the corner of 8 th Rd and 7 th Ave in the shortest possible time , how many different routes could he take ?, \"statement 2\" :If Bill needs to walk from the corner of 8 nd Rd and 3 rd Ave to the corner of 8 th Rd and 7 th Ave in the shortest possible time , how many different routes could he take ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "walk_from_s1 = 2\nwalk_from_s2 = 8\n\nif walk_from_s1 is None or walk_from_s2 is None:\n print('neutral')\n\nelif walk_from_s1 == walk_from_s2:\n print('Entailment')\n\nelif walk_from_s1 != walk_from_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A cell phone company has a total of 7422.0 customers across the world, and they get 723.0 more customers in the United States, \"statement 2\" :They will have 8145.0 total customers , \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_customers_s1 = 7422+723\ntotal_customers_s2 = 8145\n\nif total_customers_s1 is None or total_customers_s2 is None:\n print('neutral')\n\nelif total_customers_s1 == total_customers_s2:\n print('Entailment')\n\nelif total_customers_s1 != total_customers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a friendship gang Andrew has 8 gang , in how many ways can he invite one or more of the gang to his house ?, \"statement 2\" :In a friendship gang Andrew has more than 7 gang , in how many ways can he invite one or more of the gang to his house ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "andrew_gang_s1 = 8\nandrew_gang_s2 = 7\n\nif andrew_gang_s1 is None or andrew_gang_s2 is None:\n print('neutral')\n\nelif andrew_gang_s1 > andrew_gang_s2:\n print('Entailment')\n\nelif andrew_gang_s1 != andrew_gang_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If in 14 years , John will be one year younger than twice the age of Mark on that day , how old is John today ?, \"statement 2\" :If in less than 64 years , John will be one year younger than twice the age of Mark on that day , how old is John today ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mark_john_age_difference_s1 = 14\nmark_john_age_difference_s2 = 64\n\nif mark_john_age_difference_s1 is None or mark_john_age_difference_s2 is None:\n print('neutral')\n\nelif mark_john_age_difference_s1 < mark_john_age_difference_s2:\n print('Entailment')\n\nelif mark_john_age_difference_s1 != mark_john_age_difference_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John paid a less than 25 % tip over the original price of the dish , while Jane paid the tip over the discounted price for the coupon, \"statement 2\" :John paid a 15 % tip over the original price of the dish , while Jane paid the tip over the discounted price for the coupon, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_paid_s1 = None\njohn_paid_s2 = 15\n\nif john_paid_s1 is None or john_paid_s2 is None:\n print('neutral')\n\nelif john_paid_s1 == john_paid_s2:\n print('Entailment')\n\nelif john_paid_s1 != john_paid_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy gets 3 marks for each correct sum and loses 2 marks for each incorrect sum, \"statement 2\" :Sandy gets less than 6 marks for each correct sum and loses 2 marks for each incorrect sum, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_marks_s1 = 3\nsandy_marks_s2 = 6\n\nif sandy_marks_s1 is None or sandy_marks_s2 is None:\n print('neutral')\n\nelif sandy_marks_s1 < sandy_marks_s2:\n print('Entailment')\n\nelif sandy_marks_s1 != sandy_marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Frank is 12 years younger then John, \"statement 2\" :Frank is less than 42 years younger then John, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "frank_younger_john_s1 = 12\nfrank_younger_john_s2 = 42\n\nif frank_younger_john_s1 is None or frank_younger_john_s2 is None:\n print('neutral')\n\nelif frank_younger_john_s1 < frank_younger_john_s2:\n print('Entailment')\n\nelif frank_younger_john_s1 != frank_younger_john_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He will be 5 / 3 times as old as Tom 6 years hence, \"statement 2\" :He will be less than 7 / 3 times as old as Tom 6 years hence, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "old_as_tom_s1 = 5/3\nold_as_tom_s2 = 7/3\n\nif old_as_tom_s1 is None or old_as_tom_s2 is None:\n print('neutral')\n\nelif old_as_tom_s1 < old_as_tom_s2:\n print('Entailment')\n\nelif old_as_tom_s1 != old_as_tom_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Of the 90 electronics components that a factory must manufacture , 50 percent would be most e \u00a2 ciently manufactured by Machine A and the remaining 50 percent would be most efficiently manufactured by Machine B , though either machine could manufacture any of the 90 components, \"statement 2\" :Of the 80 electronics components that a factory must manufacture , 50 percent would be most e \u00a2 ciently manufactured by Machine A and the remaining 50 percent would be most efficiently manufactured by Machine B , though either machine could manufacture any of the 90 components, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "electronics_components_s1 = 90\nelectronics_components_s2 = 80\n\nif electronics_components_s1 is None or electronics_components_s2 is None:\n print('neutral')\n\nelif electronics_components_s1 == electronics_components_s2:\n print('Entailment')\n\nelif electronics_components_s1 != electronics_components_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The son lived just 1 / 2 of what Adam lived, \"statement 2\" :The son lived just 5 / 2 of what Adam lived, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "son_lived_s1 = 1/2\nson_lived_s2 = 1/2\n\nif son_lived_s1 is None or son_lived_s2 is None:\n print('neutral')\n\nelif son_lived_s1 == son_lived_s2:\n print('Entailment')\n\nelif son_lived_s1 != son_lived_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A 100-foot diameter asteroid will pass within 26,500 miles of Earth , the closest-ever brush on record by a space rock , NASA astronomers said ., \"statement 2\" :An asteroid with a diameter of 100 feet will pass close by Earth , astronomers said ., \"options: \" Entailment or neutral?", + "Output Program": [ + "asterd_diameter_s1 = 100\nasterd_diameter_s2 = 100\n\nif asterd_diameter_s1 is None or asterd_diameter_s2 is None:\n print('neutral')\n\nelif asterd_diameter_s1 == asterd_diameter_s2:\n print('Entailment')\n\nelif asterd_diameter_s1 != asterd_diameter_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 14.0 rulers and 34.0 crayons in a drawer and Tim takes out 11.0 rulers from the drawer, \"statement 2\" :2.0 rulers are now in the drawer, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_rlers_s1 = 14-1\ntotal_rlers_s2 = 2\n\nif total_rlers_s1 is None or total_rlers_s2 is None:\n print('neutral')\n\nelif total_rlers_s1 == total_rlers_s2:\n print('Entailment')\n\nelif total_rlers_s1 != total_rlers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jose joined him 2 months later , investing Rs, \"statement 2\" :Jose joined him less than 6 months later , investing Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jose_joined_s1 = 2\njose_joined_s2 = 6\n\nif jose_joined_s1 is None or jose_joined_s2 is None:\n print('neutral')\n\nelif jose_joined_s1 < jose_joined_s2:\n print('Entailment')\n\nelif jose_joined_s1 != jose_joined_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Dacid obtained 91 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained more than 41 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dacid_marks_s1 = 91 + 65 + 82 + 67 + 85\ndacid_marks_s2 = 41 + 65 + 82 + 67 + 85\n\nif dacid_marks_s1 is None or dacid_marks_s2 is None:\n print('neutral')\n\nelif dacid_marks_s1 > dacid_marks_s2:\n print('Entailment')\n\nelif dacid_marks_s1 != dacid_marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bruce and Bhishma are running on a circular track of length 600 m, \"statement 2\" :Bruce and Bhishma are running on a circular track of length less than 800 m, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "track_length_s1 = 600\ntrack_length_s2 = 800\n\nif track_length_s1 is None or track_length_s2 is None:\n print('neutral')\n\nelif track_length_s1 < track_length_s2:\n print('Entailment')\n\nelif track_length_s1 != track_length_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Which of the following could be the total student population at Jefferson High School in 2004 ?, \"statement 2\" :Which of the following could be the total student population at Jefferson High School in 3004 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "school_year_s1 = 2004\nschool_year_s2 = 3004\n\nif school_year_s1 is None or school_year_s2 is None:\n print('neutral')\n\nelif school_year_s1 == school_year_s2:\n print('Entailment')\n\nelif school_year_s1 != school_year_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Steve gets on the elevator at the 11 th floor of a building and rides up at a rate of 72 floors per minute, \"statement 2\" :Steve gets on the elevator at the less than 41 th floor of a building and rides up at a rate of 72 floors per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "elevator_floor_s1 = 11\nelevator_floor_s2 = 41\n\nif elevator_floor_s1 is None or elevator_floor_s2 is None:\n print('neutral')\n\nelif elevator_floor_s1 < elevator_floor_s2:\n print('Entailment')\n\nelif elevator_floor_s1 != elevator_floor_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary selects a total of 10 apples and oranges from the food stand , and the average ( arithmetic mean ) price of the 10 pieces of fruit is 54 \u00a2, \"statement 2\" :Mary selects a total of 20 apples and oranges from the food stand , and the average ( arithmetic mean ) price of the 10 pieces of fruit is 54 \u00a2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mary_selects_apples_s1 = 10\nmary_selects_apples_s2 = 20\n\nif mary_selects_apples_s1 is None or mary_selects_apples_s2 is None:\n print('neutral')\n\nelif mary_selects_apples_s1 == mary_selects_apples_s2:\n print('Entailment')\n\nelif mary_selects_apples_s1 != mary_selects_apples_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In the city of San Durango , 80 people own cats , dogs , or rabbits, \"statement 2\" :In the city of San Durango , more than 40 people own cats , dogs , or rabbits, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "durango_pets_s1 = 80\ndurango_pets_s2 = 40\n\nif durango_pets_s1 is None or durango_pets_s2 is None:\n print('neutral')\n\nelif durango_pets_s1 > durango_pets_s2:\n print('Entailment')\n\nelif durango_pets_s1 != durango_pets_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Annie , working alone , can do the same job in just 9 hours, \"statement 2\" :Annie , working alone , can do the same job in just 1 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "annie_work_done_s1 = 9\nannie_work_done_s2 = 1\n\nif annie_work_done_s1 is None or annie_work_done_s2 is None:\n print('neutral')\n\nelif annie_work_done_s1 == annie_work_done_s2:\n print('Entailment')\n\nelif annie_work_done_s1 != annie_work_done_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": By how much must Rebecca ' s annual income increase so that it constitutes more than 45 % of Rebecca and Jimmy ' s combined income ?, \"statement 2\" :By how much must Rebecca ' s annual income increase so that it constitutes 55 % of Rebecca and Jimmy ' s combined income ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rebecca_income_s1 = None\nrebecca_income_s2 = 55\n\nif rebecca_income_s1 is None or rebecca_income_s2 is None:\n print('neutral')\n\nelif rebecca_income_s1 == rebecca_income_s2:\n print('Entailment')\n\nelif rebecca_income_s1 != rebecca_income_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nick ' s average ( arithmetic mean ) test score on 4 tests is 78, \"statement 2\" :Nick ' s average ( arithmetic mean ) test score on less than 7 tests is 78, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_tests_s1 = 4\ntotal_tests_s2 = 7\n\nif total_tests_s1 is None or total_tests_s2 is None:\n print('neutral')\n\nelif total_tests_s1 < total_tests_s2:\n print('Entailment')\n\nelif total_tests_s1 != total_tests_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the average speed of the whole journey was 36 mph , then what is Tom ' s speed driving from B to C in miles per hour ?, \"statement 2\" :If the average speed of the whole journey was less than 36 mph , then what is Tom ' s speed driving from B to C in miles per hour ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_speed_s1 = 36\naverage_speed_s2 = 36-1\n\nif average_speed_s1 is None or average_speed_s2 is None:\n print('neutral')\n\nelif average_speed_s1 == average_speed_s2:\n print('Entailment')\n\nelif average_speed_s1 != average_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Arun purchased 30 kg of wheat at the rate of Rs, \"statement 2\" :Arun purchased less than 60 kg of wheat at the rate of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "arun_wheat_s1 = 30\narun_wheat_s2 = 60\n\nif arun_wheat_s1 is None or arun_wheat_s2 is None:\n print('neutral')\n\nelif arun_wheat_s1 < arun_wheat_s2:\n print('Entailment')\n\nelif arun_wheat_s1 != arun_wheat_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Amar takes as much time in running 18 meters as a car takes in covering 48 meters, \"statement 2\" :Amar takes as much time in running less than 58 meters as a car takes in covering 48 meters, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amar_runs_s1 = 18\namar_runs_s2 = 58\n\nif amar_runs_s1 is None or amar_runs_s2 is None:\n print('neutral')\n\nelif amar_runs_s1 < amar_runs_s2:\n print('Entailment')\n\nelif amar_runs_s1 != amar_runs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": David earns $ 7.00 per hour for the first 50 hours he works per week , and twice this rate for overtime, \"statement 2\" :David earns $ 7.00 per hour for the first less than 50 hours he works per week , and twice this rate for overtime, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "work_hour_s1 = 50\nwork_hour_s2 = 50-1\n\nif work_hour_s1 is None or work_hour_s2 is None:\n print('neutral')\n\nelif work_hour_s1 == work_hour_s2:\n print('Entailment')\n\nelif work_hour_s1 != work_hour_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bond ( 007 ) wants to move from a point A to point D , but here 2 watchtowers ( B & C ) are present in the way of A to D, \"statement 2\" :Bond ( 8 ) wants to move from a point A to point D , but here 2 watchtowers ( B & C ) are present in the way of A to D, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bond_moved_s1 = 7\nbond_moved_s2 = 8\n\nif bond_moved_s1 is None or bond_moved_s2 is None:\n print('neutral')\n\nelif bond_moved_s1 == bond_moved_s2:\n print('Entailment')\n\nelif bond_moved_s1 != bond_moved_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a shop , less than 50 % socks are white and rest are black, \"statement 2\" :In a shop , 40 % socks are white and rest are black, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "white_socks_s1 = None\nwhite_socks_s2 = 40\n\nif white_socks_s1 is None or white_socks_s2 is None:\n print('neutral')\n\nelif white_socks_s1 == white_socks_s2:\n print('Entailment')\n\nelif white_socks_s1 != white_socks_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joan 's cat had 8.0 kittens and she gave 2.0 to her friends , \"statement 2\" :She has 4.0 kittens now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "joan_kittens_s1 = 8-2\njoan_kittens_s2 = 4\n\nif joan_kittens_s1 is None or joan_kittens_s2 is None:\n print('neutral')\n\nelif joan_kittens_s1 == joan_kittens_s2:\n print('Entailment')\n\nelif joan_kittens_s1 != joan_kittens_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Danny scored 86 , 75 , 52 , 87 , 85 and 82 marks ( out of 100 ) in English , Social Studies , Art , Music , Biology and French, \"statement 2\" :If Danny scored more than 76 , 75 , 52 , 87 , 85 and 82 marks ( out of 100 ) in English , Social Studies , Art , Music , Biology and French, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "danny_scored_s1 = 86 + 75 + 52 + 87 + 85 + 82\ndanny_scored_s2 = 76 + 76 + 52 + 87 + 85 + 82\n\nif danny_scored_s1 is None or danny_scored_s2 is None:\n print('neutral')\n\nelif danny_scored_s1 > danny_scored_s2:\n print('Entailment')\n\nelif danny_scored_s1 != danny_scored_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The first act included 5.0 clown mobiles, each stuffed with 28.0 clowns., \"statement 2\" :143.0 clowns are inside all the clown mobiles combined, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_clowns_s1 = 5*28\ntotal_clowns_s2 = 143\n\nif total_clowns_s1 is None or total_clowns_s2 is None:\n print('neutral')\n\nelif total_clowns_s1 == total_clowns_s2:\n print('Entailment')\n\nelif total_clowns_s1 != total_clowns_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Arun purchased less than 60 kg of wheat at the rate of Rs, \"statement 2\" :Arun purchased 30 kg of wheat at the rate of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "arun_wheat_s1 = None\narun_wheat_s2 = 30\n\nif arun_wheat_s1 is None or arun_wheat_s2 is None:\n print('neutral')\n\nelif arun_wheat_s1 == arun_wheat_s2:\n print('Entailment')\n\nelif arun_wheat_s1 != arun_wheat_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Another survey of 100 people in the town of Angie found that 60 % preferred Brand A, \"statement 2\" :Another survey of 700 people in the town of Angie found that 60 % preferred Brand A, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "town_people_survey_s1 = 100\ntown_people_survey_s2 = 700\n\nif town_people_survey_s1 is None or town_people_survey_s2 is None:\n print('neutral')\n\nelif town_people_survey_s1 == town_people_survey_s2:\n print('Entailment')\n\nelif town_people_survey_s1 != town_people_survey_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bhanu spends less than 80 % of his income on petrol on scooter 20 % of the remaining on house rent and the balance on food, \"statement 2\" :Bhanu spends 30 % of his income on petrol on scooter 20 % of the remaining on house rent and the balance on food, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bhanu_spends_s1 = None\nbhanu_spends_s2 = 20\n\nif bhanu_spends_s1 is None or bhanu_spends_s2 is None:\n print('neutral')\n\nelif bhanu_spends_s1 == bhanu_spends_s2:\n print('Entailment')\n\nelif bhanu_spends_s1 != bhanu_spends_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A renovation project required 0.16666666666666666 truck-load of sand , 0.3333333333333333 truck-load of dirt , and 0.16666666666666666 truck-load of cement ., \"statement 2\" :1.1 truck-loads of material were needed in all, \"options: \" Entailment or contradiction?", + "Output Program": [ + "truck_load_material_s1 = 0.16666666666666666 + 0.16666666666666666 + 0.3333333333333333\ntruck_load_material_s2 = 1.1\n\nif truck_load_material_s1 is None or truck_load_material_s2 is None:\n print('neutral')\n\nelif truck_load_material_s1 == truck_load_material_s2:\n print('Entailment')\n\nelif truck_load_material_s1 != truck_load_material_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Anup was asked to find the value of 7 / 12 of a sum of money E, \"statement 2\" :Anup was asked to find the value of more than 5 / 12 of a sum of money E, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "value_money_s1 = 7/12\nvalue_money_s2 = 5/12\n\nif value_money_s1 is None or value_money_s2 is None:\n print('neutral')\n\nelif value_money_s1 > value_money_s2:\n print('Entailment')\n\nelif value_money_s1 != value_money_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mike picked 7.0 apples , Nancy picked 3.0 apples , and Keith picked 6.0 apples and 4.0 pears , at the farm ., \"statement 2\" :16.0 apples were picked in total, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_appled_s1 = 7 + 3 + 6\ntotal_appled_s2 = 16\n\nif total_appled_s1 is None or total_appled_s2 is None:\n print('neutral')\n\nelif total_appled_s1 == total_appled_s2:\n print('Entailment')\n\nelif total_appled_s1 != total_appled_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In an exam , Amar scored more than 19 percent , Bhavan scored 36 percent and Chetan 44 percent, \"statement 2\" :In an exam , Amar scored 49 percent , Bhavan scored 36 percent and Chetan 44 percent, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "aman_score_percent_s1 = None\naman_score_percent_s2 = 49\n\nif aman_score_percent_s1 is None or aman_score_percent_s2 is None:\n print('neutral')\n\nelif aman_score_percent_s1 == aman_score_percent_s2:\n print('Entailment')\n\nelif aman_score_percent_s1 != aman_score_percent_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Sanoop returned 2 t - shirts to the retailer , and the average price of the remaining t - shirts was Rs, \"statement 2\" :If Sanoop returned less than 2 t - shirts to the retailer , and the average price of the remaining t - shirts was Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "snaoop_returned_tshirts_s1 = 2\nsnaoop_returned_tshirts_s2 = 2-1\n\nif snaoop_returned_tshirts_s1 is None or snaoop_returned_tshirts_s2 is None:\n print('neutral')\n\nelif snaoop_returned_tshirts_s1 == snaoop_returned_tshirts_s2:\n print('Entailment')\n\nelif snaoop_returned_tshirts_s1 > snaoop_returned_tshirts_s2 or snaoop_returned_tshirts_s1 < snaoop_returned_tshirts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Spencer Cannon told CNN affiliate KSL that Jones was trapped upside down in a crevice that was about 18 inches wide and about 10 inches high ., \"statement 2\" :He was trapped in a space that was 18 inches wide , 10 inches deep, \"options: \" Entailment or neutral?", + "Output Program": [ + "crevice_height_s1 = 10\ncrevice_height_s2 = 10\n \nif crevice_height_s1 is None or crevice_height_s2 is None:\n print('neutral')\n\nelif crevice_height_s1 == crevice_height_s2:\n print('Entailment')\n\nelif crevice_height_s1 != crevice_height_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Steve Purchased a house for $ 15000 and he like to resell it with 20 % profit, \"statement 2\" :Steve Purchased a house for $ less than 75000 and he like to resell it with 20 % profit, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "house_price_s1 = 15000\nhouse_price_s2 = 75000\n \nif house_price_s1 is None or house_price_s2 is None:\n print('neutral')\n\nelif house_price_s1 < house_price_s2:\n print('Entailment')\n\nelif house_price_s1 != house_price_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A bee has 6.0 legs and the legs are split on 2.0 sides of their body, \"statement 2\" :0.0 legs are on a side, \"options: \" Entailment or contradiction?", + "Output Program": [ + "bee_legs_s1 = 6/2\nbee_legs_s2 = 0\n \nif bee_legs_s1 is None or bee_legs_s2 is None:\n print('neutral')\n\nelif bee_legs_s1 < bee_legs_s2:\n print('Entailment')\n\nelif bee_legs_s1 != bee_legs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Aaron will jog from home at 2 miles per hour and then walk back home by the same route at 4 miles per hour, \"statement 2\" :Aaron will jog from home at more than 2 miles per hour and then walk back home by the same route at 4 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "aaron_jog_s1 = 2\naaron_jog_s2 = 2+1\n \nif aaron_jog_s1 is None or aaron_jog_s2 is None:\n print('neutral')\n\nelif aaron_jog_s1 == aaron_jog_s2:\n print('Entailment')\n\nelif aaron_jog_s1 != aaron_jog_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Today Katherine , who is less than 70 years old , and her daughter , who is 10 years old , celebrate their birthdays, \"statement 2\" :Today Katherine , who is 40 years old , and her daughter , who is 10 years old , celebrate their birthdays, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "katherine_age_s1 = None\nkatherine_age_s2 = 40\n \nif katherine_age_s1 is None or katherine_age_s2 is None:\n print('neutral')\n\nelif katherine_age_s1 == katherine_age_s2:\n print('Entailment')\n\nelif katherine_age_s1 != katherine_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The son lived just 1 / 2 of what Adam lived, \"statement 2\" :The son lived just less than 5 / 2 of what Adam lived, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "son_lived_s1 = 1/2\nson_lived_s2 = 5/2\n \nif son_lived_s1 is None or son_lived_s2 is None:\n print('neutral')\n\nelif son_lived_s1 < son_lived_s2:\n print('Entailment')\n\nelif son_lived_s1 != son_lived_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Yolanda ' s walking rate was 3 miles per hour and Bob \u0442 ' s was 4 miles per hour , how many miles had Bob walked when they met ?, \"statement 2\" :If Yolanda ' s walking rate was more than 1 miles per hour and Bob \u0442 ' s was 4 miles per hour , how many miles had Bob walked when they met ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "yolanda_walking_rate_s1 = 3\nyolanda_walking_rate_s2 = 1\n \nif yolanda_walking_rate_s1 is None or yolanda_walking_rate_s2 is None:\n print('neutral')\n\nelif yolanda_walking_rate_s1 > yolanda_walking_rate_s2:\n print('Entailment')\n\nelif yolanda_walking_rate_s1 != yolanda_walking_rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Renu can do a piece of work in less than 7 days , but with the help of her friend Suma , she can do it in 4 days, \"statement 2\" :Renu can do a piece of work in 6 days , but with the help of her friend Suma , she can do it in 4 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "renu_work_s1 = None\nrenu_work_s2 = 6\n \nif renu_work_s1 is None or renu_work_s2 is None:\n print('neutral')\n\nelif renu_work_s1 == renu_work_s2:\n print('Entailment')\n\nelif renu_work_s1 != renu_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Anup was asked to find the value of 7 / 12 of a sum of money Q, \"statement 2\" :Anup was asked to find the value of 5 / 12 of a sum of money Q, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "anup_value_s1 = 7/12\nanup_value_s2 = 5/12\n \nif anup_value_s1 is None or anup_value_s2 is None:\n print('neutral')\n\nelif anup_value_s1 == anup_value_s2:\n print('Entailment')\n\nelif anup_value_s1 != anup_value_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill has 35 gallons of water stored in quart , half - gallon , and one gallon jars, \"statement 2\" :Jill has 85 gallons of water stored in quart , half - gallon , and one gallon jars, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jill_gallons_water_s1 = 35\njill_gallons_water_s2 = 85\n \nif jill_gallons_water_s1 is None or jill_gallons_water_s2 is None:\n print('neutral')\n\nelif jill_gallons_water_s1 == jill_gallons_water_s2:\n print('Entailment')\n\nelif jill_gallons_water_s1 != jill_gallons_water_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A billion is a thousand million , and a trillion is a thousand billion ., \"statement 2\" :One billion is equal to 1,000 million ; One trillion is equal to 1,000 billion, \"options: \" Entailment or neutral?", + "Output Program": [ + "one_billion_s1 = 1000\none_billion_s2 = 1000\n \nif one_billion_s1 is None or one_billion_s2 is None:\n print('neutral')\n\nelif one_billion_s1 == one_billion_s2:\n print('Entailment')\n\nelif one_billion_s1 != one_billion_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Raju has scored 250 marks and was declared failed by 22 marks, \"statement 2\" :Raju has scored 350 marks and was declared failed by 22 marks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "raju_scored_s1 = 250\nraju_scored_s2 = 350\n \nif raju_scored_s1 is None or raju_scored_s2 is None:\n print('neutral')\n\nelif raju_scored_s1 == raju_scored_s2:\n print('Entailment')\n\nelif raju_scored_s1 != raju_scored_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 4.0 children in the classroom, each student will get 2.0 pencils., \"statement 2\" :The teacher will have to give out 3.0 pencils, \"options: \" Entailment or contradiction?", + "Output Program": [ + "children_pencils_s1 = 4/2\nchildren_pencils_s2 = 3\n \nif children_pencils_s1 is None or children_pencils_s2 is None:\n print('neutral')\n\nelif children_pencils_s1 == children_pencils_s2:\n print('Entailment')\n\nelif children_pencils_s1 != children_pencils_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ayesha ' s father was 38 years of age when she was born while her mother was 36 years old when her brother four years younger to her was born, \"statement 2\" :Ayesha ' s father was 48 years of age when she was born while her mother was 36 years old when her brother four years younger to her was born, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ayesha_father_age_s1 = 38\nayesha_father_age_s2 = 48\n \nif ayesha_father_age_s1 is None or ayesha_father_age_s2 is None:\n print('neutral')\n\nelif ayesha_father_age_s1 == ayesha_father_age_s2:\n print('Entailment')\n\nelif ayesha_father_age_s1 != ayesha_father_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Adolfo made a tower with 35.0 blocks and he added 65.0 more blocks to the tower, \"statement 2\" :100.0 total blocks are in the tower now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "adolfo_tower_s1 = 35+65\nadolfo_tower_s2 = 100\n \nif adolfo_tower_s1 is None or adolfo_tower_s2 is None:\n print('neutral')\n\nelif adolfo_tower_s1 == adolfo_tower_s2:\n print('Entailment')\n\nelif adolfo_tower_s1 != adolfo_tower_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John and Mike enter into a partnership by investing $ 700 and $ 300 respectively, \"statement 2\" :John and Mike enter into a partnership by investing $ more than 700 and $ 300 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "partnerhip_investment_s1 = 700+300\npartnerhip_investment_s2 = 700+1+300\n \nif partnerhip_investment_s1 is None or partnerhip_investment_s2 is None:\n print('neutral')\n\nelif partnerhip_investment_s1 == partnerhip_investment_s2:\n print('Entailment')\n\nelif partnerhip_investment_s1 != partnerhip_investment_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 1038.0 pounds of oranges are in 45.0 bags, \"statement 2\" :Each bag contains 23.0 pounds of oranges, \"options: \" Entailment or contradiction?", + "Output Program": [ + "oranges_bag_s1 = 1038/45\noranges_bag_s2 = 23\n \nif oranges_bag_s1 is None or oranges_bag_s2 is None:\n print('neutral')\n\nelif oranges_bag_s1 == oranges_bag_s2:\n print('Entailment')\n\nelif oranges_bag_s1 != oranges_bag_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many hours does it take Little Texas Drilling Company to produce 205 barrels of oil ?, \"statement 2\" :How many hours does it take Little Texas Drilling Company to produce more than 205 barrels of oil ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "oil_barrels_s1 = 205\noil_barrels_s2 = 205+1\n \nif oil_barrels_s1 is None or oil_barrels_s2 is None:\n print('neutral')\n\nelif oil_barrels_s1 == oil_barrels_s2:\n print('Entailment')\n\nelif oil_barrels_s1 != oil_barrels_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ceasar needs to read a 563.0 page book for school and he has already read 147.0 pages, \"statement 2\" :Ceasar has 419.0 pages left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "pages_s1 = 563-147\npages_s2 = 419\n \nif pages_s1 is None or pages_s2 is None:\n print('neutral')\n\nelif pages_s1 == pages_s2:\n print('Entailment')\n\nelif pages_s1 != pages_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Fred and Sam are standing 50 miles apart and they start walking in a straight line toward each other at the same time, \"statement 2\" :Fred and Sam are standing less than 70 miles apart and they start walking in a straight line toward each other at the same time, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "fred_sam_distance_s1 = 50\nfred_sam_distance_s2 = 70\n \nif fred_sam_distance_s1 is None or fred_sam_distance_s2 is None:\n print('neutral')\n\nelif fred_sam_distance_s1 < fred_sam_distance_s2:\n print('Entailment')\n\nelif fred_sam_distance_s1 != fred_sam_distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At the same time Joyce gets on an elevator on the 51 st floor of the same building and rides down at a rate of 53 floors per minute, \"statement 2\" :At the same time Joyce gets on an elevator on the more than 11 st floor of the same building and rides down at a rate of 53 floors per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "joyce_floor_s1 = 51\njoyce_floor_s2 = 11\n \nif joyce_floor_s1 is None or joyce_floor_s2 is None:\n print('neutral')\n\nelif joyce_floor_s1 > joyce_floor_s2:\n print('Entailment')\n\nelif joyce_floor_s1 != joyce_floor_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If less than 50 % of all the students at Morse have cars , how many students are in the three lower grades ?, \"statement 2\" :If 20 % of all the students at Morse have cars , how many students are in the three lower grades ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "morse_students_cars_s1 = None\nmorse_students_cars_s2 = 20\n \nif morse_students_cars_s1 is None or morse_students_cars_s2 is None:\n print('neutral')\n\nelif morse_students_cars_s1 == morse_students_cars_s2:\n print('Entailment')\n\nelif morse_students_cars_s1 != morse_students_cars_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the agreed period of the debenture was 18 months : calculate the amount of interest Jaclyn will earn for each quarter, \"statement 2\" :If the agreed period of the debenture was 68 months : calculate the amount of interest Jaclyn will earn for each quarter, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "agreed_period_s1 = 18\nagreed_period_s2 = 68\n \nif agreed_period_s1 is None or agreed_period_s2 is None:\n print('neutral')\n\nelif agreed_period_s1 == agreed_period_s2:\n print('Entailment')\n\nelif agreed_period_s1 != agreed_period_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Molly can do a task in less than 25 days while Sandy can do the task in 10 days, \"statement 2\" :Molly can do a task in 15 days while Sandy can do the task in 10 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "molly_task_s1 = None\nmolly_task_s2 = 15\n \nif molly_task_s1 is None or molly_task_s2 is None:\n print('neutral')\n\nelif molly_task_s1 == molly_task_s2:\n print('Entailment')\n\nelif molly_task_s1 != molly_task_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Melanie picked 7.0 plums and 4.0 oranges from the orchard and Sam gave her 3.0 plums, \"statement 2\" :She has 10.0 plums now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "melanie_orange_s1 = 7+3\nmelanie_orange_s2 = 10\n \nif melanie_orange_s1 is None or melanie_orange_s2 is None:\n print('neutral')\n\nelif melanie_orange_s1 == melanie_orange_s2:\n print('Entailment')\n\nelif melanie_orange_s1 != melanie_orange_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the distance between their homes is 80 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"statement 2\" :If the distance between their homes is more than 10 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "home_distance_s1 = 80\nhome_distance_s2 = 10\n \nif home_distance_s1 is None or home_distance_s2 is None:\n print('neutral')\n\nelif home_distance_s1 > home_distance_s2:\n print('Entailment')\n\nelif home_distance_s1 != home_distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joe \u2019 s average ( arithmetic mean ) test score across less than 6 equally weighted tests was 60, \"statement 2\" :Joe \u2019 s average ( arithmetic mean ) test score across 4 equally weighted tests was 60, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "joe_test_score_s1 = None\njoe_test_score_s2 = 4\n \nif joe_test_score_s1 is None or joe_test_score_s2 is None:\n print('neutral')\n\nelif joe_test_score_s1 == joe_test_score_s2:\n print('Entailment')\n\nelif joe_test_score_s1 != joe_test_score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary played the game , getting at least one score of each of 1 , 2 , 3 , 4 , and 5 , and never getting the same score in consecutive steps, \"statement 2\" :Mary played the game , getting at least one score of each of 2 , 2 , 3 , 4 , and 5 , and never getting the same score in consecutive steps, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mary_game_s1 = len(set([1,2,3,4,5]))\nmary_game_s2 = len(set([2,2,3,4,5]))\n \nif mary_game_s1 is None or mary_game_s2 is None:\n print('neutral')\n\nelif mary_game_s1 == mary_game_s2:\n print('Entailment')\n\nelif mary_game_s1 != mary_game_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A perfect score is 21.0 points., \"statement 2\" :You would have 63.0 points after 3.0 perfect games in a row, \"options: \" Entailment or contradiction?", + "Output Program": [ + "perfect_score_s1 = 21\nperfect_score_s2 = 63/3\n \nif perfect_score_s1 is None or perfect_score_s2 is None:\n print('neutral')\n\nelif perfect_score_s1 == perfect_score_s2:\n print('Entailment')\n\nelif perfect_score_s1 != perfect_score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill is dividing her 16 - person class into two teams of equal size for a basketball game, \"statement 2\" :Jill is dividing her 66 - person class into two teams of equal size for a basketball game, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jill_class_dividing_s1 = 16\njill_class_dividing_s2 = 66\n \nif jill_class_dividing_s1 is None or jill_class_dividing_s2 is None:\n print('neutral')\n\nelif jill_class_dividing_s1 == jill_class_dividing_s2:\n print('Entailment')\n\nelif jill_class_dividing_s1 != jill_class_dividing_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jane earned enough money by selling seashells at 25 cents each to buy several used paperback books at 55 cents each, \"statement 2\" :Jane earned enough money by selling seashells at less than 45 cents each to buy several used paperback books at 55 cents each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jane_seashells_s1 = 25\njane_seashells_s2 = 45\n \nif jane_seashells_s1 is None or jane_seashells_s2 is None:\n print('neutral')\n\nelif jane_seashells_s1 < jane_seashells_s2:\n print('Entailment')\n\nelif jane_seashells_s1 != jane_seashells_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Raviraj invested an amount of less than 200000000 at compound interest rate of 10 pcpa for a period of three years, \"statement 2\" :Raviraj invested an amount of 100000000 at compound interest rate of 10 pcpa for a period of three years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "raviraj_invested_s1 = None\nraviraj_invested_s2 = 100000000\n \nif raviraj_invested_s1 is None or raviraj_invested_s2 is None:\n print('neutral')\n\nelif raviraj_invested_s1 < raviraj_invested_s2:\n print('Entailment')\n\nelif raviraj_invested_s1 != raviraj_invested_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Robert ate 7 chocolates , Nickel ate 3 chocolates, \"statement 2\" :Robert ate more than 5 chocolates , Nickel ate 3 chocolates, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "robert_chocolate_s1 = 7\nrobert_chocolate_s2 = 3\n \nif robert_chocolate_s1 is None or robert_chocolate_s2 is None:\n print('neutral')\n\nelif robert_chocolate_s1 > robert_chocolate_s2:\n print('Entailment')\n\nelif robert_chocolate_s1 != robert_chocolate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lilly has 10 fish and Rosy has 11 fish, \"statement 2\" :Lilly has 30 fish and Rosy has 11 fish, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "lily_fish_s1 = 10\nlily_fish_s2 = 30\n \nif lily_fish_s1 is None or lily_fish_s2 is None:\n print('neutral')\n\nelif lily_fish_s1 == lily_fish_s2:\n print('Entailment')\n\nelif lily_fish_s1 != lily_fish_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Five other people were injured , and two of them were in critical condition , hospital officials said ., \"statement 2\" :Two of the wounded are in critical condition, \"options: \" Entailment or neutral?", + "Output Program": [ + "critical_condition_s1 = 2\ncritical_condition_s2 = 2\n \nif critical_condition_s1 is None or critical_condition_s2 is None:\n print('neutral')\n\nelif critical_condition_s1 == critical_condition_s2:\n print('Entailment')\n\nelif critical_condition_s1 != critical_condition_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Hitesh is 40 years old and Ronnie is 60 years old, \"statement 2\" :Hitesh is more than 20 years old and Ronnie is 60 years old, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hitesh_age_s1 = 40\nhitesh_age_s2 = 20\n \nif hitesh_age_s1 is None or hitesh_age_s2 is None:\n print('neutral')\n\nelif hitesh_age_s1 > hitesh_age_s2:\n print('Entailment')\n\nelif hitesh_age_s1 != hitesh_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shekar scored 76 , 65 , 82 , 67 and 95 marks in Mathematics , Science , Social studies , English and Biology respectively, \"statement 2\" :Shekar scored more than 46 , 65 , 82 , 67 and 95 marks in Mathematics , Science , Social studies , English and Biology respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shekhar_scored_s1 = 76+65+82+67+95\nshekhar_scored_s2 = 46+65+82+67+95\n \nif shekhar_scored_s1 is None or shekhar_scored_s2 is None:\n print('neutral')\n\nelif shekhar_scored_s1 > shekhar_scored_s2:\n print('Entailment')\n\nelif shekhar_scored_s1 != shekhar_scored_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": We ordered 21.0 pizzas and each pizza has 8.0 slices, \"statement 2\" :168.0 slices of pizza are there altogether, \"options: \" Entailment or contradiction?", + "Output Program": [ + "pizza_slices_s1 = 21*8\npizza_slices_s2 = 168\n \nif pizza_slices_s1 is None or pizza_slices_s2 is None:\n print('neutral')\n\nelif pizza_slices_s1 == pizza_slices_s2:\n print('Entailment')\n\nelif pizza_slices_s1 != pizza_slices_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mr Yadav spends 60 % of his monthly salary on consumable items and 50 % of the remaining on clothes and transport, \"statement 2\" :Mr Yadav spends more than 60 % of his monthly salary on consumable items and 50 % of the remaining on clothes and transport, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "yadav_spends_s1 = 60\nyadav_spends_s2 = 60+1\n \nif yadav_spends_s1 is None or yadav_spends_s2 is None:\n print('neutral')\n\nelif yadav_spends_s1 == yadav_spends_s2:\n print('Entailment')\n\nelif yadav_spends_s1 != yadav_spends_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Meg and Bob are among the 3 participants in a cycling race, \"statement 2\" :Meg and Bob are among the more than 3 participants in a cycling race, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "meg_bob_participants_s1 = 3\nmeg_bob_participants_s2 = 3+1\n \nif meg_bob_participants_s1 is None or meg_bob_participants_s2 is None:\n print('neutral')\n\nelif meg_bob_participants_s1 == meg_bob_participants_s2:\n print('Entailment')\n\nelif meg_bob_participants_s1 != meg_bob_participants_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In the biology lab of ` ` Jefferson ' ' High School there are 0.036 * 10 ^ 5 germs , equally divided among 45000 * 10 ^ ( - 3 ) Petri dishes, \"statement 2\" :In the biology lab of ` ` Jefferson ' ' High School there are 0.036 * 50 ^ 5 germs , equally divided among 45000 * 10 ^ ( - 3 ) Petri dishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jefferson_school_germs_s1 = 0.036 * (10 ^ 5)\njefferson_school_germs_s2 = 0.036 * (50 ^ 5)\n \nif jefferson_school_germs_s1 is None or jefferson_school_germs_s2 is None:\n print('neutral')\n\nelif jefferson_school_germs_s1 == jefferson_school_germs_s2:\n print('Entailment')\n\nelif jefferson_school_germs_s1 != jefferson_school_germs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The nationalities of the remaining nine is still unknown ., \"statement 2\" :The nationalities of the other nine are not known, \"options: \" Entailment or neutral?", + "Output Program": [ + "unknown_nationalities_s1 = 9\nunknown_nationalities_s2 = 9\n \nif unknown_nationalities_s1 is None or unknown_nationalities_s2 is None:\n print('neutral')\n\nelif unknown_nationalities_s1 == unknown_nationalities_s2:\n print('Entailment')\n\nelif unknown_nationalities_s1 != unknown_nationalities_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill , who lives in City C , plans to visit less than 3 different cities L , and S, \"statement 2\" :Jill , who lives in City C , plans to visit 2 different cities L , and S, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jefferson_germs_s1 = None\njefferson_germs_s2 = 6.48 * (10 ^ 6)\n \nif jefferson_germs_s1 is None or jefferson_germs_s2 is None:\n print('neutral')\n\nelif jefferson_germs_s1 == jefferson_germs_s2:\n print('Entailment')\n\nelif jefferson_germs_s1 != jefferson_germs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Evan ran a mile in 10 minutes Monday morning , and he ran the same mile in 8 minutes on Tuesday morning, \"statement 2\" :Evan ran a mile in less than 10 minutes Monday morning , and he ran the same mile in 8 minutes on Tuesday morning, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_ran_s1 = 10\nmiles_ran_s2 = 10-1\n \nif miles_ran_s1 is None or miles_ran_s2 is None:\n print('neutral')\n\nelif miles_ran_s1 == miles_ran_s2:\n print('Entailment')\n\nelif miles_ran_s1 != miles_ran_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": More than 20 other people were injured , CNN affiliate WMTW reported ., \"statement 2\" :More than 20 others were injured , a CNN affiliate reports, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_injured_s1 = 20+1\npeople_injured_s2 = 20+1\n \nif people_injured_s1 is None or people_injured_s2 is None:\n print('neutral')\n\nelif people_injured_s1 == people_injured_s2:\n print('Entailment')\n\nelif people_injured_s1 != people_injured_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In Lulu company 60 % of the employees earn less than $ 50,000 a year , 60 % of the employees earn more than $ 40,000 a year , 11 % of the employees earn $ 43,000 a year and 5 % of the employees earn $ 49,000 a year, \"statement 2\" :In Lulu company more than 20 % of the employees earn less than $ 50,000 a year , 60 % of the employees earn more than $ 40,000 a year , 11 % of the employees earn $ 43,000 a year and 5 % of the employees earn $ 49,000 a year, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "lulu_employee_earns_s1 = 50000\nlulu_employee_earns_s2 = 50000\n \nif lulu_employee_earns_s1 is None or lulu_employee_earns_s2 is None:\n print('neutral')\n\nelif lulu_employee_earns_s1 == lulu_employee_earns_s2:\n print('Entailment')\n\nelif lulu_employee_earns_s1 != lulu_employee_earns_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Gokul is 2 years younger to Madan whose age is 5 years , then what is the age of Arun ?, \"statement 2\" :If Gokul is 5 years younger to Madan whose age is 5 years , then what is the age of Arun ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gokul_younger_s1 = 2\ngokul_younger_s2 = 5\n \nif gokul_younger_s1 is None or gokul_younger_s2 is None:\n print('neutral')\n\nelif gokul_younger_s1 == gokul_younger_s2:\n print('Entailment')\n\nelif gokul_younger_s1 != gokul_younger_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John was thrice as old as Tom 6 yrs back, \"statement 2\" :John was thrice as old as Tom more than 2 yrs back, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_age_difference_s1 = 6\njohn_age_difference_s2 = 2\n \nif john_age_difference_s1 is None or john_age_difference_s2 is None:\n print('neutral')\n\nelif john_age_difference_s1 > john_age_difference_s2:\n print('Entailment')\n\nelif john_age_difference_s1 != john_age_difference_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Kiran travels from A to B by car and returns from B to A by cycle in more than 5 hours, \"statement 2\" :Kiran travels from A to B by car and returns from B to A by cycle in 7 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kiran_travels_s1 = None\nkiran_travels_s2 = 7\n \nif kiran_travels_s1 is None or kiran_travels_s2 is None:\n print('neutral')\n\nelif kiran_travels_s1 > kiran_travels_s2:\n print('Entailment')\n\nelif kiran_travels_s1 != kiran_travels_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Vijay bought less than 760 shirts at the rate of Rs, \"statement 2\" :Vijay bought 160 shirts at the rate of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "vijay_bought_s1 = None\nvijay_bought_s2 = 160\n \nif vijay_bought_s1 is None or vijay_bought_s2 is None:\n print('neutral')\n\nelif vijay_bought_s1 > vijay_bought_s2:\n print('Entailment')\n\nelif vijay_bought_s1 != vijay_bought_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is less than 4 : 3 ?, \"statement 2\" :What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is 2 : 3 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "murali_average_speed_s1 = None\nmurali_average_speed_s2 = 2/3\n \nif murali_average_speed_s1 is None or murali_average_speed_s2 is None:\n print('neutral')\n\nelif murali_average_speed_s1 == murali_average_speed_s2:\n print('Entailment')\n\nelif murali_average_speed_s1 != murali_average_speed_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In my bungalow in Bangalore I have a beautiful rose garden .\nThe four sides of the garden are known to be 20 , 16 , 12 and 10 rods, \"statement 2\" :In my bungalow in Bangalore I have a beautiful rose garden . The four sides of the garden are known to be 50 , 16 , 12 and 10 rods, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sides_of_garden_s1 = 20\nsides_of_garden_s2 = 50\n \nif sides_of_garden_s1 is None or sides_of_garden_s2 is None:\n print('neutral')\n\nelif sides_of_garden_s1 == sides_of_garden_s2:\n print('Entailment')\n\nelif sides_of_garden_s1 != sides_of_garden_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Fred had 7.0 dimes in his bank and his sister loaned Fred 3.0 more dimes , \"statement 2\" :Fred has 10.0 dimes now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "fred_dimes_s1 = 7+3\nfred_dimes_s2 = 10\n \nif fred_dimes_s1 is None or fred_dimes_s2 is None:\n print('neutral')\n\nelif fred_dimes_s1 == fred_dimes_s2:\n print('Entailment')\n\nelif fred_dimes_s1 != fred_dimes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Anup was asked to find the value of more than 5 / 12 of a sum of money E, \"statement 2\" :Anup was asked to find the value of 7 / 12 of a sum of money E, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "anup_value_s1 = None\nanup_value_s2 = 7/12\n \nif anup_value_s1 is None or anup_value_s2 is None:\n print('neutral')\n\nelif anup_value_s1 == anup_value_s2:\n print('Entailment')\n\nelif anup_value_s1 != anup_value_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy can do a job in less than 58 days and Molly can do the same job in 36 days, \"statement 2\" :Sandy can do a job in 18 days and Molly can do the same job in 36 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_job_s1 = None\nsandy_job_s2 = 18\n \nif sandy_job_s1 is None or sandy_job_s2 is None:\n print('neutral')\n\nelif sandy_job_s1 == sandy_job_s2:\n print('Entailment')\n\nelif sandy_job_s1 != sandy_job_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ayesha ' s father was less than 48 years of age when she was born while her mother was 36 years old when her brother four years younger to her was born, \"statement 2\" :Ayesha ' s father was 38 years of age when she was born while her mother was 36 years old when her brother four years younger to her was born, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ayesha_father_s1 = None\nayesha_father_s2 = 38\n \nif ayesha_father_s1 is None or ayesha_father_s2 is None:\n print('neutral')\n\nelif ayesha_father_s1 == ayesha_father_s2:\n print('Entailment')\n\nelif ayesha_father_s1 != ayesha_father_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Johnny takes night school and scores an 88 in the course , what will his new average be ?, \"statement 2\" :If Johnny takes night school and scores an 18 in the course , what will his new average be ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "johnny_scores_s1 = 88\njohnny_scores_s2 = 18\n \nif johnny_scores_s1 is None or johnny_scores_s2 is None:\n print('neutral')\n\nelif johnny_scores_s1 == johnny_scores_s2:\n print('Entailment')\n\nelif johnny_scores_s1 != johnny_scores_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Third-grade students went to a concert in 8.0 buses and each bus took 45.0 students, \"statement 2\" :363.0 students went to the concert, \"options: \" Entailment or contradiction?", + "Output Program": [ + "student_concert_s1 = 8*45\nstudent_concert_s2 = 363\n \nif student_concert_s1 is None or student_concert_s2 is None:\n print('neutral')\n\nelif student_concert_s1 == student_concert_s2:\n print('Entailment')\n\nelif student_concert_s1 != student_concert_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Eleven individuals and eight policemen were injured , two seriously , the official Algerie Presse Service reported ., \"statement 2\" :11 individuals , 8 police injured , Algeria 's official news agency reports, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_injured_s1 = 11+8\npeople_injured_s2 = 11+8\n \nif people_injured_s1 is None or people_injured_s2 is None:\n print('neutral')\n\nelif people_injured_s1 == people_injured_s2:\n print('Entailment')\n\nelif people_injured_s1 != people_injured_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The workforce of Company Samsung is 60 % female, \"statement 2\" :The workforce of Company Samsung is 40 % female, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "samsung_female_ratio_s1 = 60\nsamsung_female_ratio_s2 = 40\n \nif samsung_female_ratio_s1 is None or samsung_female_ratio_s2 is None:\n print('neutral')\n\nelif samsung_female_ratio_s1 == samsung_female_ratio_s2:\n print('Entailment')\n\nelif samsung_female_ratio_s1 != samsung_female_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": It could go 4 times as fast as Mohan \u2019 s old Mercedes, \"statement 2\" :It could go more than 1 times as fast as Mohan \u2019 s old Mercedes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mohan_new_speed_s1 = 4\nmohan_new_speed_s2 = 1\n \nif mohan_new_speed_s1 is None or mohan_new_speed_s2 is None:\n print('neutral')\n\nelif mohan_new_speed_s1 > mohan_new_speed_s2:\n print('Entailment')\n\nelif mohan_new_speed_s1 != mohan_new_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are 390 baseball fans in the town , each of whom is a fan of exactly one of those three teams , how many NY Mets fans are there in this town ?, \"statement 2\" :If there are less than 390 baseball fans in the town , each of whom is a fan of exactly one of those three teams , how many NY Mets fans are there in this town ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "baseball_fans_s1 = 390\nbaseball_fans_s2 = 390-1\n \nif baseball_fans_s1 is None or baseball_fans_s2 is None:\n print('neutral')\n\nelif baseball_fans_s1 == baseball_fans_s2:\n print('Entailment')\n\nelif baseball_fans_s1 != baseball_fans_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Pavan travelled for 11 hours, \"statement 2\" :Pavan travelled for more than 11 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pavan_travelled_s1 = 11\npavan_travelled_s2 = 11+1\n \nif pavan_travelled_s1 is None or pavan_travelled_s2 is None:\n print('neutral')\n\nelif pavan_travelled_s1 == pavan_travelled_s2:\n print('Entailment')\n\nelif pavan_travelled_s1 != pavan_travelled_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Amanda goes to the toy store to buy 1 ball and 3 different board games, \"statement 2\" :Amanda goes to the toy store to buy less than 1 ball and 3 different board games, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amanda_ball_s1 = 1\namanda_ball_s2 = 1-1\n \nif amanda_ball_s1 is None or amanda_ball_s2 is None:\n print('neutral')\n\nelif amanda_ball_s1 == amanda_ball_s2:\n print('Entailment')\n\nelif amanda_ball_s1 != amanda_ball_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Washington ( CNN ) -- A narrowly passed committee measure that recommends the United States recognize the 1915 killings of ethnic Armenians in Ottoman Turkey as genocide will likely not get a full vote in the House of Representatives , according to a senior State Department official ., \"statement 2\" :Measure : U.S. should recognize 1915 killings of Armenians in Turkey as genocide, \"options: \" Entailment or neutral?", + "Output Program": [ + "armenians_killed_s1 = 1915\narmenians_killed_s2 = 1915\n \nif armenians_killed_s1 is None or armenians_killed_s2 is None:\n print('neutral')\n\nelif armenians_killed_s1 == armenians_killed_s2:\n print('Entailment')\n\nelif armenians_killed_s1 != armenians_killed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Kishore saved less than 80 % of his monthly salary, \"statement 2\" :Kishore saved 10 % of his monthly salary, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kishore_saved_s1 = None\nkishore_saved_s2 = 10\n \nif kishore_saved_s1 is None or kishore_saved_s2 is None:\n print('neutral')\n\nelif kishore_saved_s1 == kishore_saved_s2:\n print('Entailment')\n\nelif kishore_saved_s1 != kishore_saved_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If less than 86 of the photographs in the exhibition were taken by Octavia , how many photographs were either framed by Jack or taken by Octavia ?, \"statement 2\" :If 36 of the photographs in the exhibition were taken by Octavia , how many photographs were either framed by Jack or taken by Octavia ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "photographs_taken_s1 = None\nphotographs_taken_s2 = 36\n \nif photographs_taken_s1 is None or photographs_taken_s2 is None:\n print('neutral')\n\nelif photographs_taken_s1 == photographs_taken_s2:\n print('Entailment')\n\nelif photographs_taken_s1 != photographs_taken_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In 1979 approximately 1 / 3 of the 37.3 million airline passengers traveling to or from the United States used Kennedy Airport, \"statement 2\" :In less than 2979 approximately 1 / 3 of the 37.3 million airline passengers traveling to or from the United States used Kennedy Airport, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "airline_passenger_s1 = 1979\nairline_passenger_s2 = 2979\n \nif airline_passenger_s1 is None or airline_passenger_s2 is None:\n print('neutral')\n\nelif airline_passenger_s1 < airline_passenger_s2:\n print('Entailment')\n\nelif airline_passenger_s1 != airline_passenger_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In an exam , Amar scored 49 percent , Bhavan scored 36 percent and Chetan 44 percent, \"statement 2\" :In an exam , Amar scored 69 percent , Bhavan scored 36 percent and Chetan 44 percent, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amar_scored_s1 = 49\namar_scored_s2 = 69\n \nif amar_scored_s1 is None or amar_scored_s2 is None:\n print('neutral')\n\nelif amar_scored_s1 == amar_scored_s2:\n print('Entailment')\n\nelif amar_scored_s1 != amar_scored_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Each year, salmon travel upstream, going from the ocean to the rivers where they were born and this year, 712261.0 returned to their rivers, 259378.0 of which were female salmon, \"statement 2\" :452882.0 male salmon made the trip, \"options: \" Entailment or contradiction?", + "Output Program": [ + "male_salmon_s1 = 712261-259378\nmale_salmon_s2 = 452882\n \nif male_salmon_s1 is None or male_salmon_s2 is None:\n print('neutral')\n\nelif male_salmon_s1 == male_salmon_s2:\n print('Entailment')\n\nelif male_salmon_s1 != male_salmon_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Martha has 5 dogs and 4 cats, \"statement 2\" :Martha has less than 8 dogs and 4 cats, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "martha_dogs_s1 = 5\nmartha_dogs_s2 = 8\n \nif martha_dogs_s1 is None or martha_dogs_s2 is None:\n print('neutral')\n\nelif martha_dogs_s1 < martha_dogs_s2:\n print('Entailment')\n\nelif martha_dogs_s1 != martha_dogs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 9000 which he and Dave earned at the end of 1 years, \"statement 2\" :1000 which he and Dave earned at the end of 1 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "he_and_dave_earned_s1 = 9000\nhe_and_dave_earned_s2 = 1000\n \nif he_and_dave_earned_s1 is None or he_and_dave_earned_s2 is None:\n print('neutral')\n\nelif he_and_dave_earned_s1 < he_and_dave_earned_s2:\n print('Entailment')\n\nelif he_and_dave_earned_s1 != he_and_dave_earned_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 6.0 people ate 54.0 lemon heads each., \"statement 2\" :327.0 lemon heads were eaten all together, \"options: \" Entailment or contradiction?", + "Output Program": [ + "lemons_eaten_s1 = 6*54\nlemons_eaten_s2 = 327\n \nif lemons_eaten_s1 is None or lemons_eaten_s2 is None:\n print('neutral')\n\nelif lemons_eaten_s1 == lemons_eaten_s2:\n print('Entailment')\n\nelif lemons_eaten_s1 != lemons_eaten_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a recent election , James received 5 percent of the 2,000 votes cast, \"statement 2\" :In a recent election , James received more than 5 percent of the 2,000 votes cast, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "james_vote_cast_s1 = 5\njames_vote_cast_s2 = 5+1\n \nif james_vote_cast_s1 is None or james_vote_cast_s2 is None:\n print('neutral')\n\nelif james_vote_cast_s1 == james_vote_cast_s2:\n print('Entailment')\n\nelif james_vote_cast_s1 != james_vote_cast_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Martha has less than 6 dogs and 4 cats, \"statement 2\" :Martha has 3 dogs and 4 cats, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "martha_dogs_s1 = None\nmartha_dogs_s2 = 3\n \nif martha_dogs_s1 is None or martha_dogs_s2 is None:\n print('neutral')\n\nelif martha_dogs_s1 == martha_dogs_s2:\n print('Entailment')\n\nelif martha_dogs_s1 != martha_dogs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Martha has 4 dogs and 4 cats, \"statement 2\" :Martha has 3 dogs and 4 cats, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "martha_dogs_s1 = 4\nmartha_dogs_s2 = 3\n \nif martha_dogs_s1 is None or martha_dogs_s2 is None:\n print('neutral')\n\nelif martha_dogs_s1 == martha_dogs_s2:\n print('Entailment')\n\nelif martha_dogs_s1 != martha_dogs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bob is about to hang his more than 2 shirts in the wardrobe, \"statement 2\" :Bob is about to hang his 8 shirts in the wardrobe, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bob_hang_shirt_s1 = None\nbob_hang_shirt_s2 = 8\n \nif bob_hang_shirt_s1 is None or bob_hang_shirt_s2 is None:\n print('neutral')\n\nelif bob_hang_shirt_s1 == bob_hang_shirt_s2:\n print('Entailment')\n\nelif bob_hang_shirt_s1 != bob_hang_shirt_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Fred walks at a constant speed of 5 miles per hour and Sam walks at a constant speed of 5 miles per hour , how many miles has Sam walked when they meet ?, \"statement 2\" :If Fred walks at a constant speed of 8 miles per hour and Sam walks at a constant speed of 5 miles per hour , how many miles has Sam walked when they meet ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "fred_speed_s1 = 5\nfred_speed_s2 = 8\n \nif fred_speed_s1 is None or fred_speed_s2 is None:\n print('neutral')\n\nelif fred_speed_s1 == fred_speed_s2:\n print('Entailment')\n\nelif fred_speed_s1 != fred_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Q : Robert purchased $ 3500 worth of US saving bonds, \"statement 2\" :Q : Robert purchased $ 5500 worth of US saving bonds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "robert_purchased_s1 = 3500\nrobert_purchased_s2 = 5500\n \nif robert_purchased_s1 is None or robert_purchased_s2 is None:\n print('neutral')\n\nelif robert_purchased_s1 == robert_purchased_s2:\n print('Entailment')\n\nelif robert_purchased_s1 != robert_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are 4 peanuts in a box and Mary puts 4 more peanuts inside , how many peanuts are in the box ?, \"statement 2\" :If there are less than 8 peanuts in a box and Mary puts 4 more peanuts inside , how many peanuts are in the box ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "peanuts_box_s1 = 4\npeanuts_box_s2 = 8\n \nif peanuts_box_s1 is None or peanuts_box_s2 is None:\n print('neutral')\n\nelif peanuts_box_s1 < peanuts_box_s2:\n print('Entailment')\n\nelif peanuts_box_s1 != peanuts_box_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mr Shivkumar started a business , investing 25000 in 1996, \"statement 2\" :Mr Shivkumar started a business , investing less than 75000 in 1996, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shivkumar_invested_s1 = 25000\nshivkumar_invested_s2 = 75000\n \nif shivkumar_invested_s1 is None or shivkumar_invested_s2 is None:\n print('neutral')\n\nelif shivkumar_invested_s1 < shivkumar_invested_s2:\n print('Entailment')\n\nelif shivkumar_invested_s1 != shivkumar_invested_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In Kaya ' s teacher ' s desk there are less than 8 pink highlighters , 2 yellow highlighters , and 4 blue highlighters, \"statement 2\" :In Kaya ' s teacher ' s desk there are 6 pink highlighters , 2 yellow highlighters , and 4 blue highlighters, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pink_highlighters_s1 = None\npink_highlighters_s2 = 6\n \nif pink_highlighters_s1 is None or pink_highlighters_s2 is None:\n print('neutral')\n\nelif pink_highlighters_s1 < pink_highlighters_s2:\n print('Entailment')\n\nelif pink_highlighters_s1 != pink_highlighters_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Doctors identified 29 patients in the United Kingdom with the new infections ., \"statement 2\" :29 patients have been identified in the UK, \"options: \" Entailment or neutral?", + "Output Program": [ + "patients_identified_s1 = 29\npatients_identified_s2 = 29\n \nif patients_identified_s1 is None or patients_identified_s2 is None:\n print('neutral')\n\nelif patients_identified_s1 == patients_identified_s2:\n print('Entailment')\n\nelif patients_identified_s1 != patients_identified_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If TRAIN is coded as 12 and PANDA is coded as 18 , then CURED is coded as, \"statement 2\" :If TRAIN is coded as 22 and PANDA is coded as 18 , then CURED is coded as, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "train_coded_s1 = 12\ntrain_coded_s2 = 22\n \nif train_coded_s1 is None or train_coded_s2 is None:\n print('neutral')\n\nelif train_coded_s1 == train_coded_s2:\n print('Entailment')\n\nelif train_coded_s1 != train_coded_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 3.0 calories in a candy bar., \"statement 2\" :18.0 calories are there in 5.0 candy bars, \"options: \" Entailment or contradiction?", + "Output Program": [ + "candy_bar_calories_s1 = 3\ncandy_bar_calories_s2 = 18/5\n \nif candy_bar_calories_s1 is None or candy_bar_calories_s2 is None:\n print('neutral')\n\nelif candy_bar_calories_s1 == candy_bar_calories_s2:\n print('Entailment')\n\nelif candy_bar_calories_s1 != candy_bar_calories_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If it takes Cathy less than 57 minutes to stretch and Jim continues to run during this time , how many minutes will it take Cathy to catch up to Jim ?, \"statement 2\" :If it takes Cathy 27 minutes to stretch and Jim continues to run during this time , how many minutes will it take Cathy to catch up to Jim ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "carthy_stretch_s1 = None\ncarthy_stretch_s2 = 27\n \nif carthy_stretch_s1 is None or carthy_stretch_s2 is None:\n print('neutral')\n\nelif carthy_stretch_s1 == carthy_stretch_s2:\n print('Entailment')\n\nelif carthy_stretch_s1 != carthy_stretch_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lucy deposited $ more than 27600 in an investment fund that provided 16 percent annual return compounded quarterly, \"statement 2\" :Lucy deposited $ 67600 in an investment fund that provided 16 percent annual return compounded quarterly, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "lucy_deposited_s1 = None\nlucy_deposited_s2 = 67600\n \nif lucy_deposited_s1 is None or lucy_deposited_s2 is None:\n print('neutral')\n\nelif lucy_deposited_s1 == lucy_deposited_s2:\n print('Entailment')\n\nelif lucy_deposited_s1 != lucy_deposited_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A case of candy usually lasts Tomi less than 62 days when she eats 6 every day, \"statement 2\" :A case of candy usually lasts Tomi 42 days when she eats 6 every day, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "candy_case_s1 = None\ncandy_case_s2 = 42\n \nif candy_case_s1 is None or candy_case_s2 is None:\n print('neutral')\n\nelif candy_case_s1 == candy_case_s2:\n print('Entailment')\n\nelif candy_case_s1 != candy_case_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": City A to city B , Raja drove for less than 4 hour at 72 mph and for 3 hours at 80 mph, \"statement 2\" :City A to city B , Raja drove for 1 hour at 72 mph and for 3 hours at 80 mph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "raja_drove_s1 = None\nraja_drove_s2 = 1\n \nif raja_drove_s1 is None or raja_drove_s2 is None:\n print('neutral')\n\nelif raja_drove_s1 == raja_drove_s2:\n print('Entailment')\n\nelif raja_drove_s1 != raja_drove_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jessica can text 85 words per minute , while Maurice can text 25 words per minute, \"statement 2\" :Jessica can text more than 85 words per minute , while Maurice can text 25 words per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jessica_text_s1 = 85\njessica_text_s2 = 85+1\n \nif jessica_text_s1 is None or jessica_text_s2 is None:\n print('neutral')\n\nelif jessica_text_s1 == jessica_text_s2:\n print('Entailment')\n\nelif jessica_text_s1 != jessica_text_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If , five years from now , the sum E of their ages will be less than 71 , how old is Stephanie ?, \"statement 2\" :If , five years from now , the sum E of their ages will be 51 , how old is Stephanie ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sum_age_s1 = None\nsum_age_s2 = 41\n\nif sum_age_s1 is None or sum_age_s2 is None:\n print('neutral')\n\nelif sum_age_s1 == sum_age_s2:\n print('Entailment')\n\nelif sum_age_s1 != sum_age_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joe \u2019 s average ( arithmetic mean ) test score across less than 6 equally weighted tests was 90, \"statement 2\" :Joe \u2019 s average ( arithmetic mean ) test score across 4 equally weighted tests was 90, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_tests_s1 = None\ntotal_tests_s2 = 4\n\nif total_tests_s1 is None or total_tests_s2 is None:\n print('neutral')\n\nelif total_tests_s1 == total_tests_s2:\n print('Entailment')\n\nelif total_tests_s1 != total_tests_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary had 33.0 Pokemon cards , and 6.0 were torn and Sam gave Mary 23.0 new Pokemon cards , \"statement 2\" :Mary has 56.0 Pokemon cards now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "mary_pokemon_s1 = 33 + 23\nmary_pokemon_s2 = 56\n\nif mary_pokemon_s1 is None or mary_pokemon_s2 is None:\n print('neutral')\n\nelif mary_pokemon_s1 == mary_pokemon_s2:\n print('Entailment')\n\nelif mary_pokemon_s1 != mary_pokemon_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Gary had 73.0 dollars and he sold his pet snake for 55.0 dollars, \"statement 2\" :Gary has 128.0 dollars now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "gary_dollars_s1 = 73 + 55\ngary_dollars_s2 = 128\n\nif gary_dollars_s1 is None or gary_dollars_s2 is None:\n print('neutral')\n\nelif gary_dollars_s1 == gary_dollars_s2:\n print('Entailment')\n\nelif gary_dollars_s1 != gary_dollars_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Meera is making telescopes , each consisting of 2 lenses , 1 tube , and 1 eyepiece, \"statement 2\" :Meera is making telescopes , each consisting of 5 lenses , 1 tube , and 1 eyepiece, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "meera_lenses_s1 = 2\nmeera_lenses_s2 = 5\n\nif meera_lenses_s1 is None or meera_lenses_s2 is None:\n print('neutral')\n\nelif meera_lenses_s1 == meera_lenses_s2:\n print('Entailment')\n\nelif meera_lenses_s1 != meera_lenses_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill has less than 48 gallons of water stored in quart , half - gallon , and one gallon jars, \"statement 2\" :Jill has 28 gallons of water stored in quart , half - gallon , and one gallon jars, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jill_gallons_s1 = None\njill_gallons_s2 = 28\n\nif jill_gallons_s1 is None or jill_gallons_s2 is None:\n print('neutral')\n\nelif jill_gallons_s1 == jill_gallons_s2:\n print('Entailment')\n\nelif jill_gallons_s1 != jill_gallons_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John has 10 pairs of matched socks, \"statement 2\" :John has 60 pairs of matched socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pair_socks_s1 = 10\npair_socks_s2 = 60\n\nif pair_socks_s1 is None or pair_socks_s2 is None:\n print('neutral')\n\nelif pair_socks_s1 == pair_socks_s2:\n print('Entailment')\n\nelif pair_socks_s1 != pair_socks_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If 6 yrs are subtracted from the present age of John & the remainder is divided by 18 , then the presentage of his grandson Anup is obtained, \"statement 2\" :If more than 4 yrs are subtracted from the present age of John & the remainder is divided by 18 , then the presentage of his grandson Anup is obtained, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_substracted_s1 = 6\nyears_substracted_s2 = 4\n\nif years_substracted_s1 is None or years_substracted_s2 is None:\n print('neutral')\n\nelif years_substracted_s1 > years_substracted_s2:\n print('Entailment')\n\nelif years_substracted_s1 != years_substracted_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the height difference between the two if the Empire State Building is less than 743 m tall and the Petronas Towers is 452 m tall ?, \"statement 2\" :What is the height difference between the two if the Empire\nState Building is 443 m tall and the Petronas Towers is 452 m tall ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "state_building_s1 = None\nstate_building_s2 = 443\n\nif state_building_s1 is None or state_building_s2 is None:\n print('neutral')\n\nelif state_building_s1 == state_building_s2:\n print('Entailment')\n\nelif state_building_s1 != state_building_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Paul can dig the same well in less than 84 days, \"statement 2\" :Paul can dig the same well in 24 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "paul_dig_well_s1 = None\npaul_dig_well_s2 = 24\n\nif paul_dig_well_s1 is None or paul_dig_well_s2 is None:\n print('neutral')\n\nelif paul_dig_well_s1 == paul_dig_well_s2:\n print('Entailment')\n\nelif paul_dig_well_s1 != paul_dig_well_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Albert \u2019 s monthly earnings rise by less than 30 % , he would earn $ 560, \"statement 2\" :If Albert \u2019 s monthly earnings rise by 20 % , he would earn $ 560, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "albert_monthly_earning_s1 = None\nalbert_monthly_earning_s2 = 20\n\nif albert_monthly_earning_s1 is None or albert_monthly_earning_s2 is None:\n print('neutral')\n\nelif albert_monthly_earning_s1 == albert_monthly_earning_s2:\n print('Entailment')\n\nelif albert_monthly_earning_s1 != albert_monthly_earning_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Christian\u2019s father and the senior ranger gathered firewood as they walked towards the lake in the park and brought with them sacks, and every sack can contain around 20.0 pieces of wood, \"statement 2\" :They were able to fill 6.0 sacks if they gathered 80.0 pieces of wood, \"options: \" Entailment or contradiction?", + "Output Program": [ + "wood_pieces_s1 = 20\nwood_pieces_s2 = 80\n \nif wood_pieces_s1 is None or wood_pieces_s2 is None:\n print('neutral')\n\nelif wood_pieces_s1 == wood_pieces_s2:\n print('Entailment')\n\nelif wood_pieces_s1 != wood_pieces_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At a meeting of the 8 Joint Chiefs of Staff , the Chief of Naval Operations does not want to sit next to the Chief of the National Guard Bureau, \"statement 2\" :At a meeting of the more than 3 Joint Chiefs of Staff , the Chief of Naval Operations does not want to sit next to the Chief of the National Guard Bureau, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "joint_chiefs_meeting_s1 = 8\njoint_chiefs_meeting_s2 = 3\n \nif joint_chiefs_meeting_s1 is None or joint_chiefs_meeting_s2 is None:\n print('neutral')\n\nelif joint_chiefs_meeting_s1 > joint_chiefs_meeting_s2:\n print('Entailment')\n\nelif joint_chiefs_meeting_s1 != joint_chiefs_meeting_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A train travels from Albany to Syracuse , a distance of less than 620 miles , at the average rate of 30 miles per hour, \"statement 2\" :A train travels from Albany to Syracuse , a distance of 120 miles , at the average rate of 30 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "train_travels_s1 = None\ntrain_travels_s2 = 120\n \nif train_travels_s1 is None or train_travels_s2 is None:\n print('neutral')\n\nelif train_travels_s1 == train_travels_s2:\n print('Entailment')\n\nelif train_travels_s1 != train_travels_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many liters of blue paint must be added to less than 74 liters of Fuchsia to change it to Mauve paint ?, \"statement 2\" :How many liters of blue paint must be added to 24 liters of Fuchsia to change it to Mauve paint ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "paint_liters_s1 = None\npaint_liters_s2 = 24\n \nif paint_liters_s1 is None or paint_liters_s2 is None:\n print('neutral')\n\nelif paint_liters_s1 == paint_liters_s2:\n print('Entailment')\n\nelif paint_liters_s1 != paint_liters_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The uncompleted tunnel measures 48 feet in the U.S. and 35 feet in Mexico ., \"statement 2\" :48 feet of tunnel is in United States and 35 feet in Mexico, \"options: \" Entailment or neutral?", + "Output Program": [ + "tunnel_measures_s1 = 48\ntunnel_measures_s2 = 48\n \nif tunnel_measures_s1 is None or tunnel_measures_s2 is None:\n print('neutral')\n\nelif tunnel_measures_s1 == tunnel_measures_s2:\n print('Entailment')\n\nelif tunnel_measures_s1 != tunnel_measures_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many different possible committees of 3 people can be selected from these 8 people if at least one of either Jane or Thomas is to be selected ?, \"statement 2\" :How many different possible committees of more than 2 people can be selected from these 8 people if at least one of either Jane or Thomas is to be selected ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_committees_s1 = 3\npeople_committees_s2 = 2\n \nif people_committees_s1 is None or people_committees_s2 is None:\n print('neutral')\n\nelif people_committees_s1 > people_committees_s2:\n print('Entailment')\n\nelif people_committees_s1 != people_committees_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rebecca ' s annual income is $ 15 and Jimmy ' s annual income is $ 18, \"statement 2\" :Rebecca ' s annual income is $ less than 55 and Jimmy ' s annual income is $ 18, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "annual_income_s1 = 18\nannual_income_s2 = 55\n \nif annual_income_s1 is None or annual_income_s2 is None:\n print('neutral')\n\nelif annual_income_s1 < annual_income_s2:\n print('Entailment')\n\nelif annual_income_s1 != annual_income_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 10 stations between Hyderabad and Bangalore, \"statement 2\" :There are 60 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_stations_s1 = 10\ntotal_stations_s2 = 60\n \nif total_stations_s1 is None or total_stations_s2 is None:\n print('neutral')\n\nelif total_stations_s1 < total_stations_s2:\n print('Entailment')\n\nelif total_stations_s1 != total_stations_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The International Labour Organization reports 12.3 million people are ` laboring in bondage ', \"statement 2\" :He added that according to estimates by the International Labour Organization , 12.3 million people worldwide are '' laboring in bondage . '', \"options: \" Entailment or neutral?", + "Output Program": [ + "people_labours_s1 = 12.3\npeople_labours_s2 = 12.3\n \nif people_labours_s1 is None or people_labours_s2 is None:\n print('neutral')\n\nelif people_labours_s1 == people_labours_s2:\n print('Entailment')\n\nelif people_labours_s1 != people_labours_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John has 10 pairs of matched socks, \"statement 2\" :John has less than 60 pairs of matched socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "socks_packs_s1 = 10\nsocks_packs_s2 = 60\n \nif socks_packs_s1 is None or socks_packs_s2 is None:\n print('neutral')\n\nelif socks_packs_s1 < socks_packs_s2:\n print('Entailment')\n\nelif socks_packs_s1 != socks_packs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the minimum number of packages of Aero flight tees Bill must purchase to ensure that he has at least 10 golf tees for each member of his foursome , if he will buy no more than 1 packages of the generic golf tees ?, \"statement 2\" :What is the minimum number of packages of Aero flight tees Bill must purchase to ensure that he has at least less than 50 golf tees for each member of his foursome , if he will buy no more than 1 packages of the generic golf tees ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "golf_tees_s1 = 10\ngolf_tees_s2 = 50\n \nif golf_tees_s1 is None or golf_tees_s2 is None:\n print('neutral')\n\nelif golf_tees_s1 < golf_tees_s2:\n print('Entailment')\n\nelif golf_tees_s1 != golf_tees_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": James takes a trip and drives 7 hours from Town A to Town C at a rate of 30 miles per hour, \"statement 2\" :James takes a trip and drives 4 hours from Town A to Town C at a rate of 30 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "james_drives_s1 = 7\njames_drives_s2 = 4\n \nif james_drives_s1 is None or james_drives_s2 is None:\n print('neutral')\n\nelif james_drives_s1 < james_drives_s2:\n print('Entailment')\n\nelif james_drives_s1 != james_drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The victim was a white woman , likely in her mid-20s to early 40s , said McCaffery ., \"statement 2\" :She is described as a white woman in her mid-20s to early 40s, \"options: \" Entailment or neutral?", + "Output Program": [ + "victim_age_s1 = 20\nvictim_age_s2 = 20\n \nif victim_age_s1 is None or victim_age_s2 is None:\n print('neutral')\n\nelif victim_age_s1 == victim_age_s2:\n print('Entailment')\n\nelif victim_age_s1 != victim_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shreehari has 500 chocolates in his self, \"statement 2\" :Shreehari has less than 500 chocolates in his self, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shreehari_chocolate_s1 = 500\nshreehari_chocolate_s2 = 500-1\n \nif shreehari_chocolate_s1 is None or shreehari_chocolate_s2 is None:\n print('neutral')\n\nelif shreehari_chocolate_s1 == shreehari_chocolate_s2:\n print('Entailment')\n\nelif shreehari_chocolate_s1 != shreehari_chocolate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy invested a certain sum of money at 12 % p, \"statement 2\" :Sandy invested a certain sum of money at less than 82 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_invested_s1 = 12\nsandy_invested_s2 = 82\n \nif sandy_invested_s1 is None or sandy_invested_s2 is None:\n print('neutral')\n\nelif sandy_invested_s1 < sandy_invested_s2:\n print('Entailment')\n\nelif sandy_invested_s1 != sandy_invested_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jon had an average score of 85 on his first five quizzes, \"statement 2\" :Jon had an average score of 45 on his first five quizzes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_average_score_s1 = 85\njohn_average_score_s2 = 45\n \nif john_average_score_s1 is None or john_average_score_s2 is None:\n print('neutral')\n\nelif john_average_score_s1 == john_average_score_s2:\n print('Entailment')\n\nelif john_average_score_s1 != john_average_score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If TRAIN is coded as less than 62 and PANDA is coded as 18 , then CURED is coded as, \"statement 2\" :If TRAIN is coded as 12 and PANDA is coded as 18 , then CURED is coded as, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "train_coded_s1 = None\ntrain_coded_s2 = 12\n \nif train_coded_s1 is None or train_coded_s2 is None:\n print('neutral')\n\nelif train_coded_s1 == train_coded_s2:\n print('Entailment')\n\nelif train_coded_s1 != train_coded_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alice deposited Rs 2 million in bank at 4 % simple interest per year, \"statement 2\" :Alice deposited Rs more than 1 million in bank at 4 % simple interest per year, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "simple_interest_s1 = 4\nsimple_interest_s2 = 4\n \nif simple_interest_s1 is None or simple_interest_s2 is None:\n print('neutral')\n\nelif simple_interest_s1 == simple_interest_s2:\n print('Entailment')\n\nelif simple_interest_s1 != simple_interest_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Pavan travelled for 11 hours, \"statement 2\" :Pavan travelled for less than 11 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pavan_travelled_s1 = 11\npavan_travelled_s2 = 11-1\n \nif pavan_travelled_s1 is None or pavan_travelled_s2 is None:\n print('neutral')\n\nelif pavan_travelled_s1 == pavan_travelled_s2:\n print('Entailment')\n\nelif pavan_travelled_s1 != pavan_travelled_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mira is making telescopes , each consisting of 2 lenses , 1 tube , and 1 eyepiece, \"statement 2\" :Mira is making telescopes , each consisting of 6 lenses , 1 tube , and 1 eyepiece, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mira_lenses_s1 = 2\nmira_lenses_s2 = 6\n \nif mira_lenses_s1 is None or mira_lenses_s2 is None:\n print('neutral')\n\nelif mira_lenses_s1 == mira_lenses_s2:\n print('Entailment')\n\nelif mira_lenses_s1 != mira_lenses_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John was thrice as old as Tom 6 yrs back, \"statement 2\" :John was thrice as old as Tom 5 yrs back, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_tom_age_difference_s1 = 6\njohn_tom_age_difference_s2 = 5\n \nif john_tom_age_difference_s1 is None or john_tom_age_difference_s2 is None:\n print('neutral')\n\nelif john_tom_age_difference_s1 == john_tom_age_difference_s2:\n print('Entailment')\n\nelif john_tom_age_difference_s1 != john_tom_age_difference_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How much loss would Indu has suffered had she given it to Bindu for less than 6 years at 4 % per annum simple interest ?, \"statement 2\" :How much loss would Indu has suffered had she given it to Bindu for 2 years at 4 % per annum simple interest ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "indu_loss_years_s1 = None\nindu_loss_years_s2 = 2\n \nif indu_loss_years_s1 is None or indu_loss_years_s2 is None:\n print('neutral')\n\nelif indu_loss_years_s1 == indu_loss_years_s2:\n print('Entailment')\n\nelif indu_loss_years_s1 != indu_loss_years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jane and Thomas are among the 6 people from which a committee of 3 people is to be selected, \"statement 2\" :Jane and Thomas are among the more than 6 people from which a committee of 3 people is to be selected, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jane_thomas_peoples_s1 = 6\njane_thomas_peoples_s2 = 6+1\n \nif jane_thomas_peoples_s1 is None or jane_thomas_peoples_s2 is None:\n print('neutral')\n\nelif jane_thomas_peoples_s1 == jane_thomas_peoples_s2:\n print('Entailment')\n\nelif jane_thomas_peoples_s1 != jane_thomas_peoples_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jason had 9.0 Pokemon cards and he gave 4.0 to his friends , \"statement 2\" :He has 5.0 Pokemon cards now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "jason_pokemon_card_s1 = 9-4\njason_pokemon_card_s2 = 5\n \nif jason_pokemon_card_s1 is None or jason_pokemon_card_s2 is None:\n print('neutral')\n\nelif jason_pokemon_card_s1 == jason_pokemon_card_s2:\n print('Entailment')\n\nelif jason_pokemon_card_s1 != jason_pokemon_card_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Raj is less than 42 yrs old in eight yrs from now , what is the age of Raj ' s mother and father ?, \"statement 2\" :If Raj is 32 yrs old in eight yrs from now , what is the age of Raj ' s mother and father ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "raj_age_difference_s1 = None\nraj_age_difference_s2 = 32\n \nif raj_age_difference_s1 is None or raj_age_difference_s2 is None:\n print('neutral')\n\nelif raj_age_difference_s1 == raj_age_difference_s2:\n print('Entailment')\n\nelif raj_age_difference_s1 != raj_age_difference_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mike buys 3 cartons of eggs at the store, \"statement 2\" :Mike buys less than 8 cartons of eggs at the store, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "eggs_cartons_s1 = 3\neggs_cartons_s2 = 8\n \nif eggs_cartons_s1 is None or eggs_cartons_s2 is None:\n print('neutral')\n\nelif eggs_cartons_s1 < eggs_cartons_s2:\n print('Entailment')\n\nelif eggs_cartons_s1 != eggs_cartons_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John ' s Bank ' s saving amount is decreased 20 % due to loan payment and current balance is Rs, \"statement 2\" :John ' s Bank ' s saving amount is decreased 70 % due to loan payment and current balance is Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_amount_decreased_s1 = 20\njohn_amount_decreased_s2 = 70\n \nif john_amount_decreased_s1 is None or john_amount_decreased_s2 is None:\n print('neutral')\n\nelif john_amount_decreased_s1 == john_amount_decreased_s2:\n print('Entailment')\n\nelif john_amount_decreased_s1 != john_amount_decreased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Jadeja paid a total of $ 133 , excluding sales tax , to rent the tool , for how many hours did she rent it ?, \"statement 2\" :If Jadeja paid a total of $ 233 , excluding sales tax , to rent the tool , for how many hours did she rent it ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jadega_paid_s1 = 133\njadega_paid_s2 = 233\n \nif jadega_paid_s1 is None or jadega_paid_s2 is None:\n print('neutral')\n\nelif jadega_paid_s1 == jadega_paid_s2:\n print('Entailment')\n\nelif jadega_paid_s1 != jadega_paid_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In Winchard ' s company 60 % of the employees earn less than $ 50,000 a year , 60 % of the employees earn more than $ 40,000 a year , 11 % of the employees earn $ 43,000 a year and 5 % of the employees earn $ 49,000 a year, \"statement 2\" :In Winchard ' s company more than 20 % of the employees earn less than $ 50,000 a year , 60 % of the employees earn more than $ 40,000 a year , 11 % of the employees earn $ 43,000 a year and 5 % of the employees earn $ 49,000 a year, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "employees_percent_s1 = 60\nemployees_percent_s2 = 60\n \nif employees_percent_s1 is None or employees_percent_s2 is None:\n print('neutral')\n\nelif employees_percent_s1 == employees_percent_s2:\n print('Entailment')\n\nelif employees_percent_s1 != employees_percent_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Susan weighs less than 62 pounds more than Anna does , and together they weigh a total of 162 pounds, \"statement 2\" :Susan weighs 12 pounds more than Anna does , and together they weigh a total of 162 pounds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "susannnn_weighs_s1 = None\nsusannnn_weighs_s2 = 12\n \nif susannnn_weighs_s1 is None or susannnn_weighs_s2 is None:\n print('neutral')\n\nelif susannnn_weighs_s1 == susannnn_weighs_s2:\n print('Entailment')\n\nelif susannnn_weighs_s1 != susannnn_weighs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a certain province in France there are 15 cities, \"statement 2\" :In a certain province in France there are less than 25 cities, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "frace_cities_s1 = 15\nfrace_cities_s2 = 25\n \nif frace_cities_s1 is None or frace_cities_s2 is None:\n print('neutral')\n\nelif frace_cities_s1 < frace_cities_s2:\n print('Entailment')\n\nelif frace_cities_s1 != frace_cities_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Melanie had 7.0 dimes in her bank and she gave her dad 8.0 dimes, and her mother gave her 4.0 dimes , \"statement 2\" :Melanie has 5.0 dimes now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "melaine_dimes_s1 = 7+4-8\nmelaine_dimes_s2 = 5\n \nif melaine_dimes_s1 is None or melaine_dimes_s2 is None:\n print('neutral')\n\nelif melaine_dimes_s1 == melaine_dimes_s2:\n print('Entailment')\n\nelif melaine_dimes_s1 != melaine_dimes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the average speed of the whole journey was less than 76 mph , then what is Tom ' s speed driving from B to C in miles per hour ?, \"statement 2\" :If the average speed of the whole journey was 36 mph , then what is Tom ' s speed driving from B to C in miles per hour ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "journey_average_speed_s1 = None\njourney_average_speed_s2 = 36\n \nif journey_average_speed_s1 is None or journey_average_speed_s2 is None:\n print('neutral')\n\nelif journey_average_speed_s1 == journey_average_speed_s2:\n print('Entailment')\n\nelif journey_average_speed_s1 != journey_average_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Meg and Bob are among the more than 3 participants in a cycling race, \"statement 2\" :Meg and Bob are among the 4 participants in a cycling race, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "meg_bob_participants_s1 = None\nmeg_bob_participants_s2 = 4\n \nif meg_bob_participants_s1 is None or meg_bob_participants_s2 is None:\n print('neutral')\n\nelif meg_bob_participants_s1 == meg_bob_participants_s2:\n print('Entailment')\n\nelif meg_bob_participants_s1 != meg_bob_participants_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The United Nations estimates that 60 percent of the people it needs to reach with emergency assistance live in areas controlled by Al-Shabaab ., \"statement 2\" :U.N. estimates 60 percent of people who need aid live in militant-controlled areas, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_need_assistance_s1 = 60\npeople_need_assistance_s2 = 60\n \nif people_need_assistance_s1 is None or people_need_assistance_s2 is None:\n print('neutral')\n\nelif people_need_assistance_s1 == people_need_assistance_s2:\n print('Entailment')\n\nelif people_need_assistance_s1 != people_need_assistance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If it takes Darcy a total of 2 more minutes to commute to work by walking than it takes her to commute to work by riding the train , what is the value of x ?, \"statement 2\" :If it takes Darcy a total of less than 6 more minutes to commute to work by walking than it takes her to commute to work by riding the train , what is the value of x ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "commte_work_s1 = 2\ncommte_work_s2 = 6\n \nif commte_work_s1 is None or commte_work_s2 is None:\n print('neutral')\n\nelif commte_work_s1 < commte_work_s2:\n print('Entailment')\n\nelif commte_work_s1 != commte_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Lionel ' s speed was 3 miles per hour and Walt ' s 4 miles per hour , how many miles had Lionel walked when he met Walt ?, \"statement 2\" :If Lionel ' s speed was less than 4 miles per hour and Walt ' s 4 miles per hour , how many miles had Lionel walked when he met Walt ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "lionel_speed_s1 = 3\nlionel_speed_s2 = 4\n \nif lionel_speed_s1 is None or lionel_speed_s2 is None:\n print('neutral')\n\nelif lionel_speed_s1 < lionel_speed_s2:\n print('Entailment')\n\nelif lionel_speed_s1 != lionel_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": One hour after Matthew started waking from e to y , a distance of 45 km , Johnny started walking along the same road from y to e, \"statement 2\" :One hour after Matthew started waking from e to y , a distance of less than 45 km , Johnny started walking along the same road from y to e, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "walking_distance_s1 = 45\nwalking_distance_s2 = 45-1\n \nif walking_distance_s1 is None or walking_distance_s2 is None:\n print('neutral')\n\nelif walking_distance_s1 < walking_distance_s2:\n print('Entailment')\n\nelif walking_distance_s1 != walking_distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained 73 , 69 , 92 , 64 and 82 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained more than 53 , 69 , 92 , 64 and 82 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dacid_obtained_s1 = 73 + 69 + 92 + 64 + 82\ndacid_obtained_s2 = 53 + 69 + 92 + 64 + 82\n \nif dacid_obtained_s1 is None or dacid_obtained_s2 is None:\n print('neutral')\n\nelif dacid_obtained_s1 > dacid_obtained_s2:\n print('Entailment')\n\nelif dacid_obtained_s1 != dacid_obtained_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Australia , which has had no confirmed cases , was investigating 114 ., \"statement 2\" :Largest outbreak was in Mexico which had 156 confirmed cases, \"options: \" Entailment or neutral?", + "Output Program": [ + "cases_investigated_s1 = 114\ncases_investigated_s2 = None\n \nif cases_investigated_s1 is None or cases_investigated_s2 is None:\n print('neutral')\n\nelif cases_investigated_s1 > cases_investigated_s2:\n print('Entailment')\n\nelif cases_investigated_s1 != cases_investigated_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jason picked 46.0 pears and Keith picked 47.0 pears from the pear tree and Mike ate 12.0 of those pears , \"statement 2\" :They have 81.0 pears left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "pears_left_s1 = 46 + 47 - 12\npears_left_s2 = 81\n \nif pears_left_s1 is None or pears_left_s2 is None:\n print('neutral')\n\nelif pears_left_s1 == pears_left_s2:\n print('Entailment')\n\nelif pears_left_s1 != pears_left_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Beamon 's jump was a world record that eclipsed the previous record by 21 3/4 inches . The jump still stands as an Olympic record , and stood as a world record until Mike Powell leapt 29 ' 4 1/2 '' at the 1991 World Championships in Tokyo ., \"statement 2\" :2,45 m is the world record in the high jump ., \"options: \" Entailment or neutral?", + "Output Program": [ + "record_eclipsed_s1 = 21\nrecord_eclipsed_s2 = None\n \nif record_eclipsed_s1 is None or record_eclipsed_s2 is None:\n print('neutral')\n\nelif record_eclipsed_s1 == record_eclipsed_s2:\n print('Entailment')\n\nelif record_eclipsed_s1 != record_eclipsed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Molly ' s age in 18 years will be four times her age eighteen years ago, \"statement 2\" :Molly ' s age in more than 18 years will be four times her age eighteen years ago, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "molly_age_s1 = 18\nmolly_age_s2 = 18+1\n \nif molly_age_s1 is None or molly_age_s2 is None:\n print('neutral')\n\nelif molly_age_s1 == molly_age_s2:\n print('Entailment')\n\nelif molly_age_s1 != molly_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lindy runs at a constant speed of less than 50 feet per second from Christina to Jack , back to Christina , back to Jack , and so forth, \"statement 2\" :Lindy runs at a constant speed of 10 feet per second from Christina to Jack , back to Christina , back to Jack , and so forth, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "lindy_speed_s1 = None\nlindy_speed_s2 = 10\n \nif lindy_speed_s1 is None or lindy_speed_s2 is None:\n print('neutral')\n\nelif lindy_speed_s1 == lindy_speed_s2:\n print('Entailment')\n\nelif lindy_speed_s1 != lindy_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": An investor can sell her MicroTron stock for 36 $ per share and her Dynaco stock for 44 $ per share , If she sells 300 shares altogether , some of each stock , at an average price per share of 40 $ , how many shares of Dynaco stock has she sold ?, \"statement 2\" :An investor can sell her MicroTron stock for more than 36 $ per share and her Dynaco stock for 44 $ per share , If she sells 300 shares altogether , some of each stock , at an average price per share of 40 $ , how many shares of Dynaco stock has she sold ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "microtron_price_s1 = 36\nmicrotron_price_s2 = 36+1\n \nif microtron_price_s1 is None or microtron_price_s2 is None:\n print('neutral')\n\nelif microtron_price_s1 == microtron_price_s2:\n print('Entailment')\n\nelif microtron_price_s1 != microtron_price_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 5.0 flowers and 3.0 bees., \"statement 2\" :There are 0.0 fewer bees than flowers, \"options: \" Entailment or contradiction?", + "Output Program": [ + "more_bees_s1 = 5-3\nmore_bees_s2 = 0\n \nif more_bees_s1 is None or more_bees_s2 is None:\n print('neutral')\n\nelif more_bees_s1 == more_bees_s2:\n print('Entailment')\n\nelif more_bees_s1 != more_bees_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Melanie picked 7.0 plums and 4.0 oranges from the orchard and she gave 3.0 plums to Sam , \"statement 2\" :She has 8.0 plums now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "melaine_plums_s1 = 7-3\nmelaine_plums_s2 = 8\n \nif melaine_plums_s1 is None or melaine_plums_s2 is None:\n print('neutral')\n\nelif melaine_plums_s1 == melaine_plums_s2:\n print('Entailment')\n\nelif melaine_plums_s1 != melaine_plums_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Paul bought 6 pieces of chocolate candy and 4 pieces of caramel candy, and all the candies are put in 9 boxes, \"statement 2\" :2.3 candies were in each box, \"options: \" Entailment or contradiction?", + "Output Program": [ + "candies_box_s1 = 9/6\ncandies_box_s2 = 2.3\n \nif candies_box_s1 is None or candies_box_s2 is None:\n print('neutral')\n\nelif candies_box_s1 == candies_box_s2:\n print('Entailment')\n\nelif candies_box_s1 != candies_box_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a race , Mohan beats Sohan by 40 m and Sohan beats Rohan by 80 m, \"statement 2\" :In a race , Mohan beats Sohan by less than 40 m and Sohan beats Rohan by 80 m, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mohan_beats_sohan_s1 = 40\nmohan_beats_sohan_s2 = 40-1\n \nif mohan_beats_sohan_s1 is None or mohan_beats_sohan_s2 is None:\n print('neutral')\n\nelif mohan_beats_sohan_s1 == mohan_beats_sohan_s2:\n print('Entailment')\n\nelif mohan_beats_sohan_s1 != mohan_beats_sohan_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If she worked six 8 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"statement 2\" :If she worked six more than 8 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jill_worked_s1 = 8\njill_worked_s2 = 8+1\n \nif jill_worked_s1 is None or jill_worked_s2 is None:\n print('neutral')\n\nelif jill_worked_s1 == jill_worked_s2:\n print('Entailment')\n\nelif jill_worked_s1 != jill_worked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The junior ranger asked Christian to help him place 420.0 seedlings in packets, and every packet needs to contain 7.0 seeds, \"statement 2\" :They need 60.0 packets, \"options: \" Entailment or contradiction?", + "Output Program": [ + "seedlings_packet_s1 = 420/7\nseedlings_packet_s2 = 60\n \nif seedlings_packet_s1 is None or seedlings_packet_s2 is None:\n print('neutral')\n\nelif seedlings_packet_s1 == seedlings_packet_s2:\n print('Entailment')\n\nelif seedlings_packet_s1 != seedlings_packet_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": An Interior Ministry official said that nearly 100 other People 's Mujahedeen members and 45 police officers have been wounded ., \"statement 2\" :Interior Ministry : 100 exiled Iranians , 45 police officers have been wounded, \"options: \" Entailment or neutral?", + "Output Program": [ + "peoples_wounded_s1 = 100\npeoples_wounded_s2 = 100\n \nif peoples_wounded_s1 is None or peoples_wounded_s2 is None:\n print('neutral')\n\nelif peoples_wounded_s1 == peoples_wounded_s2:\n print('Entailment')\n\nelif peoples_wounded_s1 != peoples_wounded_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Kishore saved 10 % of his monthly salary, \"statement 2\" :Kishore saved less than 80 % of his monthly salary, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kishore_saved_s1 = 10\nkishore_saved_s2 = 80\n \nif kishore_saved_s1 is None or kishore_saved_s2 is None:\n print('neutral')\n\nelif kishore_saved_s1 < kishore_saved_s2:\n print('Entailment')\n\nelif kishore_saved_s1 != kishore_saved_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sam had 98.0 pennies in his bank and he spent 93.0 of his pennies , \"statement 2\" :He has 0.0 pennies now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "sam_pennies_s1 = 98-93\nsam_pennies_s2 = 0\n \nif sam_pennies_s1 is None or sam_pennies_s2 is None:\n print('neutral')\n\nelif sam_pennies_s1 == sam_pennies_s2:\n print('Entailment')\n\nelif sam_pennies_s1 != sam_pennies_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A circle of radius less than 30 inches has its center at the vertex C of an equilateral triangle ABC and passes through the other two vertices, \"statement 2\" :A circle of radius 10 inches has its center at the vertex C of an equilateral triangle ABC and passes through the other two vertices, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "circle_radius_s1 = None\ncircle_radius_s2 = 10\n \nif circle_radius_s1 is None or circle_radius_s2 is None:\n print('neutral')\n\nelif circle_radius_s1 == circle_radius_s2:\n print('Entailment')\n\nelif circle_radius_s1 != circle_radius_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 10 stations between Trichy and Chennai, \"statement 2\" :There are 50 stations between Trichy and Chennai, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_stations_s1 = 10\ntotal_stations_s2 = 50\n \nif total_stations_s1 is None or total_stations_s2 is None:\n print('neutral')\n\nelif total_stations_s1 == total_stations_s2:\n print('Entailment')\n\nelif total_stations_s1 != total_stations_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After the recall of defective by Telvin inc less than 4 years ago , its share price has since lost 12 %, \"statement 2\" :After the recall of defective by Telvin inc 2 years ago , its share price has since lost 12 %, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "telvin_defective_s1 = None\ntelvin_defective_s2 = 2\n \nif telvin_defective_s1 is None or telvin_defective_s2 is None:\n print('neutral')\n\nelif telvin_defective_s1 == telvin_defective_s2:\n print('Entailment')\n\nelif telvin_defective_s1 != telvin_defective_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Christine has 20 rs more than Siri, \"statement 2\" :Christine has more than 10 rs more than Siri, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "christine_rupees_s1 = 20\nchristine_rupees_s2 = 10\n \nif christine_rupees_s1 is None or christine_rupees_s2 is None:\n print('neutral')\n\nelif christine_rupees_s1 > christine_rupees_s2:\n print('Entailment')\n\nelif christine_rupees_s1 != christine_rupees_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 84.0 leaves and there are 139.0 ladybugs on each leaf, \"statement 2\" :11676.0 ladybugs are there in all, \"options: \" Entailment or contradiction?", + "Output Program": [ + "ladybugs_s1 = 84*139\nladybugs_s2 = 11676\n \nif ladybugs_s1 is None or ladybugs_s2 is None:\n print('neutral')\n\nelif ladybugs_s1 == ladybugs_s2:\n print('Entailment')\n\nelif ladybugs_s1 != ladybugs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": While Kiran playing all but 3 got destroyed, \"statement 2\" :While Kiran playing all but 8 got destroyed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kiran_destroyed_s1 = 3\nkiran_destroyed_s2 = 8\n \nif kiran_destroyed_s1 is None or kiran_destroyed_s2 is None:\n print('neutral')\n\nelif kiran_destroyed_s1 == kiran_destroyed_s2:\n print('Entailment')\n\nelif kiran_destroyed_s1 != kiran_destroyed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Elena purchased a total of 12 of these pens for $ 20.00 , how many brand X pens did she purchase ?, \"statement 2\" :If Elena purchased a total of less than 22 of these pens for $ 20.00 , how many brand X pens did she purchase ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pen_purchased_s1 = 12\npen_purchased_s2 = 22\n \nif pen_purchased_s1 is None or pen_purchased_s2 is None:\n print('neutral')\n\nelif pen_purchased_s1 < pen_purchased_s2:\n print('Entailment')\n\nelif pen_purchased_s1 != pen_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 6 friends go out to dinner at Outback Steakhouse, \"statement 2\" :more than 5 friends go out to dinner at Outback Steakhouse, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "friends_dinner_s1 = 6\nfriends_dinner_s2 = 5\n \nif friends_dinner_s1 is None or friends_dinner_s2 is None:\n print('neutral')\n\nelif friends_dinner_s1 > friends_dinner_s2:\n print('Entailment')\n\nelif friends_dinner_s1 != friends_dinner_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained 96 , 98 , 99 , 100 and 98 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained more than 76 , 98 , 99 , 100 and 98 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dacid_obtained_s1 = 96 + 98 + 99 + 100 + 98\ndacid_obtained_s2 = 76 + 98 + 99 + 100 + 98\n \nif dacid_obtained_s1 is None or dacid_obtained_s2 is None:\n print('neutral')\n\nelif dacid_obtained_s1 > dacid_obtained_s2:\n print('Entailment')\n\nelif dacid_obtained_s1 != dacid_obtained_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": With the help of Pavan , they completed the work in more than 5 days and earned Rs, \"statement 2\" :With the help of Pavan , they completed the work in 8 days and earned Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pavan_work_completed_s1 = None\npavan_work_completed_s2 = 8\n \nif pavan_work_completed_s1 is None or pavan_work_completed_s2 is None:\n print('neutral')\n\nelif pavan_work_completed_s1 > pavan_work_completed_s2:\n print('Entailment')\n\nelif pavan_work_completed_s1 != pavan_work_completed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a certain province in France there are 17 cities, \"statement 2\" :In a certain province in France there are 47 cities, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "france_cities_s1 = 17\nfrance_cities_s2 = 47\n \nif france_cities_s1 is None or france_cities_s2 is None:\n print('neutral')\n\nelif france_cities_s1 == france_cities_s2:\n print('Entailment')\n\nelif france_cities_s1 != france_cities_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary played the game , getting at least one score of each of less than 4 , 2 , 3 and 4 and never getting the same score in consecutive steps, \"statement 2\" :Mary played the game , getting at least one score of each of 1 , 2 , 3 and 4 and never getting the same score in consecutive steps, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mary_game_played_s1 = None\nmary_game_played_s2 = [1,2,3,4]\n \nif mary_game_played_s1 is None or mary_game_played_s2 is None:\n print('neutral')\n\nelif mary_game_played_s1 == mary_game_played_s2:\n print('Entailment')\n\nelif mary_game_played_s1 != mary_game_played_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If T = more than 1 / 9 * ( K - 32 ) , and if T = 75 , then what is the value of K ?, \"statement 2\" :If T = 5 / 9 * ( K - 32 ) , and if T = 75 , then what is the value of K ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "value_of_t_s1 = None\nvalue_of_t_s2 = 5/9\n \nif value_of_t_s1 is None or value_of_t_s2 is None:\n print('neutral')\n\nelif value_of_t_s1 == value_of_t_s2:\n print('Entailment')\n\nelif value_of_t_s1 != value_of_t_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": One passenger paid $ 100,000 for the experience , with the majority paying between $ 1,500 and $ 5,000 ., \"statement 2\" :One passenger paid $ 100,000 for the first Singapore to Sydney trip, \"options: \" Entailment or neutral?", + "Output Program": [ + "passenger_average_s1 = 1500\npassenger_average_s2 = None\n \nif passenger_average_s1 is None or passenger_average_s2 is None:\n print('neutral')\n\nelif passenger_average_s1 == passenger_average_s2:\n print('Entailment')\n\nelif passenger_average_s1 != passenger_average_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Claire has a total of 92 pets consisting of gerbils and hamsters only, \"statement 2\" :Claire has a total of more than 82 pets consisting of gerbils and hamsters only, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "claire_pet_s1 = 92\nclaire_pet_s2 = 82\n \nif claire_pet_s1 is None or claire_pet_s2 is None:\n print('neutral')\n\nelif claire_pet_s1 > claire_pet_s2:\n print('Entailment')\n\nelif claire_pet_s1 != claire_pet_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": James took a 3 - hour bike ride, \"statement 2\" :James took a more than 3 - hour bike ride, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "james_bike_ride_s1 = 3\njames_bike_ride_s2 = 3+1\n \nif james_bike_ride_s1 is None or james_bike_ride_s2 is None:\n print('neutral')\n\nelif james_bike_ride_s1 == james_bike_ride_s2:\n print('Entailment')\n\nelif james_bike_ride_s1 != james_bike_ride_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Fred and Sam are standing 50 miles apart and they start walking in a straight line toward each other at the same time, \"statement 2\" :Fred and Sam are standing more than 50 miles apart and they start walking in a straight line toward each other at the same time, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "fred_sam_distance_s1 = 50\nfred_sam_distance_s2 = 50+1\n \nif fred_sam_distance_s1 is None or fred_sam_distance_s2 is None:\n print('neutral')\n\nelif fred_sam_distance_s1 == fred_sam_distance_s2:\n print('Entailment')\n\nelif fred_sam_distance_s1 != fred_sam_distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Kiran travels from A to B by car and returns from B to A by cycle in 7 hours, \"statement 2\" :Kiran travels from A to B by car and returns from B to A by cycle in more than 5 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kiran_travels_s1 = 7\nkiran_travels_s2 = 5\n \nif kiran_travels_s1 is None or kiran_travels_s2 is None:\n print('neutral')\n\nelif kiran_travels_s1 > kiran_travels_s2:\n print('Entailment')\n\nelif kiran_travels_s1 != kiran_travels_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jack and Christina are standing more than 260 feet apart on a level surface, \"statement 2\" :Jack and Christina are standing 360 feet apart on a level surface, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jack_christina_distance_s1 = None\njack_christina_distance_s2 = 360\n \nif jack_christina_distance_s1 is None or jack_christina_distance_s2 is None:\n print('neutral')\n\nelif jack_christina_distance_s1 > jack_christina_distance_s2:\n print('Entailment')\n\nelif jack_christina_distance_s1 != jack_christina_distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ramzi walked for 3 days, \"statement 2\" :Ramzi walked for less than 6 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ramzi_walked_s1 = 3\nramzi_walked_s2 = 6\n \nif ramzi_walked_s1 is None or ramzi_walked_s2 is None:\n print('neutral')\n\nelif ramzi_walked_s1 < ramzi_walked_s2:\n print('Entailment')\n\nelif ramzi_walked_s1 != ramzi_walked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jason is 4 times older than Bob at present, \"statement 2\" :Jason is more than 1 times older than Bob at present, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jason_older_s1 = 4\njason_older_s2 = 1\n \nif jason_older_s1 is None or jason_older_s2 is None:\n print('neutral')\n\nelif jason_older_s1 > jason_older_s2:\n print('Entailment')\n\nelif jason_older_s1 != jason_older_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jack walks in a straight line toward Christina at a constant speed of more than 1 feet per second and Christina walks in a straight line toward Jack at a constant speed of 3 feet per second, \"statement 2\" :Jack walks in a straight line toward Christina at a constant speed of 3 feet per second and Christina walks in a straight line toward Jack at a constant speed of 3 feet per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jack_speed_s1 = None\njack_speed_s2 = 3\n \nif jack_speed_s1 is None or jack_speed_s2 is None:\n print('neutral')\n\nelif jack_speed_s1 == jack_speed_s2:\n print('Entailment')\n\nelif jack_speed_s1 != jack_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mike has 87.0 baseball cards and Sam gave Mike 13.0 more baseball cards, \"statement 2\" :Mike has 100.0 baseball cards now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "mike_baseball_s1 = 87+13\nmike_baseball_s2 = 100\n \nif mike_baseball_s1 is None or mike_baseball_s2 is None:\n print('neutral')\n\nelif mike_baseball_s1 == mike_baseball_s2:\n print('Entailment')\n\nelif mike_baseball_s1 != mike_baseball_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Store Z : $ 90 , a 10 % sales tax , and $ 10 rebate after tax\nIsaac can purchase a certain item in four different ways , as shown in the table, \"statement 2\" :Store Z : $ more than 50 , a 10 % sales tax , and $ 10 rebate after tax Isaac can purchase a certain item in four different ways , as shown in the table, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sales_tax_s1 = 90\nsales_tax_s2 = 50\n \nif sales_tax_s1 is None or sales_tax_s2 is None:\n print('neutral')\n\nelif sales_tax_s1 > sales_tax_s2:\n print('Entailment')\n\nelif sales_tax_s1 != sales_tax_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 5887 is divided between Shyam and Ram , such that Shyam ' s share at the end of 9 years is equal to Ram ' s share at the end of 11 years , compounded annually at the rate of 5 %, \"statement 2\" :7887 is divided between Shyam and Ram , such that Shyam ' s share at the end of 9 years is equal to Ram ' s share at the end of 11 years , compounded annually at the rate of 5 %, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shyam_ram_divided_s1 = 5887\nshyam_ram_divided_s2 = 7887\n \nif shyam_ram_divided_s1 is None or shyam_ram_divided_s2 is None:\n print('neutral')\n\nelif shyam_ram_divided_s1 == shyam_ram_divided_s2:\n print('Entailment')\n\nelif shyam_ram_divided_s1 != shyam_ram_divided_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Zack has 3 red fish , 5 yellow fish and 7 green fish, \"statement 2\" :Zack has less than 4 red fish , 5 yellow fish and 7 green fish, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jack_red_fish_s1 = 3\njack_red_fish_s2 = 4\n \nif jack_red_fish_s1 is None or jack_red_fish_s2 is None:\n print('neutral')\n\nelif jack_red_fish_s1 < jack_red_fish_s2:\n print('Entailment')\n\nelif jack_red_fish_s1 != jack_red_fish_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 15 stations between Hyderabad and Bangalore, \"statement 2\" :There are less than 15 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_stations_s1 = 15\ntotal_stations_s2 = 15-1\n \nif total_stations_s1 is None or total_stations_s2 is None:\n print('neutral')\n\nelif total_stations_s1 == total_stations_s2:\n print('Entailment')\n\nelif total_stations_s1 != total_stations_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John has less than 30 pairs of matched socks, \"statement 2\" :John has 10 pairs of matched socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "socks_pair_s1 = None\nsocks_pair_s2 = 10\n \nif socks_pair_s1 is None or socks_pair_s2 is None:\n print('neutral')\n\nelif socks_pair_s1 == socks_pair_s2:\n print('Entailment')\n\nelif socks_pair_s1 != socks_pair_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the boys at Jones Elementary make up 60 % of the total school population of x students , what is x ?, \"statement 2\" :If the boys at Jones Elementary make up more than 40 % of the total school population of x students , what is x ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jones_boys_s1 = 60\njones_boys_s2 = 40\n \nif jones_boys_s1 is None or jones_boys_s2 is None:\n print('neutral')\n\nelif jones_boys_s1 > jones_boys_s2:\n print('Entailment')\n\nelif jones_boys_s1 != jones_boys_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jason has 676.0 Pokemon cards and Alyssa bought Jason 224.0 new Pokemon cards , \"statement 2\" :Jason has 898.0 Pokemon cards now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "jason_pokemon_card_s1 = 676+224\njason_pokemon_card_s2 = 898\n \nif jason_pokemon_card_s1 is None or jason_pokemon_card_s2 is None:\n print('neutral')\n\nelif jason_pokemon_card_s1 == jason_pokemon_card_s2:\n print('Entailment')\n\nelif jason_pokemon_card_s1 != jason_pokemon_card_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Last week James worked a total of more than 11 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"statement 2\" :Last week James worked a total of 41 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "james_worked_s1 = None\njames_worked_s2 = 41\n \nif james_worked_s1 is None or james_worked_s2 is None:\n print('neutral')\n\nelif james_worked_s1 == james_worked_s2:\n print('Entailment')\n\nelif james_worked_s1 != james_worked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Isabel bought 900.0 pieces of paper and she used 156.0 pieces of the paper, \"statement 2\" :She has 745.0 pieces of paper left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "isabel_paper_s1 = 900-156\nisabel_paper_s2 = 745\n \nif isabel_paper_s1 is None or isabel_paper_s2 is None:\n print('neutral')\n\nelif isabel_paper_s1 == isabel_paper_s2:\n print('Entailment')\n\nelif isabel_paper_s1 != isabel_paper_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In Najaf , at least one person was killed and 10 were wounded in a bombing , the ministry said ., \"statement 2\" :A car bomb in another Baghdad neighborhood kills at least one person, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_wounded_s1 = None\npeople_wounded_s2 = 10\n\nif people_wounded_s1 is None or people_wounded_s2 is None:\n print('neutral')\n\nelif people_wounded_s1 == people_wounded_s2:\n print('Entailment')\n\nelif people_wounded_s1 != people_wounded_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In fact , Wernick had only seen one zombie film before writing this script ., \"statement 2\" :One of film 's writers had seen just one zombie film in his life, \"options: \" Entailment or neutral?", + "Output Program": [ + "zombie_film_s1 = 1\nzombie_film_s2 = 1\n \nif zombie_film_s1 is None or zombie_film_s2 is None:\n print('neutral')\n\nelif zombie_film_s1 == zombie_film_s2:\n print('Entailment')\n\nelif zombie_film_s1 != zombie_film_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is more than 2 : 3 , After 6 Years Rahul age will be 26 years, \"statement 2\" :Ratio between Rahul and Deepak is 4 : 3 , After 6 Years Rahul age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rahul_deepak_ratio_s1 = None\nrahul_deepak_ratio_s2 = 4/3\n \nif rahul_deepak_ratio_s1 is None or rahul_deepak_ratio_s2 is None:\n print('neutral')\n\nelif rahul_deepak_ratio_s1 == rahul_deepak_ratio_s2:\n print('Entailment')\n\nelif rahul_deepak_ratio_s1 != rahul_deepak_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John paid a 15 % tip over the original price of the dish , while Jane paid the tip over the discounted price for the coupon, \"statement 2\" :John paid a 55 % tip over the original price of the dish , while Jane paid the tip over the discounted price for the coupon, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_paid_s1 = 15\njohn_paid_s2 = 55\n \nif john_paid_s1 is None or john_paid_s2 is None:\n print('neutral')\n\nelif john_paid_s1 == john_paid_s2:\n print('Entailment')\n\nelif john_paid_s1 != john_paid_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 4.0 squirrels in a tree with 2.0 nuts., \"statement 2\" :There are 5.0 more squirrels than nuts, \"options: \" Entailment or contradiction?", + "Output Program": [ + "squirrels_s1 = 4-2\nsquirrels_s2 = 5\n \nif squirrels_s1 is None or squirrels_s2 is None:\n print('neutral')\n\nelif squirrels_s1 == squirrels_s2:\n print('Entailment')\n\nelif squirrels_s1 != squirrels_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Manchester City face an FA Cup replay after the club 's former manager Sven Eriksson led second division Leicester to a 2-2 home draw ., \"statement 2\" :Manchester City face a replay after drawing 2-2 at second division Leicester, \"options: \" Entailment or neutral?", + "Output Program": [ + "leicester_lead_s1 = 2/2\nleicester_lead_s2 = 2/2\n \nif leicester_lead_s1 is None or leicester_lead_s2 is None:\n print('neutral')\n\nelif leicester_lead_s1 == leicester_lead_s2:\n print('Entailment')\n\nelif leicester_lead_s1 != leicester_lead_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sam earns $ 6.00 per hour for the first 60 hours he works per week , and twice this rate for overtime, \"statement 2\" :Sam earns $ 6.00 per hour for the first 20 hours he works per week , and twice this rate for overtime, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "james_works_s1 = 60\njames_works_s2 = 20\n\nif james_works_s1 is None or james_works_s2 is None:\n print('neutral')\n\nelif james_works_s1 == james_works_s2:\n print('Entailment')\n\nelif james_works_s1 != james_works_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At least 23 people were killed and 35 wounded in the explosion , he said ., \"statement 2\" :Police : The deadliest blast killed 23 people in Rawalpindi, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_wounded_s1 = 35\npeople_wounded_s2 = None\n \nif people_wounded_s1 is None or people_wounded_s2 is None:\n print('neutral')\n\nelif people_wounded_s1 == people_wounded_s2:\n print('Entailment')\n\nelif people_wounded_s1 != people_wounded_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Benny picked 2.0 apples, and Dan picked 9.0 apples from the apple tree ., \"statement 2\" :10.0 apples were picked in total, \"options: \" Entailment or contradiction?", + "Output Program": [ + "apples_picked_s1 = 2+9\napples_picked_s2 = 10\n \nif apples_picked_s1 is None or apples_picked_s2 is None:\n print('neutral')\n\nelif apples_picked_s1 == apples_picked_s2:\n print('Entailment')\n\nelif apples_picked_s1 != apples_picked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He works at it for less than 80 days and then Rajesh finished it in 30 days, \"statement 2\" :He works at it for 20 days and then Rajesh finished it in 30 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rajesh_works_s1 = None\nrajesh_works_s2 = 20\n \nif rajesh_works_s1 is None or rajesh_works_s2 is None:\n print('neutral')\n\nelif rajesh_works_s1 == rajesh_works_s2:\n print('Entailment')\n\nelif rajesh_works_s1 != rajesh_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If bonds are sold in $ 50 or $ 100 denominations only , which of the following CAN NOT be the number of US saving bonds that Robert purchased ?, \"statement 2\" :If bonds are sold in $ more than 40 or $ 100 denominations only , which of the following CAN NOT be the number of US saving bonds that Robert purchased ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bonds_sold_s1 = 40\nbonds_sold_s2 = 50\n \nif bonds_sold_s1 is None or bonds_sold_s2 is None:\n print('neutral')\n\nelif bonds_sold_s1 > bonds_sold_s2:\n print('Entailment')\n\nelif bonds_sold_s1 != bonds_sold_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At present , the ratio between the ages of Arun and Deepak is 4 : 3, \"statement 2\" :At present , the ratio between the ages of Arun and Deepak is more than 4 : 3, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "arun_deepak_age_ratio_s1 = 4/3\narun_deepak_age_ratio_s2 = (4/3)+0.1\n \nif arun_deepak_age_ratio_s1 is None or arun_deepak_age_ratio_s2 is None:\n print('neutral')\n\nelif arun_deepak_age_ratio_s1 > arun_deepak_age_ratio_s2:\n print('Entailment')\n\nelif arun_deepak_age_ratio_s1 != arun_deepak_age_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In England 's Premier League , unbeaten Newcastle moved up to fourth place despite being held 0-0 away to promoted Queen 's Park Rangers ., \"statement 2\" :Unbeaten Newcastle move up to fourth place in England after 0-0 draw at promoted QPR, \"options: \" Entailment or neutral?", + "Output Program": [ + "newcatle_held_s1 = 0\nnewcatle_held_s2 = 0\n \nif newcatle_held_s1 is None or newcatle_held_s2 is None:\n print('neutral')\n\nelif newcatle_held_s1 == newcatle_held_s2:\n print('Entailment')\n\nelif newcatle_held_s1 != newcatle_held_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Susan made a block with small cubes of 5 cubic cm volume to make a block 7 small cubes long , 7 small cubes wide and 6 small cubes deep, \"statement 2\" :Susan made a block with small cubes of 1 cubic cm volume to make a block 7 small cubes long , 7 small cubes wide and 6 small cubes deep, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cubic_cm_s1 = 5\ncubic_cm_s2 = 1\n \nif cubic_cm_s1 is None or cubic_cm_s2 is None:\n print('neutral')\n\nelif cubic_cm_s1 == cubic_cm_s2:\n print('Entailment')\n\nelif cubic_cm_s1 != cubic_cm_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In 4 years John will be twice as old as Frank, \"statement 2\" :In 8 years John will be twice as old as Frank, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "future_years_s1 = 4\nfuture_years_s2 = 8\n \nif future_years_s1 is None or future_years_s2 is None:\n print('neutral')\n\nelif future_years_s1 == future_years_s2:\n print('Entailment')\n\nelif future_years_s1 != future_years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ratio of men to women in the Snyder community choir is 4 to 7, \"statement 2\" :The ratio of men to women in the Snyder community choir is more than 2 to 7, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "snyder_ratio_s1 = 4/7\nsnyder_ratio_s2 = 2/7\n \nif snyder_ratio_s1 is None or snyder_ratio_s2 is None:\n print('neutral')\n\nelif snyder_ratio_s1 > snyder_ratio_s2:\n print('Entailment')\n\nelif snyder_ratio_s1 != snyder_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Adam sat with his friends in the Chinnaswamy stadium at Madurai to watch the 100 metres running race organized by the Asian athletics Association, \"statement 2\" :Adam sat with his friends in the Chinnaswamy stadium at Madurai to watch the 400 metres running race organized by the Asian athletics Association, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "running_race_s1 = 100\nrunning_race_s2 = 400\n \nif running_race_s1 is None or running_race_s2 is None:\n print('neutral')\n\nelif running_race_s1 > running_race_s2:\n print('Entailment')\n\nelif running_race_s1 != running_race_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bob had x number of sweets and wanted to share it with his 6 friends, \"statement 2\" :Bob had x number of sweets and wanted to share it with his 1 friends, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sweet_friends_s1 = 6\nsweet_friends_s2 = 1\n \nif sweet_friends_s1 is None or sweet_friends_s2 is None:\n print('neutral')\n\nelif sweet_friends_s1 > sweet_friends_s2:\n print('Entailment')\n\nelif sweet_friends_s1 != sweet_friends_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": It is rumored that in a match between 2 teams A and B , Paul picks A with the same probability as A \u2019 s chances of winning, \"statement 2\" :It is rumored that in a match between more than 2 teams A and B , Paul picks A with the same probability as A \u2019 s chances of winning, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_teams_s1 = 2\ntotal_teams_s2 = 2+1\n \nif total_teams_s1 is None or total_teams_s2 is None:\n print('neutral')\n\nelif total_teams_s1 > total_teams_s2:\n print('Entailment')\n\nelif total_teams_s1 != total_teams_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": BP has received 3,400 claims for lost income and damages and 295 of those claims have been paid , at a price of $ 3.5 million , Nagel said ., \"statement 2\" :BP hit with 3,400 claims for lost income and damages ; 295 paid , to tune of $ 3.5 million, \"options: \" Entailment or neutral?", + "Output Program": [ + "bp_received_s1 = 3400\nbp_received_s2 = 3400\n \nif bp_received_s1 is None or bp_received_s2 is None:\n print('neutral')\n\nelif bp_received_s1 > bp_received_s2:\n print('Entailment')\n\nelif bp_received_s1 != bp_received_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A Belgian policeman posing as an art dealer in Brussels arrested three Swedes ., \"statement 2\" :Three Swedes were arrested in a Belgian police sting operation ., \"options: \" Entailment or neutral?", + "Output Program": [ + "swedes_arrested_s1 = 3\nswedes_arrested_s2 = 3\n \nif swedes_arrested_s1 is None or swedes_arrested_s2 is None:\n print('neutral')\n\nelif swedes_arrested_s1 == swedes_arrested_s2:\n print('Entailment')\n\nelif swedes_arrested_s1 != swedes_arrested_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Colin has an app on his phone that generates a random integer betwen less than 6 and 10, \"statement 2\" :Colin has an app on his phone that generates a random integer betwen 1 and 10, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "integer_starts_s1 = None\ninteger_starts_s2 = 1\n \nif integer_starts_s1 is None or integer_starts_s2 is None:\n print('neutral')\n\nelif integer_starts_s1 == integer_starts_s2:\n print('Entailment')\n\nelif integer_starts_s1 != integer_starts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many seconds does Sandy take to cover a distance of 700 meters , if Sandy runs at a speed of 18 km / hr ?, \"statement 2\" :How many seconds does Sandy take to cover a distance of 500 meters , if Sandy runs at a speed of 18 km / hr ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_cvers_s1 = 700\nsandy_cvers_s2 = 500\n \nif sandy_cvers_s1 is None or sandy_cvers_s2 is None:\n print('neutral')\n\nelif sandy_cvers_s1 == sandy_cvers_s2:\n print('Entailment')\n\nelif sandy_cvers_s1 != sandy_cvers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bhanu spends less than 50 % of his income on petrol on scooter 21 % of the remaining on house rent and the balance on food, \"statement 2\" :Bhanu spends 30 % of his income on petrol on scooter 21 % of the remaining on house rent and the balance on food, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bhanu_spends_s1 = None\nbhanu_spends_s2 = 30\n \nif bhanu_spends_s1 is None or bhanu_spends_s2 is None:\n print('neutral')\n\nelif bhanu_spends_s1 == bhanu_spends_s2:\n print('Entailment')\n\nelif bhanu_spends_s1 != bhanu_spends_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Lionel ' s speed was 3 miles per hour and Walt ' s 3 miles per hour , how many miles had Lionel walked when he met Walt ?, \"statement 2\" :If Lionel ' s speed was more than 3 miles per hour and Walt ' s 3 miles per hour , how many miles had Lionel walked when he met Walt ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "lionel_speed_s1 = 3\nlionel_speed_s2 = 3+1\n \nif lionel_speed_s1 is None or lionel_speed_s2 is None:\n print('neutral')\n\nelif lionel_speed_s1 == lionel_speed_s2:\n print('Entailment')\n\nelif lionel_speed_s1 != lionel_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In an exam , Amar scored more than 14 percent , Bhavan scored 36 percent and Chetan 44 percent, \"statement 2\" :In an exam , Amar scored 64 percent , Bhavan scored 36 percent and Chetan 44 percent, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amar_scored_s1 = None\namar_scored_s2 = 64\n \nif amar_scored_s1 is None or amar_scored_s2 is None:\n print('neutral')\n\nelif amar_scored_s1 == amar_scored_s2:\n print('Entailment')\n\nelif amar_scored_s1 != amar_scored_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At a certain automobile dealership that sells only Tajima ' s and Franks , the number of non hybrid Tajima ' s is less than 65 less than 3 times the number of hybrid Tajima ' s, \"statement 2\" :At a certain automobile dealership that sells only Tajima ' s and Franks , the number of non hybrid Tajima ' s is 35 less than 3 times the number of hybrid Tajima ' s, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "non_hybrid_tajima_s1 = None\nnon_hybrid_tajima_s2 = 35\n \nif non_hybrid_tajima_s1 is None or non_hybrid_tajima_s2 is None:\n print('neutral')\n\nelif non_hybrid_tajima_s1 == non_hybrid_tajima_s2:\n print('Entailment')\n\nelif non_hybrid_tajima_s1 != non_hybrid_tajima_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many jelly beans must Dante give to Aaron to ensure that no child has more than 1 fewer jelly beans than any other child ?, \"statement 2\" :How many jelly beans must Dante give to Aaron to ensure that no child has more than less than 4 fewer jelly beans than any other child ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jelly_beans_s1 = 1\njelly_beans_s2 = 4\n \nif jelly_beans_s1 is None or jelly_beans_s2 is None:\n print('neutral')\n\nelif jelly_beans_s1 < jelly_beans_s2:\n print('Entailment')\n\nelif jelly_beans_s1 != jelly_beans_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Isha\u2019s pencil is 12.0 cubes long, and she gets another pencil that is 12.0 cubes long, \"statement 2\" :Both pencils are 24.0 cubes long, \"options: \" Entailment or contradiction?", + "Output Program": [ + "cubes_long_s1 = 12+12\ncubes_long_s2 = 24\n \nif cubes_long_s1 is None or cubes_long_s2 is None:\n print('neutral')\n\nelif cubes_long_s1 == cubes_long_s2:\n print('Entailment')\n\nelif cubes_long_s1 != cubes_long_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": less than 85 % people of a village in Sri Lanka died by bombardment , 25 % of the remainder left the village on account of fear, \"statement 2\" :15 % people of a village in Sri Lanka died by bombardment , 25 % of the remainder left the village on account of fear, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_bombardment_s1 = None\npeople_bombardment_s2 = 25\n \nif people_bombardment_s1 is None or people_bombardment_s2 is None:\n print('neutral')\n\nelif people_bombardment_s1 == people_bombardment_s2:\n print('Entailment')\n\nelif people_bombardment_s1 != people_bombardment_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Linda has 34.0 candies and she gave Chloe 28.0 candies, \"statement 2\" :Linda has 2.0 candies left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "linda_candies_s1 = 34-28\nlinda_candies_s2 = 2\n \nif linda_candies_s1 is None or linda_candies_s2 is None:\n print('neutral')\n\nelif linda_candies_s1 == linda_candies_s2:\n print('Entailment')\n\nelif linda_candies_s1 != linda_candies_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained more than 76 , 98 , 99 , 100 and 98 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained 96 , 98 , 99 , 100 and 98 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dacid_obtained_s1 = None\ndacid_obtained_s2 = 96 + 98 + 99 + 100 + 98\n \nif dacid_obtained_s1 is None or dacid_obtained_s2 is None:\n print('neutral')\n\nelif dacid_obtained_s1 == dacid_obtained_s2:\n print('Entailment')\n\nelif dacid_obtained_s1 != dacid_obtained_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many oranges must Mary put back so that the average price of the pieces of fruit that she keeps is 44 \u00a2 ?, \"statement 2\" :How many oranges must Mary put back so that the average price of the pieces of fruit that she keeps is less than 44 \u00a2 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "fruit_average_price_s1 = 44\nfruit_average_price_s2 = 44-1\n \nif fruit_average_price_s1 is None or fruit_average_price_s2 is None:\n print('neutral')\n\nelif fruit_average_price_s1 == fruit_average_price_s2:\n print('Entailment')\n\nelif fruit_average_price_s1 != fruit_average_price_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If neha is less than 60 Both Sonali and priyanka is 15 Both sadaf and tanu is 10 . how much is prinka by the same system ?, \"statement 2\" :If neha is 10\nBoth Sonali and priyanka is 15\nBoth sadaf and tanu is 10 .\nhow much is prinka by the same system ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "neha_s1 = None\nneha_s2 = 10\n \nif neha_s1 is None or neha_s2 is None:\n print('neutral')\n\nelif neha_s1 == neha_s2:\n print('Entailment')\n\nelif neha_s1 != neha_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Each CD rack holds 8.0 CDs and a shelf can hold 4.0 racks, \"statement 2\" :32.0 total CDs can fit on the shelf, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_cd_s1 = 8*4\ntotal_cd_s2 = 32\n \nif total_cd_s1 is None or total_cd_s2 is None:\n print('neutral')\n\nelif total_cd_s1 == total_cd_s2:\n print('Entailment')\n\nelif total_cd_s1 != total_cd_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In addition to the dead , about two dozen students were badly injured , according to police ., \"statement 2\" :At least 25 other students were badly injured, \"options: \" Entailment or neutral?", + "Output Program": [ + "students_injured_s1 = None\nstudents_injured_s2 = 25\n \nif students_injured_s1 is None or students_injured_s2 is None:\n print('neutral')\n\nelif students_injured_s1 == students_injured_s2:\n print('Entailment')\n\nelif students_injured_s1 != students_injured_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were no reports of serious injuries , but there were at least eight arrests , witnesses said ., \"statement 2\" :At least 8 reported arrested , but no reports of serious injuries, \"options: \" Entailment or neutral?", + "Output Program": [ + "total_arrests_s1 = 8\ntotal_arrests_s2 = 8\n \nif total_arrests_s1 is None or total_arrests_s2 is None:\n print('neutral')\n\nelif total_arrests_s1 == total_arrests_s2:\n print('Entailment')\n\nelif total_arrests_s1 != total_arrests_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shawn plants a garden 25 feet by 24 feet, \"statement 2\" :Shawn plants a garden more than 25 feet by 24 feet, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "garden_size_s1 = 25\ngarden_size_s2 = 25+1\n \nif garden_size_s1 is None or garden_size_s2 is None:\n print('neutral')\n\nelif garden_size_s1 == garden_size_s2:\n print('Entailment')\n\nelif garden_size_s1 != garden_size_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rosy is more than 10 % more efficient than Mary, \"statement 2\" :Rosy is 30 % more efficient than Mary, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rosy_efficient_s1 = None\nrosy_efficient_s2 = 30\n \nif rosy_efficient_s1 is None or rosy_efficient_s2 is None:\n print('neutral')\n\nelif rosy_efficient_s1 == rosy_efficient_s2:\n print('Entailment')\n\nelif rosy_efficient_s1 != rosy_efficient_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At press time , the winning bidder is offering one slim dollar shy of a million ., \"statement 2\" :At press time , top bid was just shy of $ 1 million, \"options: \" Entailment or neutral?", + "Output Program": [ + "top_bid_s1 = 1\ntop_bid_s2 = 1\n \nif top_bid_s1 is None or top_bid_s2 is None:\n print('neutral')\n\nelif top_bid_s1 == top_bid_s2:\n print('Entailment')\n\nelif top_bid_s1 != top_bid_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the rosters for Professor Wang ' s 3 classes are combined with no student ' s name listed more than once , how many names will be on the combined roster ?, \"statement 2\" :If the rosters for Professor Wang ' s more than 2 classes are combined with no student ' s name listed more than once , how many names will be on the combined roster ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "classes_combined_s1 = 3\nclasses_combined_s2 = 2\n \nif classes_combined_s1 is None or classes_combined_s2 is None:\n print('neutral')\n\nelif classes_combined_s1 > classes_combined_s2:\n print('Entailment')\n\nelif classes_combined_s1 != classes_combined_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A runner runs the 40 miles from Marathon to Athens at a constant speed, \"statement 2\" :A runner runs the 10 miles from Marathon to Athens at a constant speed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "runner_runs_s1 = 40\nrunner_runs_s2 = 10\n \nif runner_runs_s1 is None or runner_runs_s2 is None:\n print('neutral')\n\nelif runner_runs_s1 > runner_runs_s2:\n print('Entailment')\n\nelif runner_runs_s1 != runner_runs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": According to the United Nations , more than 100,000 people have been killed since fighting began ., \"statement 2\" :About 100,000 killed , 6 million displaced since fighting began , U.N. says, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_displaced_s1 = None\npeople_displaced_s2 = 6000000\n \nif people_displaced_s1 is None or people_displaced_s2 is None:\n print('neutral')\n\nelif people_displaced_s1 > people_displaced_s2:\n print('Entailment')\n\nelif people_displaced_s1 != people_displaced_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Denmark was one of three countries , along with Sweden and Britain , that opted not to join the euro currency system in its initial phase when it was launched in January 1999 ., \"statement 2\" :Sweden adopted the single European currency in 1999 ., \"options: \" Entailment or neutral?", + "Output Program": [ + "sweden_adopted_s1 = None\nsweden_adopted_s2 = None\n \nif sweden_adopted_s1 is None or sweden_adopted_s2 is None:\n print('neutral')\n\nelif sweden_adopted_s1 > sweden_adopted_s2:\n print('Entailment')\n\nelif sweden_adopted_s1 != sweden_adopted_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": City A to city B , Andrew drove for 1 hr at 48 mph and for 3 hours at 60 mph, \"statement 2\" :City A to city B , Andrew drove for 4 hr at 48 mph and for 3 hours at 60 mph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "andrew_drove_s1 = 1\nandrew_drove_s2 = 4\n \nif andrew_drove_s1 is None or andrew_drove_s2 is None:\n print('neutral')\n\nelif andrew_drove_s1 > andrew_drove_s2:\n print('Entailment')\n\nelif andrew_drove_s1 != andrew_drove_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Aaron will jog from home at 6 miles per hour and then walk back home by the same route at 12 miles per hour, \"statement 2\" :Aaron will jog from home at more than 4 miles per hour and then walk back home by the same route at 12 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "aaron_jog_s1 = 6\naaron_jog_s2 = 4\n \nif aaron_jog_s1 is None or aaron_jog_s2 is None:\n print('neutral')\n\nelif aaron_jog_s1 > aaron_jog_s2:\n print('Entailment')\n\nelif aaron_jog_s1 != aaron_jog_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ages of Krish and Vaibhav are in the proportion of 3 : 5, \"statement 2\" :The ages of Krish and Vaibhav are in the proportion of less than 3 : 5, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "krish_vaibhav_proportion_s1 = 3/5\nkrish_vaibhav_proportion_s2 = (3/5)+0.1\n \nif krish_vaibhav_proportion_s1 is None or krish_vaibhav_proportion_s2 is None:\n print('neutral')\n\nelif krish_vaibhav_proportion_s1 > krish_vaibhav_proportion_s2:\n print('Entailment')\n\nelif krish_vaibhav_proportion_s1 != krish_vaibhav_proportion_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Of a certain group of less than 600 people , 40 graduated from High School M , 65 graduated from College Y , and 30 live in City Z, \"statement 2\" :Of a certain group of 100 people , 40 graduated from High School M , 65 graduated from College Y , and 30 live in City Z, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "group_of_people_s1 = None\ngroup_of_people_s2 = 100\n \nif group_of_people_s1 is None or group_of_people_s2 is None:\n print('neutral')\n\nelif group_of_people_s1 > group_of_people_s2:\n print('Entailment')\n\nelif group_of_people_s1 != group_of_people_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": An investor can sell her MicroTron stock for 36 $ per share and her Dynaco stock for 56 $ per share , If she sells 300 shares altogether , some of each stock , at an average price per share of 40 $ , how many shares of Dynaco stock has she sold ?, \"statement 2\" :An investor can sell her MicroTron stock for more than 26 $ per share and her Dynaco stock for 56 $ per share , If she sells 300 shares altogether , some of each stock , at an average price per share of 40 $ , how many shares of Dynaco stock has she sold ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "micro_tron_s1 = 36\nmicro_tron_s2 = 26\n \nif micro_tron_s1 is None or micro_tron_s2 is None:\n print('neutral')\n\nelif micro_tron_s1 > micro_tron_s2:\n print('Entailment')\n\nelif micro_tron_s1 != micro_tron_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Find the area of a rectangular field if John walking at the speed of 48 m / min took 20 seconds to cross the field diagonally and Harry walking at a speed of 72 m / min took 15 seconds to cross the field along its sides ., \"statement 2\" :Find the area of a rectangular field if John walking at the speed of more than 48 m / min took 20 seconds to cross the field diagonally and Harry walking at a speed of 72 m / min took 15 seconds to cross the field along its sides ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_speed_s1 = 48\njohn_speed_s2 = 48+1\n \nif john_speed_s1 is None or john_speed_s2 is None:\n print('neutral')\n\nelif john_speed_s1 > john_speed_s2:\n print('Entailment')\n\nelif john_speed_s1 != john_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At the faculty of Aerospace Engineering , less than 812 students study Random - processing methods , 222 students study Scramjet rocket engines and 112 students study them both, \"statement 2\" :At the faculty of Aerospace Engineering , 312 students study Random - processing methods , 222 students study Scramjet rocket engines and 112 students study them both, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "students_study_random_s1 = None\nstudents_study_random_s2 = 312\n \nif students_study_random_s1 is None or students_study_random_s2 is None:\n print('neutral')\n\nelif students_study_random_s1 > students_study_random_s2:\n print('Entailment')\n\nelif students_study_random_s1 != students_study_random_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John ' s Bank ' s saving amount is decreased more than 20 % due to loan payment and current balance is Rs, \"statement 2\" :John ' s Bank ' s saving amount is decreased 50 % due to loan payment and current balance is Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_decreased_s1 = None\njohn_decreased_s2 = 50\n \nif john_decreased_s1 is None or john_decreased_s2 is None:\n print('neutral')\n\nelif john_decreased_s1 > john_decreased_s2:\n print('Entailment')\n\nelif john_decreased_s1 != john_decreased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Specifically , the October 4 , 1994 earthquake ( as the October 12 , 1963 earthquake ) ocurred at the Pacific side boundary of the Kuril arc ( the South Kuril Islands ) of the Okhotsk plate ., \"statement 2\" :An earthquake occurred in 1994 ., \"options: \" Entailment or neutral?", + "Output Program": [ + "earthquake_year_s1 = 1994\nearthquake_year_s2 = 1994\n \nif earthquake_year_s1 is None or earthquake_year_s2 is None:\n print('neutral')\n\nelif earthquake_year_s1 == earthquake_year_s2:\n print('Entailment')\n\nelif earthquake_year_s1 != earthquake_year_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Raman mixed less than 44 kg of butter at Rs, \"statement 2\" :Raman mixed 24 kg of butter at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "raman_mixed_s1 = None\nraman_mixed_s2 = 24\n \nif raman_mixed_s1 is None or raman_mixed_s2 is None:\n print('neutral')\n\nelif raman_mixed_s1 == raman_mixed_s2:\n print('Entailment')\n\nelif raman_mixed_s1 != raman_mixed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Exactly more than 1 / 10 of the ponies have horseshoes , and exactly 5 / 8 of the ponies with horseshoes are from Iceland, \"statement 2\" :Exactly 3 / 10 of the ponies have horseshoes , and exactly 5 / 8 of the ponies with horseshoes are from Iceland, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "horseshoes_s1 = None\nhorseshoes_s2 = 3/10\n \nif horseshoes_s1 is None or horseshoes_s2 is None:\n print('neutral')\n\nelif horseshoes_s1 == horseshoes_s2:\n print('Entailment')\n\nelif horseshoes_s1 != horseshoes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are less than 26 stations between Mumbai and Chennai, \"statement 2\" :There are 16 stations between Mumbai and Chennai, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_stations_s1 = None\ntotal_stations_s2 = 16\n \nif total_stations_s1 is None or total_stations_s2 is None:\n print('neutral')\n\nelif total_stations_s1 == total_stations_s2:\n print('Entailment')\n\nelif total_stations_s1 != total_stations_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 42 percent of homeless children are younger than 6 ., \"statement 2\" :Study says 42 percent of homeless children are younger than 6, \"options: \" Entailment or neutral?", + "Output Program": [ + "homeless_children_s1 = 42\nhomeless_children_s2 = 42\n \nif homeless_children_s1 is None or homeless_children_s2 is None:\n print('neutral')\n\nelif homeless_children_s1 == homeless_children_s2:\n print('Entailment')\n\nelif homeless_children_s1 != homeless_children_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mr. Guzman bought 48.0 doughnuts packed equally into 4.0 boxes., \"statement 2\" :12.0 doughnuts were in each box, \"options: \" Entailment or contradiction?", + "Output Program": [ + "doughnuts_box_s1 = 48/4\ndoughnuts_box_s2 = 12\n \nif doughnuts_box_s1 is None or doughnuts_box_s2 is None:\n print('neutral')\n\nelif doughnuts_box_s1 == doughnuts_box_s2:\n print('Entailment')\n\nelif doughnuts_box_s1 != doughnuts_box_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In the city of San Durango , 60 people own cats , dogs , or rabbits, \"statement 2\" :In the city of San Durango , 20 people own cats , dogs , or rabbits, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cats_owned_s1 = 60\ncats_owned_s2 = 20\n \nif cats_owned_s1 is None or cats_owned_s2 is None:\n print('neutral')\n\nelif cats_owned_s1 == cats_owned_s2:\n print('Entailment')\n\nelif cats_owned_s1 != cats_owned_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": However , Jane was indisposed less than 7 days before the work got over, \"statement 2\" :However , Jane was indisposed 4 days before the work got over, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "indisposed_days_s1 = None\nindisposed_days_s2 = 4\n \nif indisposed_days_s1 is None or indisposed_days_s2 is None:\n print('neutral')\n\nelif indisposed_days_s1 == indisposed_days_s2:\n print('Entailment')\n\nelif indisposed_days_s1 != indisposed_days_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Carl can wash all the windows of his house in more than 1 hours, \"statement 2\" :Carl can wash all the windows of his house in 6 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "carl_washed_s1 = None\ncarl_washed_s2 = 6\n \nif carl_washed_s1 is None or carl_washed_s2 is None:\n print('neutral')\n\nelif carl_washed_s1 == carl_washed_s2:\n print('Entailment')\n\nelif carl_washed_s1 != carl_washed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Of a certain group of 100 people , 40 graduated from High School M , 65 graduated from College Y , and 30 live in City Z, \"statement 2\" :Of a certain group of less than 600 people , 40 graduated from High School M , 65 graduated from College Y , and 30 live in City Z, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "certain_group_s1 = 100\ncertain_group_s2 = 600\n \nif certain_group_s1 is None or certain_group_s2 is None:\n print('neutral')\n\nelif certain_group_s1 < certain_group_s2:\n print('Entailment')\n\nelif certain_group_s1 != certain_group_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ganesh covers the distance from X to Y at an average speed of 54 Km / hr, \"statement 2\" :Ganesh covers the distance from X to Y at an average speed of 14 Km / hr, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ganesh_covers_s1 = 54\nganesh_covers_s2 = 14\n \nif ganesh_covers_s1 is None or ganesh_covers_s2 is None:\n print('neutral')\n\nelif ganesh_covers_s1 == ganesh_covers_s2:\n print('Entailment')\n\nelif ganesh_covers_s1 != ganesh_covers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jack has less than 7 more ladybugs than Jill, \"statement 2\" :Jack has 5 more ladybugs\nthan Jill, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jack_ladybug_s1 = None\njack_ladybug_s2 = 5\n \nif jack_ladybug_s1 is None or jack_ladybug_s2 is None:\n print('neutral')\n\nelif jack_ladybug_s1 == jack_ladybug_s2:\n print('Entailment')\n\nelif jack_ladybug_s1 != jack_ladybug_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alok ordered less than 66 chapatis , 5 plates of rice , 7 plates of mixed vegetable and 6 ice - cream cups, \"statement 2\" :Alok ordered 16 chapatis , 5 plates of rice , 7 plates of mixed vegetable and 6 ice - cream cups, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "alok_chapatis_s1 = None\nalok_chapatis_s2 = 16\n \nif alok_chapatis_s1 is None or alok_chapatis_s2 is None:\n print('neutral')\n\nelif alok_chapatis_s1 == alok_chapatis_s2:\n print('Entailment')\n\nelif alok_chapatis_s1 != alok_chapatis_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Richard will arrange 6 people of 6 different heights for photograph by placing them in two rows of three so that each person in the first row is standing is standing in front of someone in the second row, \"statement 2\" :Richard will arrange less than 6 people of 6 different heights for photograph by placing them in two rows of three so that each person in the first row is standing is standing in front of someone in the second row, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "richard_arrange_s1 = 6\nrichard_arrange_s2 = 6-1\n \nif richard_arrange_s1 is None or richard_arrange_s2 is None:\n print('neutral')\n\nelif richard_arrange_s1 == richard_arrange_s2:\n print('Entailment')\n\nelif richard_arrange_s1 != richard_arrange_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He works at it for less than 60 days and then Rajesh finished it in 30 days, \"statement 2\" :He works at it for 20 days and then Rajesh finished it in 30 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rajesh_works_s1 = None\nrajesh_works_s2 = 20\n \nif rajesh_works_s1 is None or rajesh_works_s2 is None:\n print('neutral')\n\nelif rajesh_works_s1 == rajesh_works_s2:\n print('Entailment')\n\nelif rajesh_works_s1 != rajesh_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If she worked five 8 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"statement 2\" :If she worked five more than 3 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jill_works_s1 = 8\njill_works_s2 = 5\n \nif jill_works_s1 is None or jill_works_s2 is None:\n print('neutral')\n\nelif jill_works_s1 > jill_works_s2:\n print('Entailment')\n\nelif jill_works_s1 != jill_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ages of Krish and Vaibhav are in the proportion of less than 8 : 5, \"statement 2\" :The ages of Krish and Vaibhav are in the proportion of 3 : 5, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "krish_vaibhav_proportion_s1 = None\nkrish_vaibhav_proportion_s2 = 3/5\n \nif krish_vaibhav_proportion_s1 is None or krish_vaibhav_proportion_s2 is None:\n print('neutral')\n\nelif krish_vaibhav_proportion_s1 == krish_vaibhav_proportion_s2:\n print('Entailment')\n\nelif krish_vaibhav_proportion_s1 != krish_vaibhav_proportion_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Sanoop returned 3 t - shirts to the retailer , and the average price of the remaining t - shirts was Rs, \"statement 2\" :If Sanoop returned less than 6 t - shirts to the retailer , and the average price of the remaining t - shirts was Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sanoop_tshirts_s1 = 3\nsanoop_tshirts_s2 = 6\n \nif sanoop_tshirts_s1 is None or sanoop_tshirts_s2 is None:\n print('neutral')\n\nelif sanoop_tshirts_s1 < sanoop_tshirts_s2:\n print('Entailment')\n\nelif sanoop_tshirts_s1 != sanoop_tshirts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": By how much must Rebecca ' s annual income increase so that it constitutes 50 % of Rebecca and Jimmy ' s combined income ?, \"statement 2\" :By how much must Rebecca ' s annual income increase so that it constitutes more than 40 % of Rebecca and Jimmy ' s combined income ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rebecca_income_s1 = 50\nrebecca_income_s2 = 40\n \nif rebecca_income_s1 is None or rebecca_income_s2 is None:\n print('neutral')\n\nelif rebecca_income_s1 > rebecca_income_s2:\n print('Entailment')\n\nelif rebecca_income_s1 != rebecca_income_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sheila works 8 hours per day on Monday , Wednesday and Friday , and 6 hours per day on Tuesday and Thursday, \"statement 2\" :Sheila works more than 8 hours per day on Monday , Wednesday and Friday , and 6 hours per day on Tuesday and Thursday, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sheila_works_s1 = 8\nsheila_works_s2 = 8+1\n \nif sheila_works_s1 is None or sheila_works_s2 is None:\n print('neutral')\n\nelif sheila_works_s1 == sheila_works_s2:\n print('Entailment')\n\nelif sheila_works_s1 != sheila_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": However , Jane was indisposed 4 days before the work got over, \"statement 2\" :However , Jane was indisposed less than 7 days before the work got over, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jane_indisposed_s1 = 4\njane_indisposed_s2 = 7\n \nif jane_indisposed_s1 is None or jane_indisposed_s2 is None:\n print('neutral')\n\nelif jane_indisposed_s1 < jane_indisposed_s2:\n print('Entailment')\n\nelif jane_indisposed_s1 != jane_indisposed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sam had 9.0 dimes in his bank and his dad gave him 7.0 dimes , \"statement 2\" :Sam has 17.0 dimes now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "sam_dimes_s1 = 9+7\nsam_dimes_s2 = 17\n \nif sam_dimes_s1 is None or sam_dimes_s2 is None:\n print('neutral')\n\nelif sam_dimes_s1 == sam_dimes_s2:\n print('Entailment')\n\nelif sam_dimes_s1 != sam_dimes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained 90 , 92 , 85 , 87 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained more than 20 , 92 , 85 , 87 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dacid_obtained_s1 = 90 + 92 + 85 + 87 + 85\ndacid_obtained_s2 = 20 + 92 + 85 + 87 + 85\n \nif dacid_obtained_s1 is None or dacid_obtained_s2 is None:\n print('neutral')\n\nelif dacid_obtained_s1 > dacid_obtained_s2:\n print('Entailment')\n\nelif dacid_obtained_s1 != dacid_obtained_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The nine were brought into Somali waters and then handed over to the Puntland coast guard ., \"statement 2\" :Nine people were brought into Somali waters , handed to coast guard, \"options: \" Entailment or neutral?", + "Output Program": [ + "somali_people_s1 = 9\nsomali_people_s2 = 9\n \nif somali_people_s1 is None or somali_people_s2 is None:\n print('neutral')\n\nelif somali_people_s1 == somali_people_s2:\n print('Entailment')\n\nelif somali_people_s1 != somali_people_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At the faculty of Aerospace Engineering , 312 students study Random - processing methods , 222 students study Scramjet rocket engines and 112 students study them both, \"statement 2\" :At the faculty of Aerospace Engineering , less than 812 students study Random - processing methods , 222 students study Scramjet rocket engines and 112 students study them both, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "aerospace_students_s1 = 312\naerospace_students_s2 = 812\n \nif aerospace_students_s1 is None or aerospace_students_s2 is None:\n print('neutral')\n\nelif aerospace_students_s1 < aerospace_students_s2:\n print('Entailment')\n\nelif aerospace_students_s1 != aerospace_students_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Carl drove from his home to the beach at an average speed of 80 kilometers per hour and returned home by the same route at an average speed of 70 kilometers per hour, \"statement 2\" :Carl drove from his home to the beach at an average speed of 10 kilometers per hour and returned home by the same route at an average speed of 70 kilometers per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "carl_average_speed_s1 = 80\ncarl_average_speed_s2 = 10\n \nif carl_average_speed_s1 is None or carl_average_speed_s2 is None:\n print('neutral')\n\nelif carl_average_speed_s1 < carl_average_speed_s2:\n print('Entailment')\n\nelif carl_average_speed_s1 != carl_average_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If 21 people have visited both Iceland and Norway , how many people have visited neither country ?, \"statement 2\" :If less than 71 people have visited both Iceland and Norway , how many people have visited neither country ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_visited_s1 = 21\npeople_visited_s2 = 71\n \nif people_visited_s1 is None or people_visited_s2 is None:\n print('neutral')\n\nelif people_visited_s1 < people_visited_s2:\n print('Entailment')\n\nelif people_visited_s1 != people_visited_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained 76 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained 16 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dacid_obtained_s1 = 76 + 65 + 82 + 67 + 85\ndacid_obtained_s2 = 16 + 65 + 82 + 67 + 85\n \nif dacid_obtained_s1 is None or dacid_obtained_s2 is None:\n print('neutral')\n\nelif dacid_obtained_s1 < dacid_obtained_s2:\n print('Entailment')\n\nelif dacid_obtained_s1 != dacid_obtained_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": loyd wants to fence his Square shaped land of less than 230 Sqft each side, \"statement 2\" :loyd wants to fence his Square shaped land of 130 Sqft each side, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "square_shaped_lane_s1 = None\nsquare_shaped_lane_s2 = 130\n \nif square_shaped_lane_s1 is None or square_shaped_lane_s2 is None:\n print('neutral')\n\nelif square_shaped_lane_s1 < square_shaped_lane_s2:\n print('Entailment')\n\nelif square_shaped_lane_s1 != square_shaped_lane_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are 55 possible combinations in which Michael is not selected , what is the value of n ?, \"statement 2\" :If there are more than 55 possible combinations in which Michael is not selected , what is the value of n ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "possible_combination_s1 = 55\npossible_combination_s2 = 55+1\n \nif possible_combination_s1 is None or possible_combination_s2 is None:\n print('neutral')\n\nelif possible_combination_s1 < possible_combination_s2:\n print('Entailment')\n\nelif possible_combination_s1 != possible_combination_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jeffrey Conroy , 17 , faces charges of first-degree manslaughter as a hate crime in the attack , police said ., \"statement 2\" :Jeffrey Conroy , 17 , was charged with manslaughter as a hate crime, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_charged_s1 = 17\npeople_charged_s2 = 17\n \nif people_charged_s1 is None or people_charged_s2 is None:\n print('neutral')\n\nelif people_charged_s1 == people_charged_s2:\n print('Entailment')\n\nelif people_charged_s1 != people_charged_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shop Offered less than 50 % offer for every Shirt , Smith bought a shirt at Rs, \"statement 2\" :Shop Offered 20 % offer for every Shirt , Smith bought a shirt at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shop_offered_s1 = None\nshop_offered_s2 = 20\n \nif shop_offered_s1 is None or shop_offered_s2 is None:\n print('neutral')\n\nelif shop_offered_s1 == shop_offered_s2:\n print('Entailment')\n\nelif shop_offered_s1 != shop_offered_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": less than 25 years hence , Karthik will be just Quadrice as old as he was 15 years ago , How old is Karthik at now ? [ Quadrice = 4 Times ], \"statement 2\" :15 years hence , Karthik will be just Quadrice as old as he was 15 years ago , How old is Karthik at now ? [ Quadrice = 4 Times ], \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_s1 = None\nyears_s2 = 15\n \nif years_s1 is None or years_s2 is None:\n print('neutral')\n\nelif years_s1 == years_s2:\n print('Entailment')\n\nelif years_s1 != years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Zimmer has 237 papers to hand out to his class, \"statement 2\" :Zimmer has less than 837 papers to hand out to his class, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "papers_handout_s1 = 237\npapers_handout_s2 = 837\n \nif papers_handout_s1 is None or papers_handout_s2 is None:\n print('neutral')\n\nelif papers_handout_s1 < papers_handout_s2:\n print('Entailment')\n\nelif papers_handout_s1 != papers_handout_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Murali travelled from city A to city B at a speed of less than 7 kmph and from city B to city C at 6 kmph, \"statement 2\" :Murali travelled from city A to city B at a speed of 4 kmph and from city B to city C at 6 kmph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "murali_travelled_s1 = None\nmurali_travelled_s2 = 4\n \nif murali_travelled_s1 is None or murali_travelled_s2 is None:\n print('neutral')\n\nelif murali_travelled_s1 < murali_travelled_s2:\n print('Entailment')\n\nelif murali_travelled_s1 != murali_travelled_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alice leaves City A 30 minutes after Bob, \"statement 2\" :Alice leaves City A less than 60 minutes after Bob, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "alice_leaved_s1 = 30\nalice_leaved_s2 = 60\n \nif alice_leaved_s1 is None or alice_leaved_s2 is None:\n print('neutral')\n\nelif alice_leaved_s1 < alice_leaved_s2:\n print('Entailment')\n\nelif alice_leaved_s1 != alice_leaved_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the marks secured by Reema was written as 36 instead of 86 then find the correct average marks up to two decimal places ., \"statement 2\" :If the marks secured by Reema was written as more than 36 instead of 86 then find the correct average marks up to two decimal places ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "reema_written_s1 = 36\nreema_written_s2 = 36+1\n \nif reema_written_s1 is None or reema_written_s2 is None:\n print('neutral')\n\nelif reema_written_s1 == reema_written_s2:\n print('Entailment')\n\nelif reema_written_s1 != reema_written_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Vijay sells a cupboard at 14 % below cost price, \"statement 2\" :Vijay sells a cupboard at 24 % below cost price, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "vijay_cupboard_s1 = 14\nvijay_cupboard_s2 = 24\n \nif vijay_cupboard_s1 is None or vijay_cupboard_s2 is None:\n print('neutral')\n\nelif vijay_cupboard_s1 == vijay_cupboard_s2:\n print('Entailment')\n\nelif vijay_cupboard_s1 != vijay_cupboard_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sony and Johnny caught 80 fishes, \"statement 2\" :Sony and Johnny caught more than 30 fishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "fishes_caught_s1 = 80\nfishes_caught_s2 = 30\n \nif fishes_caught_s1 is None or fishes_caught_s2 is None:\n print('neutral')\n\nelif fishes_caught_s1 > fishes_caught_s2:\n print('Entailment')\n\nelif fishes_caught_s1 != fishes_caught_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dan leaves City A 60 minutes after Cara, \"statement 2\" :Dan leaves City A more than 30 minutes after Cara, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dan_leaves_s1 = 60\ndan_leaves_s2 = 30\n \nif dan_leaves_s1 is None or dan_leaves_s2 is None:\n print('neutral')\n\nelif dan_leaves_s1 > dan_leaves_s2:\n print('Entailment')\n\nelif dan_leaves_s1 != dan_leaves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": How much loss would Indu has suffered had she given it to Bindu for 2 years at 4 % per annum simple interest ?, \"statement 2\" :How much loss would Indu has suffered had she given it to Bindu for less than 2 years at 4 % per annum simple interest ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "indu_loss_year_s1 = 2\nindu_loss_year_s2 = 2-1\n \nif indu_loss_year_s1 is None or indu_loss_year_s2 is None:\n print('neutral')\n\nelif indu_loss_year_s1 > indu_loss_year_s2:\n print('Entailment')\n\nelif indu_loss_year_s1 != indu_loss_year_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Thirty-six survivors have been rescued from the Aegean Sea , and the search is continuing , Katherine Tenta of the Greek coast guard told CNN by phone ., \"statement 2\" :Greek coast guard has rescued 36 survivors , and a search operation is under way, \"options: \" Entailment or neutral?", + "Output Program": [ + "total_survivors_s1 = 36\ntotal_survivors_s2 = 36\n \nif total_survivors_s1 is None or total_survivors_s2 is None:\n print('neutral')\n\nelif total_survivors_s1 == total_survivors_s2:\n print('Entailment')\n\nelif total_survivors_s1 != total_survivors_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Beltrame said two rival gangs joined forces to launch the attacks ., \"statement 2\" :Two rival drug gangs collaborated to launch the attacks , he says, \"options: \" Entailment or neutral?", + "Output Program": [ + "total_gangs_s1 = 2\ntotal_gangs_s2 = 2\n \nif total_gangs_s1 is None or total_gangs_s2 is None:\n print('neutral')\n\nelif total_gangs_s1 == total_gangs_s2:\n print('Entailment')\n\nelif total_gangs_s1 != total_gangs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": When it was time to close out their $ 80 tab , the man filled out the receipt with a tip -- for $ 1,000 ., \"statement 2\" :A customer left Christina Summitt a $ 1,000 tip, \"options: \" Entailment or neutral?", + "Output Program": [ + "close_tab_s1 = 80\nclose_tab_s2 = None\n \nif close_tab_s1 is None or close_tab_s2 is None:\n print('neutral')\n\nelif close_tab_s1 == close_tab_s2:\n print('Entailment')\n\nelif close_tab_s1 != close_tab_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is 2 : 5 ?\nA, \"statement 2\" :What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is less than 3 : 5 ? A, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "murali_ratio_s1 = 2/5\nmurali_ratio_s2 = 3/5\n \nif murali_ratio_s1 is None or murali_ratio_s2 is None:\n print('neutral')\n\nelif murali_ratio_s1 < murali_ratio_s2:\n print('Entailment')\n\nelif murali_ratio_s1 != murali_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 5106.0 books in the Oak Grove school libraries and they donated 1986.0 to the public ibrary, \"statement 2\" :3124.0 books are left in the school libraries, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_books_s1 = 5106-1986\ntotal_books_s2 = 3124\n \nif total_books_s1 is None or total_books_s2 is None:\n print('neutral')\n\nelif total_books_s1 < total_books_s2:\n print('Entailment')\n\nelif total_books_s1 != total_books_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained 70 , 63 , 80 , 63 and 65 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained more than 30 , 63 , 80 , 63 and 65 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dacid_obtained_s1 = 70 + 63 + 80 + 63 + 65\ndacid_obtained_s2 = 30 + 63 + 80 + 63 + 65\n \nif dacid_obtained_s1 is None or dacid_obtained_s2 is None:\n print('neutral')\n\nelif dacid_obtained_s1 > dacid_obtained_s2:\n print('Entailment')\n\nelif dacid_obtained_s1 != dacid_obtained_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Q : Robert purchased $ less than 6000 worth of US saving bonds, \"statement 2\" :Q : Robert purchased $ 1000 worth of US saving bonds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "robert_purchased_s1 = None\nrobert_purchased_s2 = 1000\n \nif robert_purchased_s1 is None or robert_purchased_s2 is None:\n print('neutral')\n\nelif robert_purchased_s1 == robert_purchased_s2:\n print('Entailment')\n\nelif robert_purchased_s1 != robert_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": East Porterville , California ( CNN ) -- California 's historic drought has finally delivered its ultimate devastation : hundreds of homes in one community bone dry , devoid of tap water ., \"statement 2\" :California 's historic drought leaves nearly a thousand people without water, \"options: \" Entailment or neutral?", + "Output Program": [ + "home_dried_s1 = 100\nhome_dried_s2 = None\n \nif home_dried_s1 is None or home_dried_s2 is None:\n print('neutral')\n\nelif home_dried_s1 == home_dried_s2:\n print('Entailment')\n\nelif home_dried_s1 != home_dried_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mark sold more than 1 boxes less than n and Ann sold 2 boxes less than n, \"statement 2\" :Mark sold 8 boxes less than n and Ann sold 2 boxes less than n, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mark_box_s1 = None\nmark_box_s2 = 8\n \nif mark_box_s1 is None or mark_box_s2 is None:\n print('neutral')\n\nelif mark_box_s1 == mark_box_s2:\n print('Entailment')\n\nelif mark_box_s1 != mark_box_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After more than 5 years , Arun ' s age will be 26 years, \"statement 2\" :After 6 years , Arun ' s age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "after_years_s1 = None\nafter_years_s2 = 6\n \nif after_years_s1 is None or after_years_s2 is None:\n print('neutral')\n\nelif after_years_s1 == after_years_s2:\n print('Entailment')\n\nelif after_years_s1 != after_years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rajan travelled for less than 52 hours, \"statement 2\" :Rajan travelled for 12 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rajan_travelled_s1 = None\nrajan_travelled_s2 = 12\n \nif rajan_travelled_s1 is None or rajan_travelled_s2 is None:\n print('neutral')\n\nelif rajan_travelled_s1 == rajan_travelled_s2:\n print('Entailment')\n\nelif rajan_travelled_s1 != rajan_travelled_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bruce purchased 8 kg of grapes at the rate of 70 per kg and 9 kg of mangoes at the rate of 55 per kg, \"statement 2\" :Bruce purchased more than 3 kg of grapes at the rate of 70 per kg and 9 kg of mangoes at the rate of 55 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bruce_purchased_s1 = 8\nbruce_purchased_s2 = 3\n \nif bruce_purchased_s1 is None or bruce_purchased_s2 is None:\n print('neutral')\n\nelif bruce_purchased_s1 > bruce_purchased_s2:\n print('Entailment')\n\nelif bruce_purchased_s1 != bruce_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were 58.0 geese and 37.0 ducks in the marsh., \"statement 2\" :92.0 birds were in the marsh, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_birds_s1 = 58 + 37\ntotal_birds_s2 = 92\n \nif total_birds_s1 is None or total_birds_s2 is None:\n print('neutral')\n\nelif total_birds_s1 > total_birds_s2:\n print('Entailment')\n\nelif total_birds_s1 != total_birds_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many ways are there for 3 males and 3 females to sit ( around a circular table ) if no male should sit next to a male ( and no female next to female ) and Mary wants to sit with her back on the wall ?, \"statement 2\" :How many ways are there for less than 3 males and 3 females to sit ( around a circular table ) if no male should sit next to a male ( and no female next to female ) and Mary wants to sit with her back on the wall ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_males_s1 = 3\ntotal_males_s2 = 3-1\n \nif total_males_s1 is None or total_males_s2 is None:\n print('neutral')\n\nelif total_males_s1 > total_males_s2:\n print('Entailment')\n\nelif total_males_s1 != total_males_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The distance between Delhi and Mathura is less than 210 kms, \"statement 2\" :The distance between Delhi and Mathura is 110 kms, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_distance_s1 = None\ntotal_distance_s2 = 110\n \nif total_distance_s1 is None or total_distance_s2 is None:\n print('neutral')\n\nelif total_distance_s1 > total_distance_s2:\n print('Entailment')\n\nelif total_distance_s1 != total_distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 21.0 birds were sitting in a tree and 14.0 more birds flew away, \"statement 2\" :7.0 birds are left in the tree, \"options: \" Entailment or contradiction?", + "Output Program": [ + "birds_left_s1 = 21 - 7\nbirds_left_s2 = 7\n \nif birds_left_s1 is None or birds_left_s2 is None:\n print('neutral')\n\nelif birds_left_s1 > birds_left_s2:\n print('Entailment')\n\nelif birds_left_s1 != birds_left_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Sanoop returned 1 t - shirts to the retailer , and the average price of the remaining t - shirts was Rs, \"statement 2\" :If Sanoop returned 5 t - shirts to the retailer , and the average price of the remaining t - shirts was Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sanoop_returned_s1 = 1\nsanoop_returned_s2 = 5\n \nif sanoop_returned_s1 is None or sanoop_returned_s2 is None:\n print('neutral')\n\nelif sanoop_returned_s1 > sanoop_returned_s2:\n print('Entailment')\n\nelif sanoop_returned_s1 != sanoop_returned_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill works as a waitress at the local diner where she earns an hourly wage of $ 5.00 per hour and a standard tip rate of 25 % of the cost of the orders she serves, \"statement 2\" :Jill works as a waitress at the local diner where she earns an hourly wage of $ 5.00 per hour and a standard tip rate of less than 65 % of the cost of the orders she serves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tip_rate_s1 = 25\ntip_rate_s2 = 65\n \nif tip_rate_s1 is None or tip_rate_s2 is None:\n print('neutral')\n\nelif tip_rate_s1 < tip_rate_s2:\n print('Entailment')\n\nelif tip_rate_s1 != tip_rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Earlier , England had lost their last six wickets for just 17 runs as Mohammad Asif took five wickets for Pakistan ., \"statement 2\" :James Anderson takes five wickets as Pakistan collapse against England, \"options: \" Entailment or neutral?", + "Output Program": [ + "england_run_s1 = 17\nengland_run_s2 = None\n \nif england_run_s1 is None or england_run_s2 is None:\n print('neutral')\n\nelif england_run_s1 < england_run_s2:\n print('Entailment')\n\nelif england_run_s1 != england_run_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lewis saved checking on the grapevines for his last stop and he was told by 1.0 of the pickers that they fill 324.0 drums of grapes per day, \"statement 2\" :2916.0 drums of grapes would be filled in 9.0 days, \"options: \" Entailment or contradiction?", + "Output Program": [ + "grapes_drums_s1 = 324\ngrapes_drums_s2 = 2916/9\n \nif grapes_drums_s1 is None or grapes_drums_s2 is None:\n print('neutral')\n\nelif grapes_drums_s1 == grapes_drums_s2:\n print('Entailment')\n\nelif grapes_drums_s1 != grapes_drums_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Since you ' re nice , you give John 6 baseball cards, \"statement 2\" :Since you ' re nice , you give John more than 4 baseball cards, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "baseball_cards_s1 = 6\nbaseball_cards_s2 = 4\n \nif baseball_cards_s1 is None or baseball_cards_s2 is None:\n print('neutral')\n\nelif baseball_cards_s1 > baseball_cards_s2:\n print('Entailment')\n\nelif baseball_cards_s1 != baseball_cards_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The pilot of a small aircraft with a less than 70 - gallon fuel tank wants to fly to Cleveland , which is 480 miles away, \"statement 2\" :The pilot of a small aircraft with a 40 - gallon fuel tank wants to fly to Cleveland , which is 480 miles away, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "fuel_tank_s1 = None\nfuel_tank_s2 = 40\n \nif fuel_tank_s1 is None or fuel_tank_s2 is None:\n print('neutral')\n\nelif fuel_tank_s1 == fuel_tank_s2:\n print('Entailment')\n\nelif fuel_tank_s1 != fuel_tank_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Raman mixed 54 kg of butter at Rs, \"statement 2\" :Raman mixed more than 14 kg of butter at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "raman_mixed_s1 = 54\nraman_mixed_s2 = 14\n \nif raman_mixed_s1 is None or raman_mixed_s2 is None:\n print('neutral')\n\nelif raman_mixed_s1 > raman_mixed_s2:\n print('Entailment')\n\nelif raman_mixed_s1 != raman_mixed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sam had 98.0 pennies in his bank and he spent 93.0 of his pennies , \"statement 2\" :He has 5.0 pennies now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "sam_pennies_s1 = 98 - 93\nsam_pennies_s2 = 5\n \nif sam_pennies_s1 is None or sam_pennies_s2 is None:\n print('neutral')\n\nelif sam_pennies_s1 == sam_pennies_s2:\n print('Entailment')\n\nelif sam_pennies_s1 != sam_pennies_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jaime earned enough money by selling seashells at more than 25 cents each to buy several used paperback books at 55 cents each, \"statement 2\" :Jaime earned enough money by selling seashells at 35 cents each to buy several used paperback books at 55 cents each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jamie_seashells_s1 = None\njamie_seashells_s2 = 35\n \nif jamie_seashells_s1 is None or jamie_seashells_s2 is None:\n print('neutral')\n\nelif jamie_seashells_s1 == jamie_seashells_s2:\n print('Entailment')\n\nelif jamie_seashells_s1 != jamie_seashells_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": From a group of more than 1 boys & 4 girls a Committee of 4 persons is to be formed, \"statement 2\" :From a group of 6 boys & 4 girls a Committee of 4 persons is to be formed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "group_boys_s1 = None\ngroup_boys_s2 = 6\n \nif group_boys_s1 is None or group_boys_s2 is None:\n print('neutral')\n\nelif group_boys_s1 == group_boys_s2:\n print('Entailment')\n\nelif group_boys_s1 != group_boys_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Bruce and Bhishma are running on a circular track of length 600 m, \"statement 2\" :Bruce and Bhishma are running on a circular track of length less than 600 m, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "length_track_s1 = 600\nlength_track_s2 = 600 - 1\n \nif length_track_s1 is None or length_track_s2 is None:\n print('neutral')\n\nelif length_track_s1 == length_track_s2:\n print('Entailment')\n\nelif length_track_s1 != length_track_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sakshi can do a piece of work in less than 70 days, \"statement 2\" :Sakshi can do a piece of work in 20 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sakshi_work_s1 = None\nsakshi_work_s2 = 20\n \nif sakshi_work_s1 is None or sakshi_work_s2 is None:\n print('neutral')\n\nelif sakshi_work_s1 == sakshi_work_s2:\n print('Entailment')\n\nelif sakshi_work_s1 != sakshi_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": -- At least seven civilians died in a U.S. airstrike on an ISIS-controlled oilfield near the city of Khusham , the London-based Syrian Observatory for Human Rights said ., \"statement 2\" :U.S. airstrikes kill at least 10 civilians , Syrian Observatory for Human Rights says, \"options: \" Entailment or neutral?", + "Output Program": [ + "civilians_killed_s1 = None\ncivilians_killed_s2 = 10\n \nif civilians_killed_s1 is None or civilians_killed_s2 is None:\n print('neutral')\n\nelif civilians_killed_s1 == civilians_killed_s2:\n print('Entailment')\n\nelif civilians_killed_s1 != civilians_killed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": On his way back , John drives 85 miles per hour and stops in Town Y which is midway between Town X and Town Z, \"statement 2\" :On his way back , John drives more than 85 miles per hour and stops in Town Y which is midway between Town X and Town Z, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_drives_s1 = 85\njohn_drives_s2 = 85 + 1\n \nif john_drives_s1 is None or john_drives_s2 is None:\n print('neutral')\n\nelif john_drives_s1 == john_drives_s2:\n print('Entailment')\n\nelif john_drives_s1 != john_drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bookman purchased less than 60 copies of a new book released recently , 10 of which are hardback and sold for $ 20 each , and rest are paperback and sold for $ 10 each, \"statement 2\" :Bookman purchased 40 copies of a new book released recently , 10 of which are hardback and sold for $ 20 each , and rest are paperback and sold for $ 10 each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bookman_purchased_s1 = None\nbookman_purchased_s2 = 40\n \nif bookman_purchased_s1 is None or bookman_purchased_s2 is None:\n print('neutral')\n\nelif bookman_purchased_s1 == bookman_purchased_s2:\n print('Entailment')\n\nelif bookman_purchased_s1 != bookman_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are less than 58 stations between Hyderabad and Bangalore, \"statement 2\" :There are 18 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_stations_s1 = None\ntotal_stations_s2 = 18\n \nif total_stations_s1 is None or total_stations_s2 is None:\n print('neutral')\n\nelif total_stations_s1 == total_stations_s2:\n print('Entailment')\n\nelif total_stations_s1 != total_stations_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Molly ' s age in 18 years will be seven times her age six years ago, \"statement 2\" :Molly ' s age in less than 88 years will be seven times her age six years ago, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "molly_age_s1 = 18\nmolly_age_s2 = 88\n \nif molly_age_s1 is None or molly_age_s2 is None:\n print('neutral')\n\nelif molly_age_s1 < molly_age_s2:\n print('Entailment')\n\nelif molly_age_s1 != molly_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Of all the national park lands in the United States , none is closer to a major urban area or more beset with problems than the Everglades , a shallow , 50-mile-wide river of grass that flows south from Lake Okeechobee to Florida Bay . For more than a generation , this fragile natural wonder has been held hostage by a web of special interests -- farmers , sportsmen and about 6 million South Florida residents in need of drinking water and flood control -- that is as complex as the ecosystem itself ., \"statement 2\" :The Everglades is 50-mile wide ., \"options: \" Entailment or neutral?", + "Output Program": [ + "everglades_s1 = 50\neverglades_s2 = 50\n \nif everglades_s1 is None or everglades_s2 is None:\n print('neutral')\n\nelif everglades_s1 == everglades_s2:\n print('Entailment')\n\nelif everglades_s1 != everglades_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Andrea played the game , getting at least one score of each of less than 6 , 2 , 3 , 4 , and 5 , and never getting the same score in consecutive steps, \"statement 2\" :Andrea played the game , getting at least one score of each of 1 , 2 , 3 , 4 , and 5 , and never getting the same score in consecutive steps, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "andrea_game_s1 = None\nandrea_game_s2 = [1,2,3,4,5]\n \nif andrea_game_s1 is None or andrea_game_s2 is None:\n print('neutral')\n\nelif andrea_game_s1 == andrea_game_s2:\n print('Entailment')\n\nelif andrea_game_s1 != andrea_game_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The 42 parents participating in the Smithville PTA have been assigned to at least 1 of 3 committees : festival planning , classroom aid , and teacher relations, \"statement 2\" :The less than 42 parents participating in the Smithville PTA have been assigned to at least 1 of 3 committees : festival planning , classroom aid , and teacher relations, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "parents_participating_s1 = 42\nparents_participating_s2 = 42 - 1\n \nif parents_participating_s1 is None or parents_participating_s2 is None:\n print('neutral')\n\nelif parents_participating_s1 == parents_participating_s2:\n print('Entailment')\n\nelif parents_participating_s1 != parents_participating_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the boys at Jones Elementary make up 70 % of the total school population of x students , what is x ?, \"statement 2\" :If the boys at Jones Elementary make up 60 % of the total school population of x students , what is x ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jones_elementary_s1 = 70\njones_elementary_s2 = 60\n \nif jones_elementary_s1 is None or jones_elementary_s2 is None:\n print('neutral')\n\nelif jones_elementary_s1 == jones_elementary_s2:\n print('Entailment')\n\nelif jones_elementary_s1 != jones_elementary_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Anup is 2 years younger to Madan whose age is 5 yrs , then whatis John \u2019 s present age ?, \"statement 2\" :If Anup is less than 6 years younger to Madan whose age is 5 yrs , then whatis John \u2019 s present age ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "anup_younger_s1 = 2\nanup_younger_s2 = 6\n \nif anup_younger_s1 is None or anup_younger_s2 is None:\n print('neutral')\n\nelif anup_younger_s1 < anup_younger_s2:\n print('Entailment')\n\nelif anup_younger_s1 != anup_younger_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John was thrice as old as Tom 6 yrs back, \"statement 2\" :John was thrice as old as Tom less than 8 yrs back, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_tom_s1 = 6\njohn_tom_s2 = 8\n \nif john_tom_s1 is None or john_tom_s2 is None:\n print('neutral')\n\nelif john_tom_s1 < john_tom_s2:\n print('Entailment')\n\nelif john_tom_s1 != john_tom_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Arun purchased less than 50 kg of wheat at the rate of Rs, \"statement 2\" :Arun purchased 30 kg of wheat at the rate of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "arun_purchased_s1 = None\narun_purchased_s2 = 30\n \nif arun_purchased_s1 is None or arun_purchased_s2 is None:\n print('neutral')\n\nelif arun_purchased_s1 < arun_purchased_s2:\n print('Entailment')\n\nelif arun_purchased_s1 != arun_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The average marks scored by Ganesh in English , Science , Mathematics and History is less than 15 from that scored by him in English , History , Geography and Mathematics, \"statement 2\" :The average marks scored by Ganesh in English , Science , Mathematics and History is less than more than 15 from that scored by him in English , History , Geography and Mathematics, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ganesh_average_s1 = 15 - 1\nganesh_average_s2 = 15 + 1\n \nif ganesh_average_s1 is None or ganesh_average_s2 is None:\n print('neutral')\n\nelif ganesh_average_s1 < ganesh_average_s2:\n print('Entailment')\n\nelif ganesh_average_s1 != ganesh_average_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Listco employs 90 level - 1 employees , 30 of whom are college graduates, \"statement 2\" :Listco employs more than 90 level - 1 employees , 30 of whom are college graduates, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "listco_employs_s1 = 90\nlistco_employs_s2 = 90 + 1\n \nif listco_employs_s1 is None or listco_employs_s2 is None:\n print('neutral')\n\nelif listco_employs_s1 == listco_employs_s2:\n print('Entailment')\n\nelif listco_employs_s1 != listco_employs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jimmy ' s paper has less than 52 , 24 , 36 , 48 , and a blank space . What number should Jimmy B put in the blank space ?, \"statement 2\" :Jimmy ' s paper has 12 , 24 , 36 , 48 , and a blank space .\nWhat number should Jimmy B put in the blank space ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jimmy_paper_s1 = None\njimmy_paper_s2 = 12 + 24 + 36 + 48\n \nif jimmy_paper_s1 is None or jimmy_paper_s2 is None:\n print('neutral')\n\nelif jimmy_paper_s1 == jimmy_paper_s2:\n print('Entailment')\n\nelif jimmy_paper_s1 != jimmy_paper_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joe \u2019 s average ( arithmetic mean ) test score across less than 5 equally weighted tests was 70, \"statement 2\" :Joe \u2019 s average ( arithmetic mean ) test score across 4 equally weighted tests was 70, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "joe_average_s1 = None\njoe_average_s2 = 4\n \nif joe_average_s1 is None or joe_average_s2 is None:\n print('neutral')\n\nelif joe_average_s1 == joe_average_s2:\n print('Entailment')\n\nelif joe_average_s1 != joe_average_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are more than 100 seniors at Morse High School , and 50 % of them have cars, \"statement 2\" :There are 300 seniors at Morse High School , and 50 % of them have cars, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "high_school_s1 = None\nhigh_school_s2 = 300\n \nif high_school_s1 is None or high_school_s2 is None:\n print('neutral')\n\nelif high_school_s1 == high_school_s2:\n print('Entailment')\n\nelif high_school_s1 != high_school_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Five people , including two flight attendants , were taken to hospitals for treatment after the plane returned to Philadelphia , said spokesman Bill McGlashen ., \"statement 2\" :Three people were taken to hospitals, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_injured_s1 = 5 - 2\npeople_injured_s2 = 3\n \nif people_injured_s1 is None or people_injured_s2 is None:\n print('neutral')\n\nelif people_injured_s1 == people_injured_s2:\n print('Entailment')\n\nelif people_injured_s1 != people_injured_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are less than 5 more women than men on Centerville ' s board of education, \"statement 2\" :There are 4 more women than men on Centerville ' s board of education, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "centerville_women_s1 = None\ncenterville_women_s2 = 4\n \nif centerville_women_s1 is None or centerville_women_s2 is None:\n print('neutral')\n\nelif centerville_women_s1 == centerville_women_s2:\n print('Entailment')\n\nelif centerville_women_s1 != centerville_women_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the minimum number of packages of Aero flight tees Bill must purchase to ensure that he has at least 20 golf tees for each member of his foursome , if he will buy no more than 3 packages of the generic golf tees ?, \"statement 2\" :What is the minimum number of packages of Aero flight tees Bill must purchase to ensure that he has at least more than 20 golf tees for each member of his foursome , if he will buy no more than 3 packages of the generic golf tees ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "golf_tees_s1 = 20\ngolf_tees_s2 = 20 + 1\n \nif golf_tees_s1 is None or golf_tees_s2 is None:\n print('neutral')\n\nelif golf_tees_s1 == golf_tees_s2:\n print('Entailment')\n\nelif golf_tees_s1 != golf_tees_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": On his way back , John drives more than 65 miles per hour and stops in Town Y which is midway between Town X and Town Z, \"statement 2\" :On his way back , John drives 85 miles per hour and stops in Town Y which is midway between Town X and Town Z, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_drives_s1 = None\njohn_drives_s2 = 85\n \nif john_drives_s1 is None or john_drives_s2 is None:\n print('neutral')\n\nelif john_drives_s1 == john_drives_s2:\n print('Entailment')\n\nelif john_drives_s1 != john_drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Monika purchased a pressure cooker at 9 / 10 th of its selling price and sold it at 8 % more than its Selling Price, \"statement 2\" :Monika purchased a pressure cooker at more than 5 / 10 th of its selling price and sold it at 8 % more than its Selling Price, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pressure_cooker_s1 = 9/10\npressure_cooker_s2 = 5/10\n \nif pressure_cooker_s1 is None or pressure_cooker_s2 is None:\n print('neutral')\n\nelif pressure_cooker_s1 > pressure_cooker_s2:\n print('Entailment')\n\nelif pressure_cooker_s1 != pressure_cooker_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In covering a distance of 30 km , Arun takes 2 hours more than Anil, \"statement 2\" :In covering a distance of less than 50 km , Arun takes 2 hours more than Anil, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "arun_distance_s1 = 30\narun_distance_s2 = 50\n \nif arun_distance_s1 is None or arun_distance_s2 is None:\n print('neutral')\n\nelif arun_distance_s1 < arun_distance_s2:\n print('Entailment')\n\nelif arun_distance_s1 != arun_distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Molly can do a task in 20 days while Sandy can do the task in 30 days, \"statement 2\" :Molly can do a task in less than 40 days while Sandy can do the task in 30 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "molly_task_s1 = 20\nmolly_task_s2 = 40\n \nif molly_task_s1 is None or molly_task_s2 is None:\n print('neutral')\n\nelif molly_task_s1 < molly_task_s2:\n print('Entailment')\n\nelif molly_task_s1 != molly_task_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ravi ' s more than 3 days average income is 1025.68, \"statement 2\" :Ravi ' s 4 days average income is 1025.68, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ravi_average_income_s1 = None\nravi_average_income_s2 = 4\n \nif ravi_average_income_s1 is None or ravi_average_income_s2 is None:\n print('neutral')\n\nelif ravi_average_income_s1 == ravi_average_income_s2:\n print('Entailment')\n\nelif ravi_average_income_s1 != ravi_average_income_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Last week , saw the fall of the Dutch right wing coalition government , made up of the Christian-democrats ( CDA ) led by Prime Minister Jan Peter Balkenende , the right wing liberal party ( VVD ) and the so-called left-liberal D66 ., \"statement 2\" :Three parties form a Dutch coalition government ., \"options: \" Entailment or neutral?", + "Output Program": [ + "total_parties_s1 = 3\ntotal_parties_s2 = 3\n \nif total_parties_s1 is None or total_parties_s2 is None:\n print('neutral')\n\nelif total_parties_s1 == total_parties_s2:\n print('Entailment')\n\nelif total_parties_s1 != total_parties_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If it takes Annie less than 35 minutes to fix the flat tire and Sam continues to ride during this time , how many minutes will it take Annie to catch up with Sam assuming that Annie resumes riding at 15 km per hour ?, \"statement 2\" :If it takes Annie 15 minutes to fix the flat tire and Sam continues to ride during this time , how many minutes will it take Annie to catch up with Sam assuming that Annie resumes riding at 15 km per hour ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "annie_fixes_s1 = None\nannie_fixes_s2 = 15\n \nif annie_fixes_s1 is None or annie_fixes_s2 is None:\n print('neutral')\n\nelif annie_fixes_s1 == annie_fixes_s2:\n print('Entailment')\n\nelif annie_fixes_s1 != annie_fixes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A runner runs the 40 miles from Marathon to Athens at a constant speed, \"statement 2\" :A runner runs the less than 40 miles from Marathon to Athens at a constant speed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "runner_runs_s1 = 40\nrunner_runs_s2 = 40 - 1\n \nif runner_runs_s1 is None or runner_runs_s2 is None:\n print('neutral')\n\nelif runner_runs_s1 == runner_runs_s2:\n print('Entailment')\n\nelif runner_runs_s1 != runner_runs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the boys at Jones Elementary make up 20 % of the total school population of x students , what is x ?, \"statement 2\" :If the boys at Jones Elementary make up less than 60 % of the total school population of x students , what is x ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jones_elementary_s1 = 20\njones_elementary_s2 = 60\n \nif jones_elementary_s1 is None or jones_elementary_s2 is None:\n print('neutral')\n\nelif jones_elementary_s1 < jones_elementary_s2:\n print('Entailment')\n\nelif jones_elementary_s1 != jones_elementary_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are 55 possible combinations in which Michael is not selected , what is the value of r ?, \"statement 2\" :If there are 65 possible combinations in which Michael is not selected , what is the value of r ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "possible_combination_s1 = 55\npossible_combination_s2 = 65\n \nif possible_combination_s1 is None or possible_combination_s2 is None:\n print('neutral')\n\nelif possible_combination_s1 < possible_combination_s2:\n print('Entailment')\n\nelif possible_combination_s1 != possible_combination_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": David biked 16 1 / 3 miles in 2 hours and 20 minutes, \"statement 2\" :David biked 76 1 / 3 miles in 2 hours and 20 minutes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "david_biked_s1 = 16\ndavid_biked_s2 = 76\n \nif david_biked_s1 is None or david_biked_s2 is None:\n print('neutral')\n\nelif david_biked_s1 == david_biked_s2:\n print('Entailment')\n\nelif david_biked_s1 != david_biked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a poll taken after bin Laden 's death , more than two-thirds ( 69 % ) said they think of the United States as more of an enemy ., \"statement 2\" :Only 12 % said they had a positive view of the United States, \"options: \" Entailment or neutral?", + "Output Program": [ + "positive_view_s1 = None\npositive_view_s2 = 12\n \nif positive_view_s1 is None or positive_view_s2 is None:\n print('neutral')\n\nelif positive_view_s1 == positive_view_s2:\n print('Entailment')\n\nelif positive_view_s1 != positive_view_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were 27.0 boys and 35.0 girls on the playground at recess., \"statement 2\" :66.0 children were on the playground at recess, \"options: \" Entailment or contradiction?", + "Output Program": [ + "playground_recess_s1 = 27 + 35\nplayground_recess_s2 = 66\n \nif playground_recess_s1 is None or playground_recess_s2 is None:\n print('neutral')\n\nelif playground_recess_s1 == playground_recess_s2:\n print('Entailment')\n\nelif playground_recess_s1 != playground_recess_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Henry were to add 7 gallons of water to a tank that is already 3 / 4 full of water , the tank would be 7 / 8 full, \"statement 2\" :If Henry were to add more than 5 gallons of water to a tank that is already 3 / 4 full of water , the tank would be 7 / 8 full, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "henry_adds_s1 = 7\nhenry_adds_s2 = 5\n \nif henry_adds_s1 is None or henry_adds_s2 is None:\n print('neutral')\n\nelif henry_adds_s1 > henry_adds_s2:\n print('Entailment')\n\nelif henry_adds_s1 != henry_adds_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nancy is standing in the middle of the row at the 6 th position .\nCan you find out the total number of girls in that row ?, \"statement 2\" :Nancy is standing in the middle of the row at the 2 th position . Can you find out the total number of girls in that row ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "nancy_position_s1 = 6\nnancy_position_s2 = 2\n \nif nancy_position_s1 is None or nancy_position_s2 is None:\n print('neutral')\n\nelif nancy_position_s1 == nancy_position_s2:\n print('Entailment')\n\nelif nancy_position_s1 != nancy_position_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": National Guard troops using '' high-profile '' trucks to wade through water evacuated 550 people from the Boulder County town of Lyons , CNN affiliate KUSA reported ., \"statement 2\" :231 '' unaccounted for '' in Boulder County , 350 in Larimer County, \"options: \" Entailment or neutral?", + "Output Program": [ + "larimer_county_s1 = None\nlarimer_county_s2 = 350\n \nif larimer_county_s1 is None or larimer_county_s2 is None:\n print('neutral')\n\nelif larimer_county_s1 == larimer_county_s2:\n print('Entailment')\n\nelif larimer_county_s1 != larimer_county_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The Computer Store has reduced the price of a computer by 15 % .\nWhat is the original price of the computer if the sale price is $ 1275 ?, \"statement 2\" :The Computer Store has reduced the price of a computer by less than 55 % . What is the original price of the computer if the sale price is $ 1275 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "computer_price_s1 = 15\ncomputer_price_s2 = 55\n \nif computer_price_s1 is None or computer_price_s2 is None:\n print('neutral')\n\nelif computer_price_s1 < computer_price_s2:\n print('Entailment')\n\nelif computer_price_s1 != computer_price_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many hours does it take Little Texas Drilling Company to produce 265 barrels of oil ?, \"statement 2\" :How many hours does it take Little Texas Drilling Company to produce more than 165 barrels of oil ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "oil_barrels_s1 = 265\noil_barrels_s2 = 165\n \nif oil_barrels_s1 is None or oil_barrels_s2 is None:\n print('neutral')\n\nelif oil_barrels_s1 > oil_barrels_s2:\n print('Entailment')\n\nelif oil_barrels_s1 != oil_barrels_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary selects a total of 10 apples and oranges from the food stand , and the average ( arithmetic mean ) price of the 10 pieces of fruit is 52 \u00a2, \"statement 2\" :Mary selects a total of 50 apples and oranges from the food stand , and the average ( arithmetic mean ) price of the 10 pieces of fruit is 52 \u00a2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mary_selects_s1 = 10\nmary_selects_s2 = 50\n\nif mary_selects_s1 is None or mary_selects_s2 is None:\n print('neutral')\n\nelif mary_selects_s1 == mary_selects_s2:\n print('Entailment')\n\nelif mary_selects_s1 != mary_selects_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Pavan travelled for less than 31 hours, \"statement 2\" :Pavan travelled for 11 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pavan_travelled_s1 = None\npavan_travelled_s2 = 11\n \nif pavan_travelled_s1 is None or pavan_travelled_s2 is None:\n print('neutral')\n\nelif pavan_travelled_s1 == pavan_travelled_s2:\n print('Entailment')\n\nelif pavan_travelled_s1 != pavan_travelled_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A restaurant made 9.0 hamburgers to serve during lunch and only 3.0 were actually served , \"statement 2\" :3.0 hamburgers were left over from lunch , \"options: \" Entailment or contradiction?", + "Output Program": [ + "hamburgers_left_s1 = 9 - 3\nhamburgers_left_s2 = 3\n \nif hamburgers_left_s1 is None or hamburgers_left_s2 is None:\n print('neutral')\n\nelif hamburgers_left_s1 == hamburgers_left_s2:\n print('Entailment')\n\nelif hamburgers_left_s1 != hamburgers_left_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Find the annual dividend of Sam owing less than 5000 shares of the company having a par value of Rs, \"statement 2\" :Find the annual dividend of Sam owing 2000 shares of the company having a par value of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "company_shares_s1 = None\ncompany_shares_s2 = 2000\n \nif company_shares_s1 is None or company_shares_s2 is None:\n print('neutral')\n\nelif company_shares_s1 == company_shares_s2:\n print('Entailment')\n\nelif company_shares_s1 != company_shares_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Dave has more than one of each of the listed garments , and can make 7200 different outfits , then for how many garments does Dave have exactly five choices ?, \"statement 2\" :If Dave has more than one of each of the listed garments , and can make 6200 different outfits , then for how many garments does Dave have exactly five choices ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "different_outfits_s1 = 7200\ndifferent_outfits_s2 = 6200\n \nif different_outfits_s1 is None or different_outfits_s2 is None:\n print('neutral')\n\nelif different_outfits_s1 == different_outfits_s2:\n print('Entailment')\n\nelif different_outfits_s1 != different_outfits_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After 2 years , Arun ' s age will be 26 years, \"statement 2\" :After more than 2 years , Arun ' s age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "after_years_s1 = 2\nafter_years_s2 = 2 + 1\n \nif after_years_s1 is None or after_years_s2 is None:\n print('neutral')\n\nelif after_years_s1 == after_years_s2:\n print('Entailment')\n\nelif after_years_s1 != after_years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a certain town , the ratio of NY Yankees fans to NY Mets fans is less than 4 : 2 , and the ratio of NY Mets fans to Boston Red Sox fans is 4 : 5, \"statement 2\" :In a certain town , the ratio of NY Yankees fans to NY Mets fans is 3 : 2 , and the ratio of NY Mets fans to Boston Red Sox fans is 4 : 5, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ny_mets_fans_s1 = None\nny_mets_fans_s2 = 3/2\n \nif ny_mets_fans_s1 is None or ny_mets_fans_s2 is None:\n print('neutral')\n\nelif ny_mets_fans_s1 == ny_mets_fans_s2:\n print('Entailment')\n\nelif ny_mets_fans_s1 != ny_mets_fans_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Zimmer has less than 837 papers to hand out to his class, \"statement 2\" :Zimmer has 237 papers to hand out to his class, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "zimmer_paper_s1 = None\nzimmer_paper_s2 = 237\n \nif zimmer_paper_s1 is None or zimmer_paper_s2 is None:\n print('neutral')\n\nelif zimmer_paper_s1 == zimmer_paper_s2:\n print('Entailment')\n\nelif zimmer_paper_s1 != zimmer_paper_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If they work in stretches of one hour alternately , Vikas beginning at 8 a, \"statement 2\" :If they work in stretches of one hour alternately , Vikas beginning at more than 1 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "vikas_beginning_s1 = 8\nvikas_beginning_s2 = 1\n \nif vikas_beginning_s1 is None or vikas_beginning_s2 is None:\n print('neutral')\n\nelif vikas_beginning_s1 > vikas_beginning_s2:\n print('Entailment')\n\nelif vikas_beginning_s1 != vikas_beginning_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The EU force confirmed that six pirates have boarded the 180-meter long bulk carrier , with two attack skiffs in tow ., \"statement 2\" :European Union Naval Force say six pirates boarded 180-meter long carrier, \"options: \" Entailment or neutral?", + "Output Program": [ + "pirates_boarded_s1 = 180\npirates_boarded_s2 = 180\n \nif pirates_boarded_s1 is None or pirates_boarded_s2 is None:\n print('neutral')\n\nelif pirates_boarded_s1 == pirates_boarded_s2:\n print('Entailment')\n\nelif pirates_boarded_s1 != pirates_boarded_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": more than 3050 from Anwar at 6 % p, \"statement 2\" :4050 from Anwar at 6 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "anwar_s1 = None\nanwar_s2 = 4050\n \nif anwar_s1 is None or anwar_s2 is None:\n print('neutral')\n\nelif anwar_s1 == anwar_s2:\n print('Entailment')\n\nelif anwar_s1 != anwar_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the trip home took 1 / 2 hour longer than the trip to the beach , how many kilometers k did Carl drive each way ?, \"statement 2\" :If the trip home took less than 6 / 2 hour longer than the trip to the beach , how many kilometers k did Carl drive each way ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "home_trip_s1 = 1/2\nhome_trip_s2 = 6/2\n \nif home_trip_s1 is None or home_trip_s2 is None:\n print('neutral')\n\nelif home_trip_s1 < home_trip_s2:\n print('Entailment')\n\nelif home_trip_s1 != home_trip_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 261.0 fishbowls and each fishbowl has 23.0 fish, \"statement 2\" :There are 5998.0 fish, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_fish_s1 = 261 * 23\ntotal_fish_s2 = 5998\n \nif total_fish_s1 is None or total_fish_s2 is None:\n print('neutral')\n\nelif total_fish_s1 == total_fish_s2:\n print('Entailment')\n\nelif total_fish_s1 != total_fish_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": It takes John exactly 30 minutes to rake a lawn and it takes his son Todd exactly 60 minutes to rake the same lawn, \"statement 2\" :It takes John exactly less than 60 minutes to rake a lawn and it takes his son Todd exactly 60 minutes to rake the same lawn, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rake_lawn_s1 = 30\nrake_lawn_s2 = 60\n \nif rake_lawn_s1 is None or rake_lawn_s2 is None:\n print('neutral')\n\nelif rake_lawn_s1 < rake_lawn_s2:\n print('Entailment')\n\nelif rake_lawn_s1 != rake_lawn_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the rosters for Professor Wang ' s less than 5 classes are combined with no student ' s name listed more than once , how many names will be on the combined roster ?, \"statement 2\" :If the rosters for Professor Wang ' s 3 classes are combined with no student ' s name listed more than once , how many names will be on the combined roster ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "wang_classes_s1 = None\nwang_classes_s2 = 3\n \nif wang_classes_s1 is None or wang_classes_s2 is None:\n print('neutral')\n\nelif wang_classes_s1 < wang_classes_s2:\n print('Entailment')\n\nelif wang_classes_s1 != wang_classes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sam earns $ 6.00 per hour for the first 60 hours he works per week , and twice this rate for overtime, \"statement 2\" :Sam earns $ 6.00 per hour for the first more than 10 hours he works per week , and twice this rate for overtime, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sam_works_s1 = 60\nsam_works_s2 = 10\n \nif sam_works_s1 is None or sam_works_s2 is None:\n print('neutral')\n\nelif sam_works_s1 > sam_works_s2:\n print('Entailment')\n\nelif sam_works_s1 != sam_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": One hour after Yolanda started walking from X to Y , a distance of less than 30 miles , Bob started walking along the same road from Y to X, \"statement 2\" :One hour after Yolanda started walking from X to Y , a distance of 10 miles , Bob started walking along the same road from Y to X, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "yolanda_walk_s1 = None\nyolanda_walk_s2 = 10\n \nif yolanda_walk_s1 is None or yolanda_walk_s2 is None:\n print('neutral')\n\nelif yolanda_walk_s1 == yolanda_walk_s2:\n print('Entailment')\n\nelif yolanda_walk_s1 != yolanda_walk_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Frank is 15 years younger then John, \"statement 2\" :Frank is 25 years younger then John, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "frank_younger_s1 = 15\nfrank_younger_s2 = 25\n \nif frank_younger_s1 is None or frank_younger_s2 is None:\n print('neutral')\n\nelif frank_younger_s1 == frank_younger_s2:\n print('Entailment')\n\nelif frank_younger_s1 != frank_younger_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rob has more than 5 toy trucks, \"statement 2\" :Rob has 8 toy trucks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rob_truck_s1 = None\nrob_truck_s2 = 8\n \nif rob_truck_s1 is None or rob_truck_s2 is None:\n print('neutral')\n\nelif rob_truck_s1 == rob_truck_s2:\n print('Entailment')\n\nelif rob_truck_s1 != rob_truck_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mike joined his school's band and he bought a trumpet for $145.16, and sold a song book which was $5.84, \"statement 2\" :The net amount that Mike spent at the music store is 134.7, \"options: \" Entailment or contradiction?", + "Output Program": [ + "mike_spent_s1 = 145.16 - 5.84\nmike_spent_s2 = 134.7\n \nif mike_spent_s1 is None or mike_spent_s2 is None:\n print('neutral')\n\nelif mike_spent_s1 == mike_spent_s2:\n print('Entailment')\n\nelif mike_spent_s1 != mike_spent_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 5 % people of a village in Sri Lanka died by bombardment , 15 % of the remainder left the village on account of fear, \"statement 2\" :7 % people of a village in Sri Lanka died by bombardment , 15 % of the remainder left the village on account of fear, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_bombardmet_s1 = 5\npeople_bombardmet_s2 = 7\n \nif people_bombardmet_s1 is None or people_bombardmet_s2 is None:\n print('neutral')\n\nelif people_bombardmet_s1 == people_bombardmet_s2:\n print('Entailment')\n\nelif people_bombardmet_s1 != people_bombardmet_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Jos \u00e9 reads at a constant rate of 2 pages every 6 minutes , how many seconds will it take him to read N pages ?, \"statement 2\" :If Jos \u00e9 reads at a constant rate of more than 2 pages every 6 minutes , how many seconds will it take him to read N pages ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "joe_read_s1 = 2\njoe_read_s2 = 2+1\n \nif joe_read_s1 is None or joe_read_s2 is None:\n print('neutral')\n\nelif joe_read_s1 == joe_read_s2:\n print('Entailment')\n\nelif joe_read_s1 != joe_read_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were 9.0 red orchids and 3.0 white orchids in the vase and Sally cut 15.0 red orchids from her flower garden and put them in the vase , \"statement 2\" :27.0 red orchids are there now in the vase, \"options: \" Entailment or contradiction?", + "Output Program": [ + "red_orchids_s1 = 9 + 15\nred_orchids_s2 = 27\n \nif red_orchids_s1 is None or red_orchids_s2 is None:\n print('neutral')\n\nelif red_orchids_s1 == red_orchids_s2:\n print('Entailment')\n\nelif red_orchids_s1 != red_orchids_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": David obtained 96 , 95 , 82 , 97 and 95 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"statement 2\" :David obtained more than 46 , 95 , 82 , 97 and 95 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dacid_obtained_s1 = 96 + 95 + 82 + 97 + 95\ndacid_obtained_s2 = 46 + 95 + 82 + 97 + 95\n \nif dacid_obtained_s1 is None or dacid_obtained_s2 is None:\n print('neutral')\n\nelif dacid_obtained_s1 > dacid_obtained_s2:\n print('Entailment')\n\nelif dacid_obtained_s1 != dacid_obtained_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In 4 years , Raj ' s father age twice as raj , Two years ago , Raj ' s mother ' s age twice as raj, \"statement 2\" :In less than 4 years , Raj ' s father age twice as raj , Two years ago , Raj ' s mother ' s age twice as raj, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "raj_father_age_s1 = 4\nraj_father_age_s2 = 4 + 1\n \nif raj_father_age_s1 is None or raj_father_age_s2 is None:\n print('neutral')\n\nelif raj_father_age_s1 == raj_father_age_s2:\n print('Entailment')\n\nelif raj_father_age_s1 != raj_father_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Cathy runs at less than 50 miles per hour , and Jim runs at 6 miles per hour, \"statement 2\" :Cathy runs at 10 miles per hour , and Jim runs at 6 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cathy_runs_s1 = None\ncathy_runs_s2 = 10\n \nif cathy_runs_s1 is None or cathy_runs_s2 is None:\n print('neutral')\n\nelif cathy_runs_s1 == cathy_runs_s2:\n print('Entailment')\n\nelif cathy_runs_s1 != cathy_runs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are less than 85 possible combinations in which Michael is not selected , what is the value of n ?, \"statement 2\" :If there are 55 possible combinations in which Michael is not selected , what is the value of n ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "possible_combination_s1 = None\npossible_combination_s2 = 55\n \nif possible_combination_s1 is None or possible_combination_s2 is None:\n print('neutral')\n\nelif possible_combination_s1 == possible_combination_s2:\n print('Entailment')\n\nelif possible_combination_s1 != possible_combination_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Yesterday it took Robert less than 7 hours to drive from City A to City B, \"statement 2\" :Yesterday it took Robert 6 hours to drive from City A to City B, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "robert_drives_s1 = None\nrobert_drives_s2 = 6\n \nif robert_drives_s1 is None or robert_drives_s2 is None:\n print('neutral')\n\nelif robert_drives_s1 == robert_drives_s2:\n print('Entailment')\n\nelif robert_drives_s1 != robert_drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": And Bud Ice showed 5.35 % , compared with the label 's 5.5 % ., \"statement 2\" :Bud Ice showed 5.35 % alcohol by volume compared with the label 's 5.5 %, \"options: \" Entailment or neutral?", + "Output Program": [ + "ice_showed_s1 = 5.35\nice_showed_s2 = 5.35\n \nif ice_showed_s1 is None or ice_showed_s2 is None:\n print('neutral')\n\nelif ice_showed_s1 == ice_showed_s2:\n print('Entailment')\n\nelif ice_showed_s1 != ice_showed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bruce and Anne can clean their house in less than 7 hours working together at their respective constant rates, \"statement 2\" :Bruce and Anne can clean their house in 4 hours working together at their respective constant rates, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bruce_anne_cleans_s1 = None\nbruce_anne_cleans_s2 = 4\n \nif bruce_anne_cleans_s1 is None or bruce_anne_cleans_s2 is None:\n print('neutral')\n\nelif bruce_anne_cleans_s1 == bruce_anne_cleans_s2:\n print('Entailment')\n\nelif bruce_anne_cleans_s1 != bruce_anne_cleans_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Paul completes a piece of work in more than 70 days , Rose completes the same work in 120 days, \"statement 2\" :Paul completes a piece of work in 80 days , Rose completes the same work in 120 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "paul_works_s1 = None\npaul_works_s2 = 80\n \nif paul_works_s1 is None or paul_works_s2 is None:\n print('neutral')\n\nelif paul_works_s1 == paul_works_s2:\n print('Entailment')\n\nelif paul_works_s1 != paul_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Reeya obtained 65 , 67 , 76 , 80 and 95 out of 100 in different subjects , What will be the average, \"statement 2\" :Reeya obtained more than 35 , 67 , 76 , 80 and 95 out of 100 in different subjects , What will be the average, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "reeya_obtained_s1 = 65 + 67 + 76 + 80 + 95\nreeya_obtained_s2 = 35 + 67 + 76 + 80 + 95\n \nif reeya_obtained_s1 is None or reeya_obtained_s2 is None:\n print('neutral')\n\nelif reeya_obtained_s1 > reeya_obtained_s2:\n print('Entailment')\n\nelif reeya_obtained_s1 != reeya_obtained_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Salley ' s internet provider offers unlimited traffic which costs $ 0.5 per day charged off at less than 22 a, \"statement 2\" :Salley ' s internet provider offers unlimited traffic which costs $ 0.5 per day charged off at 12 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "internet_price_s1 = None\ninternet_price_s2 = 12\n \nif internet_price_s1 is None or internet_price_s2 is None:\n print('neutral')\n\nelif internet_price_s1 == internet_price_s2:\n print('Entailment')\n\nelif internet_price_s1 != internet_price_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mrs. Hilt saw a rollercoaster and 7.0 students rode the rollercoaster every 5.0 minutes, \"statement 2\" :22.0 students rode the rollercoaster in 15.0 minutes, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_students_s1 = 7/5\ntotal_students_s2 = 22/15\n \nif total_students_s1 is None or total_students_s2 is None:\n print('neutral')\n\nelif total_students_s1 == total_students_s2:\n print('Entailment')\n\nelif total_students_s1 != total_students_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Julie had 90 currency notes in all , some of which are of Rs 80 denomination and the remaining of Rs 50 denomination, \"statement 2\" :Julie had more than 90 currency notes in all , some of which are of Rs 80 denomination and the remaining of Rs 50 denomination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "julie_currency_s1 = 90\njulie_currency_s2 = 90 + 1\n \nif julie_currency_s1 is None or julie_currency_s2 is None:\n print('neutral')\n\nelif julie_currency_s1 == julie_currency_s2:\n print('Entailment')\n\nelif julie_currency_s1 != julie_currency_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alok ordered 16 chapatis , 5 plates of rice , 7 plates of mixed vegetable and 6 ice - cream cups, \"statement 2\" :Alok ordered less than 36 chapatis , 5 plates of rice , 7 plates of mixed vegetable and 6 ice - cream cups, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "alok_chapatis_s1 = 16\nalok_chapatis_s2 = 36\n \nif alok_chapatis_s1 is None or alok_chapatis_s2 is None:\n print('neutral')\n\nelif alok_chapatis_s1 < alok_chapatis_s2:\n print('Entailment')\n\nelif alok_chapatis_s1 != alok_chapatis_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The average number of shirts with Salman , Ambani and Dalmiya is more than 40 , if all of them reached a shopping mall in Delhi and purchased 2 shirts each of them then average number of shirt each of them now has, \"statement 2\" :The average number of shirts with Salman , Ambani and Dalmiya is 60 , if all of them reached a shopping mall in Delhi and purchased 2 shirts each of them then average number of shirt each of them now has, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_shirt_s1 = None\naverage_shirt_s2 = 60\n \nif average_shirt_s1 is None or average_shirt_s2 is None:\n print('neutral')\n\nelif average_shirt_s1 == average_shirt_s2:\n print('Entailment')\n\nelif average_shirt_s1 != average_shirt_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At the beach , Miki and her sister both built sandcastles and then measured their heights and Miki 's sandcastle was 0.8333333333333334 foot tall, and her sister 's was 0.5 foot tall , \"statement 2\" :Total height of both sandcastles is 1.33333333333, \"options: \" Entailment or contradiction?", + "Output Program": [ + "sandy_castle_s1 = round(0.8333333333333334 + 0.5, 9)\nsandy_castle_s2 = 1.333333333\n\nif sandy_castle_s1 is None or sandy_castle_s2 is None:\n print('neutral')\n\nelif sandy_castle_s1 == sandy_castle_s2:\n print('Entailment')\n\nelif sandy_castle_s1 != sandy_castle_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rajeev invests some money at the beginning , Lakshmi invests double the amount after 6 months , and Muthu invests thrice the amount after 8 months, \"statement 2\" :Rajeev invests some money at the beginning , Lakshmi invests double the amount after 2 months , and Muthu invests thrice the amount after 8 months, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rajeev_months_s1 = 6\nrajeev_months_s2 = 2\n \nif rajeev_months_s1 is None or rajeev_months_s2 is None:\n print('neutral')\n\nelif rajeev_months_s1 == rajeev_months_s2:\n print('Entailment')\n\nelif rajeev_months_s1 != rajeev_months_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The X & co having such a sales structure out of their whole sales 70 % of the customers are corporate companies out of these 20 % of them are related to banking sector and 60 % of the corporate companies related to banking sector having their head quarters in USA, \"statement 2\" :The X & co having such a sales structure out of their whole sales more than 40 % of the customers are corporate companies out of these 20 % of them are related to banking sector and 60 % of the corporate companies related to banking sector having their head quarters in USA, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sales_s1 = 70\nsales_s2 = 40\n \nif sales_s1 is None or sales_s2 is None:\n print('neutral')\n\nelif sales_s1 > sales_s2:\n print('Entailment')\n\nelif sales_s1 != sales_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the ratio of their ages is 7 : 9 , how old is Sandy ?, \"statement 2\" :If the ratio of their ages is 4 : 9 , how old is Sandy ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_ratio_s1 = 7/9\nage_ratio_s2 = 4/9\n \nif age_ratio_s1 is None or age_ratio_s2 is None:\n print('neutral')\n\nelif age_ratio_s1 == age_ratio_s2:\n print('Entailment')\n\nelif age_ratio_s1 != age_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the share of Sravan , if Sreedhar alone can do the work in 75 days ?, \"statement 2\" :What is the share of Sravan , if Sreedhar alone can do the work in more than 25 days ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sreedhar_work_s1 = 75\nsreedhar_work_s2 = 25\n \nif sreedhar_work_s1 is None or sreedhar_work_s2 is None:\n print('neutral')\n\nelif sreedhar_work_s1 > sreedhar_work_s2:\n print('Entailment')\n\nelif sreedhar_work_s1 != sreedhar_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jill works as a waitress at the local diner where she earns an hourly wage of $ 4.00 per hour and a standard tip rate of 15 % of the cost of the orders she serves, \"statement 2\" :Jill works as a waitress at the local diner where she earns an hourly wage of $ 4.00 per hour and a standard tip rate of less than 75 % of the cost of the orders she serves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tip_rate_s1 = 15\ntip_rate_s2 = 75\n \nif tip_rate_s1 is None or tip_rate_s2 is None:\n print('neutral')\n\nelif tip_rate_s1 < tip_rate_s2:\n print('Entailment')\n\nelif tip_rate_s1 != tip_rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Store Z : $ more than 60 , a 30 % sales tax , and $ 10 rebate after tax Isaac can purchase a certain item in four different ways , as shown in the table, \"statement 2\" :Store Z : $ 70 , a 30 % sales tax , and $ 10 rebate after tax\nIsaac can purchase a certain item in four different ways , as shown in the table, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "store_z_s1 = None\nstore_z_s2 = 70\n \nif store_z_s1 is None or store_z_s2 is None:\n print('neutral')\n\nelif store_z_s1 == store_z_s2:\n print('Entailment')\n\nelif store_z_s1 != store_z_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The number of hours that Pat , a resident of Town X , watched television last week was between less than 7 and 2 standard deviations below the mean, \"statement 2\" :The number of hours that Pat , a resident of Town X , watched television last week was between 1 and 2 standard deviations below the mean, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "standards_s1 = None\nstandards_s2 = [1,2]\n \nif standards_s1 is None or standards_s2 is None:\n print('neutral')\n\nelif standards_s1 == standards_s2:\n print('Entailment')\n\nelif standards_s1 != standards_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the distance between their homes is less than 84 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h, \"statement 2\" :If the distance between their homes is 54 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "home_distance_s1 = None\nhome_distance_s2 = 54\n \nif home_distance_s1 is None or home_distance_s2 is None:\n print('neutral')\n\nelif home_distance_s1 == home_distance_s2:\n print('Entailment')\n\nelif home_distance_s1 != home_distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Benjamin skated 80.0 kilometers at 10.0 kilometers per hour, \"statement 2\" :Benjamin skated for 8.0 hours, \"options: \" Entailment or contradiction?", + "Output Program": [ + "benjamin_skated_s1 = 80/10\nbenjamin_skated_s2 = 8\n \nif benjamin_skated_s1 is None or benjamin_skated_s2 is None:\n print('neutral')\n\nelif benjamin_skated_s1 == benjamin_skated_s2:\n print('Entailment')\n\nelif benjamin_skated_s1 != benjamin_skated_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": than how many more employees should NHAI hire to finish it in time working less than 70 hours a day ?, \"statement 2\" :than how many more employees should NHAI hire to finish it in time working 10 hours a day ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "nhai_working_s1 = None\nnhai_working_s2 = 10\n \nif nhai_working_s1 is None or nhai_working_s2 is None:\n print('neutral')\n\nelif nhai_working_s1 == nhai_working_s2:\n print('Entailment')\n\nelif nhai_working_s1 != nhai_working_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Yolanda ' s walking rate was less than 7 miles per hour and Bob \u0442 ' s was 4 miles per hour , how many miles had Bob walked when they met ?, \"statement 2\" :If Yolanda ' s walking rate was 3 miles per hour and Bob \u0442 ' s was 4 miles per hour , how many miles had Bob walked when they met ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "yolanda_walking_s1 = None\nyolanda_walking_s2 = 3\n \nif yolanda_walking_s1 is None or yolanda_walking_s2 is None:\n print('neutral')\n\nelif yolanda_walking_s1 == yolanda_walking_s2:\n print('Entailment')\n\nelif yolanda_walking_s1 != yolanda_walking_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dana borrows 6000 pounds annually for her college education, \"statement 2\" :Dana borrows less than 8000 pounds annually for her college education, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dana_borrows_s1 = 6000\ndana_borrows_s2 = 8000\n \nif dana_borrows_s1 is None or dana_borrows_s2 is None:\n print('neutral')\n\nelif dana_borrows_s1 < dana_borrows_s2:\n print('Entailment')\n\nelif dana_borrows_s1 != dana_borrows_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Carl drove from his home to the beach at an average speed of 80 kilometers per hour and returned home by the same route at an average speed of 70 kilometers per hour, \"statement 2\" :Carl drove from his home to the beach at an average speed of 20 kilometers per hour and returned home by the same route at an average speed of 70 kilometers per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "carl_drove_s1 = 80\ncarl_drove_s2 = 20\n \nif carl_drove_s1 is None or carl_drove_s2 is None:\n print('neutral')\n\nelif carl_drove_s1 == carl_drove_s2:\n print('Entailment')\n\nelif carl_drove_s1 != carl_drove_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A paper trail found suspect payments in Mexico totaled more than $ 24 million , the newspaper said , citing an internal Wal-Mart review ., \"statement 2\" :An internal review found suspect payments totaling more than $ 24 million , the report says, \"options: \" Entailment or neutral?", + "Output Program": [ + "suspect_payment_s1 = 24\nsuspect_payment_s2 = 24\n \nif suspect_payment_s1 is None or suspect_payment_s2 is None:\n print('neutral')\n\nelif suspect_payment_s1 == suspect_payment_s2:\n print('Entailment')\n\nelif suspect_payment_s1 != suspect_payment_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 8 years ago Jason was 12 times older, \"statement 2\" :more than 7 years ago Jason was 12 times older, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jason_older_s1 = 8\njason_older_s2 = 7\n \nif jason_older_s1 is None or jason_older_s2 is None:\n print('neutral')\n\nelif jason_older_s1 > jason_older_s2:\n print('Entailment')\n\nelif jason_older_s1 != jason_older_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Vijay bought 160 shirts at the rate of Rs, \"statement 2\" :Vijay bought 360 shirts at the rate of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "vijay_bought_s1 = 160\nvijay_bought_s2 = 360\n \nif vijay_bought_s1 is None or vijay_bought_s2 is None:\n print('neutral')\n\nelif vijay_bought_s1 == vijay_bought_s2:\n print('Entailment')\n\nelif vijay_bought_s1 != vijay_bought_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The blaze has ignited 14,000 acres in the area , fire officials said ., \"statement 2\" :Fire ignites 14,000 acres , fire officials say, \"options: \" Entailment or neutral?", + "Output Program": [ + "ignites_s1 = 14000\nignites_s2 = 14000\n \nif ignites_s1 is None or ignites_s2 is None:\n print('neutral')\n\nelif ignites_s1 == ignites_s2:\n print('Entailment')\n\nelif ignites_s1 != ignites_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Wendy earned 5.0 points for each bag of cans she recycled, and she had 11.0 bags but didn't recycle 2.0 of them, \"statement 2\" :She would have 44.0 points earned, \"options: \" Entailment or contradiction?", + "Output Program": [ + "bag_recycled_s1 = (11-2) * 5\nbag_recycled_s2 = 44\n \nif bag_recycled_s1 is None or bag_recycled_s2 is None:\n print('neutral')\n\nelif bag_recycled_s1 == bag_recycled_s2:\n print('Entailment')\n\nelif bag_recycled_s1 != bag_recycled_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nitin borrowed some money at the rate of 6 % p, \"statement 2\" :Nitin borrowed some money at the rate of more than 6 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "nitin_borrowed_s1 = 6\nnitin_borrowed_s2 = 6 + 0.1\n \nif nitin_borrowed_s1 is None or nitin_borrowed_s2 is None:\n print('neutral')\n\nelif nitin_borrowed_s1 == nitin_borrowed_s2:\n print('Entailment')\n\nelif nitin_borrowed_s1 != nitin_borrowed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jane started baby - sitting when she was less than 86 years old, \"statement 2\" :Jane started baby - sitting when she was 16 years old, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jane_age_s1 = None\njane_age_s2 = 16\n \nif jane_age_s1 is None or jane_age_s2 is None:\n print('neutral')\n\nelif jane_age_s1 == jane_age_s2:\n print('Entailment')\n\nelif jane_age_s1 != jane_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Andy has less than 40 pairs of matched gloves, \"statement 2\" :Andy has 20 pairs of matched gloves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "matched_gloves_s1 = None\nmatched_gloves_s2 = 20\n \nif matched_gloves_s1 is None or matched_gloves_s2 is None:\n print('neutral')\n\nelif matched_gloves_s1 == matched_gloves_s2:\n print('Entailment')\n\nelif matched_gloves_s1 != matched_gloves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many jelly beans must Dante give to Aaron to ensure that no child has more than less than 4 fewer jelly beans than any other child ?, \"statement 2\" :How many jelly beans must Dante give to Aaron to ensure that no child has more than 1 fewer jelly beans than any other child ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jelly_beans_s1 = None\njelly_beans_s2 = 1\n \nif jelly_beans_s1 is None or jelly_beans_s2 is None:\n print('neutral')\n\nelif jelly_beans_s1 == jelly_beans_s2:\n print('Entailment')\n\nelif jelly_beans_s1 != jelly_beans_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Q : Robert purchased $ less than 7500 worth of US saving bonds, \"statement 2\" :Q : Robert purchased $ 3500 worth of US saving bonds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "robert_purchased_s1 = None\nrobert_purchased_s2 = 3500\n \nif robert_purchased_s1 is None or robert_purchased_s2 is None:\n print('neutral')\n\nelif robert_purchased_s1 == robert_purchased_s2:\n print('Entailment')\n\nelif robert_purchased_s1 != robert_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Exactly 3 / 10 of the ponies have horseshoes , and exactly 5 / 8 of the ponies with horseshoes are from Iceland, \"statement 2\" :Exactly less than 3 / 10 of the ponies have horseshoes , and exactly 5 / 8 of the ponies with horseshoes are from Iceland, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ponies_s1 = 3/10\nponies_s2 = (3/10) - 0.1\n \nif ponies_s1 is None or ponies_s2 is None:\n print('neutral')\n\nelif ponies_s1 == ponies_s2:\n print('Entailment')\n\nelif ponies_s1 != ponies_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Diane find 6 cans of paint are just enough to paint one third of her room, \"statement 2\" :Diane find less than 7 cans of paint are just enough to paint one third of her room, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "diane_cans_s1 = 6\ndiane_cans_s2 = 7\n \nif diane_cans_s1 is None or diane_cans_s2 is None:\n print('neutral')\n\nelif diane_cans_s1 < diane_cans_s2:\n print('Entailment')\n\nelif diane_cans_s1 != diane_cans_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Peter purchased 30 kg of rice at the rate of $ 11.50 per kg and 20 kg of rice at the rate of 14.25 per kg, \"statement 2\" :Peter purchased less than 40 kg of rice at the rate of $ 11.50 per kg and 20 kg of rice at the rate of 14.25 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "peter_purchased_s1 = 30\npeter_purchased_s2 = 40\n \nif peter_purchased_s1 is None or peter_purchased_s2 is None:\n print('neutral')\n\nelif peter_purchased_s1 < peter_purchased_s2:\n print('Entailment')\n\nelif peter_purchased_s1 != peter_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Martha has 5 dogs and 5 cats, \"statement 2\" :Martha has more than 1 dogs and 5 cats, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "martha_dogs_s1 = 5\nmartha_dogs_s2 = 1\n \nif martha_dogs_s1 is None or martha_dogs_s2 is None:\n print('neutral')\n\nelif martha_dogs_s1 > martha_dogs_s2:\n print('Entailment')\n\nelif martha_dogs_s1 != martha_dogs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Raquel wants one side of his garden to be less than 80 feet, \"statement 2\" :Raquel wants one side of his garden to be 30 feet, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "garden_feet_s1 = None\ngarden_feet_s2 = 30\n \nif garden_feet_s1 is None or garden_feet_s2 is None:\n print('neutral')\n\nelif garden_feet_s1 == garden_feet_s2:\n print('Entailment')\n\nelif garden_feet_s1 != garden_feet_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": While driving from City A to City B , Cara drives at a constant speed of more than 10 miles per hour, \"statement 2\" :While driving from City A to City B , Cara drives at a constant speed of 30 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cara_drives_s1 = None\ncara_drives_s2 = 30\n \nif cara_drives_s1 is None or cara_drives_s2 is None:\n print('neutral')\n\nelif cara_drives_s1 == cara_drives_s2:\n print('Entailment')\n\nelif cara_drives_s1 != cara_drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sara got fast food for lunch and Sara spent $ 5.36 on a hotdog and $ 5.1 on a salad , \"statement 2\" :The total of the lunch bill is 10.46, \"options: \" Entailment or contradiction?", + "Output Program": [ + "lunch_bill_s1 = 5.36 + 5.1\nlunch_bill_s2 = 10.46\n \nif lunch_bill_s1 is None or lunch_bill_s2 is None:\n print('neutral')\n\nelif lunch_bill_s1 == lunch_bill_s2:\n print('Entailment')\n\nelif lunch_bill_s1 != lunch_bill_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were 9 people in line for bumper cars, and 6 people got tired of waiting and left but 3 more people got in line, \"statement 2\" :18.0 people were in line at some point, \"options: \" Entailment or contradiction?", + "Output Program": [ + "people_inline_s1 = 9 + 3 + 6\npeople_inline_s2 = 18\n \nif people_inline_s1 is None or people_inline_s2 is None:\n print('neutral')\n\nelif people_inline_s1 == people_inline_s2:\n print('Entailment')\n\nelif people_inline_s1 != people_inline_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the toy store is stocked with 3 types of balls and 6 types of board games , how many different selections E of the 4 items can Amanda make ?, \"statement 2\" :If the toy store is stocked with less than 4 types of balls and 6 types of board games , how many different selections E of the 4 items can Amanda make ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "toy_stocked_s1 = 3\ntoy_stocked_s2 = 4\n \nif toy_stocked_s1 is None or toy_stocked_s2 is None:\n print('neutral')\n\nelif toy_stocked_s1 < toy_stocked_s2:\n print('Entailment')\n\nelif toy_stocked_s1 != toy_stocked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Vijay sells a cupboard at 12 % below cost price, \"statement 2\" :Vijay sells a cupboard at more than 12 % below cost price, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "vijay_cupboard_s1 = 12\nvijay_cupboard_s2 = 12 + 1\n \nif vijay_cupboard_s1 is None or vijay_cupboard_s2 is None:\n print('neutral')\n\nelif vijay_cupboard_s1 == vijay_cupboard_s2:\n print('Entailment')\n\nelif vijay_cupboard_s1 != vijay_cupboard_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Bhavan travelled for 20 hours, \"statement 2\" :Bhavan travelled for less than 20 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bhavan_travelled_s1 = 20\nbhavan_travelled_s2 = 20 - 1\n \nif bhavan_travelled_s1 is None or bhavan_travelled_s2 is None:\n print('neutral')\n\nelif bhavan_travelled_s1 == bhavan_travelled_s2:\n print('Entailment')\n\nelif bhavan_travelled_s1 != bhavan_travelled_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a friendship gang Kala has less than 41 gang , in how many ways can he invite one or more of the gang to his house ?, \"statement 2\" :In a friendship gang Kala has 11 gang , in how many ways can he invite one or more of the gang to his house ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gang_kala_s1 = None\ngang_kala_s2 = 11\n \nif gang_kala_s1 is None or gang_kala_s2 is None:\n print('neutral')\n\nelif gang_kala_s1 == gang_kala_s2:\n print('Entailment')\n\nelif gang_kala_s1 != gang_kala_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Reeya obtained 55 , 67 , 76 , 82 and 55 out of 100 in different subjects , What will be the average, \"statement 2\" :Reeya obtained less than 85 , 67 , 76 , 82 and 55 out of 100 in different subjects , What will be the average, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "reeya_obtained_s1 = 55 + 67 + 76 + 82 + 55\nreeya_obtained_s2 = 85 + 67 + 76 + 82 + 55\n \nif reeya_obtained_s1 is None or reeya_obtained_s2 is None:\n print('neutral')\n\nelif reeya_obtained_s1 < reeya_obtained_s2:\n print('Entailment')\n\nelif reeya_obtained_s1 != reeya_obtained_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At present , the ratio between the ages of Arun and Deepak is 4 : 3, \"statement 2\" :At present , the ratio between the ages of Arun and Deepak is more than 1 : 3, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "arun_deepak_ratio_s1 = 4/3\narun_deepak_ratio_s2 = 1/3\n \nif arun_deepak_ratio_s1 is None or arun_deepak_ratio_s2 is None:\n print('neutral')\n\nelif arun_deepak_ratio_s1 > arun_deepak_ratio_s2:\n print('Entailment')\n\nelif arun_deepak_ratio_s1 != arun_deepak_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Amar takes as much time in running 18 meters as a car takes in covering 48 meters, \"statement 2\" :Amar takes as much time in running less than 18 meters as a car takes in covering 48 meters, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amar_runs_s1 = 18\namar_runs_s2 = 18 - 1\n \nif amar_runs_s1 is None or amar_runs_s2 is None:\n print('neutral')\n\nelif amar_runs_s1 < amar_runs_s2:\n print('Entailment')\n\nelif amar_runs_s1 != amar_runs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy gets 3 marks for each correct sum and loses 2 marks for each incorrect sum, \"statement 2\" :Sandy gets more than 3 marks for each correct sum and loses 2 marks for each incorrect sum, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_marks_s1 = 3\nsandy_marks_s2 = 3 + 1\n \nif sandy_marks_s1 is None or sandy_marks_s2 is None:\n print('neutral')\n\nelif sandy_marks_s1 == sandy_marks_s2:\n print('Entailment')\n\nelif sandy_marks_s1 != sandy_marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the ratio of hybrid Tajima ' s to non hybrid Franks is more than 4 : 4 and there are 280 total automobiles owned by the dealership , how many hybrid Franks are there ?, \"statement 2\" :If the ratio of hybrid Tajima ' s to non hybrid Franks is 5 : 4 and there are 280 total automobiles owned by the dealership , how many hybrid Franks are there ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tajima_ratio_s1 = None\ntajima_ratio_s2 = 5/4\n \nif tajima_ratio_s1 is None or tajima_ratio_s2 is None:\n print('neutral')\n\nelif tajima_ratio_s1 == tajima_ratio_s2:\n print('Entailment')\n\nelif tajima_ratio_s1 != tajima_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is less than 5 : 3 , After 6 Years Rahul age will be 50 years, \"statement 2\" :Ratio between Rahul and Deepak is 4 : 3 , After 6 Years Rahul age will be 50 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rahul_deepak_ratio_s1 = None\nrahul_deepak_ratio_s2 = 4/3\n \nif rahul_deepak_ratio_s1 is None or rahul_deepak_ratio_s2 is None:\n print('neutral')\n\nelif rahul_deepak_ratio_s1 == rahul_deepak_ratio_s2:\n print('Entailment')\n\nelif rahul_deepak_ratio_s1 != rahul_deepak_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Yolanda ' s walking rate was more than 2 miles per hour and Bob \u0442 ' s was 4 miles per hour , how many miles had Bob walked when they met ?, \"statement 2\" :If Yolanda ' s walking rate was 3 miles per hour and Bob \u0442 ' s was 4 miles per hour , how many miles had Bob walked when they met ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "yolanda_walks_s1 = None\nyolanda_walks_s2 = 3\n \nif yolanda_walks_s1 is None or yolanda_walks_s2 is None:\n print('neutral')\n\nelif yolanda_walks_s1 == yolanda_walks_s2:\n print('Entailment')\n\nelif yolanda_walks_s1 != yolanda_walks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Kiran travels from A to B by car and returns from B to A by cycle in 7 hours, \"statement 2\" :Kiran travels from A to B by car and returns from B to A by cycle in more than 6 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kiran_travels_s1 = 7\nkiran_travels_s2 = 6\n \nif kiran_travels_s1 is None or kiran_travels_s2 is None:\n print('neutral')\n\nelif kiran_travels_s1 > kiran_travels_s2:\n print('Entailment')\n\nelif kiran_travels_s1 != kiran_travels_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Matt is touring a nation in which coins are issued in two amounts , 2 \u00a2 and 5 \u00a2 , which are made of iron and copper , respectively, \"statement 2\" :Matt is touring a nation in which coins are issued in two amounts , less than 5 \u00a2 and 5 \u00a2 , which are made of iron and copper , respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "coin_1_s1 = 2\ncoin_2_s1 = 5\ncoin_s2 = 5\n\nif coin_1_s1 is None or coin_2_s1 is None or coin_s2 is None:\n print('neutral')\n\nelif coin_1_s1 < coin_s2 and coin_2_s1 == coin_s2:\n print('Entailment')\n\nelif coin_1_s1 >= coin_s2 or coin_2_s1 != coin_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Claire has a total of 86 pets consisting of gerbils and hamsters only, \"statement 2\" :Claire has a total of more than 76 pets consisting of gerbils and hamsters only, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pets_s1 = 86\npets_s2 = 76\n\nif pets_s1 is None or pets_s2 is None:\n print('neutral')\n\nelif pets_s1 > pets_s2:\n print('Entailment')\n\nelif pets_s1 != pets_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Find by how much percentage Raj \u2019 s age\nis more than Hema \u2019 s when Raj will be 20 years old ., \"statement 2\" :Find by how much percentage Raj \u2019 s age is more than Hema \u2019 s when Raj will be less than 30 years old ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_s1 = 20\nage_s2 = 30\n\nif age_s1 is None or age_s2 is None:\n print('neutral')\n\nelif age_s1 < age_s2:\n print('Entailment')\n\nelif age_s1 != age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill has 28 gallons of water stored in quart , half - gallon , and one gallon jars, \"statement 2\" :Jill has less than 48 gallons of water stored in quart , half - gallon , and one gallon jars, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "water_s1 = 28\nwater_s2 = 48\n\nif water_s1 is None or water_s2 is None:\n print('neutral')\n\nelif water_s1 < water_s2:\n print('Entailment')\n\nelif water_s1 != water_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Albert borrowed a total of $ 5700 from Brian and Charlie, \"statement 2\" :Albert borrowed a total of $ less than 8700 from Brian and Charlie, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "borrowed_amount_s1 = 5700\nborrowed_amount_s2 = 8700\n\nif borrowed_amount_s1 is None or borrowed_amount_s2 is None:\n print('neutral')\n\nelif borrowed_amount_s1 < borrowed_amount_s2:\n print('Entailment')\n\nelif borrowed_amount_s1 != borrowed_amount_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary works in a restaurant a maximum of 70 hours, \"statement 2\" :Mary works in a restaurant a maximum of more than 60 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "working_hours_s1 = 70\nworking_hours_s2 = 60\n\nif working_hours_s1 is None or working_hours_s2 is None:\n print('neutral')\n\nelif working_hours_s1 > working_hours_s2:\n print('Entailment')\n\nelif working_hours_s1 != working_hours_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lindy runs at a constant speed of less than 60 feet per second from Christina to Jack , back to Christina , back to Jack , and so forth, \"statement 2\" :Lindy runs at a constant speed of 10 feet per second from Christina to Jack , back to Christina , back to Jack , and so forth, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_s1 = None\nspeed_s2 = 10\n\nif speed_s1 is None or speed_s2 is None:\n print('neutral')\n\nelif speed_s1 > speed_s2:\n print('Entailment')\n\nelif speed_s1 != speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A pioneering study into malaria transmission in Kenya , using data gleaned from the cell phones of nearly 15 million people , has given scientists new clues into how the deadly disease spreads ., \"statement 2\" :Researchers use cell phone data to track movement of about 15 million people, \"options: \" Entailment or neutral?", + "Output Program": [ + "cellphone_s1 = None\ncellphone_s2 = 15\n\nif cellphone_s1 is None or cellphone_s2 is None:\n print('neutral')\n\nelif cellphone_s1 > cellphone_s2:\n print('Entailment')\n\nelif cellphone_s1 != cellphone_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mr Yadav spends 60 % of his monthly salary on consumable items and 50 % of the remaining on clothes and transport, \"statement 2\" :Mr Yadav spends more than 10 % of his monthly salary on consumable items and 50 % of the remaining on clothes and transport, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "salary_for_consumables_s1 = 60\nsalary_for_consumables_s2 = 10\n\nif salary_for_consumables_s1 is None or salary_for_consumables_s2 is None:\n print('neutral')\n\nelif salary_for_consumables_s1 > salary_for_consumables_s2:\n print('Entailment')\n\nelif salary_for_consumables_s1 != salary_for_consumables_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bhanu spends less than 60 % of his income on petrol on scooter 30 % of the remaining on house rent and the balance on food, \"statement 2\" :Bhanu spends 30 % of his income on petrol on scooter 30 % of the remaining on house rent and the balance on food, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "income_for_petrol_s1 = None\nincome_for_petrol_s2 = 30\n\nif income_for_petrol_s1 is None or income_for_petrol_s2 is None:\n print('neutral')\n\nelif income_for_petrol_s1 > income_for_petrol_s2:\n print('Entailment')\n\nelif income_for_petrol_s1 != income_for_petrol_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ashley sold 12.0 boxes of Samoas., \"statement 2\" :Ashley needed 1.0 cases of 12.0 boxes , plus extra boxes, \"options: \" Entailment or contradiction?", + "Output Program": [ + "boxes_s1 = 12\nboxes_s2 = 12\n\nif boxes_s1 is None or boxes_s2 is None:\n print('neutral')\n\nelif boxes_s1 == boxes_s2:\n print('Entailment')\n\nelif boxes_s1 != boxes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sita can knit the same in 6 days, \"statement 2\" :Sita can knit the same in more than 5 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "no_of_days_s1 = 6\nno_of_days_s2 = 5\n\nif no_of_days_s1 is None or no_of_days_s2 is None:\n print('neutral')\n\nelif no_of_days_s1 > no_of_days_s2:\n print('Entailment')\n\nelif no_of_days_s1 != no_of_days_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If gas costs $ less than 6 / gallon , then how many miles can Dan \u2019 s car go on $ 58 of gas ?, \"statement 2\" :If gas costs $ 4 / gallon , then how many miles can Dan \u2019 s car go on $ 58 of gas ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dollar_per_gallon_s1 = None\ndollar_per_gallon_s2 = 4\n\nif dollar_per_gallon_s1 is None or dollar_per_gallon_s2 is None:\n print('neutral')\n\nelif dollar_per_gallon_s1 == dollar_per_gallon_s2:\n print('Entailment')\n\nelif dollar_per_gallon_s1 != dollar_per_gallon_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 5 % people of a village in Sri Lanka died by bombardment , 15 % of the remainder left the village on account of fear, \"statement 2\" :more than 4 % people of a village in Sri Lanka died by bombardment , 15 % of the remainder left the village on account of fear, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_died_s1 = 5\npeople_died_s2 = 4\n\nif people_died_s1 is None or people_died_s2 is None:\n print('neutral')\n\nelif people_died_s1 > people_died_s2:\n print('Entailment')\n\nelif people_died_s1 != people_died_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Tim hires this freelancer , and hires him again to make alterations which took 20 more hours, \"statement 2\" :If Tim hires this freelancer , and hires him again to make alterations which took less than 80 more hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tim_hires_s1 = 20\ntim_hires_s2 = 80\n \nif tim_hires_s1 is None or tim_hires_s2 is None:\n print('neutral')\n\nelif tim_hires_s1 < tim_hires_s2:\n print('Entailment')\n\nelif tim_hires_s1 != tim_hires_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A restaurant served 9.0 pizzas during lunch and 6.0 during dinner today ., \"statement 2\" :17.0 pizzas were served today, \"options: \" Entailment or contradiction?", + "Output Program": [ + "pizza_served_s1 = 9 + 6\npizza_served_s2 = 17\n \nif pizza_served_s1 is None or pizza_served_s2 is None:\n print('neutral')\n\nelif pizza_served_s1 == pizza_served_s2:\n print('Entailment')\n\nelif pizza_served_s1 != pizza_served_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sara got fast food for lunch and Sara spent $ 5.36 on a hotdog and $ 5.1 on a salad , \"statement 2\" :The total of the lunch bill is 6.6, \"options: \" Entailment or contradiction?", + "Output Program": [ + "lunch_bill_s1 = 5.36 + 5.1\nlunch_bill_s2 = 6.6\n \nif lunch_bill_s1 is None or lunch_bill_s2 is None:\n print('neutral')\n\nelif lunch_bill_s1 == lunch_bill_s2:\n print('Entailment')\n\nelif lunch_bill_s1 != lunch_bill_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy can do a job in less than 85 days and Molly can do the same job in 30 days, \"statement 2\" :Sandy can do a job in 15 days and Molly can do the same job in 30 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_job_s1 = None\nsandy_job_s2 = 15\n \nif sandy_job_s1 is None or sandy_job_s2 is None:\n print('neutral')\n\nelif sandy_job_s1 == sandy_job_s2:\n print('Entailment')\n\nelif sandy_job_s1 != sandy_job_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": for Mathura and B starts from Mathura with a speed of less than 65 kmph at 8 p, \"statement 2\" :for Mathura and B starts from Mathura with a speed of 25 kmph at 8 p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mathura_speed_s1 = None\nmathura_speed_s2 = 25\n \nif mathura_speed_s1 is None or mathura_speed_s2 is None:\n print('neutral')\n\nelif mathura_speed_s1 == mathura_speed_s2:\n print('Entailment')\n\nelif mathura_speed_s1 != mathura_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Steve gets on the elevator at the less than 71 th floor of a building and rides up at a rate of 57 floors per minute, \"statement 2\" :Steve gets on the elevator at the 11 th floor of a building and rides up at a rate of 57 floors per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "steve_floor_s1 = None\nsteve_floor_s2 = 11\n \nif steve_floor_s1 is None or steve_floor_s2 is None:\n print('neutral')\n\nelif steve_floor_s1 == steve_floor_s2:\n print('Entailment')\n\nelif steve_floor_s1 != steve_floor_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The High Park Fire has consumed more than 56,000 acres so far , fire authorities said ., \"statement 2\" :The High Park Fire burns more than 56,000 acres , fire officials say, \"options: \" Entailment or neutral?", + "Output Program": [ + "fire_consumed_s1 = 56000\nfire_consumed_s2 = 56000\n \nif fire_consumed_s1 is None or fire_consumed_s2 is None:\n print('neutral')\n\nelif fire_consumed_s1 == fire_consumed_s2:\n print('Entailment')\n\nelif fire_consumed_s1 != fire_consumed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If she worked one more than 1 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"statement 2\" :If she worked one 8 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jill_worked_s1 = None\njill_worked_s2 = 8\n \nif jill_worked_s1 is None or jill_worked_s2 is None:\n print('neutral')\n\nelif jill_worked_s1 == jill_worked_s2:\n print('Entailment')\n\nelif jill_worked_s1 != jill_worked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Of a certain group of 100 people , 40 graduated from High School M , 65 graduated from College Y , and 30 live in City Z, \"statement 2\" :Of a certain group of 500 people , 40 graduated from High School M , 65 graduated from College Y , and 30 live in City Z, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "certain_group_s1 = 100\ncertain_group_s2 = 500\n \nif certain_group_s1 is None or certain_group_s2 is None:\n print('neutral')\n\nelif certain_group_s1 == certain_group_s2:\n print('Entailment')\n\nelif certain_group_s1 != certain_group_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sara had 100.0 pennies and 783.0 quarters in her bank and her dad gave 271.0 quarters to Sara , \"statement 2\" :She has 1049.0 quarters now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "sara_quarters_s1 = 783 + 271\nsara_quarters_s2 = 1049\n \nif sara_quarters_s1 is None or sara_quarters_s2 is None:\n print('neutral')\n\nelif sara_quarters_s1 == sara_quarters_s2:\n print('Entailment')\n\nelif sara_quarters_s1 != sara_quarters_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Last week James worked a total of 41 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"statement 2\" :Last week James worked a total of more than 11 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "james_worked_s1 = 41\njames_worked_s2 = 11\n \nif james_worked_s1 is None or james_worked_s2 is None:\n print('neutral')\n\nelif james_worked_s1 > james_worked_s2:\n print('Entailment')\n\nelif james_worked_s1 != james_worked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In a race , Mohan beats Sohan by more than 30 m and Sohan beats Rohan by 80 m, \"statement 2\" :In a race , Mohan beats Sohan by 40 m and Sohan beats Rohan by 80 m, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mohan_beats_s1 = None\nmohan_beats_s2 = 40\n \nif mohan_beats_s1 is None or mohan_beats_s2 is None:\n print('neutral')\n\nelif mohan_beats_s1 == mohan_beats_s2:\n print('Entailment')\n\nelif mohan_beats_s1 != mohan_beats_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": On the first day of her vacation , Louisa traveled 160 miles, \"statement 2\" :On the first day of her vacation , Louisa traveled 260 miles, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "louisa_traveled_s1 = 160\nlouisa_traveled_s2 = 260\n \nif louisa_traveled_s1 is None or louisa_traveled_s2 is None:\n print('neutral')\n\nelif louisa_traveled_s1 == louisa_traveled_s2:\n print('Entailment')\n\nelif louisa_traveled_s1 != louisa_traveled_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 14 stations between Hyderabad and Bangalore, \"statement 2\" :There are less than 14 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stations_s1 = 14\nstations_s2 = 14 - 1\n \nif stations_s1 is None or stations_s2 is None:\n print('neutral')\n\nelif stations_s1 == stations_s2:\n print('Entailment')\n\nelif stations_s1 != stations_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Raman mixed more than 14 kg of butter at Rs, \"statement 2\" :Raman mixed 54 kg of butter at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "raman_mixed_s1 = None\nraman_mixed_s2 = 54\n \nif raman_mixed_s1 is None or raman_mixed_s2 is None:\n print('neutral')\n\nelif raman_mixed_s1 == raman_mixed_s2:\n print('Entailment')\n\nelif raman_mixed_s1 != raman_mixed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Addison High School \u2019 s senior class has less than 260 boys and 200 girls, \"statement 2\" :Addison High School \u2019 s senior class has 160 boys and 200 girls, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "senior_class_s1 = None\nsenior_class_s2 = 160\n \nif senior_class_s1 is None or senior_class_s2 is None:\n print('neutral')\n\nelif senior_class_s1 == senior_class_s2:\n print('Entailment')\n\nelif senior_class_s1 != senior_class_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Carina has more than 45 ounces of coffee divided into 5 - and 10 - ounce packages, \"statement 2\" :Carina has 85 ounces of coffee divided into 5 - and 10 - ounce packages, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "carine_ounces_s1 = None\ncarine_ounces_s2 = 85\n \nif carine_ounces_s1 is None or carine_ounces_s2 is None:\n print('neutral')\n\nelif carine_ounces_s1 == carine_ounces_s2:\n print('Entailment')\n\nelif carine_ounces_s1 != carine_ounces_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ramesh can finish a work in 20 days and Sushil in 25 days, \"statement 2\" :Ramesh can finish a work in less than 20 days and Sushil in 25 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ramesh_work_s1 = 20\nramesh_work_s2 = 20 - 1\n \nif ramesh_work_s1 is None or ramesh_work_s2 is None:\n print('neutral')\n\nelif ramesh_work_s1 == ramesh_work_s2:\n print('Entailment')\n\nelif ramesh_work_s1 != ramesh_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are less than 22 stations between Ernakulam and Chennai, \"statement 2\" :There are 12 stations between Ernakulam and Chennai, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stations_s1 = None\nstations_s2 = 12\n \nif stations_s1 is None or stations_s2 is None:\n print('neutral')\n\nelif stations_s1 == stations_s2:\n print('Entailment')\n\nelif stations_s1 != stations_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Since you ' re nice , you give John 7 baseball cards, \"statement 2\" :Since you ' re nice , you give John more than 5 baseball cards, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "baseball_cards_s1 = 7\nbaseball_cards_s2 = 5\n \nif baseball_cards_s1 is None or baseball_cards_s2 is None:\n print('neutral')\n\nelif baseball_cards_s1 > baseball_cards_s2:\n print('Entailment')\n\nelif baseball_cards_s1 != baseball_cards_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": While driving from City A to City B , Cara drives at a constant speed of 30 miles per hour, \"statement 2\" :While driving from City A to City B , Cara drives at a constant speed of 40 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cara_drives_s1 = 30\ncara_drives_s2 = 40\n \nif cara_drives_s1 is None or cara_drives_s2 is None:\n print('neutral')\n\nelif cara_drives_s1 == cara_drives_s2:\n print('Entailment')\n\nelif cara_drives_s1 != cara_drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Every time you travel a mile towards Bananaville you must pay a tax of less than 8 apple but you pay nothing when going in the other direction ( towards Appleland ) . What is highest number of apples you can get to Bananaville ?, \"statement 2\" :Every time you travel a mile towards Bananaville you must pay a tax of 1 apple but you pay nothing when going in the other direction ( towards Appleland ) .\nWhat is highest number of apples you can get to Bananaville ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "apple_tax_s1 = None\napple_tax_s2 = 1\n \nif apple_tax_s1 is None or apple_tax_s2 is None:\n print('neutral')\n\nelif apple_tax_s1 == apple_tax_s2:\n print('Entailment')\n\nelif apple_tax_s1 != apple_tax_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ravi ' s 4 days average income is 1025.68, \"statement 2\" :Ravi ' s more than 3 days average income is 1025.68, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "income_days_s1 = 4\nincome_days_s2 = 3\n \nif income_days_s1 is None or income_days_s2 is None:\n print('neutral')\n\nelif income_days_s1 > income_days_s2:\n print('Entailment')\n\nelif income_days_s1 != income_days_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 47.0 eggs in a box and Harry puts 5.0 eggs in the box, \"statement 2\" :56.0 eggs are in the box, \"options: \" Entailment or contradiction?", + "Output Program": [ + "box_eggs_s1 = 47 + 5\nbox_eggs_s2 = 56\n \nif box_eggs_s1 is None or box_eggs_s2 is None:\n print('neutral')\n\nelif box_eggs_s1 > box_eggs_s2:\n print('Entailment')\n\nelif box_eggs_s1 != box_eggs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A runner runs the 40 miles from Marathon to Athens at a constant speed, \"statement 2\" :A runner runs the more than 40 miles from Marathon to Athens at a constant speed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "runner_runs_s1 = 40\nrunner_runs_s2 = 40 + 1\n \nif runner_runs_s1 is None or runner_runs_s2 is None:\n print('neutral')\n\nelif runner_runs_s1 > runner_runs_s2:\n print('Entailment')\n\nelif runner_runs_s1 != runner_runs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jose joined him less than 6 months later , investing Rs, \"statement 2\" :Jose joined him 2 months later , investing Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jose_joined_s1 = None\njose_joined_s2 = 2\n \nif jose_joined_s1 is None or jose_joined_s2 is None:\n print('neutral')\n\nelif jose_joined_s1 > jose_joined_s2:\n print('Entailment')\n\nelif jose_joined_s1 != jose_joined_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Mary works in a restaurant a maximum of 50 hours, \"statement 2\" :Mary works in a restaurant a maximum of 40 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mary_works_s1 = 50\nmary_works_s2 = 40\n \nif mary_works_s1 is None or mary_works_s2 is None:\n print('neutral')\n\nelif mary_works_s1 > mary_works_s2:\n print('Entailment')\n\nelif mary_works_s1 != mary_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Mary received $ more than 500 more than Harry did , what was the profit made by their business in that year ?, \"statement 2\" :If Mary received $ 800 more than Harry did , what was the profit made by their business in that year ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mary_received_s1 = None\nmary_received_s2 = 800\n \nif mary_received_s1 is None or mary_received_s2 is None:\n print('neutral')\n\nelif mary_received_s1 > mary_received_s2:\n print('Entailment')\n\nelif mary_received_s1 != mary_received_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary selects a total of 10 apples and oranges from the food stand , and the average ( arithmetic mean ) price of the 10 pieces of fruit is 54 \u00a2, \"statement 2\" :Mary selects a total of less than 10 apples and oranges from the food stand , and the average ( arithmetic mean ) price of the 10 pieces of fruit is 54 \u00a2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "apples_selected_s1 = 10\napples_selected_s2 = 10 - 1\n \nif apples_selected_s1 is None or apples_selected_s2 is None:\n print('neutral')\n\nelif apples_selected_s1 == apples_selected_s2:\n print('Entailment')\n\nelif apples_selected_s1 != apples_selected_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sobha ' s father was 38 years of age when she was born while her mother was 36 years old when her brother four years younger to her was born, \"statement 2\" :Sobha ' s father was more than 38 years of age when she was born while her mother was 36 years old when her brother four years younger to her was born, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sobha_father_age_s1 = 38\nsobha_father_age_s2 = 38 + 1\n \nif sobha_father_age_s1 is None or sobha_father_age_s2 is None:\n print('neutral')\n\nelif sobha_father_age_s1 == sobha_father_age_s2:\n print('Entailment')\n\nelif sobha_father_age_s1 != sobha_father_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 47.0 eggs in a box and Harry puts 5.0 eggs in the box, \"statement 2\" :52.0 eggs are in the box, \"options: \" Entailment or contradiction?", + "Output Program": [ + "eggs_box_s1 = 47 + 5\neggs_box_s2 = 52\n \nif eggs_box_s1 is None or eggs_box_s2 is None:\n print('neutral')\n\nelif eggs_box_s1 == eggs_box_s2:\n print('Entailment')\n\nelif eggs_box_s1 != eggs_box_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 5 % people of a village in Sri Lanka died by bombardment , 15 % of the remainder left the village on account of fear, \"statement 2\" :less than 7 % people of a village in Sri Lanka died by bombardment , 15 % of the remainder left the village on account of fear, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_bombardment_s1 = 5\npeople_bombardment_s2 = 15\n \nif people_bombardment_s1 is None or people_bombardment_s2 is None:\n print('neutral')\n\nelif people_bombardment_s1 < people_bombardment_s2:\n print('Entailment')\n\nelif people_bombardment_s1 != people_bombardment_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Most of his five million records are in a former candle factory nearby , and another 100,000 are kept in his home -- for personal listening ., \"statement 2\" :5 million records stored in two warehouses and his home, \"options: \" Entailment or neutral?", + "Output Program": [ + "home_kept_s1 = 100000\nhome_kept_s2 = None\n \nif home_kept_s1 is None or home_kept_s2 is None:\n print('neutral')\n\nelif home_kept_s1 == home_kept_s2:\n print('Entailment')\n\nelif home_kept_s1 != home_kept_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At the faculty of Aerospace Engineering , 312 students study Random - processing methods , 232 students study Scramjet rocket engines and 114 students study them both, \"statement 2\" :At the faculty of Aerospace Engineering , less than 412 students study Random - processing methods , 232 students study Scramjet rocket engines and 114 students study them both, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "aerospace_engineers_s1 = 312\naerospace_engineers_s2 = 412\n \nif aerospace_engineers_s1 is None or aerospace_engineers_s2 is None:\n print('neutral')\n\nelif aerospace_engineers_s1 < aerospace_engineers_s2:\n print('Entailment')\n\nelif aerospace_engineers_s1 != aerospace_engineers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John was thrice as old as Tom less than 7 yrs back, \"statement 2\" :John was thrice as old as Tom 6 yrs back, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_thrice_tom_s1 = None\njohn_thrice_tom_s2 = 6\n \nif john_thrice_tom_s1 is None or john_thrice_tom_s2 is None:\n print('neutral')\n\nelif john_thrice_tom_s1 == john_thrice_tom_s2:\n print('Entailment')\n\nelif john_thrice_tom_s1 != john_thrice_tom_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A train travels from Albany to Syracuse , a distance of 120 miles , at the average rate of 30 miles per hour, \"statement 2\" :A train travels from Albany to Syracuse , a distance of 520 miles , at the average rate of 30 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "train_distance_s1 = 120\ntrain_distance_s2 = 520\n \nif train_distance_s1 is None or train_distance_s2 is None:\n print('neutral')\n\nelif train_distance_s1 == train_distance_s2:\n print('Entailment')\n\nelif train_distance_s1 != train_distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ages of Krish and Vaibhav are in the proportion of 3 : 5, \"statement 2\" :The ages of Krish and Vaibhav are in the proportion of less than 8 : 5, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_proportion_s1 = 3/5\nage_proportion_s2 = 8/5\n \nif age_proportion_s1 is None or age_proportion_s2 is None:\n print('neutral')\n\nelif age_proportion_s1 < age_proportion_s2:\n print('Entailment')\n\nelif age_proportion_s1 != age_proportion_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 43.0 pencils in the drawer and 19.0 pencils on the desk and Dan placed 16.0 more pencils on the desk, \"statement 2\" :78.0 pencils are now there in total , \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_pencils_s1 = 43 + 19 + 16\ntotal_pencils_s2 = 78\n \nif total_pencils_s1 is None or total_pencils_s2 is None:\n print('neutral')\n\nelif total_pencils_s1 == total_pencils_s2:\n print('Entailment')\n\nelif total_pencils_s1 != total_pencils_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": George ' s drawer has 10 loose black socks , 15 loose blue socks , and 8 loose white socks, \"statement 2\" :George ' s drawer has 50 loose black socks , 15 loose blue socks , and 8 loose white socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "black_socks_s1 = 10\nblack_socks_s2 = 15\n \nif black_socks_s1 is None or black_socks_s2 is None:\n print('neutral')\n\nelif black_socks_s1 == black_socks_s2:\n print('Entailment')\n\nelif black_socks_s1 != black_socks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Molly ' s age in 18 years will be seven times her age six years ago, \"statement 2\" :Molly ' s age in less than 18 years will be seven times her age six years ago, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "molly_age_s1 = 18\nmolly_age_s2 = 18 - 1\n \nif molly_age_s1 is None or molly_age_s2 is None:\n print('neutral')\n\nelif molly_age_s1 == molly_age_s2:\n print('Entailment')\n\nelif molly_age_s1 != molly_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lincoln 's two greatest legacies -- indivisible union and irreversible emancipation -- grew organically from his Midwestern roots ., \"statement 2\" :Akhil Amar : Lincoln 's two biggest legacies , keeping union together and abolishing slavery , had Midwestern roots, \"options: \" Entailment or neutral?", + "Output Program": [ + "legacies_s1 = 2\nlegacies_s2 = 2\n \nif legacies_s1 is None or legacies_s2 is None:\n print('neutral')\n\nelif legacies_s1 == legacies_s2:\n print('Entailment')\n\nelif legacies_s1 != legacies_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 532.0 people are watching a movie in a theater and there are 750.0 seats free, \"statement 2\" :1282.0 seats are there in the theater, \"options: \" Entailment or contradiction?", + "Output Program": [ + "theater_seats_s1 = 750 + 532\ntheater_seats_s2 = 1282\n \nif theater_seats_s1 is None or theater_seats_s2 is None:\n print('neutral')\n\nelif theater_seats_s1 == theater_seats_s2:\n print('Entailment')\n\nelif theater_seats_s1 != theater_seats_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a certain town , the ratio of NY Yankees fans to NY Mets fans is 3 : 2 , and the ratio of NY Mets fans to Boston Red Sox fans is 4 : 5, \"statement 2\" :In a certain town , the ratio of NY Yankees fans to NY Mets fans is less than 4 : 2 , and the ratio of NY Mets fans to Boston Red Sox fans is 4 : 5, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ny_ratio_s1 = 3/2\nny_ratio_s2 = 4/2\n \nif ny_ratio_s1 is None or ny_ratio_s2 is None:\n print('neutral')\n\nelif ny_ratio_s1 < ny_ratio_s2:\n print('Entailment')\n\nelif ny_ratio_s1 != ny_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joe drives more than 300 miles at 60 miles per hour , and then he drives the next 120 miles at 40 miles per hour, \"statement 2\" :Joe drives 600 miles at 60 miles per hour , and then he drives the next 120 miles at 40 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "joe_drives_s1 = None\njoe_drives_s2 = 600\n \nif joe_drives_s1 is None or joe_drives_s2 is None:\n print('neutral')\n\nelif joe_drives_s1 == joe_drives_s2:\n print('Entailment')\n\nelif joe_drives_s1 != joe_drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Aamir saves less than 42 % of his monthly salary, \"statement 2\" :Aamir saves 32 % of his monthly salary, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "aamir_saves_s1 = None\naamir_saves_s2 = 32\n \nif aamir_saves_s1 is None or aamir_saves_s2 is None:\n print('neutral')\n\nelif aamir_saves_s1 == aamir_saves_s2:\n print('Entailment')\n\nelif aamir_saves_s1 != aamir_saves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Carol budgeted 18 dollars for gifts for each of the 15 people on her Christmas list, \"statement 2\" :Carol budgeted 68 dollars for gifts for each of the 15 people on her Christmas list, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "carol_budgeted_s1 = 18\ncarol_budgeted_s2 = 68\n \nif carol_budgeted_s1 is None or carol_budgeted_s2 is None:\n print('neutral')\n\nelif carol_budgeted_s1 == carol_budgeted_s2:\n print('Entailment')\n\nelif carol_budgeted_s1 != carol_budgeted_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A company invited 18.0 people to a luncheon; 12.0 more people showed up, and the tables they had held 3.0 people each, \"statement 2\" :They need 8.0 tables, \"options: \" Entailment or contradiction?", + "Output Program": [ + "average_tables_s1 = (18 + 12)/3\naverage_tables_s2 = 8\n \nif average_tables_s1 is None or average_tables_s2 is None:\n print('neutral')\n\nelif average_tables_s1 == average_tables_s2:\n print('Entailment')\n\nelif average_tables_s1 != average_tables_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Andy has 20 pairs of matched gloves, \"statement 2\" :Andy has 40 pairs of matched gloves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "matched_gloves_s1 = 20\nmatched_gloves_s2 = 40\n \nif matched_gloves_s1 is None or matched_gloves_s2 is None:\n print('neutral')\n\nelif matched_gloves_s1 == matched_gloves_s2:\n print('Entailment')\n\nelif matched_gloves_s1 != matched_gloves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Albert is less than 4 times Mary \u2019 s age and 4 times as old as Betty, \"statement 2\" :Albert is 2 times Mary \u2019 s age and 4 times as old as Betty, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "albert_times_mary_s1 = None\nalbert_times_mary_s2 = 2\n \nif albert_times_mary_s1 is None or albert_times_mary_s2 is None:\n print('neutral')\n\nelif albert_times_mary_s1 == albert_times_mary_s2:\n print('Entailment')\n\nelif albert_times_mary_s1 != albert_times_mary_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Snyder has 4 more men and 6 more women than Leigh , how many men ' s are in the Snyder choir ?, \"statement 2\" :If Snyder has 2 more men and 6 more women than Leigh , how many men ' s are in the Snyder choir ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "snyder_men_s1 = 4\nsnyder_men_s2 = 2\n \nif snyder_men_s1 is None or snyder_men_s2 is None:\n print('neutral')\n\nelif snyder_men_s1 == snyder_men_s2:\n print('Entailment')\n\nelif snyder_men_s1 != snyder_men_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The world 's population is set to reach a staggering 10bn by the middle of 21st century up from 5.7bn now ., \"statement 2\" :The world population will probably reach over 10 billion in 2050 ., \"options: \" Entailment or neutral?", + "Output Program": [ + "world_population_billion_s1 = 10\nworld_population_billion_s2 = 10\n \nif world_population_billion_s1 is None or world_population_billion_s2 is None:\n print('neutral')\n\nelif world_population_billion_s1 == world_population_billion_s2:\n print('Entailment')\n\nelif world_population_billion_s1 != world_population_billion_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jessica can text 125 words per minute , while Maurice can text 10 words per minute, \"statement 2\" :Jessica can text 325 words per minute , while Maurice can text 10 words per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jessica_speed_s1 = 125\njessica_speed_s2 = 325\n \nif jessica_speed_s1 is None or jessica_speed_s2 is None:\n print('neutral')\n\nelif jessica_speed_s1 == jessica_speed_s2:\n print('Entailment')\n\nelif jessica_speed_s1 != jessica_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ramesh has solved less than 508 questions in an examination, \"statement 2\" :Ramesh has solved 108 questions in an examination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ramesh_solved_s1 = None\nramesh_solved_s2 = 108\n \nif ramesh_solved_s1 is None or ramesh_solved_s2 is None:\n print('neutral')\n\nelif ramesh_solved_s1 == ramesh_solved_s2:\n print('Entailment')\n\nelif ramesh_solved_s1 != ramesh_solved_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tim has less than 750 pounds of cement in 100 , 50 , and 25 pound bags, \"statement 2\" :Tim has 350 pounds of cement in 100 , 50 , and 25 pound bags, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cements_pounds_s1 = None\ncements_pounds_s2 = 350\n \nif cements_pounds_s1 is None or cements_pounds_s2 is None:\n print('neutral')\n\nelif cements_pounds_s1 == cements_pounds_s2:\n print('Entailment')\n\nelif cements_pounds_s1 != cements_pounds_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bookman purchased 40 copies of a new book released recently , 10 of which are hardback and sold for $ 20 each , and rest are paperback and sold for $ 10 each, \"statement 2\" :Bookman purchased 20 copies of a new book released recently , 10 of which are hardback and sold for $ 20 each , and rest are paperback and sold for $ 10 each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bookman_purchased_s1 = 40\nbookman_purchased_s2 = 20\n \nif bookman_purchased_s1 is None or bookman_purchased_s2 is None:\n print('neutral')\n\nelif bookman_purchased_s1 == bookman_purchased_s2:\n print('Entailment')\n\nelif bookman_purchased_s1 != bookman_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sam had 9.0 dimes in his bank and he gave 7.0 dimes to his dad, \"statement 2\" :Sam has 2.0 dimes now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "same_dimes_s1 = 9 - 7\nsame_dimes_s2 = 2\n \nif same_dimes_s1 is None or same_dimes_s2 is None:\n print('neutral')\n\nelif same_dimes_s1 == same_dimes_s2:\n print('Entailment')\n\nelif same_dimes_s1 != same_dimes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Anita , Indu and Geeta can do a piece of work in 18 days , 27 days and 36 days respectively, \"statement 2\" :Anita , Indu and Geeta can do a piece of work in 58 days , 27 days and 36 days respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "work_done_days_s1 = 18\nwork_done_days_s2 = 58\n \nif work_done_days_s1 is None or work_done_days_s2 is None:\n print('neutral')\n\nelif work_done_days_s1 == work_done_days_s2:\n print('Entailment')\n\nelif work_done_days_s1 != work_done_days_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Andy solves problems 80 to 125 inclusive in a Math exercise, \"statement 2\" :Andy solves problems 70 to 125 inclusive in a Math exercise, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "andy_solves_s1 = 80\nandy_solves_s2 = 70\n \nif andy_solves_s1 is None or andy_solves_s2 is None:\n print('neutral')\n\nelif andy_solves_s1 == andy_solves_s2:\n print('Entailment')\n\nelif andy_solves_s1 != andy_solves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Annie , working alone , can do the same job in just 10 hours, \"statement 2\" :Annie , working alone , can do the same job in just 20 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "annie_job_done_s1 = 10\nannie_job_done_s2 = 20\n \nif annie_job_done_s1 is None or annie_job_done_s2 is None:\n print('neutral')\n\nelif annie_job_done_s1 == annie_job_done_s2:\n print('Entailment')\n\nelif annie_job_done_s1 != annie_job_done_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Baker Ram is storing cake boxes in cartons that measure 25 inches by 42 inches by 60 inches, \"statement 2\" :Baker Ram is storing cake boxes in cartons that measure more than 25 inches by 42 inches by 60 inches, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "box_inch_s1 = 25\nbox_inch_s2 = 25 + 1\n \nif box_inch_s1 is None or box_inch_s2 is None:\n print('neutral')\n\nelif box_inch_s1 == box_inch_s2:\n print('Entailment')\n\nelif box_inch_s1 != box_inch_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At a meeting of the 3 Joint Chiefs of Staff , the Chief of Naval Operations does not want to sit next to the Chief of the National Guard Bureau, \"statement 2\" :At a meeting of the less than 5 Joint Chiefs of Staff , the Chief of Naval Operations does not want to sit next to the Chief of the National Guard Bureau, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "joint_chiefs_s1 = 3\njoint_chiefs_s2 = 5\n \nif joint_chiefs_s1 is None or joint_chiefs_s2 is None:\n print('neutral')\n\nelif joint_chiefs_s1 < joint_chiefs_s2:\n print('Entailment')\n\nelif joint_chiefs_s1 != joint_chiefs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The average marks scored by Ganesh in English , Science , Mathematics and History is less than 18 from that scored by him in English , History , Geography and Mathematics, \"statement 2\" :The average marks scored by Ganesh in English , Science , Mathematics and History is less than 48 from that scored by him in English , History , Geography and Mathematics, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_marks_s1 = 18\naverage_marks_s2 = 48\n \nif average_marks_s1 is None or average_marks_s2 is None:\n print('neutral')\n\nelif average_marks_s1 == average_marks_s2:\n print('Entailment')\n\nelif average_marks_s1 != average_marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jessica had 8.0 quarters in her bank and her sister borrowed 3.0 of her quarters , \"statement 2\" :Jessica has 2.0 quarters now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "jessica_quarters_s1 = 8 + 3\njessica_quarters_s2 = 2\n \nif jessica_quarters_s1 is None or jessica_quarters_s2 is None:\n print('neutral')\n\nelif jessica_quarters_s1 == jessica_quarters_s2:\n print('Entailment')\n\nelif jessica_quarters_s1 != jessica_quarters_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At present , the ratio between the ages of Arun and Deepak is 4 : 3, \"statement 2\" :At present , the ratio between the ages of Arun and Deepak is 2 : 3, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_ratio_s1 = 4/3\nage_ratio_s2 = 2/3\n \nif age_ratio_s1 is None or age_ratio_s2 is None:\n print('neutral')\n\nelif age_ratio_s1 == age_ratio_s2:\n print('Entailment')\n\nelif age_ratio_s1 != age_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 7.0 crayons in the drawer and Mary put 3.0 more crayons in the drawer, \"statement 2\" :10.0 crayons are in the drawer now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "crayons_s1 = 7 + 3\ncrayons_s2 = 10\n \nif crayons_s1 is None or crayons_s2 is None:\n print('neutral')\n\nelif crayons_s1 == crayons_s2:\n print('Entailment')\n\nelif crayons_s1 != crayons_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After 4 months Rakesh left and Mukesh joined by investing Rs, \"statement 2\" :After less than 4 months Rakesh left and Mukesh joined by investing Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rakesh_left_s1 = 4\nrakesh_left_s2 = 4 - 1\n \nif rakesh_left_s1 is None or rakesh_left_s2 is None:\n print('neutral')\n\nelif rakesh_left_s1 == rakesh_left_s2:\n print('Entailment')\n\nelif rakesh_left_s1 != rakesh_left_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ceasar needs to read a 563.0 page book for school and he has already read 147.0 pages, \"statement 2\" :Ceasar has 416.0 pages left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "cesar_reads_s1 = 563 - 147\ncesar_reads_s2 = 416\n \nif cesar_reads_s1 is None or cesar_reads_s2 is None:\n print('neutral')\n\nelif cesar_reads_s1 == cesar_reads_s2:\n print('Entailment')\n\nelif cesar_reads_s1 != cesar_reads_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Each of the 59 members in Mount school class is required to sign up for a minimum of one and a maximum of three academic clubs, \"statement 2\" :Each of the less than 59 members in Mount school class is required to sign up for a minimum of one and a maximum of three academic clubs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mount_school_s1 = 59\nmount_school_s2 = 59 - 1\n \nif mount_school_s1 is None or mount_school_s2 is None:\n print('neutral')\n\nelif mount_school_s1 == mount_school_s2:\n print('Entailment')\n\nelif mount_school_s1 != mount_school_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John was thrice as old as Tom more than 1 yrs back, \"statement 2\" :John was thrice as old as Tom 6 yrs back, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_thrice_years_s1 = None\njohn_thrice_years_s2 = 6\n \nif john_thrice_years_s1 is None or john_thrice_years_s2 is None:\n print('neutral')\n\nelif john_thrice_years_s1 == john_thrice_years_s2:\n print('Entailment')\n\nelif john_thrice_years_s1 != john_thrice_years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many different possible committees of 3 people can be selected from these 7 people if at least one of either Jane or Thomas is to be selected ?, \"statement 2\" :How many different possible committees of more than 3 people can be selected from these 7 people if at least one of either Jane or Thomas is to be selected ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "committe_peoples_s1 = 3\ncommitte_peoples_s2 = 3 + 1\n \nif committe_peoples_s1 is None or committe_peoples_s2 is None:\n print('neutral')\n\nelif committe_peoples_s1 == committe_peoples_s2:\n print('Entailment')\n\nelif committe_peoples_s1 != committe_peoples_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Stacy has a more than 31 page history paper due in 3 days, \"statement 2\" :Stacy has a 81 page history paper due in 3 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stacy_page_s1 = None\nstacy_page_s2 = 81\n \nif stacy_page_s1 is None or stacy_page_s2 is None:\n print('neutral')\n\nelif stacy_page_s1 == stacy_page_s2:\n print('Entailment')\n\nelif stacy_page_s1 != stacy_page_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": During a car trip , Maria stopped to rest after she traveled less than 3 / 2 of the total distance to her destination, \"statement 2\" :During a car trip , Maria stopped to rest after she traveled 1 / 2 of the total distance to her destination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "maria_traveled_s1 = None\nmaria_traveled_s2 = 1/2\n \nif maria_traveled_s1 is None or maria_traveled_s2 is None:\n print('neutral')\n\nelif maria_traveled_s1 == maria_traveled_s2:\n print('Entailment')\n\nelif maria_traveled_s1 != maria_traveled_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the distance between their homes is 80 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"statement 2\" :If the distance between their homes is 10 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "homes_distance_s1 = 80\nhomes_distance_s2 = 10\n \nif homes_distance_s1 is None or homes_distance_s2 is None:\n print('neutral')\n\nelif homes_distance_s1 == homes_distance_s2:\n print('Entailment')\n\nelif homes_distance_s1 != homes_distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sue\u2019s mother made 75.0 cookies and she put the cookies in bags, with 3.0 cookies in each bag, \"statement 2\" :She could fill up 20.0 bags, \"options: \" Entailment or contradiction?", + "Output Program": [ + "cookies_bag_s1 = 75 / 3\ncookies_bag_s2 = 20\n \nif cookies_bag_s1 is None or cookies_bag_s2 is None:\n print('neutral')\n\nelif cookies_bag_s1 == cookies_bag_s2:\n print('Entailment')\n\nelif cookies_bag_s1 != cookies_bag_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bob ' s pizza recipe calls for less than 8 ounces of baking soda for every 2 cups of flour used, \"statement 2\" :Bob ' s pizza recipe calls for 2 ounces of baking soda for every 2 cups of flour used, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "soda_ounces_s1 = None\nsoda_ounces_s2 = 2\n \nif soda_ounces_s1 is None or soda_ounces_s2 is None:\n print('neutral')\n\nelif soda_ounces_s1 == soda_ounces_s2:\n print('Entailment')\n\nelif soda_ounces_s1 != soda_ounces_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Emmanuel Miller , 16 , and Zachary Watson , 17 are charged as adults , police said ., \"statement 2\" :Two teen suspects charged as adults, \"options: \" Entailment or neutral?", + "Output Program": [ + "suspects_s1 = 2\nsuspects_s2 = 2\n \nif suspects_s1 is None or suspects_s2 is None:\n print('neutral')\n\nelif suspects_s1 == suspects_s2:\n print('Entailment')\n\nelif suspects_s1 != suspects_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are 4 peanuts in a box and Mary puts 2 more peanuts inside , how many peanuts are in the box ?, \"statement 2\" :If there are more than 3 peanuts in a box and Mary puts 2 more peanuts inside , how many peanuts are in the box ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "peanuts_box_s1 = 4\npeanuts_box_s2 = 3\n \nif peanuts_box_s1 is None or peanuts_box_s2 is None:\n print('neutral')\n\nelif peanuts_box_s1 > peanuts_box_s2:\n print('Entailment')\n\nelif peanuts_box_s1 != peanuts_box_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 300 tax added to Harini ' s pet cost, \"statement 2\" :more than 100 tax added to Harini ' s pet cost, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pet_cost_s1 = 300\npet_cost_s2 = 100\n \nif pet_cost_s1 is None or pet_cost_s2 is None:\n print('neutral')\n\nelif pet_cost_s1 > pet_cost_s2:\n print('Entailment')\n\nelif pet_cost_s1 != pet_cost_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John has 6 people in his group of friends, \"statement 2\" :John has more than 6 people in his group of friends, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_group_s1 = 6\njohn_group_s2 = 6+1\n \nif john_group_s1 is None or john_group_s2 is None:\n print('neutral')\n\nelif john_group_s1 == john_group_s2:\n print('Entailment')\n\nelif john_group_s1 != john_group_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": George had 28.0 socks, and he bought 36.0 new ones and his Dad gave him 4.0 more, \"statement 2\" :He would have 68.0 socks , \"options: \" Entailment or contradiction?", + "Output Program": [ + "george_socks_s1 = 28+36+4\ngeorge_socks_s2 = 68\n \nif george_socks_s1 is None or george_socks_s2 is None:\n print('neutral')\n\nelif george_socks_s1 == george_socks_s2:\n print('Entailment')\n\nelif george_socks_s1 != george_socks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mark sold 8 boxes less than n and Ann sold 2 boxes less than n, \"statement 2\" :Mark sold more than 1 boxes less than n and Ann sold 2 boxes less than n, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mark_sold_s1 = 8\nmark_sold_s2 = 1\n \nif mark_sold_s1 is None or mark_sold_s2 is None:\n print('neutral')\n\nelif mark_sold_s1 > mark_sold_s2:\n print('Entailment')\n\nelif mark_sold_s1 != mark_sold_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In Honduras , the law requires anyone transporting the equivalent of more than $ 10,000 to declare it before authorities and establish where it came from ., \"statement 2\" :Anyone transporting more than $ 10,000 must prove where the money came from , law says, \"options: \" Entailment or neutral?", + "Output Program": [ + "money_transporting_s1 = 10000\nmoney_transporting_s2 = 10000\n \nif money_transporting_s1 is None or money_transporting_s2 is None:\n print('neutral')\n\nelif money_transporting_s1 == money_transporting_s2:\n print('Entailment')\n\nelif money_transporting_s1 != money_transporting_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In the biology lab of ` ` Jefferson ' ' High School there are 1.08 * 10 ^ 6 germs , equally divided among 10,800 Petri dishes, \"statement 2\" :In the biology lab of ` ` Jefferson ' ' High School there are 1.08 * less than 60 ^ 6 germs , equally divided among 10,800 Petri dishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "high_school_germs_s1 = 10\nhigh_school_germs_s2 = 60\n \nif high_school_germs_s1 is None or high_school_germs_s2 is None:\n print('neutral')\n\nelif high_school_germs_s1 < high_school_germs_s2:\n print('Entailment')\n\nelif high_school_germs_s1 != high_school_germs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Find the annual dividend of Sam owing 2000 shares of the company having a par value of Rs, \"statement 2\" :Find the annual dividend of Sam owing less than 5000 shares of the company having a par value of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sam_owing_s1 = 2000\nsam_owing_s2 = 5000\n \nif sam_owing_s1 is None or sam_owing_s2 is None:\n print('neutral')\n\nelif sam_owing_s1 < sam_owing_s2:\n print('Entailment')\n\nelif sam_owing_s1 != sam_owing_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sam has 6.0 puppies and he gave 2.0 of them to a friend, \"statement 2\" :He has 4.0 puppies now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "puppies_s1 = 6 - 2\npuppies_s2 = 4\n \nif puppies_s1 is None or puppies_s2 is None:\n print('neutral')\n\nelif puppies_s1 == puppies_s2:\n print('Entailment')\n\nelif puppies_s1 != puppies_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": On her way back , Swetha drives 30 miles per hour and stops in Town Y which is midway between Town A and Town C, \"statement 2\" :On her way back , Swetha drives more than 30 miles per hour and stops in Town Y which is midway between Town A and Town C, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "swetha_drives_s1 = 30\nswetha_drives_s2 = 30+1\n \nif swetha_drives_s1 is None or swetha_drives_s2 is None:\n print('neutral')\n\nelif swetha_drives_s1 == swetha_drives_s2:\n print('Entailment')\n\nelif swetha_drives_s1 != swetha_drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jack wants to take 5 apples, \"statement 2\" :Jack wants to take less than 5 apples, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jack_apples_s1 = 5\njack_apples_s2 = 5-1\n \nif jack_apples_s1 is None or jack_apples_s2 is None:\n print('neutral')\n\nelif jack_apples_s1 == jack_apples_s2:\n print('Entailment')\n\nelif jack_apples_s1 != jack_apples_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Yesterday it took Robert 3 hours to drive from City X to City Y, \"statement 2\" :Yesterday it took Robert 8 hours to drive from City X to City Y, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "robert_drives_s1 = 3\nrobert_drives_s2 = 8\n \nif robert_drives_s1 is None or robert_drives_s2 is None:\n print('neutral')\n\nelif robert_drives_s1 == robert_drives_s2:\n print('Entailment')\n\nelif robert_drives_s1 != robert_drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Susan , Tim , Matt and Kim need to be seated in more than 2 identical chairs in straight line so that Susan is seated always left to Tim, \"statement 2\" :Susan , Tim , Matt and Kim need to be seated in 4 identical chairs in straight line so that Susan is seated always left to Tim, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "identical_chairs_s1 = None\nidentical_chairs_s2 = 4\n \nif identical_chairs_s1 is None or identical_chairs_s2 is None:\n print('neutral')\n\nelif identical_chairs_s1 == identical_chairs_s2:\n print('Entailment')\n\nelif identical_chairs_s1 != identical_chairs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Billy has less than 72 apples, \"statement 2\" :Billy has 12 apples, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "billy_apples_s1 = None\nbilly_apples_s2 = 12\n \nif billy_apples_s1 is None or billy_apples_s2 is None:\n print('neutral')\n\nelif billy_apples_s1 == billy_apples_s2:\n print('Entailment')\n\nelif billy_apples_s1 != billy_apples_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 16 stations between Hyderabad and Bangalore, \"statement 2\" :There are less than 86 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stations_s1 = 16\nstations_s2 = 86\n \nif stations_s1 is None or stations_s2 is None:\n print('neutral')\n\nelif stations_s1 < stations_s2:\n print('Entailment')\n\nelif stations_s1 != stations_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bhaman travelled for 15 hours, \"statement 2\" :Bhaman travelled for less than 85 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bhavan_traveled_s1 = 15\nbhavan_traveled_s2 = 85\n \nif bhavan_traveled_s1 is None or bhavan_traveled_s2 is None:\n print('neutral')\n\nelif bhavan_traveled_s1 < bhavan_traveled_s2:\n print('Entailment')\n\nelif bhavan_traveled_s1 != bhavan_traveled_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sally has 9.0 orange balloons and 4.0 blue balloons and she lost 2.0 of the orange balloons , \"statement 2\" :Sally has 7.0 orange balloons now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "orange_balloons_s1 = 9 - 2\norange_balloons_s2 = 7\n \nif orange_balloons_s1 is None or orange_balloons_s2 is None:\n print('neutral')\n\nelif orange_balloons_s1 == orange_balloons_s2:\n print('Entailment')\n\nelif orange_balloons_s1 != orange_balloons_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ashok and Pyarelal invested money together in a business and share a capital of Ashok is 1 / 9 of that of Pyarelal, \"statement 2\" :Ashok and Pyarelal invested money together in a business and share a capital of Ashok is less than 7 / 9 of that of Pyarelal, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "capital_shared_s1 = 1/9\ncapital_shared_s2 = 7/9\n \nif capital_shared_s1 is None or capital_shared_s2 is None:\n print('neutral')\n\nelif capital_shared_s1 < capital_shared_s2:\n print('Entailment')\n\nelif capital_shared_s1 != capital_shared_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In covering a distance of 30 km , Arun takes 2 hours more than Anil, \"statement 2\" :In covering a distance of less than 30 km , Arun takes 2 hours more than Anil, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_covered_s1 = 30\ndistance_covered_s2 = 30-1\n \nif distance_covered_s1 is None or distance_covered_s2 is None:\n print('neutral')\n\nelif distance_covered_s1 == distance_covered_s2:\n print('Entailment')\n\nelif distance_covered_s1 != distance_covered_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Speed of Bruce is 30 m / s and that of Bhishma is 20 m / s, \"statement 2\" :Speed of Bruce is 60 m / s and that of Bhishma is 20 m / s, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bruce_speed_s1 = 30\nbruce_speed_s2 = 60\n \nif bruce_speed_s1 is None or bruce_speed_s2 is None:\n print('neutral')\n\nelif bruce_speed_s1 == bruce_speed_s2:\n print('Entailment')\n\nelif bruce_speed_s1 != bruce_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Annie , working alone , can do the same job in just 10 hours, \"statement 2\" :Annie , working alone , can do the same job in just less than 70 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "annie_work_s1 = 10\nannie_work_s2 = 70\n \nif annie_work_s1 is None or annie_work_s2 is None:\n print('neutral')\n\nelif annie_work_s1 < annie_work_s2:\n print('Entailment')\n\nelif annie_work_s1 != annie_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jerry travels 8 miles at an average speed of 40 miles per hour , stops for 13 minutes , and then travels another 20 miles at an average speed of 60 miles per hour, \"statement 2\" :Jerry travels 2 miles at an average speed of 40 miles per hour , stops for 13 minutes , and then travels another 20 miles at an average speed of 60 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jerry_travels_s1 = 8\njerry_travels_s2 = 2\n \nif jerry_travels_s1 is None or jerry_travels_s2 is None:\n print('neutral')\n\nelif jerry_travels_s1 < jerry_travels_s2:\n print('Entailment')\n\nelif jerry_travels_s1 != jerry_travels_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Tina Works independently at the job for more than 5 hours and then Ann works independently , how many hours will it take Ann to complete the remainder of the jobs ?, \"statement 2\" :If Tina Works independently at the job for 8 hours and then Ann works\nindependently , how many hours will it take Ann to complete the remainder of the jobs ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tina_works_s1 = None\ntina_works_s2 = 8\n \nif tina_works_s1 is None or tina_works_s2 is None:\n print('neutral')\n\nelif tina_works_s1 == tina_works_s2:\n print('Entailment')\n\nelif tina_works_s1 != tina_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Harkamal purchased 8 kg of grapes at the rate of 70 per kg and 9 kg of mangoes at the rate of 55 per kg, \"statement 2\" :Harkamal purchased less than 8 kg of grapes at the rate of 70 per kg and 9 kg of mangoes at the rate of 55 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "harkamal_purchased_s1 = 8\nharkamal_purchased_s2 = 8-1\n \nif harkamal_purchased_s1 is None or harkamal_purchased_s2 is None:\n print('neutral')\n\nelif harkamal_purchased_s1 == harkamal_purchased_s2:\n print('Entailment')\n\nelif harkamal_purchased_s1 != harkamal_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 10 % people of a village in Sri Lanka died by bombardment , 15 % of the remainder left the village on account of fear, \"statement 2\" :less than 10 % people of a village in Sri Lanka died by bombardment , 15 % of the remainder left the village on account of fear, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_bombardment_s1 = 10\npeople_bombardment_s2 = 10-1\n \nif people_bombardment_s1 is None or people_bombardment_s2 is None:\n print('neutral')\n\nelif people_bombardment_s1 == people_bombardment_s2:\n print('Entailment')\n\nelif people_bombardment_s1 != people_bombardment_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Kimball narrowed that number down to slightly more than 200 potential jurors , according to The Salt Lake Tribune newspaper ., \"statement 2\" :Report : Jury pool narrowed down to about 200, \"options: \" Entailment or neutral?", + "Output Program": [ + "potential_jurors_s1 = 200\npotential_jurors_s2 = 200\n \nif potential_jurors_s1 is None or potential_jurors_s2 is None:\n print('neutral')\n\nelif potential_jurors_s1 == potential_jurors_s2:\n print('Entailment')\n\nelif potential_jurors_s1 != potential_jurors_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Melvin ' s GMAT score is twice his monthly electric bill , and his life expectancy is 70 , what is his shoe size ?, \"statement 2\" :If Melvin ' s GMAT score is twice his monthly electric bill , and his life expectancy is more than 10 , what is his shoe size ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gmat_score_s1 = 70\ngmat_score_s2 = 10\n \nif gmat_score_s1 is None or gmat_score_s2 is None:\n print('neutral')\n\nelif gmat_score_s1 > gmat_score_s2:\n print('Entailment')\n\nelif gmat_score_s1 != gmat_score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sacha runs at a constant speed of 8 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"statement 2\" :Sacha runs at a constant speed of more than 4 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sacha_runs_s1 = 8\nsacha_runs_s2 = 4\n \nif sacha_runs_s1 is None or sacha_runs_s2 is None:\n print('neutral')\n\nelif sacha_runs_s1 > sacha_runs_s2:\n print('Entailment')\n\nelif sacha_runs_s1 != sacha_runs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Paco had 93.0 cookies and Paco ate 15.0 of them, \"statement 2\" :Paco has 77.0 cookies left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "paco_cookies_s1 = 93-15\npaco_cookies_s2 = 77\n \nif paco_cookies_s1 is None or paco_cookies_s2 is None:\n print('neutral')\n\nelif paco_cookies_s1 == paco_cookies_s2:\n print('Entailment')\n\nelif paco_cookies_s1 != paco_cookies_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Right now , the ratio between the ages of Sandy and Molly is 4 : 3, \"statement 2\" :Right now , the ratio between the ages of Sandy and Molly is more than 2 : 3, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_raio_s1 = 4/3\nage_raio_s2 = 2/3\n \nif age_raio_s1 is None or age_raio_s2 is None:\n print('neutral')\n\nelif age_raio_s1 > age_raio_s2:\n print('Entailment')\n\nelif age_raio_s1 != age_raio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the ratio of area of triangle ADE to that of the trapezium DECB is 25 : 144 and BC = 13 cm , then find the length of DE ., \"statement 2\" :If the ratio of area of triangle ADE to that of the trapezium DECB is less than 25 : 144 and BC = 13 cm , then find the length of DE ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "triangle_area_s1 = 25\ntriangle_area_s2 = 25-1\n \nif triangle_area_s1 is None or triangle_area_s2 is None:\n print('neutral')\n\nelif triangle_area_s1 == triangle_area_s2:\n print('Entailment')\n\nelif triangle_area_s1 != triangle_area_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Vijay bought 160 shirts at the rate of Rs, \"statement 2\" :Vijay bought less than 260 shirts at the rate of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "vijay_shirts_s1 = 160\nvijay_shirts_s2 = 260\n \nif vijay_shirts_s1 is None or vijay_shirts_s2 is None:\n print('neutral')\n\nelif vijay_shirts_s1 < vijay_shirts_s2:\n print('Entailment')\n\nelif vijay_shirts_s1 != vijay_shirts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": for Mathura and B starts from Mathura with a speed of 30 kmph at 9 p, \"statement 2\" :for Mathura and B starts from Mathura with a speed of more than 20 kmph at 9 p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mathura_speed_s1 = 30\nmathura_speed_s2 = 20\n \nif mathura_speed_s1 is None or mathura_speed_s2 is None:\n print('neutral')\n\nelif mathura_speed_s1 > mathura_speed_s2:\n print('Entailment')\n\nelif mathura_speed_s1 != mathura_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If it takes Annie 15 minutes to fix the flat tire and Sam continues to ride during this time , how many minutes will it take Annie to catch up with Sam assuming that Annie resumes riding at 15 km per hour ?, \"statement 2\" :If it takes Annie less than 15 minutes to fix the flat tire and Sam continues to ride during this time , how many minutes will it take Annie to catch up with Sam assuming that Annie resumes riding at 15 km per hour ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "annie_fix_s1 = 15\nannie_fix_s2 = 15 - 1\n \nif annie_fix_s1 is None or annie_fix_s2 is None:\n print('neutral')\n\nelif annie_fix_s1 == annie_fix_s2:\n print('Entailment')\n\nelif annie_fix_s1 != annie_fix_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Kishore saved less than 20 % of his monthly salary, \"statement 2\" :Kishore saved 10 % of his monthly salary, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kishore_saved_s1 = None\nkishore_saved_s2 = 10\n \nif kishore_saved_s1 is None or kishore_saved_s2 is None:\n print('neutral')\n\nelif kishore_saved_s1 == kishore_saved_s2:\n print('Entailment')\n\nelif kishore_saved_s1 != kishore_saved_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Patrick purchased 60 pencils and sold them at a loss equal to the selling price of 20 pencils, \"statement 2\" :Patrick purchased more than 50 pencils and sold them at a loss equal to the selling price of 20 pencils, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "patrick_purchased_s1 = 60\npatrick_purchased_s2 = 50\n \nif patrick_purchased_s1 is None or patrick_purchased_s2 is None:\n print('neutral')\n\nelif patrick_purchased_s1 > patrick_purchased_s2:\n print('Entailment')\n\nelif patrick_purchased_s1 != patrick_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ganesh covers the distance from X to Y at an average speed of more than 14 Km / hr, \"statement 2\" :Ganesh covers the distance from X to Y at an average speed of 44 Km / hr, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_speed_s1 = None\naverage_speed_s2 = 44\n \nif average_speed_s1 is None or average_speed_s2 is None:\n print('neutral')\n\nelif average_speed_s1 == average_speed_s2:\n print('Entailment')\n\nelif average_speed_s1 != average_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a certain town , the ratio of NY Yankees fans to NY Mets fans is 2 : 1 , and the ratio of NY Mets fans to Boston Red Sox fans is 3 : 7, \"statement 2\" :In a certain town , the ratio of NY Yankees fans to NY Mets fans is more than 2 : 1 , and the ratio of NY Mets fans to Boston Red Sox fans is 3 : 7, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ny_fans_s1 = 2/1\nny_fans_s2 = (2/1)+0.1\n \nif ny_fans_s1 is None or ny_fans_s2 is None:\n print('neutral')\n\nelif ny_fans_s1 == ny_fans_s2:\n print('Entailment')\n\nelif ny_fans_s1 != ny_fans_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A ship has 8723.0 tons of cargo and at the Bahamas, sailors unloaded 5973.0 tons of cargo, \"statement 2\" :2754.0 tons of cargo is left on the ship, \"options: \" Entailment or contradiction?", + "Output Program": [ + "cargo_s1 = 8723 - 5973\ncargo_s2 = 2754\n \nif cargo_s1 is None or cargo_s2 is None:\n print('neutral')\n\nelif cargo_s1 == cargo_s2:\n print('Entailment')\n\nelif cargo_s1 != cargo_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Albert \u2019 s monthly earnings rise by 26 % , he would earn $ 693, \"statement 2\" :If Albert \u2019 s monthly earnings rise by less than 36 % , he would earn $ 693, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "monthly_rise_s1 = 26\nmonthly_rise_s2 = 36\n \nif monthly_rise_s1 is None or monthly_rise_s2 is None:\n print('neutral')\n\nelif monthly_rise_s1 < monthly_rise_s2:\n print('Entailment')\n\nelif monthly_rise_s1 != monthly_rise_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lance Armstrong 's appearance in Paisley , Scotland , saw around 200 people joining him on a bike ride ., \"statement 2\" :A group of 200 people gathered in Paisley High Street to ride with Armstrong, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_joining_s1 = 200\npeople_joining_s2 = 200\n \nif people_joining_s1 is None or people_joining_s2 is None:\n print('neutral')\n\nelif people_joining_s1 < people_joining_s2:\n print('Entailment')\n\nelif people_joining_s1 != people_joining_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Jack walked 8 miles in 1 hour and 15 minutes , what was his rate of walking in miles per hour ?, \"statement 2\" :If Jack walked more than 8 miles in 1 hour and 15 minutes , what was his rate of walking in miles per hour ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jack_walked_s1 = 8\njack_walked_s2 = 8+1\n \nif jack_walked_s1 is None or jack_walked_s2 is None:\n print('neutral')\n\nelif jack_walked_s1 < jack_walked_s2:\n print('Entailment')\n\nelif jack_walked_s1 != jack_walked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sreenivas sells a table to Shiva at 10 % profit and Shiva sells it to Mahesh at 10 % loss, \"statement 2\" :Sreenivas sells a table to Shiva at 80 % profit and Shiva sells it to Mahesh at 10 % loss, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sreenivas_table_s1 = 10\nsreenivas_table_s2 = 80\n\nif sreenivas_table_s1 is None or sreenivas_table_s2 is None:\n print('neutral')\n\nelif sreenivas_table_s1 == sreenivas_table_s2:\n print('Entailment')\n\nelif sreenivas_table_s1 != sreenivas_table_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John has more than 1 flavors of chocolate in him shop, \"statement 2\" :John has 5 flavors of chocolate in him shop, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "chocolate_falvors_s1 = None\nchocolate_falvors_s2 = 5\n \nif chocolate_falvors_s1 is None or chocolate_falvors_s2 is None:\n print('neutral')\n\nelif chocolate_falvors_s1 == chocolate_falvors_s2:\n print('Entailment')\n\nelif chocolate_falvors_s1 != chocolate_falvors_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy invested a certain sum of money at 12 % p, \"statement 2\" :Sandy invested a certain sum of money at less than 12 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_invested_s1 = 12\nsandy_invested_s2 = 12-1\n \nif sandy_invested_s1 is None or sandy_invested_s2 is None:\n print('neutral')\n\nelif sandy_invested_s1 == sandy_invested_s2:\n print('Entailment')\n\nelif sandy_invested_s1 != sandy_invested_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Pavan travelled for 11 hours, \"statement 2\" :Pavan travelled for less than 31 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pavan_travelled_s1 = 11\npavan_travelled_s2 = 31\n \nif pavan_travelled_s1 is None or pavan_travelled_s2 is None:\n print('neutral')\n\nelif pavan_travelled_s1 < pavan_travelled_s2:\n print('Entailment')\n\nelif pavan_travelled_s1 != pavan_travelled_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jane Aronson has evaluated more than 10,000 adopted children from around the world ., \"statement 2\" :There are more than 150 million orphans around the world , UNICEF says, \"options: \" Entailment or neutral?", + "Output Program": [ + "children_evaluated_s1 = 10000\nchildren_evaluated_s2 = None\n \nif children_evaluated_s1 is None or children_evaluated_s2 is None:\n print('neutral')\n\nelif children_evaluated_s1 == children_evaluated_s2:\n print('Entailment')\n\nelif children_evaluated_s1 != children_evaluated_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Faye had 34.0 coloring books, and she gave away 3.0 of them but then bought 48.0 more, \"statement 2\" :She would have 78.0 coloring books total, \"options: \" Entailment or contradiction?", + "Output Program": [ + "coloring_books_s1 = 34 + 48 - 3\ncoloring_books_s2 = 78\n \nif coloring_books_s1 is None or coloring_books_s2 is None:\n print('neutral')\n\nelif coloring_books_s1 == coloring_books_s2:\n print('Entailment')\n\nelif coloring_books_s1 != coloring_books_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": less than 7 years ago Kate was 5 times as old as her Son, \"statement 2\" :5 years ago Kate was 5 times as old as her Son, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kate_years_ago_s1 = None\nkate_years_ago_s2 = 5\n \nif kate_years_ago_s1 is None or kate_years_ago_s2 is None:\n print('neutral')\n\nelif kate_years_ago_s1 == kate_years_ago_s2:\n print('Entailment')\n\nelif kate_years_ago_s1 != kate_years_ago_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many clothing combinations does Barbara have , if she doesn \u2019 t wear 5 specific shirts with 3 specific pants ?, \"statement 2\" :How many clothing combinations does Barbara have , if she doesn \u2019 t wear 2 specific shirts with 3 specific pants ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "specific_shirts_s1 = 5\nspecific_shirts_s2 = 2\n \nif specific_shirts_s1 is None or specific_shirts_s2 is None:\n print('neutral')\n\nelif specific_shirts_s1 == specific_shirts_s2:\n print('Entailment')\n\nelif specific_shirts_s1 != specific_shirts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The 42 parents participating in the Smithville PTA have been assigned to at least 1 of 3 committees : festival planning , classroom aid , and teacher relations, \"statement 2\" :The more than 22 parents participating in the Smithville PTA have been assigned to at least 1 of 3 committees : festival planning , classroom aid , and teacher relations, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "parents_participating_s1 = 42\nparents_participating_s2 = 22\n \nif parents_participating_s1 is None or parents_participating_s2 is None:\n print('neutral')\n\nelif parents_participating_s1 > parents_participating_s2:\n print('Entailment')\n\nelif parents_participating_s1 != parents_participating_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Store Z : $ 70 , a 30 % sales tax , and $ 10 rebate after tax\nIsaac can purchase a certain item in four different ways , as shown in the table, \"statement 2\" :Store Z : $ more than 60 , a 30 % sales tax , and $ 10 rebate after tax Isaac can purchase a certain item in four different ways , as shown in the table, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "store_z_s1 = 70\nstore_z_s2 = 60\n \nif store_z_s1 is None or store_z_s2 is None:\n print('neutral')\n\nelif store_z_s1 > store_z_s2:\n print('Entailment')\n\nelif store_z_s1 != store_z_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In how many ways can you seat 4 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"statement 2\" :In how many ways can you seat less than 7 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_bench_s1 = 4\npeople_bench_s2 = 7\n \nif people_bench_s1 is None or people_bench_s2 is None:\n print('neutral')\n\nelif people_bench_s1 < people_bench_s2:\n print('Entailment')\n\nelif people_bench_s1 != people_bench_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": This morning , Anitha worker baked more than 310 plum pies, \"statement 2\" :This morning , Anitha worker baked 810 plum pies, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "anitha_baked_s1 = None\nanitha_baked_s2 = 810\n \nif anitha_baked_s1 is None or anitha_baked_s2 is None:\n print('neutral')\n\nelif anitha_baked_s1 == anitha_baked_s2:\n print('Entailment')\n\nelif anitha_baked_s1 != anitha_baked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many possible ways can 3 girls ( Rebecca , Kate , Ashley ) go on a date with 3 boys ( Peter , Kyle , Sam ) ?, \"statement 2\" :How many possible ways can less than 6 girls ( Rebecca , Kate , Ashley ) go on a date with 3 boys ( Peter , Kyle , Sam ) ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "possible_ways_girls_s1 = 3\npossible_ways_girls_s2 = 6\n \nif possible_ways_girls_s1 is None or possible_ways_girls_s2 is None:\n print('neutral')\n\nelif possible_ways_girls_s1 < possible_ways_girls_s2:\n print('Entailment')\n\nelif possible_ways_girls_s1 != possible_ways_girls_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If in 12 years , John will be one year younger than twice the age of Mark on that day , how old is Mark today ?, \"statement 2\" :If in 32 years , John will be one year younger than twice the age of Mark on that day , how old is Mark today ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_years_s1 = 12\njohn_years_s2 = 32\n \nif john_years_s1 is None or john_years_s2 is None:\n print('neutral')\n\nelif john_years_s1 == john_years_s2:\n print('Entailment')\n\nelif john_years_s1 != john_years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In 1.0 week, an airplane pilot flew 1134.0 miles on Tuesday and 1475.0 miles on Thursday, and the pilot flies the same number of miles 3.0 weeks in a row, \"statement 2\" :The pilot flew 7823.0 miles, \"options: \" Entailment or contradiction?", + "Output Program": [ + "plane_flew_s1 = (1134 + 1475) * 3\nplane_flew_s2 = 7823\n \nif plane_flew_s1 is None or plane_flew_s2 is None:\n print('neutral')\n\nelif plane_flew_s1 == plane_flew_s2:\n print('Entailment')\n\nelif plane_flew_s1 != plane_flew_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If KING is coded as 17 and MASS is coded as 29 Then DON is coded as, \"statement 2\" :If KING is coded as more than 17 and MASS is coded as 29 Then DON is coded as, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "king_coded_s1 = 17\nking_coded_s2 = 17 +1\n \nif king_coded_s1 is None or king_coded_s2 is None:\n print('neutral')\n\nelif king_coded_s1 == king_coded_s2:\n print('Entailment')\n\nelif king_coded_s1 != king_coded_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Gary had 73.0 dollars and he spent 55.0 dollars on a pet snake, \"statement 2\" :Gary has 18.0 dollars left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "gary_dollars_s1 = 73 - 55\ngary_dollars_s2 = 18\n \nif gary_dollars_s1 is None or gary_dollars_s2 is None:\n print('neutral')\n\nelif gary_dollars_s1 == gary_dollars_s2:\n print('Entailment')\n\nelif gary_dollars_s1 != gary_dollars_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": USGS originally put the magnitude at 4.1 before revising it to 3.8 ., \"statement 2\" :USGS revises magnitude down from 4.1 to 3.8, \"options: \" Entailment or neutral?", + "Output Program": [ + "usgs_magnitude_s1 = [4.1, 3.8]\nusgs_magnitude_s2 = [4.1, 3.8]\n \nif usgs_magnitude_s1 is None or usgs_magnitude_s2 is None:\n print('neutral')\n\nelif usgs_magnitude_s1 == usgs_magnitude_s2:\n print('Entailment')\n\nelif usgs_magnitude_s1 != usgs_magnitude_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Arun purchased 30 kg of wheat at the rate of Rs, \"statement 2\" :Arun purchased less than 30 kg of wheat at the rate of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "arun_purchased_s1 = 30\narun_purchased_s2 = 30 - 1\n \nif arun_purchased_s1 is None or arun_purchased_s2 is None:\n print('neutral')\n\nelif arun_purchased_s1 == arun_purchased_s2:\n print('Entailment')\n\nelif arun_purchased_s1 != arun_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Claudia can choose any two of four different candles and any more than 7 of 9 different flowers for a centerpiece arrangement, \"statement 2\" :Claudia can choose any two of four different candles and any 8 of 9 different flowers for a centerpiece arrangement, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "different_flowers_s1 = None\ndifferent_flowers_s2 = [8,9]\n \nif different_flowers_s1 is None or different_flowers_s2 is None:\n print('neutral')\n\nelif different_flowers_s1 == different_flowers_s2:\n print('Entailment')\n\nelif different_flowers_s1 != different_flowers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": However , Jane was indisposed 4 days before the work got over, \"statement 2\" :However , Jane was indisposed more than 4 days before the work got over, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jane_indisposed_s1 = 4\njane_indisposed_s2 = 4+1\n \nif jane_indisposed_s1 is None or jane_indisposed_s2 is None:\n print('neutral')\n\nelif jane_indisposed_s1 == jane_indisposed_s2:\n print('Entailment')\n\nelif jane_indisposed_s1 != jane_indisposed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the number of such passengers that used Miami Airport was 1 / 4 the number that used Kennedy Airport and 3 times the number that used Logan Airport , approximately how many millions of these passengers used Logan Airport that year ?, \"statement 2\" :If the number of such passengers that used Miami Airport was 6 / 4 the number that used Kennedy Airport and 3 times the number that used Logan Airport , approximately how many millions of these passengers used Logan Airport that year ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "members_ratio_s1 = 1/4\nmembers_ratio_s2 = 6/4\n \nif members_ratio_s1 is None or members_ratio_s2 is None:\n print('neutral')\n\nelif members_ratio_s1 == members_ratio_s2:\n print('Entailment')\n\nelif members_ratio_s1 != members_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": less than 8200 from Anwar at 6 % p, \"statement 2\" :4200 from Anwar at 6 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "anwar_s1 = None\nanwar_s2 = 4200\n \nif anwar_s1 is None or anwar_s2 is None:\n print('neutral')\n\nelif anwar_s1 == anwar_s2:\n print('Entailment')\n\nelif anwar_s1 != anwar_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dan spent $ 11.76 on a snake toy , and a cage cost him $ 14.54 and Dan also found a dollar bill on the ground , \"statement 2\" :The total cost of Dan 's purchases is 23.9, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_cost_s1 = 11.76+14.54\ntotal_cost_s2 = 23.9\n \nif total_cost_s1 is None or total_cost_s2 is None:\n print('neutral')\n\nelif total_cost_s1 == total_cost_s2:\n print('Entailment')\n\nelif total_cost_s1 != total_cost_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Baker Adam is storing cake boxes in cartons that measure 25 inches by 42 inches by 60 inches, \"statement 2\" :Baker Adam is storing cake boxes in cartons that measure less than 25 inches by 42 inches by 60 inches, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cake_boxes_s1 = 25\ncake_boxes_s2 = 25-1\n \nif cake_boxes_s1 is None or cake_boxes_s2 is None:\n print('neutral')\n\nelif cake_boxes_s1 == cake_boxes_s2:\n print('Entailment')\n\nelif cake_boxes_s1 != cake_boxes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Matt and Peter can do together a piece of work in less than 64 days, \"statement 2\" :Matt and Peter can do together a piece of work in 24 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "matt_peter_work_s1 = None\nmatt_peter_work_s2 = 24\n \nif matt_peter_work_s1 is None or matt_peter_work_s2 is None:\n print('neutral')\n\nelif matt_peter_work_s1 == matt_peter_work_s2:\n print('Entailment')\n\nelif matt_peter_work_s1 != matt_peter_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bob is about to hang his 8 shirts in the wardrobe, \"statement 2\" :Bob is about to hang his more than 2 shirts in the wardrobe, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bob_shirts_s1 = 8\nbob_shirts_s2 = 2\n \nif bob_shirts_s1 is None or bob_shirts_s2 is None:\n print('neutral')\n\nelif bob_shirts_s1 > bob_shirts_s2:\n print('Entailment')\n\nelif bob_shirts_s1 != bob_shirts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jancy had less than 200 currency notes in all , some of which are of Rs 70 denomination and the remaining of Rs 50 denomination, \"statement 2\" :Jancy had 100 currency notes in all , some of which are of Rs 70 denomination and the remaining of Rs 50 denomination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jancy_currency_s1 = None\njancy_currency_s2 = 100\n \nif jancy_currency_s1 is None or jancy_currency_s2 is None:\n print('neutral')\n\nelif jancy_currency_s1 > jancy_currency_s2:\n print('Entailment')\n\nelif jancy_currency_s1 != jancy_currency_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Paul ' s salary was decreased by more than 30 % and subsequently increased by 50 %, \"statement 2\" :Paul ' s salary was decreased by 50 % and subsequently increased by\n50 %, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "paul_salary_s1 = None\npaul_salary_s2 = 50\n \nif paul_salary_s1 is None or paul_salary_s2 is None:\n print('neutral')\n\nelif paul_salary_s1 > paul_salary_s2:\n print('Entailment')\n\nelif paul_salary_s1 != paul_salary_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jason is more than 1 times older than Bob at present, \"statement 2\" :Jason is 4 times older than Bob at present, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jason_times_bob_s1 = None\njason_times_bob_s2 = 4\n \nif jason_times_bob_s1 is None or jason_times_bob_s2 is None:\n print('neutral')\n\nelif jason_times_bob_s1 > jason_times_bob_s2:\n print('Entailment')\n\nelif jason_times_bob_s1 != jason_times_bob_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Susan made a block with small cubes of 8 cubic cm volume to make a block , 3 small cubes long , 9 small cubes wide and 5 small cubes deep, \"statement 2\" :Susan made a block with small cubes of more than 8 cubic cm volume to make a block , 3 small cubes long , 9 small cubes wide and 5 small cubes deep, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cubic_cm_volume_s1 = 8\ncubic_cm_volume_s2 = 8+1\n \nif cubic_cm_volume_s1 is None or cubic_cm_volume_s2 is None:\n print('neutral')\n\nelif cubic_cm_volume_s1 > cubic_cm_volume_s2:\n print('Entailment')\n\nelif cubic_cm_volume_s1 != cubic_cm_volume_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The technical investigation commission has determined that some military were reportedly involved in the assassination of the six Jesuits and their two maids , which took place at daybreak on the 16th of November , as reported by president Alfredo Cristiani on the 7th of January ., \"statement 2\" :The assassination of the six Jesuits and their two maids took place on the 7th of January ., \"options: \" Entailment or neutral?", + "Output Program": [ + "daybreak_s1 = 16\ndaybreak_s2 = None\n \nif daybreak_s1 is None or daybreak_s2 is None:\n print('neutral')\n\nelif daybreak_s1 > daybreak_s2:\n print('Entailment')\n\nelif daybreak_s1 != daybreak_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the ratio of their ages is 7 : 9 , how old is Sandy ?, \"statement 2\" :If the ratio of their ages is less than 8 : 9 , how old is Sandy ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_ratio_s1 = 7/9\nage_ratio_s2 = 8/9\n \nif age_ratio_s1 is None or age_ratio_s2 is None:\n print('neutral')\n\nelif age_ratio_s1 < age_ratio_s2:\n print('Entailment')\n\nelif age_ratio_s1 != age_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": One day , Raviraj left home and cycled less than 60 Km southwards , turned right and cycled 10 km and turned right and cycled 20 Km and turned left and cycled 20 Km, \"statement 2\" :One day , Raviraj left home and cycled 20 Km southwards , turned right and cycled 10 km and turned right and cycled 20 Km and turned left and cycled 20 Km, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "raviraj_cycled_s1 = None\nraviraj_cycled_s2 = 20\n \nif raviraj_cycled_s1 is None or raviraj_cycled_s2 is None:\n print('neutral')\n\nelif raviraj_cycled_s1 == raviraj_cycled_s2:\n print('Entailment')\n\nelif raviraj_cycled_s1 != raviraj_cycled_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the ratio between the one - third age of Neelam and half of Shaan ' s age of 5 : 9 , then what is the school age of Shaan ?, \"statement 2\" :If the ratio between the one - third age of Neelam and half of Shaan ' s age of less than 5 : 9 , then what is the school age of Shaan ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "neelam_shaan_age_s1 = 5/9\nneelam_shaan_age_s2 = (5/9)-0.1\n \nif neelam_shaan_age_s1 is None or neelam_shaan_age_s2 is None:\n print('neutral')\n\nelif neelam_shaan_age_s1 == neelam_shaan_age_s2:\n print('Entailment')\n\nelif neelam_shaan_age_s1 != neelam_shaan_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A starts from Delhi with a speed of 20 kmph at 7 a, \"statement 2\" :A starts from Delhi with a speed of less than 70 kmph at 7 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "delhi_speed_s1 = 20\ndelhi_speed_s2 = 70\n \nif delhi_speed_s1 is None or delhi_speed_s2 is None:\n print('neutral')\n\nelif delhi_speed_s1 < delhi_speed_s2:\n print('Entailment')\n\nelif delhi_speed_s1 != delhi_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Paul can dig the same well in 24 days, \"statement 2\" :Paul can dig the same well in less than 74 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "paul_dig_ll_s1 = 24\npaul_dig_ll_s2 = 74\n \nif paul_dig_ll_s1 is None or paul_dig_ll_s2 is None:\n print('neutral')\n\nelif paul_dig_ll_s1 < paul_dig_ll_s2:\n print('Entailment')\n\nelif paul_dig_ll_s1 != paul_dig_ll_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 180 , calculate the dividend from Carol ' s stock ., \"statement 2\" :less than 880 , calculate the dividend from Carol ' s stock ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "carol_stock_s1 = 180\ncarol_stock_s2 = 880\n \nif carol_stock_s1 is None or carol_stock_s2 is None:\n print('neutral')\n\nelif carol_stock_s1 < carol_stock_s2:\n print('Entailment')\n\nelif carol_stock_s1 != carol_stock_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If an outfit consists of 1 shirt , 1 pair of jeans , and 1 pair of sneakers , how many different outfits does Jordan have ?, \"statement 2\" :If an outfit consists of less than 5 shirt , 1 pair of jeans , and 1 pair of sneakers , how many different outfits does Jordan have ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "outfit_shirt_s1 = 1\noutfit_shirt_s2 = 5\n \nif outfit_shirt_s1 is None or outfit_shirt_s2 is None:\n print('neutral')\n\nelif outfit_shirt_s1 < outfit_shirt_s2:\n print('Entailment')\n\nelif outfit_shirt_s1 != outfit_shirt_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": A bathing suit manufacturer has a supply of 14797.0 bathing suits for men and in addition , it has 4969.0 bathing suits for women , \"statement 2\" :19770.0 bathing suits are available overall , \"options: \" Entailment or contradiction?", + "Output Program": [ + "bathing_suit_s1 = 14797 + 4969\nbathing_suit_s2 = 19770\n \nif bathing_suit_s1 is None or bathing_suit_s2 is None:\n print('neutral')\n\nelif bathing_suit_s1 == bathing_suit_s2:\n print('Entailment')\n\nelif bathing_suit_s1 != bathing_suit_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bob ' s pizza recipe calls for 2 ounces of baking soda for every 2 cups of flour used, \"statement 2\" :Bob ' s pizza recipe calls for less than 8 ounces of baking soda for every 2 cups of flour used, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "soda_ounces_s1 = 2\nsoda_ounces_s2 = 8\n \nif soda_ounces_s1 is None or soda_ounces_s2 is None:\n print('neutral')\n\nelif soda_ounces_s1 < soda_ounces_s2:\n print('Entailment')\n\nelif soda_ounces_s1 != soda_ounces_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": To be considered for \u201c movie of the year , \u201d a film must appear in at least less than 2 / 4 of the top - 10 - movies lists submitted by the Cinematic Academy \u2019 s 795 members, \"statement 2\" :To be considered for \u201c movie of the year , \u201d a film must appear in at least 1 / 4 of the top - 10 - movies lists submitted by the Cinematic Academy \u2019 s 795 members, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "film_appear_s1 = None\nfilm_appear_s2 = 1/4\n \nif film_appear_s1 is None or film_appear_s2 is None:\n print('neutral')\n\nelif film_appear_s1 == film_appear_s2:\n print('Entailment')\n\nelif film_appear_s1 != film_appear_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Andrew purchased 8 kg of grapes at the rate of 70 per kg and 9 kg of mangoes at the rate of 55 per kg, \"statement 2\" :Andrew purchased more than 8 kg of grapes at the rate of 70 per kg and 9 kg of mangoes at the rate of 55 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "andrew_purchased_s1 = 8\nandrew_purchased_s2 = 8+1\n \nif andrew_purchased_s1 is None or andrew_purchased_s2 is None:\n print('neutral')\n\nelif andrew_purchased_s1 == andrew_purchased_s2:\n print('Entailment')\n\nelif andrew_purchased_s1 != andrew_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There have been three court hearings to consider challenges to the Arizona law , including one from the Department of Justice ., \"statement 2\" :There are at least three court challenges to the law, \"options: \" Entailment or neutral?", + "Output Program": [ + "court_hearing_s1 = 3\ncourt_hearing_s2 = 3\n \nif court_hearing_s1 is None or court_hearing_s2 is None:\n print('neutral')\n\nelif court_hearing_s1 == court_hearing_s2:\n print('Entailment')\n\nelif court_hearing_s1 != court_hearing_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the rosters for Professor Wang ' s 3 classes are combined with no student ' s name listed more than once , how many names will be on the combined roster ?, \"statement 2\" :If the rosters for Professor Wang ' s 8 classes are combined with no student ' s name listed more than once , how many names will be on the combined roster ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "wang_classes_s1 = 3\nwang_classes_s2 = 8\n \nif wang_classes_s1 is None or wang_classes_s2 is None:\n print('neutral')\n\nelif wang_classes_s1 == wang_classes_s2:\n print('Entailment')\n\nelif wang_classes_s1 != wang_classes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Triangle STV has sides ST = TV = more than 4 , and SV = 6, \"statement 2\" :Triangle STV has sides ST = TV = 5 , and SV = 6, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stv_sides_s1 = None\nstv_sides_s2 = [5, 6]\n \nif stv_sides_s1 is None or stv_sides_s2 is None:\n print('neutral')\n\nelif stv_sides_s1 == stv_sides_s2:\n print('Entailment')\n\nelif stv_sides_s1 != stv_sides_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Raj is 32 yrs old in eight yrs from now , what is the age of Raj ' s mother and father ?, \"statement 2\" :If Raj is less than 42 yrs old in eight yrs from now , what is the age of Raj ' s mother and father ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "raj_age_s1 = 32\nraj_age_s2 = 42\n \nif raj_age_s1 is None or raj_age_s2 is None:\n print('neutral')\n\nelif raj_age_s1 < raj_age_s2:\n print('Entailment')\n\nelif raj_age_s1 != raj_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Caleb spends $ 74.50 on more than 10 hamburgers for the marching band, \"statement 2\" :Caleb spends $ 74.50 on 50 hamburgers for the marching band, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "caleb_hamburger_s1 = None\ncaleb_hamburger_s2 = 50\n \nif caleb_hamburger_s1 is None or caleb_hamburger_s2 is None:\n print('neutral')\n\nelif caleb_hamburger_s1 < caleb_hamburger_s2:\n print('Entailment')\n\nelif caleb_hamburger_s1 != caleb_hamburger_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If she worked five more than 3 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"statement 2\" :If she worked five 8 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jill_worked_s1 = None\njill_worked_s2 = 8\n \nif jill_worked_s1 is None or jill_worked_s2 is None:\n print('neutral')\n\nelif jill_worked_s1 < jill_worked_s2:\n print('Entailment')\n\nelif jill_worked_s1 != jill_worked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ashley sold 12.0 boxes of Samoas., \"statement 2\" :Ashley needed 0.0 cases of 12.0 boxes , plus extra boxes, \"options: \" Entailment or contradiction?", + "Output Program": [ + "samosas_box_s1 = 12\nsamosas_box_s2 = 12+1\n \nif samosas_box_s1 is None or samosas_box_s2 is None:\n print('neutral')\n\nelif samosas_box_s1 < samosas_box_s2:\n print('Entailment')\n\nelif samosas_box_s1 != samosas_box_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill has less than 51 gallons of water stored in quart , half - gallon , and one gallon jars, \"statement 2\" :Jill has 21 gallons of water stored in quart , half - gallon , and one gallon jars, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jill_gallons_water_s1 = None\njill_gallons_water_s2 = 21\n \nif jill_gallons_water_s1 is None or jill_gallons_water_s2 is None:\n print('neutral')\n\nelif jill_gallons_water_s1 < jill_gallons_water_s2:\n print('Entailment')\n\nelif jill_gallons_water_s1 != jill_gallons_water_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jack wants to take 5 apples, \"statement 2\" :Jack wants to take more than 3 apples, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jack_apples_s1 = 5\njack_apples_s2 = 3\n \nif jack_apples_s1 is None or jack_apples_s2 is None:\n print('neutral')\n\nelif jack_apples_s1 > jack_apples_s2:\n print('Entailment')\n\nelif jack_apples_s1 != jack_apples_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the toy store is stocked with 3 types of balls and 6 types of board games , how many different selections Q of the 4 items can Amanda make ?, \"statement 2\" :If the toy store is stocked with less than 8 types of balls and 6 types of board games , how many different selections Q of the 4 items can Amanda make ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "toy_store_balls_s1 = 3\ntoy_store_balls_s2 = 8\n \nif toy_store_balls_s1 is None or toy_store_balls_s2 is None:\n print('neutral')\n\nelif toy_store_balls_s1 < toy_store_balls_s2:\n print('Entailment')\n\nelif toy_store_balls_s1 != toy_store_balls_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The present ages of Lewis and Brown are in the ratio 1 : 2, \"statement 2\" :The present ages of Lewis and Brown are in the ratio less than 1 : 2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_ratio_s1 = 1/2\nage_ratio_s2 = (1/2)-0.1\n \nif age_ratio_s1 is None or age_ratio_s2 is None:\n print('neutral')\n\nelif age_ratio_s1 < age_ratio_s2:\n print('Entailment')\n\nelif age_ratio_s1 != age_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If Dhoni paid a total of $ 38 , excluding sales tax , to rent the tool , for how many hours did she rent it ?, \"statement 2\" :If Dhoni paid a total of $ more than 38 , excluding sales tax , to rent the tool , for how many hours did she rent it ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dhoni_paid_s1 = 38\ndhoni_paid_s2 = 38+1\n \nif dhoni_paid_s1 is None or dhoni_paid_s2 is None:\n print('neutral')\n\nelif dhoni_paid_s1 < dhoni_paid_s2:\n print('Entailment')\n\nelif dhoni_paid_s1 != dhoni_paid_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rival generic drug maker Mylan Laboratories Inc. reported revenue of $ 1.3 billion for fiscal 2005 ., \"statement 2\" :Mylan Laboratories Inc. earned $ 1.3 billion in fiscal year 2005 ., \"options: \" Entailment or neutral?", + "Output Program": [ + "revenue_billions_s1 = 1.3\nrevenue_billions_s2 = 1.3\n \nif revenue_billions_s1 is None or revenue_billions_s2 is None:\n print('neutral')\n\nelif revenue_billions_s1 == revenue_billions_s2:\n print('Entailment')\n\nelif revenue_billions_s1 != revenue_billions_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 47.0 eggs in a box and Harry takes 5.0 eggs, \"statement 2\" :41.0 eggs are left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "eggs_s1 = 47-5\neggs_s2 = 41\n \nif eggs_s1 is None or eggs_s2 is None:\n print('neutral')\n\nelif eggs_s1 == eggs_s2:\n print('Entailment')\n\nelif eggs_s1 != eggs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Annie , working alone , can do the same job in just less than 70 hours, \"statement 2\" :Annie , working alone , can do the same job in just 10 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "annie_work_s1 = None\nannie_work_s2 = 10\n \nif annie_work_s1 is None or annie_work_s2 is None:\n print('neutral')\n\nelif annie_work_s1 == annie_work_s2:\n print('Entailment')\n\nelif annie_work_s1 != annie_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ratio of men to women in the Snyder community choir is 6 to 5, \"statement 2\" :The ratio of men to women in the Snyder community choir is more than 3 to 5, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "snyder_ratio_s1 = 6/5\nsnyder_ratio_s2 = 3/5\n \nif snyder_ratio_s1 is None or snyder_ratio_s2 is None:\n print('neutral')\n\nelif snyder_ratio_s1 > snyder_ratio_s2:\n print('Entailment')\n\nelif snyder_ratio_s1 != snyder_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If twice the age of Sunil is more than Syam ' s age by more than 2 years , what is Sunil ' s age ?, \"statement 2\" :If twice the age of Sunil is more than Syam ' s age by 4 years , what is Sunil ' s age ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sunil_syam_age_difference_s1 = None\nsunil_syam_age_difference_s2 = 4\n \nif sunil_syam_age_difference_s1 is None or sunil_syam_age_difference_s2 is None:\n print('neutral')\n\nelif sunil_syam_age_difference_s1 > sunil_syam_age_difference_s2:\n print('Entailment')\n\nelif sunil_syam_age_difference_s1 != sunil_syam_age_difference_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Arjun and Bhishma are running on a circular track of length 600 m, \"statement 2\" :Arjun and Bhishma are running on a circular track of length less than 800 m, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "arjun_bhishma_s1 = 600\narjun_bhishma_s2 = 800\n \nif arjun_bhishma_s1 is None or arjun_bhishma_s2 is None:\n print('neutral')\n\nelif arjun_bhishma_s1 < arjun_bhishma_s2:\n print('Entailment')\n\nelif arjun_bhishma_s1 != arjun_bhishma_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A seven-member Tibetan mountaineering team conquered the 8,586-meter Mt . Kanchenjunga , the third highest peak of the world , the Chinese mountaineering association confirmed here on Sunday ., \"statement 2\" :Kanchenjunga is 8586 meters high ., \"options: \" Entailment or neutral?", + "Output Program": [ + "kanchenjunga_s1 = 8586\nkanchenjunga_s2 = 8586\n \nif kanchenjunga_s1 is None or kanchenjunga_s2 is None:\n print('neutral')\n\nelif kanchenjunga_s1 == kanchenjunga_s2:\n print('Entailment')\n\nelif kanchenjunga_s1 != kanchenjunga_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The next act involved several jugglers, and each juggler is juggling 6.0 balls at a time, \"statement 2\" :2272.0 balls are needed if there are 378.0 jugglers putting a show at the same time, \"options: \" Entailment or contradiction?", + "Output Program": [ + "jugging_balls_s1 = 6\njugging_balls_s2 = 2272/378\n \nif jugging_balls_s1 is None or jugging_balls_s2 is None:\n print('neutral')\n\nelif jugging_balls_s1 == jugging_balls_s2:\n print('Entailment')\n\nelif jugging_balls_s1 != jugging_balls_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 300 seniors at Morse High School , and 50 % of them have cars, \"statement 2\" :There are more than 300 seniors at Morse High School , and 50 % of them have cars, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "seniors_school_s1 = 300\nseniors_school_s2 = 300+1\n \nif seniors_school_s1 is None or seniors_school_s2 is None:\n print('neutral')\n\nelif seniors_school_s1 == seniors_school_s2:\n print('Entailment')\n\nelif seniors_school_s1 != seniors_school_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": 5 % people of a village in Sri Lanka died by bombardment , 15 % of the remainder left the village on account of fear, \"statement 2\" :more than 2 % people of a village in Sri Lanka died by bombardment , 15 % of the remainder left the village on account of fear, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_bombardment_s1 = 5\npeople_bombardment_s2 = 2\n \nif people_bombardment_s1 is None or people_bombardment_s2 is None:\n print('neutral')\n\nelif people_bombardment_s1 > people_bombardment_s2:\n print('Entailment')\n\nelif people_bombardment_s1 != people_bombardment_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are 55 possible combinations in which Michael is not selected , what is the value of k ?, \"statement 2\" :If there are more than 55 possible combinations in which Michael is not selected , what is the value of k ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "possible_combinations_s1 = 55\npossible_combinations_s2 = 55+1\n \nif possible_combinations_s1 is None or possible_combinations_s2 is None:\n print('neutral')\n\nelif possible_combinations_s1 == possible_combinations_s2:\n print('Entailment')\n\nelif possible_combinations_s1 != possible_combinations_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Today John , who is less than 48 years old , and his daughter , who is 13 years old , celebrate their birthdays, \"statement 2\" :Today John , who is 38 years old , and his daughter , who is 13 years old , celebrate their birthdays, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_age_s1 = None\njohn_age_s2 = 38\n \nif john_age_s1 is None or john_age_s2 is None:\n print('neutral')\n\nelif john_age_s1 == john_age_s2:\n print('Entailment')\n\nelif john_age_s1 != john_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Some 420 people have been hanged in Singapore since 1991 , mostly for drug trafficking , an Amnesty International 2004 report said . That gives the country of 4.4 million people the highest execution rate in the world relative to population ., \"statement 2\" :4.4 million people live in Singapore ., \"options: \" Entailment or neutral?", + "Output Program": [ + "singapore_population_million_s1 = 4.4\nsingapore_population_million_s2 = 4.4\n \nif singapore_population_million_s1 is None or singapore_population_million_s2 is None:\n print('neutral')\n\nelif singapore_population_million_s1 == singapore_population_million_s2:\n print('Entailment')\n\nelif singapore_population_million_s1 != singapore_population_million_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many years will it take John \u2019 s investment to double at a simple interest rate of 4 % per annum ., \"statement 2\" :How many years will it take John \u2019 s investment to double at a simple interest rate of more than 4 % per annum ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_simple_interest_s1 = 4\njohn_simple_interest_s2 = 4+1\n \nif john_simple_interest_s1 is None or john_simple_interest_s2 is None:\n print('neutral')\n\nelif john_simple_interest_s1 == john_simple_interest_s2:\n print('Entailment')\n\nelif john_simple_interest_s1 != john_simple_interest_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lionel left his house and walked towards Walt ' s house , 48 miles away, \"statement 2\" :Lionel left his house and walked towards Walt ' s house , less than 58 miles away, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "lionel_walked_s1 = 48\nlionel_walked_s2 = 58\n \nif lionel_walked_s1 is None or lionel_walked_s2 is None:\n print('neutral')\n\nelif lionel_walked_s1 < lionel_walked_s2:\n print('Entailment')\n\nelif lionel_walked_s1 != lionel_walked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At the end of ' n ' years , Sandy got back 4 times the original investment, \"statement 2\" :At the end of ' n ' years , Sandy got back 2 times the original investment, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_original_investment_s1 = 4\nsandy_original_investment_s2 = 2\n \nif sandy_original_investment_s1 is None or sandy_original_investment_s2 is None:\n print('neutral')\n\nelif sandy_original_investment_s1 < sandy_original_investment_s2:\n print('Entailment')\n\nelif sandy_original_investment_s1 != sandy_original_investment_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Matt is touring a nation in which coins are issued in two amounts , 2 \u00a2 and 5 \u00a2 , which are made of iron and copper , respectively, \"statement 2\" :Matt is touring a nation in which coins are issued in two amounts , less than 7 \u00a2 and 5 \u00a2 , which are made of iron and copper , respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "coin_amount_s1 = 2\ncoin_amount_s2 = 7\n \nif coin_amount_s1 is None or coin_amount_s2 is None:\n print('neutral')\n\nelif coin_amount_s1 < coin_amount_s2:\n print('Entailment')\n\nelif coin_amount_s1 != coin_amount_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Ros \u00e9 reads at a constant rate of 3 pages every 5 minutes , how many seconds will it take her to read N pages ?, \"statement 2\" :If Ros \u00e9 reads at a constant rate of less than 3 pages every 5 minutes , how many seconds will it take her to read N pages ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rose_reads_s1 = 3\nrose_reads_s2 = 3 - 1\n\nif rose_reads_s1 is None or rose_reads_s2 is None:\n print('neutral')\n\nelif rose_reads_s1 == rose_reads_s2:\n print('Entailment')\n\nelif rose_reads_s1 != rose_reads_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Kenyan forces killed five terrorists , and 11 others are in custody over possible links to the attacks , President Uhuru Kenyatta has said ., \"statement 2\" :Kenyan forces say they killed five terrorists and took at least 11 into custody, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_custody_s1 = 11\npeople_custody_s2 = 11\n \nif people_custody_s1 is None or people_custody_s2 is None:\n print('neutral')\n\nelif people_custody_s1 == people_custody_s2:\n print('Entailment')\n\nelif people_custody_s1 != people_custody_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Store Z : $ more than 50 , a 10 % sales tax , and $ 10 rebate after tax Isaac can purchase a certain item in four different ways , as shown in the table, \"statement 2\" :Store Z : $ 90 , a 10 % sales tax , and $ 10 rebate after tax\nIsaac can purchase a certain item in four different ways , as shown in the table, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "store_z_s1 = None\nstore_z_s2 = 10\n \nif store_z_s1 is None or store_z_s2 is None:\n print('neutral')\n\nelif store_z_s1 == store_z_s2:\n print('Entailment')\n\nelif store_z_s1 != store_z_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many crayons does Albert have if he buys 2 additional boxes ?, \"statement 2\" :How many crayons does Albert have if he buys more than 2 additional boxes ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "albert_crayons_s1 = 2\nalbert_crayons_s2 = 2+1\n \nif albert_crayons_s1 is None or albert_crayons_s2 is None:\n print('neutral')\n\nelif albert_crayons_s1 == albert_crayons_s2:\n print('Entailment')\n\nelif albert_crayons_s1 != albert_crayons_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bobby had 26.0 pieces of candy and he ate 17.0 pieces of candy, \"statement 2\" :Bobby has 6.0 pieces of candy left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "bobby_candy_s1 = 26-17\nbobby_candy_s2 = 6\n \nif bobby_candy_s1 is None or bobby_candy_s2 is None:\n print('neutral')\n\nelif bobby_candy_s1 == bobby_candy_s2:\n print('Entailment')\n\nelif bobby_candy_s1 != bobby_candy_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary played the game , getting at least one score of each of 1 , 2 , 3 and 4 and never getting the same score in consecutive steps, \"statement 2\" :Mary played the game , getting at least one score of each of less than 4 , 2 , 3 and 4 and never getting the same score in consecutive steps, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mary_game_s1 = 1\nmary_game_s2 = 4\n \nif mary_game_s1 is None or mary_game_s2 is None:\n print('neutral')\n\nelif mary_game_s1 < mary_game_s2:\n print('Entailment')\n\nelif mary_game_s1 != mary_game_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A bathing suit manufacturer has a supply of 14797.0 bathing suits in total and it has 4969.0 bathing suits for women , \"statement 2\" :9832.0 bathing suits are there for men, \"options: \" Entailment or contradiction?", + "Output Program": [ + "bathing_suit_men_s1 = 14797 - 4969\nbathing_suit_men_s2 = 9832\n \nif bathing_suit_men_s1 is None or bathing_suit_men_s2 is None:\n print('neutral')\n\nelif bathing_suit_men_s1 == bathing_suit_men_s2:\n print('Entailment')\n\nelif bathing_suit_men_s1 != bathing_suit_men_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 20.0 ducks are swimming in a lake and 13.0 ducks leave, \"statement 2\" :7.0 ducks are swimming in the lake, \"options: \" Entailment or contradiction?", + "Output Program": [ + "ducks_swimming_s1 = 20 - 13\nducks_swimming_s2 = 7\n \nif ducks_swimming_s1 is None or ducks_swimming_s2 is None:\n print('neutral')\n\nelif ducks_swimming_s1 == ducks_swimming_s2:\n print('Entailment')\n\nelif ducks_swimming_s1 != ducks_swimming_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 13 stations between Hyderabad and Bangalore, \"statement 2\" :There are less than 23 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stations_s1 = 13\nstations_s2 = 23\n \nif stations_s1 is None or stations_s2 is None:\n print('neutral')\n\nelif stations_s1 < stations_s2:\n print('Entailment')\n\nelif stations_s1 != stations_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John was thrice as old as Tom 6 yrs back, \"statement 2\" :John was thrice as old as Tom less than 7 yrs back, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_thrice_tol_s1 = 6\njohn_thrice_tol_s2 = 7\n \nif john_thrice_tol_s1 is None or john_thrice_tol_s2 is None:\n print('neutral')\n\nelif john_thrice_tol_s1 < john_thrice_tol_s2:\n print('Entailment')\n\nelif john_thrice_tol_s1 != john_thrice_tol_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Four different children have jelly beans : Aaron has more than 2 , Bianca has 7 , Callie has 8 , and Dante has 11, \"statement 2\" :Four different children have jelly beans : Aaron has 3 , Bianca has 7 , Callie has 8 , and Dante has 11, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "aaron_jellybeans_s1 = None\naaron_jellybeans_s2 = 3\n \nif aaron_jellybeans_s1 is None or aaron_jellybeans_s2 is None:\n print('neutral')\n\nelif aaron_jellybeans_s1 == aaron_jellybeans_s2:\n print('Entailment')\n\nelif aaron_jellybeans_s1 != aaron_jellybeans_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mr Yadav spends 60 % of his monthly salary on consumable items and 50 % of the remaining on clothes and transport, \"statement 2\" :Mr Yadav spends 40 % of his monthly salary on consumable items and 50 % of the remaining on clothes and transport, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "yadav_spends_s1 = 60\nyadav_spends_s2 = 40\n \nif yadav_spends_s1 is None or yadav_spends_s2 is None:\n print('neutral')\n\nelif yadav_spends_s1 == yadav_spends_s2:\n print('Entailment')\n\nelif yadav_spends_s1 != yadav_spends_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Julie had more than 40 currency notes in all , some of which are of Rs 80 denomination and the remaining of Rs 50 denomination, \"statement 2\" :Julie had 90 currency notes in all , some of which are of Rs 80 denomination and the remaining of Rs 50 denomination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jullie_currency_s1 = None\njullie_currency_s2 = 90\n \nif jullie_currency_s1 is None or jullie_currency_s2 is None:\n print('neutral')\n\nelif jullie_currency_s1 == jullie_currency_s2:\n print('Entailment')\n\nelif jullie_currency_s1 != jullie_currency_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Missy received 18 messages from Laurence , how many messages does Keith receive from Juan ?, \"statement 2\" :If Missy received less than 18 messages from Laurence , how many messages does Keith receive from Juan ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "missy_received_messages_s1 = 18\nmissy_received_messages_s2 = 18-1\n \nif missy_received_messages_s1 is None or missy_received_messages_s2 is None:\n print('neutral')\n\nelif missy_received_messages_s1 == missy_received_messages_s2:\n print('Entailment')\n\nelif missy_received_messages_s1 != missy_received_messages_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Dana gives her parents 2 % of that amount back each month , how much will she still owe her parents after three years of college ?, \"statement 2\" :If Dana gives her parents less than 2 % of that amount back each month , how much will she still owe her parents after three years of college ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dana_gives_s1 = 2\ndana_gives_s2 = 2-1\n \nif dana_gives_s1 is None or dana_gives_s2 is None:\n print('neutral')\n\nelif dana_gives_s1 == dana_gives_s2:\n print('Entailment')\n\nelif dana_gives_s1 != dana_gives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Some 9 % said they 'd like to be able to time travel ., \"statement 2\" :Nearly 1 in 10 say they 'd most like to be able to time travel, \"options: \" Entailment or neutral?", + "Output Program": [ + "time_travel_s1 = 0.09\ntime_travel_s2 = round((1/10) - 0.01, 2)\n \nif time_travel_s1 is None or time_travel_s2 is None:\n print('neutral')\n\nelif time_travel_s1 == time_travel_s2:\n print('Entailment')\n\nelif time_travel_s1 != time_travel_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In an exam , Amar scored 64 percent , Bhavan scored 36 percent and Chetan 44 percent, \"statement 2\" :In an exam , Amar scored more than 64 percent , Bhavan scored 36 percent and Chetan 44 percent, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amar_scored_s1 = 64 \namar_scored_s2 = 64 + 1\n \nif amar_scored_s1 is None or amar_scored_s2 is None:\n print('neutral')\n\nelif amar_scored_s1 == amar_scored_s2:\n print('Entailment')\n\nelif amar_scored_s1 != amar_scored_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": An investor can sell her MicroTron stock for more than 26 $ per share and her Dynaco stock for 56 $ per share , If she sells 300 shares altogether , some of each stock , at an average price per share of 40 $ , how many shares of Dynaco stock has she sold ?, \"statement 2\" :An investor can sell her MicroTron stock for 36 $ per share and her Dynaco stock for 56 $ per share , If she sells 300 shares altogether , some of each stock , at an average price per share of 40 $ , how many shares of Dynaco stock has she sold ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "microtron_s1 = None\nmicrotron_s2 = 36\n \nif microtron_s1 is None or microtron_s2 is None:\n print('neutral')\n\nelif microtron_s1 == microtron_s2:\n print('Entailment')\n\nelif microtron_s1 != microtron_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A survey of children at refugee camps finds rapes of girls under age 17 are increasing ., \"statement 2\" :Group surveys girls under 17 at various refugee camps, \"options: \" Entailment or neutral?", + "Output Program": [ + "survey_girls_age_s1 = 17\nsurvey_girls_age_s2 = 17\n \nif survey_girls_age_s1 is None or survey_girls_age_s2 is None:\n print('neutral')\n\nelif survey_girls_age_s1 == survey_girls_age_s2:\n print('Entailment')\n\nelif survey_girls_age_s1 != survey_girls_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Today John is 3 times older than Mark, \"statement 2\" :Today John is 4 times older than Mark, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_age_s1 = 4\njohn_age_s2 = 3\n \nif john_age_s1 is None or john_age_s2 is None:\n print('neutral')\n\nelif john_age_s1 == john_age_s2:\n print('Entailment')\n\nelif john_age_s1 != john_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jack and Christina are standing less than 440 feet apart on a level surface, \"statement 2\" :Jack and Christina are standing 240 feet apart on a level surface, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "feet_apart_s1 = 440\nfeet_apart_s2 = 240\n \nif feet_apart_s1 is None or feet_apart_s2 is None:\n print('neutral')\n\nelif feet_apart_s1 == feet_apart_s2:\n print('Entailment')\n\nelif feet_apart_s1 != feet_apart_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The distance between Delhi and Mathura is 110 kms, \"statement 2\" :The distance between Delhi and Mathura is less than 110 kms, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "city_distance_s1 = 110\ncity_distance_s2 = 110-1\n \nif city_distance_s1 is None or city_distance_s2 is None:\n print('neutral')\n\nelif city_distance_s1 == city_distance_s2:\n print('Entailment')\n\nelif city_distance_s1 != city_distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At least one couple has tied the knot ., \"statement 2\" :There has been at least one wedding in the park, \"options: \" Entailment or neutral?", + "Output Program": [ + "weeding_s1 = 1\nweeding_s2 = 1\n \nif weeding_s1 is None or weeding_s2 is None:\n print('neutral')\n\nelif weeding_s1 == weeding_s2:\n print('Entailment')\n\nelif weeding_s1 != weeding_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alok ordered 16 chapatis , 5 plates of rice , 7 plates of mixed vegetable and 5 ice - cream cups, \"statement 2\" :Alok ordered 76 chapatis , 5 plates of rice , 7 plates of mixed vegetable and 5 ice - cream cups, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "alok_chapatis_s1 = 16\nalok_chapatis_s2 = 76\n \nif alok_chapatis_s1 is None or alok_chapatis_s2 is None:\n print('neutral')\n\nelif alok_chapatis_s1 == alok_chapatis_s2:\n print('Entailment')\n\nelif alok_chapatis_s1 != alok_chapatis_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the three started to fish together and after more than 20 minutes Mike and Bob left , how many fish did the three fishermen catch in one hour ?, \"statement 2\" :If the three started to fish together and after 40 minutes Mike and Bob left , how many fish did the three fishermen catch in one hour ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "fishing_minutes_s1 = None\nfishing_minutes_s2 = 40\n \nif fishing_minutes_s1 is None or fishing_minutes_s2 is None:\n print('neutral')\n\nelif fishing_minutes_s1 == fishing_minutes_s2:\n print('Entailment')\n\nelif fishing_minutes_s1 != fishing_minutes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Tanya is 25 % more efficient than Sakshi, \"statement 2\" :Tanya is less than 45 % more efficient than Sakshi, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tanya_efficient_s1 = 25\ntanya_efficient_s2 = 45\n \nif tanya_efficient_s1 is None or tanya_efficient_s2 is None:\n print('neutral')\n\nelif tanya_efficient_s1 < tanya_efficient_s2:\n print('Entailment')\n\nelif tanya_efficient_s1 != tanya_efficient_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alyssa picked 42.0 pears, and Nancy picked 17.0 pears from the pear tree ., \"statement 2\" :59.0 pears were picked in all, \"options: \" Entailment or contradiction?", + "Output Program": [ + "pears_picked_s1 = 42 + 17\npears_picked_s2 = 59\n \nif pears_picked_s1 is None or pears_picked_s2 is None:\n print('neutral')\n\nelif pears_picked_s1 == pears_picked_s2:\n print('Entailment')\n\nelif pears_picked_s1 != pears_picked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Victor has 15 cups if flour , 16 cups of sugar and 8 cups of milk, \"statement 2\" :Victor has less than 35 cups if flour , 16 cups of sugar and 8 cups of milk, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "victor_flour_s1 = 15\nvictor_flour_s2 = 35\n \nif victor_flour_s1 is None or victor_flour_s2 is None:\n print('neutral')\n\nelif victor_flour_s1 < victor_flour_s2:\n print('Entailment')\n\nelif victor_flour_s1 != victor_flour_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Of a certain group of less than 300 people , 40 graduated from High School A , 65 graduated from College Y , and 30 live in City Z, \"statement 2\" :Of a certain group of 100 people , 40 graduated from High School A , 65 graduated from College Y , and 30 live in City Z, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "certain_group_s1 = None\ncertain_group_s2 = 100\n \nif certain_group_s1 is None or certain_group_s2 is None:\n print('neutral')\n\nelif certain_group_s1 < certain_group_s2:\n print('Entailment')\n\nelif certain_group_s1 != certain_group_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John was thrice as old as Tom more than 2 yrs back, \"statement 2\" :John was thrice as old as Tom 6 yrs back, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_thrice_tom_s1 = None\njohn_thrice_tom_s2 = 6\n \nif john_thrice_tom_s1 is None or john_thrice_tom_s2 is None:\n print('neutral')\n\nelif john_thrice_tom_s1 < john_thrice_tom_s2:\n print('Entailment')\n\nelif john_thrice_tom_s1 != john_thrice_tom_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The sides of right triangle ABC are such that the length of side AC is 1.25 times the length of side AB , which itself is 4 units more than the length of side BC, \"statement 2\" :The sides of right triangle ABC are such that the length of side AC is 1.25 times the length of side AB , which itself is less than 5 units more than the length of side BC, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "abc_unit_s1 = 4\nabc_unit_s2 = 5\n \nif abc_unit_s1 is None or abc_unit_s2 is None:\n print('neutral')\n\nelif abc_unit_s1 < abc_unit_s2:\n print('Entailment')\n\nelif abc_unit_s1 != abc_unit_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a certain province in France there are less than 81 cities, \"statement 2\" :In a certain province in France there are 11 cities, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "france_cities_s1 = None\nfrance_cities_s2 = 11\n \nif france_cities_s1 is None or france_cities_s2 is None:\n print('neutral')\n\nelif france_cities_s1 < france_cities_s2:\n print('Entailment')\n\nelif france_cities_s1 != france_cities_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jaime earned enough money by selling seashells at 20 cents each to buy several used paperback books at 55 cents each, \"statement 2\" :Jaime earned enough money by selling seashells at less than 30 cents each to buy several used paperback books at 55 cents each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "seashells_s1 = 20\nseashells_s2 = 30\n \nif seashells_s1 is None or seashells_s2 is None:\n print('neutral')\n\nelif seashells_s1 < seashells_s2:\n print('Entailment')\n\nelif seashells_s1 != seashells_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The Computer Store has reduced the price of a computer by less than 55 % . What is the original price of the computer if the sale price is $ 1275 ?, \"statement 2\" :The Computer Store has reduced the price of a computer by 15 % .\nWhat is the original price of the computer if the sale price is $ 1275 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "computer_price_s1 = None\ncomputer_price_s2 = 15\n \nif computer_price_s1 is None or computer_price_s2 is None:\n print('neutral')\n\nelif computer_price_s1 == computer_price_s2:\n print('Entailment')\n\nelif computer_price_s1 != computer_price_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": David obtained 96 , 95 , 82 , 97 and 95 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"statement 2\" :David obtained 86 , 95 , 82 , 97 and 95 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology What are his average marks ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "david_obtained_s1 = 96 + 95 + 82 + 97 + 95\ndavid_obtained_s2 = 86 + 95 + 82 + 97 + 95\n \nif david_obtained_s1 is None or david_obtained_s2 is None:\n print('neutral')\n\nelif david_obtained_s1 == david_obtained_s2:\n print('Entailment')\n\nelif david_obtained_s1 != david_obtained_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Scattered areas near Easton , Washington , along Interstate 90 in the Cascade Mountains 55 miles east of Seattle , have already received 32 inches of snow , Cloutier said ., \"statement 2\" :Up to 3.5 feet of snow in Cascade Mountains forecast, \"options: \" Entailment or neutral?", + "Output Program": [ + "mountain_miles_s1 = 55\nmountain_miles_s2 = None\n \nif mountain_miles_s1 is None or mountain_miles_s2 is None:\n print('neutral')\n\nelif mountain_miles_s1 == mountain_miles_s2:\n print('Entailment')\n\nelif mountain_miles_s1 != mountain_miles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At Veridux Corporation , there are less than 850 employees, \"statement 2\" :At Veridux Corporation , there are 250 employees, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "veridux_employees_s1 = None\nveridux_employees_s2 = 250\n \nif veridux_employees_s1 is None or veridux_employees_s2 is None:\n print('neutral')\n\nelif veridux_employees_s1 == veridux_employees_s2:\n print('Entailment')\n\nelif veridux_employees_s1 != veridux_employees_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In 5 years John will be twice as old as Frank, \"statement 2\" :In more than 1 years John will be twice as old as Frank, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_age_s1 = 5\njohn_age_s2 = 1\n \nif john_age_s1 is None or john_age_s2 is None:\n print('neutral')\n\nelif john_age_s1 > john_age_s2:\n print('Entailment')\n\nelif john_age_s1 != john_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The death toll of a fire that roared through a packed Buenos Aires nightclub climbed on Friday to at least 175 , with more than 700 injured as young revellers stampeded to reach locked exit doors ., \"statement 2\" :At least 174 had been killed and more than 410 people injured ., \"options: \" Entailment or neutral?", + "Output Program": [ + "people_injured_s1 = 700\npeople_injured_s2 = 410\n \nif people_injured_s1 is None or people_injured_s2 is None:\n print('neutral')\n\nelif people_injured_s1 > people_injured_s2:\n print('Entailment')\n\nelif people_injured_s1 != people_injured_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A garden has 52.0 rows and 15.0 columns of bean plans., \"statement 2\" :780.0 plants are there in all, \"options: \" Entailment or contradiction?", + "Output Program": [ + "garden_plants_s1 = 52 * 15\ngarden_plants_s2 = 780\n \nif garden_plants_s1 is None or garden_plants_s2 is None:\n print('neutral')\n\nelif garden_plants_s1 == garden_plants_s2:\n print('Entailment')\n\nelif garden_plants_s1 != garden_plants_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shekar scored 76 , 65 , 82 , 67 and 95 marks in Mathematics , Science , Social studies , English and Biology respectively, \"statement 2\" :Shekar scored more than 76 , 65 , 82 , 67 and 95 marks in Mathematics , Science , Social studies , English and Biology respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shekhar_scored_s1 = 76 + 65 + 82+ 67 + 95\nshekhar_scored_s2 = 76 + 65 + 82 + 67 + 95\n \nif shekhar_scored_s1 is None or shekhar_scored_s2 is None:\n print('neutral')\n\nelif shekhar_scored_s1 == shekhar_scored_s2:\n print('Entailment')\n\nelif shekhar_scored_s1 != shekhar_scored_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In less than 5979 approximately 1 / 3 of the 38.3 million airline passengers traveling to or from the United States used Kennedy Airport, \"statement 2\" :In 1979 approximately 1 / 3 of the 38.3 million airline passengers traveling to or from the United States used Kennedy Airport, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "passenger_traveling_year_s1 = None\npassenger_traveling_year_s2 = 1979\n \nif passenger_traveling_year_s1 is None or passenger_traveling_year_s2 is None:\n print('neutral')\n\nelif passenger_traveling_year_s1 == passenger_traveling_year_s2:\n print('Entailment')\n\nelif passenger_traveling_year_s1 != passenger_traveling_year_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He will be 5 / 3 times as old as Tom 6 years hence, \"statement 2\" :He will be more than 4 / 3 times as old as Tom 6 years hence, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tom_age_ratio_s1 = 5/3\ntom_age_ratio_s2 = 4/3\n \nif tom_age_ratio_s1 is None or tom_age_ratio_s2 is None:\n print('neutral')\n\nelif tom_age_ratio_s1 > tom_age_ratio_s2:\n print('Entailment')\n\nelif tom_age_ratio_s1 != tom_age_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Michael earned $ 363 last week , how many hours did he work ?, \"statement 2\" :If Michael earned $ less than 463 last week , how many hours did he work ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "michael_earned_s1 = 363\nmichael_earned_s2 = 463\n \nif michael_earned_s1 is None or michael_earned_s2 is None:\n print('neutral')\n\nelif michael_earned_s1 < michael_earned_s2:\n print('Entailment')\n\nelif michael_earned_s1 != michael_earned_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the trip home took less than 6 / 2 hour longer than the trip to the beach , how many kilometers k did Carl drive each way ?, \"statement 2\" :If the trip home took 1 / 2 hour longer than the trip to the beach , how many kilometers k did Carl drive each way ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "home_trip_s1 = None\nhome_trip_s2 = 1/2\n \nif home_trip_s1 is None or home_trip_s2 is None:\n print('neutral')\n\nelif home_trip_s1 == home_trip_s2:\n print('Entailment')\n\nelif home_trip_s1 != home_trip_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If it takes Pat 15 minutes to stretch and Cathy continues to run during this time , how many minutes will it take Pat to catch up to Cathy ?, \"statement 2\" :If it takes Pat less than 75 minutes to stretch and Cathy continues to run during this time , how many minutes will it take Pat to catch up to Cathy ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pat_minutes_s1 = 15\npat_minutes_s2 = 75\n \nif pat_minutes_s1 is None or pat_minutes_s2 is None:\n print('neutral')\n\nelif pat_minutes_s1 < pat_minutes_s2:\n print('Entailment')\n\nelif pat_minutes_s1 != pat_minutes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the average speed of the whole journey was less than 46 mph , then what is Tom ' s speed driving from B to C in miles per hour ?, \"statement 2\" :If the average speed of the whole journey was 36 mph , then what is Tom ' s speed driving from B to C in miles per hour ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "journey_speed_s1 = None\njourney_speed_s2 = 36\n \nif journey_speed_s1 is None or journey_speed_s2 is None:\n print('neutral')\n\nelif journey_speed_s1 == journey_speed_s2:\n print('Entailment')\n\nelif journey_speed_s1 != journey_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Claudia can choose any two of four different candles and any 8 of 9 different flowers for a centerpiece arrangement, \"statement 2\" :Claudia can choose any two of four different candles and any more than 7 of 9 different flowers for a centerpiece arrangement, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "claudia_flowers_s1 = 8\nclaudia_flowers_s2 = 7\n \nif claudia_flowers_s1 is None or claudia_flowers_s2 is None:\n print('neutral')\n\nelif claudia_flowers_s1 > claudia_flowers_s2:\n print('Entailment')\n\nelif claudia_flowers_s1 != claudia_flowers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Missy received less than 68 messages from Laurence , how many messages does Keith receive from Juan ?, \"statement 2\" :If Missy received 18 messages from Laurence , how many messages does Keith receive from Juan ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "missy_received_s1 = None\nmissy_received_s2 = 18\n \nif missy_received_s1 is None or missy_received_s2 is None:\n print('neutral')\n\nelif missy_received_s1 == missy_received_s2:\n print('Entailment')\n\nelif missy_received_s1 != missy_received_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 3900 from Anwar at 6 % p, \"statement 2\" :more than 1900 from Anwar at 6 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "anwar_s1 = 3900\nanwar_s2 = 1900\n \nif anwar_s1 is None or anwar_s2 is None:\n print('neutral')\n\nelif anwar_s1 > anwar_s2:\n print('Entailment')\n\nelif anwar_s1 != anwar_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": ( CNN ) -- A federal appeals court in Argentina has ruled that a grandmother must stand trial for growing two marijuana plants in her backyard ., \"statement 2\" :Grandmother in Argentina will have to stand trial for growing two marijuana plants , court says, \"options: \" Entailment or neutral?", + "Output Program": [ + "plants_s1 = 2\nplants_s2 = 2\n \nif plants_s1 is None or plants_s2 is None:\n print('neutral')\n\nelif plants_s1 == plants_s2:\n print('Entailment')\n\nelif plants_s1 != plants_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Meg and Bob are among the 7 participants in a cycling race, \"statement 2\" :Meg and Bob are among the more than 2 participants in a cycling race, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "participants_s1 = 7\nparticipants_s2 = 2\n \nif participants_s1 is None or participants_s2 is None:\n print('neutral')\n\nelif participants_s1 > participants_s2:\n print('Entailment')\n\nelif participants_s1 != participants_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Caleb spends $ 66.50 on more than 30 hamburgers for the marching band, \"statement 2\" :Caleb spends $ 66.50 on 50 hamburgers for the marching band, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "caleb_hamburgers_s1 = None\ncaleb_hamburgers_s2 = 50\n \nif caleb_hamburgers_s1 is None or caleb_hamburgers_s2 is None:\n print('neutral')\n\nelif caleb_hamburgers_s1 == caleb_hamburgers_s2:\n print('Entailment')\n\nelif caleb_hamburgers_s1 != caleb_hamburgers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Today David , who is less than 70 years old , and his daughter , who is 12 years old , celebrate their birthdays, \"statement 2\" :Today David , who is 40 years old , and his daughter , who is 12 years old , celebrate their birthdays, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "david_age_s1 = None\ndavid_age_s2 = 40\n \nif david_age_s1 is None or david_age_s2 is None:\n print('neutral')\n\nelif david_age_s1 == david_age_s2:\n print('Entailment')\n\nelif david_age_s1 != david_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Renu can do a piece of work in 6 days , but with the help of her friend Suma , she can do it in 5 days, \"statement 2\" :Renu can do a piece of work in 2 days , but with the help of her friend Suma , she can do it in 5 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "renu_work_s1 = 6\nrenu_work_s2 = 2\n \nif renu_work_s1 is None or renu_work_s2 is None:\n print('neutral')\n\nelif renu_work_s1 == renu_work_s2:\n print('Entailment')\n\nelif renu_work_s1 != renu_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If less than 71 people have visited both Iceland and Norway , how many people have visited neither country ?, \"statement 2\" :If 21 people have visited both Iceland and Norway , how many people have visited neither country ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_visited_s1 = None\npeople_visited_s2 = 21\n \nif people_visited_s1 is None or people_visited_s2 is None:\n print('neutral')\n\nelif people_visited_s1 == people_visited_s2:\n print('Entailment')\n\nelif people_visited_s1 != people_visited_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many clothing combinations does Barbara have , if she doesn \u2019 t wear 2 specific shirts with 3 specific pants ?, \"statement 2\" :How many clothing combinations does Barbara have , if she doesn \u2019 t wear less than 8 specific shirts with 3 specific pants ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "specific_shirts_s1 = 2\nspecific_shirts_s2 = 8\n \nif specific_shirts_s1 is None or specific_shirts_s2 is None:\n print('neutral')\n\nelif specific_shirts_s1 < specific_shirts_s2:\n print('Entailment')\n\nelif specific_shirts_s1 != specific_shirts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Altogether , Steve is spending more than 1 hours a day on the roads, \"statement 2\" :Altogether , Steve is spending 6 hours a day on the roads, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "steve_roas_s1 = None\nsteve_roas_s2 = 6\n \nif steve_roas_s1 is None or steve_roas_s2 is None:\n print('neutral')\n\nelif steve_roas_s1 == steve_roas_s2:\n print('Entailment')\n\nelif steve_roas_s1 != steve_roas_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mrs. Sheridan has 47.0 fish and she gave her sister 22.0 fish, \"statement 2\" :She has 23.0 fish now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "sheridan_fish_s1 = 47 - 22\nsheridan_fish_s2 = 23\n \nif sheridan_fish_s1 is None or sheridan_fish_s2 is None:\n print('neutral')\n\nelif sheridan_fish_s1 == sheridan_fish_s2:\n print('Entailment')\n\nelif sheridan_fish_s1 != sheridan_fish_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The youth protesters in Sanaa , whom witnesses estimated at more than 55,000 , were chanting , '' Saleh wait wait , the revolution youth are coming your way ! '', \"statement 2\" :At least 55,000 youths were marching toward the Republican Palace in Sanaa, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_chanting_s1 = None\npeople_chanting_s2 = 55000\n \nif people_chanting_s1 is None or people_chanting_s2 is None:\n print('neutral')\n\nelif people_chanting_s1 == people_chanting_s2:\n print('Entailment')\n\nelif people_chanting_s1 != people_chanting_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Last year 26 members of a certain club traveled to England , 26 members traveled to France , and 32 members traveled to Italy, \"statement 2\" :Last year 76 members of a certain club traveled to England , 26 members traveled to France , and 32 members traveled to Italy, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "certain_club_s1 = 26\ncertain_club_s2 = 76\n \nif certain_club_s1 is None or certain_club_s2 is None:\n print('neutral')\n\nelif certain_club_s1 == certain_club_s2:\n print('Entailment')\n\nelif certain_club_s1 != certain_club_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Sanoop returned 3 t - shirts to the retailer , and the average price of the remaining t - shirts was Rs, \"statement 2\" :If Sanoop returned less than 3 t - shirts to the retailer , and the average price of the remaining t - shirts was Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sanoop_returns_s1 = 3\nsanoop_returns_s2 = 3-1\n \nif sanoop_returns_s1 is None or sanoop_returns_s2 is None:\n print('neutral')\n\nelif sanoop_returns_s1 == sanoop_returns_s2:\n print('Entailment')\n\nelif sanoop_returns_s1 != sanoop_returns_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mike joined his school's band and he bought a trumpet for $145.16, and sold a song book which was $5.84, \"statement 2\" :The net amount that Mike spent at the music store is 139.32, \"options: \" Entailment or contradiction?", + "Output Program": [ + "mike_spent_s1 = 145.16 - 5.84\nmike_spent_s2 = 139.32\n \nif mike_spent_s1 is None or mike_spent_s2 is None:\n print('neutral')\n\nelif mike_spent_s1 == mike_spent_s2:\n print('Entailment')\n\nelif mike_spent_s1 != mike_spent_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Arun purchased more than 10 kg of wheat at the rate of Rs, \"statement 2\" :Arun purchased 30 kg of wheat at the rate of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "arun_purchased_s1 = None\narun_purchased_s2 = 30\n \nif arun_purchased_s1 is None or arun_purchased_s2 is None:\n print('neutral')\n\nelif arun_purchased_s1 == arun_purchased_s2:\n print('Entailment')\n\nelif arun_purchased_s1 != arun_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary selects a total of 10 apples and oranges from the food stand , and the average ( arithmetic mean ) price of the 10 pieces of fruit is 54 \u00a2, \"statement 2\" :Mary selects a total of 60 apples and oranges from the food stand , and the average ( arithmetic mean ) price of the 10 pieces of fruit is 54 \u00a2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mary_apples_s1 = 10\nmary_apples_s2 = 60\n \nif mary_apples_s1 is None or mary_apples_s2 is None:\n print('neutral')\n\nelif mary_apples_s1 == mary_apples_s2:\n print('Entailment')\n\nelif mary_apples_s1 != mary_apples_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The distance from Steve ' s house to work is less than 45 Km, \"statement 2\" :The distance from Steve ' s house to work is 35 Km, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "steve_works_s1 = None\nsteve_works_s2 = 35\n \nif steve_works_s1 is None or steve_works_s2 is None:\n print('neutral')\n\nelif steve_works_s1 == steve_works_s2:\n print('Entailment')\n\nelif steve_works_s1 != steve_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are 4 peanuts in a box and Mary puts 4 more peanuts inside , how many peanuts are in the box ?, \"statement 2\" :If there are 5 peanuts in a box and Mary puts 4 more peanuts inside , how many peanuts are in the box ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "peanuts_box_s1 = 4\npeanuts_box_s2 = 5\n \nif peanuts_box_s1 is None or peanuts_box_s2 is None:\n print('neutral')\n\nelif peanuts_box_s1 == peanuts_box_s2:\n print('Entailment')\n\nelif peanuts_box_s1 != peanuts_box_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At the same time Joyce gets on an elevator on the more than 11 st floor of the same building and rides down at a rate of 63 floors per minute, \"statement 2\" :At the same time Joyce gets on an elevator on the 41 st floor of the same building and rides down at a rate of 63 floors per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "elevator_floor_s1 = None\nelevator_floor_s2 = 41\n \nif elevator_floor_s1 is None or elevator_floor_s2 is None:\n print('neutral')\n\nelif elevator_floor_s1 == elevator_floor_s2:\n print('Entailment')\n\nelif elevator_floor_s1 != elevator_floor_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The motion for cloture , or to begin debate , needed 60 votes to pass due to a Republican filibuster , but fell short at 57-42 in favor ., \"statement 2\" :Motion for cloture falls three votes short of ending GOP filibuster, \"options: \" Entailment or neutral?", + "Output Program": [ + "votes_s1 = 60\nvotes_s2 = None\n \nif votes_s1 is None or votes_s2 is None:\n print('neutral')\n\nelif votes_s1 == votes_s2:\n print('Entailment')\n\nelif votes_s1 != votes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary works in a restaurant a maximum of 45 hours, \"statement 2\" :Mary works in a restaurant a maximum of 35 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mary_works_s1 = 45\nmary_works_s2 = 35\n \nif mary_works_s1 is None or mary_works_s2 is None:\n print('neutral')\n\nelif mary_works_s1 == mary_works_s2:\n print('Entailment')\n\nelif mary_works_s1 != mary_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary is less than 24 years younger than Albert, \"statement 2\" :Mary is 14 years younger than Albert, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mary_younger_albert_s1 = None\nmary_younger_albert_s2 = 14\n \nif mary_younger_albert_s1 is None or mary_younger_albert_s2 is None:\n print('neutral')\n\nelif mary_younger_albert_s1 == mary_younger_albert_s2:\n print('Entailment')\n\nelif mary_younger_albert_s1 != mary_younger_albert_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Matthew ' s walking rate was less than 8 km per hour and Johnny ' s was 4 km per hour , how many km had Johnny walked when they met ?, \"statement 2\" :Matthew ' s walking rate was 3 km per hour and Johnny ' s was 4 km per hour , how many km had Johnny walked when they met ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mathew_walking_rate_s1 = None\nmathew_walking_rate_s2 = 3\n \nif mathew_walking_rate_s1 is None or mathew_walking_rate_s2 is None:\n print('neutral')\n\nelif mathew_walking_rate_s1 == mathew_walking_rate_s2:\n print('Entailment')\n\nelif mathew_walking_rate_s1 != mathew_walking_rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Diana works 10 hours per day on Monday , Wednesday and Friday , and 15 hours per day on Tuesday and Thursday, \"statement 2\" :Diana works 30 hours per day on Monday , Wednesday and Friday , and 15 hours per day on Tuesday and Thursday, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "diana_works_s1 = 10\ndiana_works_s2 = 30\n \nif diana_works_s1 is None or diana_works_s2 is None:\n print('neutral')\n\nelif diana_works_s1 == diana_works_s2:\n print('Entailment')\n\nelif diana_works_s1 != diana_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The distance between their homes is less than 75 kilometers , Cara ' s walking speed is 6 km / h , and Don ' s walking speed is 5 km / h, \"statement 2\" :The distance between their homes is 45 kilometers , Cara ' s walking speed is 6 km / h , and Don ' s walking speed is 5 km / h, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "home_distance_s1 = None\nhome_distance_s2 = 45\n \nif home_distance_s1 is None or home_distance_s2 is None:\n print('neutral')\n\nelif home_distance_s1 == home_distance_s2:\n print('Entailment')\n\nelif home_distance_s1 != home_distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Isabel had 2.0 pages of math homework and 4.0 pages of reading homework, and there are 5 total problems, \"statement 2\" :4.7 problems were on each page on average, \"options: \" Entailment or contradiction?", + "Output Program": [ + "problems_s1 = (2*4)/5\nproblems_s2 = 4.7\n \nif problems_s1 is None or problems_s2 is None:\n print('neutral')\n\nelif problems_s1 == problems_s2:\n print('Entailment')\n\nelif problems_s1 != problems_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A restaurant served 7.0 slices of pie during lunch and 5.0 during dinner today and it served 8.0 of them yesterday , \"statement 2\" :12.0 slices of pie were served today , \"options: \" Entailment or contradiction?", + "Output Program": [ + "pie_served_s1 = 7+5\npie_served_s2 = 12\n \nif pie_served_s1 is None or pie_served_s2 is None:\n print('neutral')\n\nelif pie_served_s1 == pie_served_s2:\n print('Entailment')\n\nelif pie_served_s1 != pie_served_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": less than 50 % people of a village in Sri Lanka died by bombardment , 25 % of the remainder left the village on account of fear, \"statement 2\" :30 % people of a village in Sri Lanka died by bombardment , 25 % of the remainder left the village on account of fear, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_bombardment_s1 = None\npeople_bombardment_s2 = 30\n \nif people_bombardment_s1 is None or people_bombardment_s2 is None:\n print('neutral')\n\nelif people_bombardment_s1 == people_bombardment_s2:\n print('Entailment')\n\nelif people_bombardment_s1 != people_bombardment_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": China is the largest global producer and consumer of coal , comprising 75 percent of China 's total energy consumption ., \"statement 2\" :Coal makes up 75 percent of China 's energy use, \"options: \" Entailment or neutral?", + "Output Program": [ + "coal_percent_s1 = 0.75\ncoal_percent_s2 = 0.75\n \nif coal_percent_s1 is None or coal_percent_s2 is None:\n print('neutral')\n\nelif coal_percent_s1 == coal_percent_s2:\n print('Entailment')\n\nelif coal_percent_s1 != coal_percent_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He works at it for 20 days and then Rajesh finished it in 30 days, \"statement 2\" :He works at it for 10 days and then Rajesh finished it in 30 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "work_days_s1 = 10\nwork_days_s2 = 20\n \nif work_days_s1 is None or work_days_s2 is None:\n print('neutral')\n\nelif work_days_s1 == work_days_s2:\n print('Entailment')\n\nelif work_days_s1 != work_days_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy is younger than Molly by 16 years, \"statement 2\" :Sandy is younger than Molly by less than 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_younger_molly_s1 = 16\nsandy_younger_molly_s2 = 26\n \nif sandy_younger_molly_s1 is None or sandy_younger_molly_s2 is None:\n print('neutral')\n\nelif sandy_younger_molly_s1 < sandy_younger_molly_s2:\n print('Entailment')\n\nelif sandy_younger_molly_s1 != sandy_younger_molly_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sara had 21.0 quarters in her bank and her dad gave her 49.0 more quarters, \"statement 2\" :She has 68.0 quarters now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "sara_quarters_s1 = 21+49\nsara_quarters_s2 = 68\n \nif sara_quarters_s1 is None or sara_quarters_s2 is None:\n print('neutral')\n\nelif sara_quarters_s1 == sara_quarters_s2:\n print('Entailment')\n\nelif sara_quarters_s1 != sara_quarters_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bhaman travelled for less than 85 hours, \"statement 2\" :Bhaman travelled for 15 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bhaman_traveled_s1 = None\nbhaman_traveled_s2 = 15\n \nif bhaman_traveled_s1 is None or bhaman_traveled_s2 is None:\n print('neutral')\n\nelif bhaman_traveled_s1 == bhaman_traveled_s2:\n print('Entailment')\n\nelif bhaman_traveled_s1 != bhaman_traveled_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Charles strolled 6.0 miles at 3.0 miles per hour, \"statement 2\" :Charles travelled for 2.0 hours, \"options: \" Entailment or contradiction?", + "Output Program": [ + "charles_strolled_s1 = 6/3\ncharles_strolled_s2 = 2\n \nif charles_strolled_s1 is None or charles_strolled_s2 is None:\n print('neutral')\n\nelif charles_strolled_s1 == charles_strolled_s2:\n print('Entailment')\n\nelif charles_strolled_s1 != charles_strolled_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Twenty ticket holders will win $ 1 million after matching all the numbers except the Mega ball ., \"statement 2\" :20 people will win $ 1 million after matching the five non-Mega ball numbers, \"options: \" Entailment or neutral?", + "Output Program": [ + "ticket_holder_s1 = 20\nticket_holder_s2 = 20\n \nif ticket_holder_s1 is None or ticket_holder_s2 is None:\n print('neutral')\n\nelif ticket_holder_s1 == ticket_holder_s2:\n print('Entailment')\n\nelif ticket_holder_s1 != ticket_holder_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Benny picked 2.0 apples, and Dan picked 9.0 apples from the apple tree ., \"statement 2\" :11.0 apples were picked in total, \"options: \" Entailment or contradiction?", + "Output Program": [ + "apples_picked_s1 = 2+9\napples_picked_s2 = 11\n \nif apples_picked_s1 is None or apples_picked_s2 is None:\n print('neutral')\n\nelif apples_picked_s1 == apples_picked_s2:\n print('Entailment')\n\nelif apples_picked_s1 != apples_picked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a group of 50 people , 25 have visited Iceland and 23 have visited Norway, \"statement 2\" :In a group of 60 people , 25 have visited Iceland and 23 have visited Norway, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_group_s1 = 50\npeople_group_s2 = 60\n \nif people_group_s1 is None or people_group_s2 is None:\n print('neutral')\n\nelif people_group_s1 == people_group_s2:\n print('Entailment')\n\nelif people_group_s1 != people_group_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Albert father was 48 years of age when she was born while her mother was 46 years old when her brother 2 years younger to her was born, \"statement 2\" :Albert father was less than 58 years of age when she was born while her mother was 46 years old when her brother 2 years younger to her was born, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "albert_father_age_s1 = 48\nalbert_father_age_s2 = 58\n \nif albert_father_age_s1 is None or albert_father_age_s2 is None:\n print('neutral')\n\nelif albert_father_age_s1 < albert_father_age_s2:\n print('Entailment')\n\nelif albert_father_age_s1 != albert_father_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ratio of men to women in the Snyder community choir is more than 3 to 5, \"statement 2\" :The ratio of men to women in the Snyder community choir is 4 to 5, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "snyder_ratio_s1 = None\nsnyder_ratio_s2 = 4/5\n \nif snyder_ratio_s1 is None or snyder_ratio_s2 is None:\n print('neutral')\n\nelif snyder_ratio_s1 == snyder_ratio_s2:\n print('Entailment')\n\nelif snyder_ratio_s1 != snyder_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Melvin ' s GMAT score is twice his monthly electric bill , and his life expectancy is less than 800 , what is his shoe size ?, \"statement 2\" :If Melvin ' s GMAT score is twice his monthly electric bill , and his life expectancy is 100 , what is his shoe size ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gmat_score_s1 = None\ngmat_score_s2 = 100\n \nif gmat_score_s1 is None or gmat_score_s2 is None:\n print('neutral')\n\nelif gmat_score_s1 == gmat_score_s2:\n print('Entailment')\n\nelif gmat_score_s1 != gmat_score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Still , she said , three people have died in Minnesota because of the flooding ., \"statement 2\" :At least three people have died in Minnesota, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_died_s1 = 3\npeople_died_s2 = 3\n \nif people_died_s1 is None or people_died_s2 is None:\n print('neutral')\n\nelif people_died_s1 == people_died_s2:\n print('Entailment')\n\nelif people_died_s1 != people_died_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Two portraits , one by Reynolds , the other by Gainsborough , since 1990 among the most looked-after works in the Art Loss Register database , were recovered this week when they were brought into Sotheby 's for evaluation . Also a lithograph by Norwegian artist Edvard Munch , stolen from an Oslo art gallery in April , has been recovered , news reports said today ., \"statement 2\" :These two portraits and a lithography by Edvard Munch were recovered using the Art Loss Register database ., \"options: \" Entailment or neutral?", + "Output Program": [ + "most_looked_year_s1 = 1990\nmost_looked_year_s2 = None\n \nif most_looked_year_s1 is None or most_looked_year_s2 is None:\n print('neutral')\n\nelif most_looked_year_s1 == most_looked_year_s2:\n print('Entailment')\n\nelif most_looked_year_s1 != most_looked_year_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ajay bought 15 kg of dal at the rate of Rs 14.50 per kg and 10 kg at the rate of Rs 13 per kg, \"statement 2\" :Ajay bought less than 35 kg of dal at the rate of Rs 14.50 per kg and 10 kg at the rate of Rs 13 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ajay_bought_s1 = 15\najay_bought_s2 = 35\n \nif ajay_bought_s1 is None or ajay_bought_s2 is None:\n print('neutral')\n\nelif ajay_bought_s1 < ajay_bought_s2:\n print('Entailment')\n\nelif ajay_bought_s1 != ajay_bought_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ayesha ' s father was less than 44 years of age when she was born while her mother was 28 years old when her brother four years younger to her was born, \"statement 2\" :Ayesha ' s father was 34 years of age when she was born while her mother was 28 years old when her brother four years younger to her was born, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ayesha_father_age_s1 = None\nayesha_father_age_s2 = 34\n \nif ayesha_father_age_s1 is None or ayesha_father_age_s2 is None:\n print('neutral')\n\nelif ayesha_father_age_s1 == ayesha_father_age_s2:\n print('Entailment')\n\nelif ayesha_father_age_s1 != ayesha_father_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In an exam , Gibi scored 59 percent , Jigi scored 55 percent , Mike scored 99 percent and Lizzy 67 percent, \"statement 2\" :In an exam , Gibi scored more than 49 percent , Jigi scored 55 percent , Mike scored 99 percent and Lizzy 67 percent, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gibi_scored_s1 = 55\ngibi_scored_s2 = 49\n \nif gibi_scored_s1 is None or gibi_scored_s2 is None:\n print('neutral')\n\nelif gibi_scored_s1 > gibi_scored_s2:\n print('Entailment')\n\nelif gibi_scored_s1 != gibi_scored_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 40.0 boys and some girls on the playground and there are 117.0 children altogether, \"statement 2\" :77.0 girls are on the playground, \"options: \" Entailment or contradiction?", + "Output Program": [ + "playground_girls_s1 = 117 - 40\nplayground_girls_s2 = 77\n \nif playground_girls_s1 is None or playground_girls_s2 is None:\n print('neutral')\n\nelif playground_girls_s1 == playground_girls_s2:\n print('Entailment')\n\nelif playground_girls_s1 != playground_girls_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill has 42 gallons of water stored in quart , half - gallon , and one gallon jars, \"statement 2\" :Jill has less than 42 gallons of water stored in quart , half - gallon , and one gallon jars, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jill_gallons_s1 = 42\njill_gallons_s2 = 42-1\n \nif jill_gallons_s1 is None or jill_gallons_s2 is None:\n print('neutral')\n\nelif jill_gallons_s1 == jill_gallons_s2:\n print('Entailment')\n\nelif jill_gallons_s1 != jill_gallons_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nearly half of Republicans questioned say they 're angry , but that figure drops to 44 percent among Independents and 29 percent among Democrats ., \"statement 2\" :Four in 10 questioned say they 're angry about amount of taxes they pay, \"options: \" Entailment or neutral?", + "Output Program": [ + "independents_s1 = 44\nindependents_s2 = None\n \nif independents_s1 is None or independents_s2 is None:\n print('neutral')\n\nelif independents_s1 == independents_s2:\n print('Entailment')\n\nelif independents_s1 != independents_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The warplanes hit 10 targets used for training and storage in ISIS ' Libyan stronghold of Derna , Egyptian Foreign Minister Sameh Shoukry told CNN ., \"statement 2\" :Airstrikes hit 10 targets in an ISIS stronghold in Libya , Egypt 's foreign minister says, \"options: \" Entailment or neutral?", + "Output Program": [ + "warplane_hit_s1 = 10\nwarplane_hit_s2 = 10\n \nif warplane_hit_s1 is None or warplane_hit_s2 is None:\n print('neutral')\n\nelif warplane_hit_s1 == warplane_hit_s2:\n print('Entailment')\n\nelif warplane_hit_s1 != warplane_hit_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Veena ranks less than 83 rd from the top in a class of 182, \"statement 2\" :Veena ranks 73 rd from the top in a class of 182, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "veen_ranks_s1 = None\nveen_ranks_s2 = 73\n \nif veen_ranks_s1 is None or veen_ranks_s2 is None:\n print('neutral')\n\nelif veen_ranks_s1 == veen_ranks_s2:\n print('Entailment')\n\nelif veen_ranks_s1 != veen_ranks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Efrida and Frazer who live 12 miles apart , meet at a restaurant that is directly north of Efrida ' s home and directly east of Frazer ' s home, \"statement 2\" :Efrida and Frazer who live less than 62 miles apart , meet at a restaurant that is directly north of Efrida ' s home and directly east of Frazer ' s home, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "miles_apart_s1 = 12\nmiles_apart_s2 = 62\n \nif miles_apart_s1 is None or miles_apart_s2 is None:\n print('neutral')\n\nelif miles_apart_s1 < miles_apart_s2:\n print('Entailment')\n\nelif miles_apart_s1 != miles_apart_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": for Mathura and B starts from Mathura with a speed of 30 kmph at 9 p, \"statement 2\" :for Mathura and B starts from Mathura with a speed of less than 30 kmph at 9 p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mathura_speed_s1 = 30\nmathura_speed_s2 = 30 + 1\n \nif mathura_speed_s1 is None or mathura_speed_s2 is None:\n print('neutral')\n\nelif mathura_speed_s1 == mathura_speed_s2:\n print('Entailment')\n\nelif mathura_speed_s1 != mathura_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joe drives 360 miles at 60 miles per hour , and then he drives the next 120 miles at 40 miles per hour, \"statement 2\" :Joe drives 160 miles at 60 miles per hour , and then he drives the next 120 miles at 40 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "joe_drives_s1 = 360\njoe_drives_s2 = 160\n \nif joe_drives_s1 is None or joe_drives_s2 is None:\n print('neutral')\n\nelif joe_drives_s1 == joe_drives_s2:\n print('Entailment')\n\nelif joe_drives_s1 != joe_drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": It takes John exactly 30 minutes to rake a lawn and it takes his son Todd exactly 60 minutes to rake the same lawn, \"statement 2\" :It takes John exactly more than 10 minutes to rake a lawn and it takes his son Todd exactly 60 minutes to rake the same lawn, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rake_lawn_s1 = 30\nrake_lawn_s2 = 10\n \nif rake_lawn_s1 is None or rake_lawn_s2 is None:\n print('neutral')\n\nelif rake_lawn_s1 > rake_lawn_s2:\n print('Entailment')\n\nelif rake_lawn_s1 != rake_lawn_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Matthew ' s walking rate was 3 km per hour and Johnny ' s was 4 km per hour , how many km had Johnny walked when they met ?, \"statement 2\" :Matthew ' s walking rate was 8 km per hour and Johnny ' s was 4 km per hour , how many km had Johnny walked when they met ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "matthew_alking_rate_s1 = 3\nmatthew_alking_rate_s2 = 8\n \nif matthew_alking_rate_s1 is None or matthew_alking_rate_s2 is None:\n print('neutral')\n\nelif matthew_alking_rate_s1 == matthew_alking_rate_s2:\n print('Entailment')\n\nelif matthew_alking_rate_s1 != matthew_alking_rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were 6.0 roses in the vase and Mary cut some roses from her flower garden and put 16.0 more roses in the vase, \"statement 2\" :18.0 roses are now in the vase, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_roses_s1 = 6 + 16\ntotal_roses_s2 = 18\n \nif total_roses_s1 is None or total_roses_s2 is None:\n print('neutral')\n\nelif total_roses_s1 == total_roses_s2:\n print('Entailment')\n\nelif total_roses_s1 != total_roses_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bhanu spends 30 % of his income on petrol on scooter 10 % of the remaining on house rent and the balance on food, \"statement 2\" :Bhanu spends more than 10 % of his income on petrol on scooter 10 % of the remaining on house rent and the balance on food, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bhanu_spends_s1 = 30\nbhanu_spends_s2 = 10\n \nif bhanu_spends_s1 is None or bhanu_spends_s2 is None:\n print('neutral')\n\nelif bhanu_spends_s1 > bhanu_spends_s2:\n print('Entailment')\n\nelif bhanu_spends_s1 != bhanu_spends_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill works as a waitress at the local diner where she earns an hourly wage of $ 4.00 per hour and a standard tip rate of 15 % of the cost of the orders she serves, \"statement 2\" :Jill works as a waitress at the local diner where she earns an hourly wage of $ 4.00 per hour and a standard tip rate of 65 % of the cost of the orders she serves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "standard_tip_s1 = 15\nstandard_tip_s2 = 65\n \nif standard_tip_s1 is None or standard_tip_s2 is None:\n print('neutral')\n\nelif standard_tip_s1 == standard_tip_s2:\n print('Entailment')\n\nelif standard_tip_s1 != standard_tip_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Peter bought an item at 20 % discount on its original price, \"statement 2\" :Peter bought an item at 30 % discount on its original price, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "discount_s1 = 20\ndiscount_s2 = 30\n \nif discount_s1 is None or discount_s2 is None:\n print('neutral')\n\nelif discount_s1 == discount_s2:\n print('Entailment')\n\nelif discount_s1 != discount_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In an exam , Amar scored 84 percent , Bhavan scored 36 percent and Chetan 44 percent, \"statement 2\" :In an exam , Amar scored less than 84 percent , Bhavan scored 36 percent and Chetan 44 percent, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amar_scored_s1 = 84\namar_scored_s2 = 84 - 1\n \nif amar_scored_s1 is None or amar_scored_s2 is None:\n print('neutral')\n\nelif amar_scored_s1 == amar_scored_s2:\n print('Entailment')\n\nelif amar_scored_s1 != amar_scored_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": One hour after Matthew started waking from q to y , a distance of 45 km , Johnny started walking along the same road from y to q, \"statement 2\" :One hour after Matthew started waking from q to y , a distance of 55 km , Johnny started walking along the same road from y to q, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_s1 = 45\ndistance_s2 = 55\n \nif distance_s1 is None or distance_s2 is None:\n print('neutral')\n\nelif distance_s1 == distance_s2:\n print('Entailment')\n\nelif distance_s1 != distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Tom received $ 800 more than Jerry did , what was the profit made by their business in that year ?, \"statement 2\" :If Tom received $ 200 more than Jerry did , what was the profit made by their business in that year ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tom_received_s1 = 800\ntom_received_s2 = 200\n \nif tom_received_s1 is None or tom_received_s2 is None:\n print('neutral')\n\nelif tom_received_s1 == tom_received_s2:\n print('Entailment')\n\nelif tom_received_s1 != tom_received_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nitin borrowed some money at the rate of more than 3 % p, \"statement 2\" :Nitin borrowed some money at the rate of 6 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "nitin_burrowed_s1 = 0.3\nnitin_burrowed_s2 = 0.6\n \nif nitin_burrowed_s1 is None or nitin_burrowed_s2 is None:\n print('neutral')\n\nelif nitin_burrowed_s1 == nitin_burrowed_s2:\n print('Entailment')\n\nelif nitin_burrowed_s1 != nitin_burrowed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The Englishman 's ten-under-par round was a career best and catapulted him to the top of the leaderboard on 13-under -- one shot in front of American Anthony Kang , who hit a 61 ., \"statement 2\" :Englishman fires ten birdies in a career best round to lead on 13-under, \"options: \" Entailment or neutral?", + "Output Program": [ + "kang_hit_s1 = 61\nkang_hit_s2 = None\n \nif kang_hit_s1 is None or kang_hit_s2 is None:\n print('neutral')\n\nelif kang_hit_s1 == kang_hit_s2:\n print('Entailment')\n\nelif kang_hit_s1 != kang_hit_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Series Problem like 4 12 x 44 46 132 134 begin of the Skype highlighting 44 46 132 134 end of the Skype highlighting, \"statement 2\" :Series Problem like 3 12 x 44 46 132 134 begin of the Skype highlighting 44 46 132 134 end of the Skype highlighting, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "series_problem_s1 = 4\nseries_problem_s2 = 3\n \nif series_problem_s1 is None or series_problem_s2 is None:\n print('neutral')\n\nelif series_problem_s1 == series_problem_s2:\n print('Entailment')\n\nelif series_problem_s1 != series_problem_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shekar scored less than 86 , 65 , 82 , 67 and 55 marks in Mathematics , Science , Social studies , English and Biology respectively, \"statement 2\" :Shekar scored 76 , 65 , 82 , 67 and 55 marks in Mathematics , Science , Social studies , English and Biology respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shekhar_scored_s1 = None\nshekhar_scored_s2 = 76 + 65 + 82 + 67 + 55\n \nif shekhar_scored_s1 is None or shekhar_scored_s2 is None:\n print('neutral')\n\nelif shekhar_scored_s1 == shekhar_scored_s2:\n print('Entailment')\n\nelif shekhar_scored_s1 != shekhar_scored_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is more than 3 : 3 , After 6 Years Rahul age will be 22 years, \"statement 2\" :Ratio between Rahul and Deepak is 4 : 3 , After 6 Years Rahul age will be 22 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rahul_deepak_ratio_s1 = None\nrahul_deepak_ratio_s2 = 4/3\n \nif rahul_deepak_ratio_s1 is None or rahul_deepak_ratio_s2 is None:\n print('neutral')\n\nelif rahul_deepak_ratio_s1 == rahul_deepak_ratio_s2:\n print('Entailment')\n\nelif rahul_deepak_ratio_s1 != rahul_deepak_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Take consumer products giant Procter and Gamble . Even with a $ 1.8 billion Research and Development budget , it still manages 500 active partnerships each year , many of them with small companies ., \"statement 2\" :Procter and Gamble spends $ 1.8 billion for Research and Development ., \"options: \" Entailment or neutral?", + "Output Program": [ + "gamble_spends_s1 = 1.8\ngamble_spends_s2 = 1.8\n \nif gamble_spends_s1 is None or gamble_spends_s2 is None:\n print('neutral')\n\nelif gamble_spends_s1 == gamble_spends_s2:\n print('Entailment')\n\nelif gamble_spends_s1 != gamble_spends_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joe \u2019 s average ( arithmetic mean ) test score across 4 equally weighted tests was 35, \"statement 2\" :Joe \u2019 s average ( arithmetic mean ) test score across less than 6 equally weighted tests was 35, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "test_score_s1 = 4\ntest_score_s2 = 6\n \nif test_score_s1 is None or test_score_s2 is None:\n print('neutral')\n\nelif test_score_s1 < test_score_s2:\n print('Entailment')\n\nelif test_score_s1 != test_score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Snyder has more than 3 more men and 6 more women than Leigh , how many women are in the Snyder choir ?, \"statement 2\" :If Snyder has 4 more men and 6 more women than Leigh , how many women are in the Snyder choir ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "snyder_ratio_s1 = None\nsnyder_ratio_s2 = 4\n \nif snyder_ratio_s1 is None or snyder_ratio_s2 is None:\n print('neutral')\n\nelif snyder_ratio_s1 == snyder_ratio_s2:\n print('Entailment')\n\nelif snyder_ratio_s1 != snyder_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Peter reads at a constant rate of 1 pages every 5 minutes , how many seconds will it take him to read N pages ?, \"statement 2\" :If Peter reads at a constant rate of less than 7 pages every 5 minutes , how many seconds will it take him to read N pages ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "peter_reads_s1 = 1\npeter_reads_s2 = 7\n \nif peter_reads_s1 is None or peter_reads_s2 is None:\n print('neutral')\n\nelif peter_reads_s1 < peter_reads_s2:\n print('Entailment')\n\nelif peter_reads_s1 != peter_reads_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": It is rumored that in a match between 2 teams A and B , Paul picks A with the same probability as A \u2019 s chances of winning, \"statement 2\" :It is rumored that in a match between less than 5 teams A and B , Paul picks A with the same probability as A \u2019 s chances of winning, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "teams_s1 = 2\nteams_s2 = 5\n \nif teams_s1 is None or teams_s2 is None:\n print('neutral')\n\nelif teams_s1 < teams_s2:\n print('Entailment')\n\nelif teams_s1 != teams_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": George ' s drawer has less than 8 loose black socks , 11 loose blue socks , and 8 loose white socks, \"statement 2\" :George ' s drawer has 7 loose black socks , 11 loose blue socks , and 8 loose white socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "black_socks_s1 = None\nblack_socks_s2 = 7\n \nif black_socks_s1 is None or black_socks_s2 is None:\n print('neutral')\n\nelif black_socks_s1 == black_socks_s2:\n print('Entailment')\n\nelif black_socks_s1 != black_socks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Norwich 's 1-0 home win left United a point behind rivals Manchester City , who earlier thrashed Aston Villa 5-0 ., \"statement 2\" :Rivals Manchester United drop to second after losing 1-0 to Norwich City, \"options: \" Entailment or neutral?", + "Output Program": [ + "norwich_win_s1 = 1\nnorwich_win_s2 = 1\n \nif norwich_win_s1 is None or norwich_win_s2 is None:\n print('neutral')\n\nelif norwich_win_s1 == norwich_win_s2:\n print('Entailment')\n\nelif norwich_win_s1 != norwich_win_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Two dogsled teams raced across a 300 mile course in Wyoming, \"statement 2\" :Two dogsled teams raced across a less than 400 mile course in Wyoming, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "teams_raced_s1 = 300\nteams_raced_s2 = 400\n \nif teams_raced_s1 is None or teams_raced_s2 is None:\n print('neutral')\n\nelif teams_raced_s1 < teams_raced_s2:\n print('Entailment')\n\nelif teams_raced_s1 != teams_raced_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Six gunmen were killed in the police operation to retake the Ministry of Transport in northeast Baghdad ., \"statement 2\" :Iraqi police retake ministry building from gunmen , six of whom are killed, \"options: \" Entailment or neutral?", + "Output Program": [ + "gunmen_killed_s1 = 6\ngunmen_killed_s2 = 6\n \nif gunmen_killed_s1 is None or gunmen_killed_s2 is None:\n print('neutral')\n\nelif gunmen_killed_s1 == gunmen_killed_s2:\n print('Entailment')\n\nelif gunmen_killed_s1 != gunmen_killed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At the same time Joyce gets on an elevator on the 51 st floor of the same building and rides down at a rate of 53 floors per minute, \"statement 2\" :At the same time Joyce gets on an elevator on the 81 st floor of the same building and rides down at a rate of 53 floors per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "elevator_floor_s1 = 51\nelevator_floor_s2 = 81\n \nif elevator_floor_s1 is None or elevator_floor_s2 is None:\n print('neutral')\n\nelif elevator_floor_s1 == elevator_floor_s2:\n print('Entailment')\n\nelif elevator_floor_s1 != elevator_floor_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bhanu spends 30 % of his income on petrol on scooter 21 % of the remaining on house rent and the balance on food, \"statement 2\" :Bhanu spends more than 30 % of his income on petrol on scooter 21 % of the remaining on house rent and the balance on food, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bhanu_spends_s1 = 30\nbhanu_spends_s2 = 30+1\n \nif bhanu_spends_s1 is None or bhanu_spends_s2 is None:\n print('neutral')\n\nelif bhanu_spends_s1 == bhanu_spends_s2:\n print('Entailment')\n\nelif bhanu_spends_s1 != bhanu_spends_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sheila works more than 5 hours per day on Monday , Wednesday and Friday , and 6 hours per day on Tuesday and Thursday, \"statement 2\" :Sheila works 8 hours per day on Monday , Wednesday and Friday , and 6 hours per day on Tuesday and Thursday, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sheila_works_s1 = 5\nsheila_works_s2 = 8\n \nif sheila_works_s1 is None or sheila_works_s2 is None:\n print('neutral')\n\nelif sheila_works_s1 == sheila_works_s2:\n print('Entailment')\n\nelif sheila_works_s1 != sheila_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": What was the difference between the total monthly salary of Arun in all the years together and Suman ' s monthly income in the year less than 6007 ?, \"statement 2\" :What was the difference between the total monthly salary of Arun in all the years together and Suman ' s monthly income in the year 2007 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "income_year_s1 = None\nincome_year_s2 = 2007\n \nif income_year_s1 is None or income_year_s2 is None:\n print('neutral')\n\nelif income_year_s1 == income_year_s2:\n print('Entailment')\n\nelif income_year_s1 != income_year_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": To be considered for \u201c movie of the year , \u201d a film must appear in at least 1 / 4 of the top - 10 - movies lists submitted by the Cinematic Academy \u2019 s 795 members, \"statement 2\" :To be considered for \u201c movie of the year , \u201d a film must appear in at least 8 / 4 of the top - 10 - movies lists submitted by the Cinematic Academy \u2019 s 795 members, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "film_appear_s1 = 1/4\nfilm_appear_s2 = 8/4\n \nif film_appear_s1 is None or film_appear_s2 is None:\n print('neutral')\n\nelif film_appear_s1 == film_appear_s2:\n print('Entailment')\n\nelif film_appear_s1 != film_appear_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The four others also are residents of North Carolina , and all seven are accused of engaging in weapons training and military tactics in their home state , the Justice Department said ., \"statement 2\" :Seven '' practiced military tactics '' in North Carolina , indictment says, \"options: \" Entailment or neutral?", + "Output Program": [ + "residents_s1 = 4\nresidents_s2 = None\n \nif residents_s1 is None or residents_s2 is None:\n print('neutral')\n\nelif residents_s1 == residents_s2:\n print('Entailment')\n\nelif residents_s1 != residents_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Susan made a block with small cubes of more than 6 cubic cm volume to make a block , 3 small cubes long , 9 small cubes wide and 5 small cubes deep, \"statement 2\" :Susan made a block with small cubes of 8 cubic cm volume to make a block , 3 small cubes long , 9 small cubes wide and 5 small cubes deep, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cubic_cm_s1 = None\ncubic_cm_s2 = 8\n \nif cubic_cm_s1 is None or cubic_cm_s2 is None:\n print('neutral')\n\nelif cubic_cm_s1 == cubic_cm_s2:\n print('Entailment')\n\nelif cubic_cm_s1 != cubic_cm_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Wendy uploaded 79.0 pictures to Facebook and she put 44.0 pics into 1.0 album and put the rest into 5.0 different albums, \"statement 2\" :7.0 pictures were in each album, \"options: \" Entailment or contradiction?", + "Output Program": [ + "picture_album_s1 = (79 - 44) / 5\npicture_album_s2 = 7\n \nif picture_album_s1 is None or picture_album_s2 is None:\n print('neutral')\n\nelif picture_album_s1 == picture_album_s2:\n print('Entailment')\n\nelif picture_album_s1 != picture_album_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": To be considered for \u201c movie of the year , \u201d a film must appear in at least less than 4 / 4 of the top - 10 - movies lists submitted by the Cinematic Academy \u2019 s 775 members, \"statement 2\" :To be considered for \u201c movie of the year , \u201d a film must appear in at least 1 / 4 of the top - 10 - movies lists submitted by the Cinematic Academy \u2019 s 775 members, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "film_appear_s1 = None\nfilm_appear_s2 = 1/4\n \nif film_appear_s1 is None or film_appear_s2 is None:\n print('neutral')\n\nelif film_appear_s1 == film_appear_s2:\n print('Entailment')\n\nelif film_appear_s1 != film_appear_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nadya Suleman , a single mother of 14 children , has set up a Web site asking for donations ., \"statement 2\" :Nadya Suleman has created Web site to solicit donations to help support 14 kids, \"options: \" Entailment or neutral?", + "Output Program": [ + "children_s1 = 14\nchildren_s2 = 14\n \nif children_s1 is None or children_s2 is None:\n print('neutral')\n\nelif children_s1 == children_s2:\n print('Entailment')\n\nelif children_s1 != children_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In the latest attack , a parked motorcycle bomb exploded in the marketplace of al-Khadra in a predominantly Sunni neighborhood of eastern Baghdad ., \"statement 2\" :Motorcycle bomb kills six in Sunni neighborhood of Baghdad, \"options: \" Entailment or neutral?", + "Output Program": [ + "bomb_killed_s1 = None\nbomb_killed_s2 = 6\n \nif bomb_killed_s1 is None or bomb_killed_s2 is None:\n print('neutral')\n\nelif bomb_killed_s1 == bomb_killed_s2:\n print('Entailment')\n\nelif bomb_killed_s1 != bomb_killed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bhavan travelled for less than 70 hours, \"statement 2\" :Bhavan travelled for 20 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bhanu_travelled_s1 = None\nbhanu_travelled_s2 = 20\n \nif bhanu_travelled_s1 is None or bhanu_travelled_s2 is None:\n print('neutral')\n\nelif bhanu_travelled_s1 == bhanu_travelled_s2:\n print('Entailment')\n\nelif bhanu_travelled_s1 != bhanu_travelled_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The Dollywood company will serve as the project 's operating partner and will employ 450 full - and part-time employees , Parton said ., \"statement 2\" :The project will create 450 full - and part-time jobs , Parton says, \"options: \" Entailment or neutral?", + "Output Program": [ + "employ_hire_s1 = 450\nemploy_hire_s2 = 450\n \nif employ_hire_s1 is None or employ_hire_s2 is None:\n print('neutral')\n\nelif employ_hire_s1 == employ_hire_s2:\n print('Entailment')\n\nelif employ_hire_s1 != employ_hire_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 5 years ago Kate was 5 times as old as her Son, \"statement 2\" :less than 6 years ago Kate was 5 times as old as her Son, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_ago_s1 = 5\nyears_ago_s2 = 6\n \nif years_ago_s1 is None or years_ago_s2 is None:\n print('neutral')\n\nelif years_ago_s1 < years_ago_s2:\n print('Entailment')\n\nelif years_ago_s1 != years_ago_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jaclyn buys $ more than 10 000 worth of debentures in a company, \"statement 2\" :Jaclyn buys $ 40 000 worth of debentures in a company, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jaclyn_buys_s1 = None\njaclyn_buys_s2 = 40000\n \nif jaclyn_buys_s1 is None or jaclyn_buys_s2 is None:\n print('neutral')\n\nelif jaclyn_buys_s1 == jaclyn_buys_s2:\n print('Entailment')\n\nelif jaclyn_buys_s1 != jaclyn_buys_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mr Yadav spends 60 % of his monthly salary on consumable items and 50 % of the remaining on clothes and transport, \"statement 2\" :Mr Yadav spends more than 40 % of his monthly salary on consumable items and 50 % of the remaining on clothes and transport, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "yadav_spends_s1 = 60\nyadav_spends_s2 = 40\n \nif yadav_spends_s1 is None or yadav_spends_s2 is None:\n print('neutral')\n\nelif yadav_spends_s1 > yadav_spends_s2:\n print('Entailment')\n\nelif yadav_spends_s1 != yadav_spends_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Jack walked 6 miles in 1 hour and 15 minutes , what was his rate of walking in miles per hour ?, \"statement 2\" :If Jack walked more than 4 miles in 1 hour and 15 minutes , what was his rate of walking in miles per hour ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jack_walked_s1 = 6\njack_walked_s2 = 4\n \nif jack_walked_s1 is None or jack_walked_s2 is None:\n print('neutral')\n\nelif jack_walked_s1 > jack_walked_s2:\n print('Entailment')\n\nelif jack_walked_s1 != jack_walked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shop Offered less than 45 % offer for every Shirt , Smith bought a shirt at Rs, \"statement 2\" :Shop Offered 25 % offer for every Shirt , Smith bought a shirt at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shop_offered_s1 = None\nshop_offered_s2 = 25\n \nif shop_offered_s1 is None or shop_offered_s2 is None:\n print('neutral')\n\nelif shop_offered_s1 == shop_offered_s2:\n print('Entailment')\n\nelif shop_offered_s1 != shop_offered_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Kamal will complete work in 20 days, \"statement 2\" :Kamal will complete work in more than 10 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kamal_works_s1 = 20\nkamal_works_s2 = 10\n \nif kamal_works_s1 is None or kamal_works_s2 is None:\n print('neutral')\n\nelif kamal_works_s1 < kamal_works_s2:\n print('Entailment')\n\nelif kamal_works_s1 != kamal_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In the city of San Durango , more than 50 people own cats , dogs , or rabbits, \"statement 2\" :In the city of San Durango , 60 people own cats , dogs , or rabbits, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "san_durango_pet_s1 = None\nsan_durango_pet_s2 = 60\n \nif san_durango_pet_s1 is None or san_durango_pet_s2 is None:\n print('neutral')\n\nelif san_durango_pet_s1 == san_durango_pet_s2:\n print('Entailment')\n\nelif san_durango_pet_s1 != san_durango_pet_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": David can divide his herd into 5 equal parts and also to 6 equal parts , but not to 9 equal parts, \"statement 2\" :David can divide his herd into more than 3 equal parts and also to 6 equal parts , but not to 9 equal parts, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "herd_divide_s1 = 5\nherd_divide_s2 = 3\n \nif herd_divide_s1 is None or herd_divide_s2 is None:\n print('neutral')\n\nelif herd_divide_s1 > herd_divide_s2:\n print('Entailment')\n\nelif herd_divide_s1 != herd_divide_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lisa took a plane trip of 256.0 miles and she took this trip 32.0 times, \"statement 2\" :She has flown 8192.0 miles, \"options: \" Entailment or contradiction?", + "Output Program": [ + "plane_trip_s1 = 256 * 32\nplane_trip_s2 = 8192\n \nif plane_trip_s1 is None or plane_trip_s2 is None:\n print('neutral')\n\nelif plane_trip_s1 == plane_trip_s2:\n print('Entailment')\n\nelif plane_trip_s1 != plane_trip_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Isabel had 2.0 pages of math homework and 4.0 pages of reading homework, and there are 5 total problems, \"statement 2\" :1.2 problems were on each page on average, \"options: \" Entailment or contradiction?", + "Output Program": [ + "problems_s1 = (2+4)/5\nproblems_s2 = 1.2\n \nif problems_s1 is None or problems_s2 is None:\n print('neutral')\n\nelif problems_s1 == problems_s2:\n print('Entailment')\n\nelif problems_s1 != problems_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alok ordered 16 chapatis , 5 plates of rice , 7 plates of mixed vegetable and 6 ice - cream cups, \"statement 2\" :Alok ordered more than 16 chapatis , 5 plates of rice , 7 plates of mixed vegetable and 6 ice - cream cups, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "alok_chapatis_s1 = 16\nalok_chapatis_s2 = 16+1\n \nif alok_chapatis_s1 is None or alok_chapatis_s2 is None:\n print('neutral')\n\nelif alok_chapatis_s1 == alok_chapatis_s2:\n print('Entailment')\n\nelif alok_chapatis_s1 != alok_chapatis_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lilly has 10 fish and Rosy has 14 fish, \"statement 2\" :Lilly has 20 fish and Rosy has 14 fish, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "lily_fish_s1 = 10\nlily_fish_s2 = 20\n \nif lily_fish_s1 is None or lily_fish_s2 is None:\n print('neutral')\n\nelif lily_fish_s1 == lily_fish_s2:\n print('Entailment')\n\nelif lily_fish_s1 != lily_fish_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": On his way back , John drives 85 miles per hour and stops in Town Y which is midway between Town X and Town Z, \"statement 2\" :On his way back , John drives more than 65 miles per hour and stops in Town Y which is midway between Town X and Town Z, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_drives_s1 = 85\njohn_drives_s2 = 65\n \nif john_drives_s1 is None or john_drives_s2 is None:\n print('neutral')\n\nelif john_drives_s1 > john_drives_s2:\n print('Entailment')\n\nelif john_drives_s1 != john_drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 90 students represent x percent of the boys at Jones Elementary School, \"statement 2\" :more than 20 students represent x percent of the boys at Jones Elementary School, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "students_represent_s1 = 90\nstudents_represent_s2 = 20\n \nif students_represent_s1 is None or students_represent_s2 is None:\n print('neutral')\n\nelif students_represent_s1 > students_represent_s2:\n print('Entailment')\n\nelif students_represent_s1 != students_represent_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alice leaves City A less than 60 minutes after Bob, \"statement 2\" :Alice leaves City A 30 minutes after Bob, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "alice_leaves_s1 = None\nalice_leaves_s2 = 30\n \nif alice_leaves_s1 is None or alice_leaves_s2 is None:\n print('neutral')\n\nelif alice_leaves_s1 == alice_leaves_s2:\n print('Entailment')\n\nelif alice_leaves_s1 != alice_leaves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": There are less than 38 stations between Hyderabad and Bangalore, \"statement 2\" :There are 18 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stations_s1 = None\nstations_s2 = 18\n \nif stations_s1 is None or stations_s2 is None:\n print('neutral')\n\nelif stations_s1 == stations_s2:\n print('Entailment')\n\nelif stations_s1 != stations_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How much loss would Indu has suffered had she given it to Bindu for 2 years at 4 % per annum simple interest ?, \"statement 2\" :How much loss would Indu has suffered had she given it to Bindu for less than 7 years at 4 % per annum simple interest ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "indu_loss_s1 = 2\nindu_loss_s2 = 7\n \nif indu_loss_s1 is None or indu_loss_s2 is None:\n print('neutral')\n\nelif indu_loss_s1 < indu_loss_s2:\n print('Entailment')\n\nelif indu_loss_s1 != indu_loss_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Lawrence walked 4.0 kilometers at 3.0 kilometers per hour, \"statement 2\" :Lawrence walked for 2.9 hours, \"options: \" Entailment or contradiction?", + "Output Program": [ + "lawrence_walked_s1 = 4/3\nlawrence_walked_s2 = 2.9\n \nif lawrence_walked_s1 is None or lawrence_walked_s2 is None:\n print('neutral')\n\nelif lawrence_walked_s1 == lawrence_walked_s2:\n print('Entailment')\n\nelif lawrence_walked_s1 != lawrence_walked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Each Spurs victory was by at least 15 points ., \"statement 2\" :Each win was by 15 points or more, \"options: \" Entailment or neutral?", + "Output Program": [ + "win_points_s1 = 15\nwin_points_s2 = 15\n \nif win_points_s1 is None or win_points_s2 is None:\n print('neutral')\n\nelif win_points_s1 == win_points_s2:\n print('Entailment')\n\nelif win_points_s1 != win_points_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many liters of blue paint must be added to 40 liters of Fuchsia to change it to Mauve paint ?, \"statement 2\" :How many liters of blue paint must be added to less than 60 liters of Fuchsia to change it to Mauve paint ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "paint_adeed_s1 = 40\npaint_adeed_s2 = 60\n \nif paint_adeed_s1 is None or paint_adeed_s2 is None:\n print('neutral')\n\nelif paint_adeed_s1 < paint_adeed_s2:\n print('Entailment')\n\nelif paint_adeed_s1 != paint_adeed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Barbara has less than 60 shirts and 8 pants, \"statement 2\" :Barbara has 10 shirts and 8 pants, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "barbara_shirts_s1 = None\nbarbara_shirts_s2 = 10\n \nif barbara_shirts_s1 is None or barbara_shirts_s2 is None:\n print('neutral')\n\nelif barbara_shirts_s1 == barbara_shirts_s2:\n print('Entailment')\n\nelif barbara_shirts_s1 != barbara_shirts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sheila works 8 hours per day on Monday , Wednesday and Friday , and 6 hours per day on Tuesday and Thursday, \"statement 2\" :Sheila works more than 3 hours per day on Monday , Wednesday and Friday , and 6 hours per day on Tuesday and Thursday, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sheila_works_s1 = 8\nsheila_works_s2 = 3\n \nif sheila_works_s1 is None or sheila_works_s2 is None:\n print('neutral')\n\nelif sheila_works_s1 > sheila_works_s2:\n print('Entailment')\n\nelif sheila_works_s1 != sheila_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mrs. Heine is buying Valentine\u2019s Day treats for her 2.0 dogs, and she wants to buy them 3.0 heart biscuits each, \"statement 2\" :She needs 9.0 biscuits, \"options: \" Entailment or contradiction?", + "Output Program": [ + "dog_biscuits_s1 = 2+3\ndog_biscuits_s2 = 9\n \nif dog_biscuits_s1 is None or dog_biscuits_s2 is None:\n print('neutral')\n\nelif dog_biscuits_s1 == dog_biscuits_s2:\n print('Entailment')\n\nelif dog_biscuits_s1 != dog_biscuits_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John was thrice as old as Tom 6 yrs back, \"statement 2\" :John was thrice as old as Tom more than 5 yrs back, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_thrice_tom_s1 = 6\njohn_thrice_tom_s2 = 5\n \nif john_thrice_tom_s1 is None or john_thrice_tom_s2 is None:\n print('neutral')\n\nelif john_thrice_tom_s1 > john_thrice_tom_s2:\n print('Entailment')\n\nelif john_thrice_tom_s1 != john_thrice_tom_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": When Robert ' s height is included , the average increases by 2 inches, \"statement 2\" :When Robert ' s height is included , the average increases by less than 5 inches, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "robert_inches_s1 = 2\nrobert_inches_s2 = 5\n \nif robert_inches_s1 is None or robert_inches_s2 is None:\n print('neutral')\n\nelif robert_inches_s1 < robert_inches_s2:\n print('Entailment')\n\nelif robert_inches_s1 != robert_inches_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Citing Sudanese government statistics , el-Bashir said that less than 10,000 people have died in the conflict and less than 500,000 have been displaced ., \"statement 2\" :U.N. says 200,000 people have died , and 2.5 million have been displaced, \"options: \" Entailment or neutral?", + "Output Program": [ + "displaced_s1 = None\ndisplaced_s2 = 2500000\n \nif displaced_s1 is None or displaced_s2 is None:\n print('neutral')\n\nelif displaced_s1 < displaced_s2:\n print('Entailment')\n\nelif displaced_s1 != displaced_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a certain town , the ratio of NY Yankees fans to NY Mets fans is 3 : 2 , and the ratio of NY Mets fans to Boston Red Sox fans is 4 : 5, \"statement 2\" :In a certain town , the ratio of NY Yankees fans to NY Mets fans is less than 8 : 2 , and the ratio of NY Mets fans to Boston Red Sox fans is 4 : 5, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ny_mets_fans_s1 = 3/2\nny_mets_fans_s2 = 8/2\n \nif ny_mets_fans_s1 is None or ny_mets_fans_s2 is None:\n print('neutral')\n\nelif ny_mets_fans_s1 < ny_mets_fans_s2:\n print('Entailment')\n\nelif ny_mets_fans_s1 != ny_mets_fans_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bhanu spends 30 % of his income on petrol on scooter 30 % of the remaining on house rent and the balance on food, \"statement 2\" :Bhanu spends more than 30 % of his income on petrol on scooter 30 % of the remaining on house rent and the balance on food, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bhanu_spends_s1 = 30\nbhanu_spends_s2 = 30+1\n \nif bhanu_spends_s1 is None or bhanu_spends_s2 is None:\n print('neutral')\n\nelif bhanu_spends_s1 == bhanu_spends_s2:\n print('Entailment')\n\nelif bhanu_spends_s1 != bhanu_spends_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": less than 8887 is divided between Shyam and Ram , such that Shyam ' s share at the end of 9 years is equal to Ram ' s share at the end of 11 years , compounded annually at the rate of 5 %, \"statement 2\" :5887 is divided between Shyam and Ram , such that Shyam ' s share at the end of 9 years is equal to Ram ' s share at the end of 11 years , compounded annually at the rate of 5 %, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "divided_s1 = None\ndivided_s2 = 5887\n \nif divided_s1 is None or divided_s2 is None:\n print('neutral')\n\nelif divided_s1 == divided_s2:\n print('Entailment')\n\nelif divided_s1 != divided_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Carolyn bought 16 gumballs , Lew bought 12 gumballs , and Bob bought X gumballs, \"statement 2\" :Carolyn bought 46 gumballs , Lew bought 12 gumballs , and Bob bought X gumballs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gumballs_s1 = 16\ngumballs_s2 = 46\n \nif gumballs_s1 is None or gumballs_s2 is None:\n print('neutral')\n\nelif gumballs_s1 == gumballs_s2:\n print('Entailment')\n\nelif gumballs_s1 != gumballs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Hosts Canada gained their third gold of the Games as Christine Nesbitt powered to victory in the women 's 1,000 speed skating event at the Richmond Oval ., \"statement 2\" :Christine Nesbitt wins Canada 's third gold of Games by claiming 1,000 m speed skating crown, \"options: \" Entailment or neutral?", + "Output Program": [ + "speed_skating_s1 = 1000\nspeed_skating_s2 = 1000\n \nif speed_skating_s1 is None or speed_skating_s2 is None:\n print('neutral')\n\nelif speed_skating_s1 == speed_skating_s2:\n print('Entailment')\n\nelif speed_skating_s1 != speed_skating_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 50 percent of Andrea ' s living room floor is covered by a carpet that is 4 feet by 9 feet, \"statement 2\" :more than 30 percent of Andrea ' s living room floor is covered by a carpet that is 4 feet by 9 feet, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "floor_carpet_s1 = 50\nfloor_carpet_s2 = 30\n \nif floor_carpet_s1 is None or floor_carpet_s2 is None:\n print('neutral')\n\nelif floor_carpet_s1 > floor_carpet_s2:\n print('Entailment')\n\nelif floor_carpet_s1 != floor_carpet_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Q : Robert purchased $ 3500 worth of US saving bonds, \"statement 2\" :Q : Robert purchased $ less than 7500 worth of US saving bonds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "robert_purchased_s1 = 3500\nrobert_purchased_s2 = 7500\n \nif robert_purchased_s1 is None or robert_purchased_s2 is None:\n print('neutral')\n\nelif robert_purchased_s1 < robert_purchased_s2:\n print('Entailment')\n\nelif robert_purchased_s1 != robert_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dan leaves City A 60 minutes after Cara, \"statement 2\" :Dan leaves City A less than 60 minutes after Cara, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dana_leaves_s1 = 60\ndana_leaves_s2 = 60-1\n \nif dana_leaves_s1 is None or dana_leaves_s2 is None:\n print('neutral')\n\nelif dana_leaves_s1 == dana_leaves_s2:\n print('Entailment')\n\nelif dana_leaves_s1 != dana_leaves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In 3 years John will be twice as old as Frank, \"statement 2\" :In less than 6 years John will be twice as old as Frank, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_twice_frank_s1 = 3\njohn_twice_frank_s2 = 6\n \nif john_twice_frank_s1 is None or john_twice_frank_s2 is None:\n print('neutral')\n\nelif john_twice_frank_s1 < john_twice_frank_s2:\n print('Entailment')\n\nelif john_twice_frank_s1 != john_twice_frank_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Patrick purchased 90 pencils and sold them at a loss equal to the selling price of 40 pencils, \"statement 2\" :Patrick purchased 40 pencils and sold them at a loss equal to the selling price of 40 pencils, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "patrick_purchased_s1 = 90\npatrick_purchased_s2 = 40\n \nif patrick_purchased_s1 is None or patrick_purchased_s2 is None:\n print('neutral')\n\nelif patrick_purchased_s1 == patrick_purchased_s2:\n print('Entailment')\n\nelif patrick_purchased_s1 != patrick_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Pavan travelled for less than 61 hours, \"statement 2\" :Pavan travelled for 11 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pavan_travelled_s1 = None\npavan_travelled_s2 = 11\n \nif pavan_travelled_s1 is None or pavan_travelled_s2 is None:\n print('neutral')\n\nelif pavan_travelled_s1 == pavan_travelled_s2:\n print('Entailment')\n\nelif pavan_travelled_s1 != pavan_travelled_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Laura ' s cookie recipe calls for 12 g of sugar for each 3 g of oil used, \"statement 2\" :Laura ' s cookie recipe calls for less than 32 g of sugar for each 3 g of oil used, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "laura_cookie_s1 = 12\nlaura_cookie_s2 = 32\n \nif laura_cookie_s1 is None or laura_cookie_s2 is None:\n print('neutral')\n\nelif laura_cookie_s1 < laura_cookie_s2:\n print('Entailment')\n\nelif laura_cookie_s1 != laura_cookie_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If T = 5 / 9 * ( K - 32 ) , and if T = 75 , then what is the value of K ?, \"statement 2\" :If T = more than 1 / 9 * ( K - 32 ) , and if T = 75 , then what is the value of K ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "value_of_t_s1 = 5/9\nvalue_of_t_s2 = 1/9\n \nif value_of_t_s1 is None or value_of_t_s2 is None:\n print('neutral')\n\nelif value_of_t_s1 > value_of_t_s2:\n print('Entailment')\n\nelif value_of_t_s1 != value_of_t_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tanya is 20 % more efficient than Sakshi, \"statement 2\" :Tanya is more than 10 % more efficient than Sakshi, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tanya_efficient_s1 = 20\ntanya_efficient_s2 = 10\n \nif tanya_efficient_s1 is None or tanya_efficient_s2 is None:\n print('neutral')\n\nelif tanya_efficient_s1 > tanya_efficient_s2:\n print('Entailment')\n\nelif tanya_efficient_s1 != tanya_efficient_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Martin bought 10 concert tickets , some at the full price of $ 2.00 per ticket , and some at a discounted price of $ 1.60 per ticket, \"statement 2\" :Martin bought less than 20 concert tickets , some at the full price of $ 2.00 per ticket , and some at a discounted price of $ 1.60 per ticket, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tickets_s1 = 10\ntickets_s2 = 20\n \nif tickets_s1 is None or tickets_s2 is None:\n print('neutral')\n\nelif tickets_s1 < tickets_s2:\n print('Entailment')\n\nelif tickets_s1 != tickets_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At Veridux Corporation , there are 250 employees, \"statement 2\" :At Veridux Corporation , there are less than 850 employees, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "veridux_employees_s1 = 250\nveridux_employees_s2 = 850\n \nif veridux_employees_s1 is None or veridux_employees_s2 is None:\n print('neutral')\n\nelif veridux_employees_s1 < veridux_employees_s2:\n print('Entailment')\n\nelif veridux_employees_s1 != veridux_employees_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 1620 in 8 % stock , Michael earns Rs, \"statement 2\" :less than 4620 in 8 % stock , Michael earns Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stock_s1 = 1620\nstock_s2 = 4620\n \nif stock_s1 is None or stock_s2 is None:\n print('neutral')\n\nelif stock_s1 < stock_s2:\n print('Entailment')\n\nelif stock_s1 != stock_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At present , the ratio between the ages of Arun and Deepak is more than 2 : 3, \"statement 2\" :At present , the ratio between the ages of Arun and Deepak is 4 : 3, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "arun_deepak_ratio_s1 = None\narun_deepak_ratio_s2 = 4/3\n \nif arun_deepak_ratio_s1 is None or arun_deepak_ratio_s2 is None:\n print('neutral')\n\nelif arun_deepak_ratio_s1 == arun_deepak_ratio_s2:\n print('Entailment')\n\nelif arun_deepak_ratio_s1 != arun_deepak_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If KING is coded as 17 and MASS is coded as 29 Then DON is coded as, \"statement 2\" :If KING is coded as 67 and MASS is coded as 29 Then DON is coded as, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "king_coded_s1 = 17\nking_coded_s2 = 67\n \nif king_coded_s1 is None or king_coded_s2 is None:\n print('neutral')\n\nelif king_coded_s1 == king_coded_s2:\n print('Entailment')\n\nelif king_coded_s1 != king_coded_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are less than 45 stations between Hyderabad and Bangalore, \"statement 2\" :There are 15 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stations_s1 = None\nstations_s2 = 15\n \nif stations_s1 is None or stations_s2 is None:\n print('neutral')\n\nelif stations_s1 == stations_s2:\n print('Entailment')\n\nelif stations_s1 != stations_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How much simple interest per annum can I negotiate with my Bank so My Family can pay back in 40 years at most double of the money we will borrow ., \"statement 2\" :How much simple interest per annum can I negotiate with my Bank so My Family can pay back in less than 50 years at most double of the money we will borrow ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pay_back_s1 = 40\npay_back_s2 = 50\n \nif pay_back_s1 is None or pay_back_s2 is None:\n print('neutral')\n\nelif pay_back_s1 < pay_back_s2:\n print('Entailment')\n\nelif pay_back_s1 != pay_back_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Henry were to add more than 5 gallons of water to a tank that is already 3 / 4 full of water , the tank would be 7 / 8 full, \"statement 2\" :If Henry were to add 7 gallons of water to a tank that is already 3 / 4 full of water , the tank would be 7 / 8 full, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "henry_gallons_s1 = None\nhenry_gallons_s2 = 7\n \nif henry_gallons_s1 is None or henry_gallons_s2 is None:\n print('neutral')\n\nelif henry_gallons_s1 == henry_gallons_s2:\n print('Entailment')\n\nelif henry_gallons_s1 != henry_gallons_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a BCCI meeting there are 15 people, \"statement 2\" :In a BCCI meeting there are 35 people, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bcci_meeting_s1 = 15\nbcci_meeting_s2 = 35\n \nif bcci_meeting_s1 is None or bcci_meeting_s2 is None:\n print('neutral')\n\nelif bcci_meeting_s1 == bcci_meeting_s2:\n print('Entailment')\n\nelif bcci_meeting_s1 != bcci_meeting_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": To be considered for \u201c movie of the year , \u201d a film must appear in at least 1 / 4 of the top - 10 - movies lists submitted by the Cinematic Academy \u2019 s 765 members, \"statement 2\" :To be considered for \u201c movie of the year , \u201d a film must appear in at least 3 / 4 of the top - 10 - movies lists submitted by the Cinematic Academy \u2019 s 765 members, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "film_appear_s1 = 1/4\nfilm_appear_s2 = 3/4\n \nif film_appear_s1 is None or film_appear_s2 is None:\n print('neutral')\n\nelif film_appear_s1 == film_appear_s2:\n print('Entailment')\n\nelif film_appear_s1 != film_appear_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 5 years ago Kate was 5 times as old as her Son, \"statement 2\" :less than 7 years ago Kate was 5 times as old as her Son, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_ago_s1 = 5\nyears_ago_s2 = 7\n \nif years_ago_s1 is None or years_ago_s2 is None:\n print('neutral')\n\nelif years_ago_s1 < years_ago_s2:\n print('Entailment')\n\nelif years_ago_s1 != years_ago_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained more than 26 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained 76 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dacid_obtained_s1 = None\ndacid_obtained_s2 = 76 + 65 + 82 + 67 + 85\n \nif dacid_obtained_s1 is None or dacid_obtained_s2 is None:\n print('neutral')\n\nelif dacid_obtained_s1 == dacid_obtained_s2:\n print('Entailment')\n\nelif dacid_obtained_s1 != dacid_obtained_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Baker Tom is storing cake boxes in cartons that measure 25 inches by 42 inches by 60 inches, \"statement 2\" :Baker Tom is storing cake boxes in cartons that measure more than 25 inches by 42 inches by 60 inches, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "box_inch_s1 = 25\nbox_inch_s2 = 25+1\n \nif box_inch_s1 is None or box_inch_s2 is None:\n print('neutral')\n\nelif box_inch_s1 == box_inch_s2:\n print('Entailment')\n\nelif box_inch_s1 != box_inch_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": One hour after Yolanda started walking from X to Y , a distance of 52 miles , Bob started walking along the same road from Y to X, \"statement 2\" :One hour after Yolanda started walking from X to Y , a distance of less than 62 miles , Bob started walking along the same road from Y to X, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_s1 = 52\ndistance_s2 = 62\n \nif distance_s1 is None or distance_s2 is None:\n print('neutral')\n\nelif distance_s1 < distance_s2:\n print('Entailment')\n\nelif distance_s1 != distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shridhar is 3 : 2, \"statement 2\" :Shridhar is 7 : 2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shridhar_s1 = 3/2\nshridhar_s2 = 7/2\n \nif shridhar_s1 is None or shridhar_s2 is None:\n print('neutral')\n\nelif shridhar_s1 == shridhar_s2:\n print('Entailment')\n\nelif shridhar_s1 != shridhar_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Harkamal purchased 8 kg of grapes at the rate of 70 per kg and 9 kg of mangoes at the rate of 55 per kg, \"statement 2\" :Harkamal purchased more than 4 kg of grapes at the rate of 70 per kg and 9 kg of mangoes at the rate of 55 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "harkamal_purchased_s1 = 8\nharkamal_purchased_s2 = 4\n \nif harkamal_purchased_s1 is None or harkamal_purchased_s2 is None:\n print('neutral')\n\nelif harkamal_purchased_s1 > harkamal_purchased_s2:\n print('Entailment')\n\nelif harkamal_purchased_s1 != harkamal_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Billy has 6 apples, \"statement 2\" :Billy has less than 8 apples, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "billy_apples_s1 = 6\nbilly_apples_s2 = 8\n \nif billy_apples_s1 is None or billy_apples_s2 is None:\n print('neutral')\n\nelif billy_apples_s1 < billy_apples_s2:\n print('Entailment')\n\nelif billy_apples_s1 != billy_apples_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many ways are there for more than 2 males and 3 females to sit ( around a circular table ) if no male should sit next to a male ( and no female next to female ) and Mary wants to sit with her back on the wall ?, \"statement 2\" :How many ways are there for 3 males and 3 females to sit ( around a circular table ) if no male should sit next to a male ( and no female next to female ) and Mary wants to sit with her back on the wall ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "males_sit_s1 = None\nmales_sit_s2 = 3\n \nif males_sit_s1 is None or males_sit_s2 is None:\n print('neutral')\n\nelif males_sit_s1 == males_sit_s2:\n print('Entailment')\n\nelif males_sit_s1 != males_sit_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 532.0 people are watching a movie in a theater and the theater has 750.0 seats, \"statement 2\" :219.0 seats are empty in the theater, \"options: \" Entailment or contradiction?", + "Output Program": [ + "empty_seats_s1 = 750 - 532\nempty_seats_s2 = 219\n \nif empty_seats_s1 is None or empty_seats_s2 is None:\n print('neutral')\n\nelif empty_seats_s1 == empty_seats_s2:\n print('Entailment')\n\nelif empty_seats_s1 != empty_seats_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bookman purchased less than 40 copies of a new book released recently , 10 of which are hardback and sold for $ 20 each , and rest are paperback and sold for $ 10 each, \"statement 2\" :Bookman purchased 30 copies of a new book released recently , 10 of which are hardback and sold for $ 20 each , and rest are paperback and sold for $ 10 each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bookman_purchased_s1 = None\nbookman_purchased_s2 = 30\n \nif bookman_purchased_s1 is None or bookman_purchased_s2 is None:\n print('neutral')\n\nelif bookman_purchased_s1 == bookman_purchased_s2:\n print('Entailment')\n\nelif bookman_purchased_s1 != bookman_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the average speed of the whole journey was 36 mph , then what is Tom ' s speed driving from B to C in miles per hour ?, \"statement 2\" :If the average speed of the whole journey was 26 mph , then what is Tom ' s speed driving from B to C in miles per hour ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_speed_s1 = 36\naverage_speed_s2 = 36\n \nif average_speed_s1 is None or average_speed_s2 is None:\n print('neutral')\n\nelif average_speed_s1 == average_speed_s2:\n print('Entailment')\n\nelif average_speed_s1 != average_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Eight people were arrested in connection with the firebombing of Canning Circus police station , it added ., \"statement 2\" :8 are arrested in connection with firebombing of a police station, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_arrested_s1 = 8\npeople_arrested_s2 = 8\n \nif people_arrested_s1 is None or people_arrested_s2 is None:\n print('neutral')\n\nelif people_arrested_s1 == people_arrested_s2:\n print('Entailment')\n\nelif people_arrested_s1 != people_arrested_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 30 % people of a village in Sri Lanka died by bombardment , 25 % of the remainder left the village on account of fear, \"statement 2\" :less than 30 % people of a village in Sri Lanka died by bombardment , 25 % of the remainder left the village on account of fear, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_bombardment_s1 = 30\npeople_bombardment_s2 = 30-1\n \nif people_bombardment_s1 is None or people_bombardment_s2 is None:\n print('neutral')\n\nelif people_bombardment_s1 == people_bombardment_s2:\n print('Entailment')\n\nelif people_bombardment_s1 != people_bombardment_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the ratio of their ages is 7 : 9 , how old is Sandy ?, \"statement 2\" :If the ratio of their ages is less than 7 : 9 , how old is Sandy ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_ratio_s1 = 7/9\nage_ratio_s2 = (7/9)-(1/1)\n \nif age_ratio_s1 is None or age_ratio_s2 is None:\n print('neutral')\n\nelif age_ratio_s1 == age_ratio_s2:\n print('Entailment')\n\nelif age_ratio_s1 != age_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mac has \u00a3 3 more than Ken , but then Ken wins on the horses and trebles his money , so that he now has \u00a3 2 more than the original amount of money that the two boys had between them, \"statement 2\" :Mac has \u00a3 less than 5 more than Ken , but then Ken wins on the horses and trebles his money , so that he now has \u00a3 2 more than the original amount of money that the two boys had between them, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "more_than_ken_s1 = 3\nmore_than_ken_s2 = 5\n \nif more_than_ken_s1 is None or more_than_ken_s2 is None:\n print('neutral')\n\nelif more_than_ken_s1 < more_than_ken_s2:\n print('Entailment')\n\nelif more_than_ken_s1 != more_than_ken_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Steve gets on the elevator at the 11 th floor of a building and rides up at a rate of 72 floors per minute, \"statement 2\" :Steve gets on the elevator at the 21 th floor of a building and rides up at a rate of 72 floors per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "elevator_floor_s1 = 11\nelevator_floor_s2 = 21\n \nif elevator_floor_s1 is None or elevator_floor_s2 is None:\n print('neutral')\n\nelif elevator_floor_s1 == elevator_floor_s2:\n print('Entailment')\n\nelif elevator_floor_s1 != elevator_floor_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Today Katherine , who is 40 years old , and her daughter , who is 10 years old , celebrate their birthdays, \"statement 2\" :Today Katherine , who is more than 40 years old , and her daughter , who is 10 years old , celebrate their birthdays, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "katherine_age_s1 = 40\nkatherine_age_s2 = 40+1\n \nif katherine_age_s1 is None or katherine_age_s2 is None:\n print('neutral')\n\nelif katherine_age_s1 == katherine_age_s2:\n print('Entailment')\n\nelif katherine_age_s1 != katherine_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Dan works alone for less than 42 hours and then stops , how many hours will it take Annie , working alone , to complete the job ?, \"statement 2\" :If Dan works alone for 12 hours and then stops , how many hours will it take Annie , working alone , to complete the job ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dan_works_s1 = None\ndan_works_s2 = 12\n \nif dan_works_s1 is None or dan_works_s2 is None:\n print('neutral')\n\nelif dan_works_s1 == dan_works_s2:\n print('Entailment')\n\nelif dan_works_s1 != dan_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jerry \u2019 s average ( arithmetic mean ) score on the first less than 7 of 4 tests is 94, \"statement 2\" :Jerry \u2019 s average ( arithmetic mean ) score on the first 3 of 4 tests is 94, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tests_s1 = None\ntests_s2 = 3\n \nif tests_s1 is None or tests_s2 is None:\n print('neutral')\n\nelif tests_s1 == tests_s2:\n print('Entailment')\n\nelif tests_s1 != tests_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The Indonesian National Search and Rescue Agency said only 37 of the 42 invited passengers were on board ., \"statement 2\" :A Sukhoi representative says 42 passengers and eight crew members were on board, \"options: \" Entailment or neutral?", + "Output Program": [ + "agency_s1 = 37\nagency_s2 = None\n \nif agency_s1 is None or agency_s2 is None:\n print('neutral')\n\nelif agency_s1 == agency_s2:\n print('Entailment')\n\nelif agency_s1 != agency_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": While Kiran playing all but 3 got destroyed, \"statement 2\" :While Kiran playing all but less than 8 got destroyed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kiran_playing_s1 = 3\nkiran_playing_s2 = 8\n \nif kiran_playing_s1 is None or kiran_playing_s2 is None:\n print('neutral')\n\nelif kiran_playing_s1 < kiran_playing_s2:\n print('Entailment')\n\nelif kiran_playing_s1 != kiran_playing_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Vijay sells a cupboard at 16 % below cost price, \"statement 2\" :Vijay sells a cupboard at less than 16 % below cost price, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "vijay_sells_s1 = 0.16\nvijay_sells_s2 = 0.16-0.01\n \nif vijay_sells_s1 is None or vijay_sells_s2 is None:\n print('neutral')\n\nelif vijay_sells_s1 == vijay_sells_s2:\n print('Entailment')\n\nelif vijay_sells_s1 != vijay_sells_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": This coalition took seven months to form , the longest deadlock in Dutch history . It occurred only after negotiations between the CDA and the PvdA failed , first over tax issues , then over the issue of abortion ., \"statement 2\" :Three parties form a Dutch coalition government ., \"options: \" Entailment or neutral?", + "Output Program": [ + "dutch_parties_s1 = None\ndutch_parties_s2 = 3\n \nif dutch_parties_s1 is None or dutch_parties_s2 is None:\n print('neutral')\n\nelif dutch_parties_s1 == dutch_parties_s2:\n print('Entailment')\n\nelif dutch_parties_s1 != dutch_parties_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Abhay double his speed , then he would take 1 hour less than Sammer, \"statement 2\" :If Abhay double his speed , then he would take 2 hour less than Sammer, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "abhay_double_speed_s1 = 1\nabhay_double_speed_s2 = 2\n \nif abhay_double_speed_s1 is None or abhay_double_speed_s2 is None:\n print('neutral')\n\nelif abhay_double_speed_s1 == abhay_double_speed_s2:\n print('Entailment')\n\nelif abhay_double_speed_s1 != abhay_double_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Founded by Enzo Ferrari in 1928 as Scuderia Ferrari , the company sponsored drivers and manufactured race cars before moving into production of street - legal vehicles in 1947 as Ferrari S, \"statement 2\" :Founded by Enzo Ferrari in less than 4928 as Scuderia Ferrari , the company sponsored drivers and manufactured race cars before moving into production of street - legal vehicles in 1947 as Ferrari S, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "enzo_ferrari_s1 = 1928\nenzo_ferrari_s2 = 4928\n \nif enzo_ferrari_s1 is None or enzo_ferrari_s2 is None:\n print('neutral')\n\nelif enzo_ferrari_s1 < enzo_ferrari_s2:\n print('Entailment')\n\nelif enzo_ferrari_s1 != enzo_ferrari_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alok ordered less than 66 chapatis , 5 plates of rice , 7 plates of mixed vegetable and 5 ice - cream cups, \"statement 2\" :Alok ordered 16 chapatis , 5 plates of rice , 7 plates of mixed vegetable and 5 ice - cream cups, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "alok_chapatis_s1 = None\nalok_chapatis_s2 = 16\n \nif alok_chapatis_s1 is None or alok_chapatis_s2 is None:\n print('neutral')\n\nelif alok_chapatis_s1 == alok_chapatis_s2:\n print('Entailment')\n\nelif alok_chapatis_s1 != alok_chapatis_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Donald carries a total of more than 13 notes ( of either $ 10 or \u20ac 10 , ) then what is the total number of notes ( of either $ 10 or \u20ac 10 , ) they take ?, \"statement 2\" :If Donald carries a total of 33 notes ( of either $ 10 or \u20ac 10 , ) then what is the total number of notes ( of either $ 10 or \u20ac 10 , ) they take ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "donald_notes_s1 = None\ndonald_notes_s2 = 33\n \nif donald_notes_s1 is None or donald_notes_s2 is None:\n print('neutral')\n\nelif donald_notes_s1 == donald_notes_s2:\n print('Entailment')\n\nelif donald_notes_s1 != donald_notes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In the city of San Durango , 60 people own cats , dogs , or rabbits, \"statement 2\" :In the city of San Durango , less than 80 people own cats , dogs , or rabbits, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "san_durango_cats_s1 = 60\nsan_durango_cats_s2 = 80\n \nif san_durango_cats_s1 is None or san_durango_cats_s2 is None:\n print('neutral')\n\nelif san_durango_cats_s1 < san_durango_cats_s2:\n print('Entailment')\n\nelif san_durango_cats_s1 != san_durango_cats_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Thousands of Romanians participated in rallies on Monday to campaign for the release of three Romanian journalists kidnapped last month in Iraq . Crowds swelled in size after a weekend of smaller rallies sponsored by Romanian media workers and the Arab community in Romania ., \"statement 2\" :Romania sent 730 troops in Iraq ., \"options: \" Entailment or neutral?", + "Output Program": [ + "troops_sent_s1 = None\ntroops_sent_s2 = 730\n \nif troops_sent_s1 is None or troops_sent_s2 is None:\n print('neutral')\n\nelif troops_sent_s1 == troops_sent_s2:\n print('Entailment')\n\nelif troops_sent_s1 != troops_sent_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Joe goes with her 6 years old twin brothers , and they each took 3 rides in total, \"statement 2\" :If Joe goes with her less than 6 years old twin brothers , and they each took 3 rides in total, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "joe_brother_s1 = 6\njoe_brother_s2 = 6-1\n \nif joe_brother_s1 is None or joe_brother_s2 is None:\n print('neutral')\n\nelif joe_brother_s1 == joe_brother_s2:\n print('Entailment')\n\nelif joe_brother_s1 != joe_brother_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 50 percent of Andrea ' s living room floor is covered by a carpet that is 4 feet by 9 feet, \"statement 2\" :more than 50 percent of Andrea ' s living room floor is covered by a carpet that is 4 feet by 9 feet, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "floor_carpet_s1 = 50\nfloor_carpet_s2 = 50+1\n \nif floor_carpet_s1 is None or floor_carpet_s2 is None:\n print('neutral')\n\nelif floor_carpet_s1 == floor_carpet_s2:\n print('Entailment')\n\nelif floor_carpet_s1 != floor_carpet_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The epicenter of the magnitude 4.9 event has little to no history of earthquakes , according to the U.S. Geological Survey ., \"statement 2\" :Area around magnitude 4.9 disturbance has little history of earthquakes , says USGS, \"options: \" Entailment or neutral?", + "Output Program": [ + "epicenter_s1 = 4.9\nepicenter_s2 = 4.9\n \nif epicenter_s1 is None or epicenter_s2 is None:\n print('neutral')\n\nelif epicenter_s1 == epicenter_s2:\n print('Entailment')\n\nelif epicenter_s1 != epicenter_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill , who lives in City C , plans to visit 2 different cities L , and S, \"statement 2\" :Jill , who lives in City C , plans to visit less than 3 different cities L , and S, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "city_visit_s1 = 2\ncity_visit_s2 = 3\n \nif city_visit_s1 is None or city_visit_s2 is None:\n print('neutral')\n\nelif city_visit_s1 < city_visit_s2:\n print('Entailment')\n\nelif city_visit_s1 != city_visit_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Maria picked 48.0 carrots from her garden, and she threw out 11.0 of them and then picked 15.0 more the next day, \"statement 2\" :She would have 50.0 carrots total, \"options: \" Entailment or contradiction?", + "Output Program": [ + "maria_carrots_s1 = 48 - 11 + 15\nmaria_carrots_s2 = 50\n \nif maria_carrots_s1 is None or maria_carrots_s2 is None:\n print('neutral')\n\nelif maria_carrots_s1 == maria_carrots_s2:\n print('Entailment')\n\nelif maria_carrots_s1 != maria_carrots_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If she worked six more than 2 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"statement 2\" :If she worked six 8 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "she_works_s1 = None\nshe_works_s2 = 8\n \nif she_works_s1 is None or she_works_s2 is None:\n print('neutral')\n\nelif she_works_s1 == she_works_s2:\n print('Entailment')\n\nelif she_works_s1 != she_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Karen sold 36.0 boxes of Tagalongs, \"statement 2\" :Karen picked up 6.0 cases of 12.0 boxes, \"options: \" Entailment or contradiction?", + "Output Program": [ + "karen_boxed_s1 = 36\nkaren_boxed_s2 = 12*6\n \nif karen_boxed_s1 is None or karen_boxed_s2 is None:\n print('neutral')\n\nelif karen_boxed_s1 == karen_boxed_s2:\n print('Entailment')\n\nelif karen_boxed_s1 != karen_boxed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Warner Limited has less than 8 Senior Managing Directors and 6 Managing Directors, \"statement 2\" :Warner Limited has 4 Senior Managing Directors and 6 Managing Directors, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "warner_limited_s1 = None\nwarner_limited_s2 = 4\n \nif warner_limited_s1 is None or warner_limited_s2 is None:\n print('neutral')\n\nelif warner_limited_s1 == warner_limited_s2:\n print('Entailment')\n\nelif warner_limited_s1 != warner_limited_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Amsterdam police said Wednesday that they have recovered stolen lithographs by the late U.S. pop artist Andy Warhol worth more than $ 1 million ., \"statement 2\" :Police recovered 81 Andy Warhol lithographs ., \"options: \" Entailment or neutral?", + "Output Program": [ + "andy_warhol_worth_s1 = 1000000\nandy_warhol_worth_s2 = None\n \nif andy_warhol_worth_s1 is None or andy_warhol_worth_s2 is None:\n print('neutral')\n\nelif andy_warhol_worth_s1 == andy_warhol_worth_s2:\n print('Entailment')\n\nelif andy_warhol_worth_s1 != andy_warhol_worth_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Martin returned two packet to the retailer , and the average price of the remaining millk packet was less than 32 \u00a2 , then what is the average price , in cents , of the two returned milk packets ?, \"statement 2\" :If Martin returned two packet to the retailer , and the average price of the remaining millk packet was 12 \u00a2 , then what is the average price , in cents , of the two returned milk packets ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "milk_packet_s1 = None\nmilk_packet_s2 = 12\n \nif milk_packet_s1 is None or milk_packet_s2 is None:\n print('neutral')\n\nelif milk_packet_s1 == milk_packet_s2:\n print('Entailment')\n\nelif milk_packet_s1 != milk_packet_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In the city of San Durango , 90 people own cats , dogs , or rabbits, \"statement 2\" :In the city of San Durango , more than 90 people own cats , dogs , or rabbits, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "san_durango_cat_s1 = 90\nsan_durango_cat_s2 = 90+1\n \nif san_durango_cat_s1 is None or san_durango_cat_s2 is None:\n print('neutral')\n\nelif san_durango_cat_s1 == san_durango_cat_s2:\n print('Entailment')\n\nelif san_durango_cat_s1 != san_durango_cat_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The $ 35 million includes $ 2.5 million to pay legal fees and other expenses for the Nigerian government , Halliburton said ., \"statement 2\" :The $ 35 million settlement includes Nigeria 's legal fees and expenses, \"options: \" Entailment or neutral?", + "Output Program": [ + "settlement_million_s1 = 35\nsettlement_million_s2 = 35\n \nif settlement_million_s1 is None or settlement_million_s2 is None:\n print('neutral')\n\nelif settlement_million_s1 == settlement_million_s2:\n print('Entailment')\n\nelif settlement_million_s1 != settlement_million_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A waiter had 36.0 customers to wait on, and 19.0 of the customers left and then 14.0 of the remaining customers left, \"statement 2\" :He would have 3.0 customers , \"options: \" Entailment or contradiction?", + "Output Program": [ + "customers_s1 = 36 - 19 - 14\ncustomers_s2 = 3\n \nif customers_s1 is None or customers_s2 is None:\n print('neutral')\n\nelif customers_s1 == customers_s2:\n print('Entailment')\n\nelif customers_s1 != customers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The first Windows Challenge was held in 2004 , consisting of less than 30 teams within the United States . In 2005 , it was opened to the rest of the world . 278 teams from all over the world participated ., \"statement 2\" :278 teams from all over the world participated in the first Windows Challenge ., \"options: \" Entailment or neutral?", + "Output Program": [ + "windows_challenge_s1 = 2004\nwindows_challenge_s2 = None\n \nif windows_challenge_s1 is None or windows_challenge_s2 is None:\n print('neutral')\n\nelif windows_challenge_s1 == windows_challenge_s2:\n print('Entailment')\n\nelif windows_challenge_s1 != windows_challenge_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Cara is less than 210 km away from Dan at 7 am , and also 110 km away from Dan at 11 am , then how fast is Dan driving ( in kilometers per hour ) ?, \"statement 2\" :If Cara is 110 km away from Dan at 7 am , and also 110 km away from Dan at 11 am , then how fast is Dan driving ( in kilometers per hour ) ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cara_away_dan_s1 = None\ncara_away_dan_s2 = 110\n \nif cara_away_dan_s1 is None or cara_away_dan_s2 is None:\n print('neutral')\n\nelif cara_away_dan_s1 == cara_away_dan_s2:\n print('Entailment')\n\nelif cara_away_dan_s1 != cara_away_dan_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Victor has less than 75 cups if flour , 16 cups of sugar and 8 cups of milk, \"statement 2\" :Victor has 15 cups if flour , 16 cups of sugar and 8 cups of milk, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "victor_flour_s1 = None\nvictor_flour_s2 = 15\n \nif victor_flour_s1 is None or victor_flour_s2 is None:\n print('neutral')\n\nelif victor_flour_s1 == victor_flour_s2:\n print('Entailment')\n\nelif victor_flour_s1 != victor_flour_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Defeat for Cologne leaves them rock bottom with just one point from their opening five games ., \"statement 2\" :The defeat leaves Cologne on bottom of the Bundesliga table after five games, \"options: \" Entailment or neutral?", + "Output Program": [ + "defeat_games_s1 = 5\ndefeat_games_s2 = 5\n \nif defeat_games_s1 is None or defeat_games_s2 is None:\n print('neutral')\n\nelif defeat_games_s1 == defeat_games_s2:\n print('Entailment')\n\nelif defeat_games_s1 != defeat_games_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 17 stations between Hyderabad and Bangalore, \"statement 2\" :There are less than 17 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stations_s1 = 17\nstations_s2 = 17-1\n \nif stations_s1 is None or stations_s2 is None:\n print('neutral')\n\nelif stations_s1 == stations_s2:\n print('Entailment')\n\nelif stations_s1 != stations_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Martha has 4 dogs and 4 cats, \"statement 2\" :Martha has less than 5 dogs and 4 cats, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "martha_dogs_s1 = 4\nmartha_dogs_s2 = 5\n \nif martha_dogs_s1 is None or martha_dogs_s2 is None:\n print('neutral')\n\nelif martha_dogs_s1 < martha_dogs_s2:\n print('Entailment')\n\nelif martha_dogs_s1 != martha_dogs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A \u201c Sophie Germain \u201d prime is any positive prime number p for which 2 p + 1 is also prime, \"statement 2\" :A \u201c Sophie Germain \u201d prime is any positive prime number p for which more than 2 p + 1 is also prime, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "prime_number_s1 = 2\nprime_number_s2 = 2+1\n \nif prime_number_s1 is None or prime_number_s2 is None:\n print('neutral')\n\nelif prime_number_s1 == prime_number_s2:\n print('Entailment')\n\nelif prime_number_s1 != prime_number_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The violence has killed 67 people on the Israeli side , with militants in Gaza firing roughly 3,500 rockets toward Israel ., \"statement 2\" :Three people , including an infant , are reported killed in Gaza, \"options: \" Entailment or neutral?", + "Output Program": [ + "police_killed_s1 = 67\npolice_killed_s2 = None\n \nif police_killed_s1 is None or police_killed_s2 is None:\n print('neutral')\n\nelif police_killed_s1 == police_killed_s2:\n print('Entailment')\n\nelif police_killed_s1 != police_killed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Biden said the federal government had approved $ 35 million thus far for road rebuilding and other projects ., \"statement 2\" :He says $ 35 million allocated so far, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_allocated_millions_s1 = 35\npeople_allocated_millions_s2 = 35\n \nif people_allocated_millions_s1 is None or people_allocated_millions_s2 is None:\n print('neutral')\n\nelif people_allocated_millions_s1 == people_allocated_millions_s2:\n print('Entailment')\n\nelif people_allocated_millions_s1 != people_allocated_millions_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Additionally , the NRDC selected 35 beaches as '' superstars '' -- meaning popular spots that consistently meet water quality safety thresholds ., \"statement 2\" :Thirty-five beaches rated as '' superstars '' for water quality, \"options: \" Entailment or neutral?", + "Output Program": [ + "nrdc_beaches_s1 = 35\nnrdc_beaches_s2 = 35\n \nif nrdc_beaches_s1 is None or nrdc_beaches_s2 is None:\n print('neutral')\n\nelif nrdc_beaches_s1 == nrdc_beaches_s2:\n print('Entailment')\n\nelif nrdc_beaches_s1 != nrdc_beaches_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Carol ' s rectangle measures less than 62 inches by 15 inches and Jordan ' s rectangle is 6 inches long , how wide is Jordan ' s rectangle , in inches ?, \"statement 2\" :If Carol ' s rectangle measures 12 inches by 15 inches and Jordan ' s rectangle is 6 inches long , how wide is Jordan ' s rectangle , in inches ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "carol_rectangle_s1 = None\ncarol_rectangle_s2 = 12\n \nif carol_rectangle_s1 is None or carol_rectangle_s2 is None:\n print('neutral')\n\nelif carol_rectangle_s1 == carol_rectangle_s2:\n print('Entailment')\n\nelif carol_rectangle_s1 != carol_rectangle_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Raj and Roshan has some money with them in the ratio 5 : 4 respectively, \"statement 2\" :Raj and Roshan has some money with them in the ratio more than 5 : 4 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "money_ratio_s1 = 5/4\nmoney_ratio_s2 = (5/4)+(1/1)\n \nif money_ratio_s1 is None or money_ratio_s2 is None:\n print('neutral')\n\nelif money_ratio_s1 == money_ratio_s2:\n print('Entailment')\n\nelif money_ratio_s1 != money_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After 6 years , Sandy \u2019 s age will be 34 years, \"statement 2\" :After more than 4 years , Sandy \u2019 s age will be 34 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "after_years_s1 = 6\nafter_years_s2 = 4\n \nif after_years_s1 is None or after_years_s2 is None:\n print('neutral')\n\nelif after_years_s1 > after_years_s2:\n print('Entailment')\n\nelif after_years_s1 != after_years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How much simple interest per annum can I negotiate with my Bank so My Family can pay back in less than 50 years at most double of the money we will borrow ., \"statement 2\" :How much simple interest per annum can I negotiate with my Bank so My Family can pay back in 40 years at most double of the money we will borrow ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pay_back_years_s1 = None\npay_back_years_s2 = 40\n \nif pay_back_years_s1 is None or pay_back_years_s2 is None:\n print('neutral')\n\nelif pay_back_years_s1 == pay_back_years_s2:\n print('Entailment')\n\nelif pay_back_years_s1 != pay_back_years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Thompson had the following scores in an exam ( out of less than 400 ) : Social Studies : 60 Science : 89 Art : 62 Music : 69 Spanish : 84 Biology : 89 What are his average marks ?, \"statement 2\" :Thompson had the following scores in an exam ( out of 100 ) :\nSocial Studies : 60\nScience : 89\nArt : 62\nMusic : 69\nSpanish : 84\nBiology : 89\nWhat are his average marks ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_marks_s1 = None\ntotal_marks_s2 = 100\n \nif total_marks_s1 is None or total_marks_s2 is None:\n print('neutral')\n\nelif total_marks_s1 == total_marks_s2:\n print('Entailment')\n\nelif total_marks_s1 != total_marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ratio of the ages of Hema and Her brother is 3 : 2, \"statement 2\" :The ratio of the ages of Hema and Her brother is less than 8 : 2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_ratio_s1 = 3/2\nage_ratio_s2 = 8/2\n \nif age_ratio_s1 is None or age_ratio_s2 is None:\n print('neutral')\n\nelif age_ratio_s1 < age_ratio_s2:\n print('Entailment')\n\nelif age_ratio_s1 != age_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ayesha ' s father was 40 years of age when she was born while her mother was 32 years old when her brother six years younger to her was born, \"statement 2\" :Ayesha ' s father was less than 40 years of age when she was born while her mother was 32 years old when her brother six years younger to her was born, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ayesha_father_age_s1 = 40\nayesha_father_age_s2 = 40-1\n \nif ayesha_father_age_s1 is None or ayesha_father_age_s2 is None:\n print('neutral')\n\nelif ayesha_father_age_s1 == ayesha_father_age_s2:\n print('Entailment')\n\nelif ayesha_father_age_s1 != ayesha_father_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the speed of Mohan \u2019 s Mercedes is 35 km / hr and the distance traveled by the Ferrari is 490 km , find the total time taken for Rohit to drive that distance ., \"statement 2\" :If the speed of Mohan \u2019 s Mercedes is less than 35 km / hr and the distance traveled by the Ferrari is 490 km , find the total time taken for Rohit to drive that distance ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "moham_mercedes_speed_s1 = 35\nmoham_mercedes_speed_s2 = 35+1\n \nif moham_mercedes_speed_s1 is None or moham_mercedes_speed_s2 is None:\n print('neutral')\n\nelif moham_mercedes_speed_s1 == moham_mercedes_speed_s2:\n print('Entailment')\n\nelif moham_mercedes_speed_s1 != moham_mercedes_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At present , the ratio between the ages of Arun and Deepak is 4 : 3, \"statement 2\" :At present , the ratio between the ages of Arun and Deepak is 5 : 3, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_ratio_s1 = 4/3\nage_ratio_s2 = 5/3\n \nif age_ratio_s1 is None or age_ratio_s2 is None:\n print('neutral')\n\nelif age_ratio_s1 == age_ratio_s2:\n print('Entailment')\n\nelif age_ratio_s1 != age_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Amanda goes to the toy store to buy 1 ball and 3 different board games, \"statement 2\" :Amanda goes to the toy store to buy less than 2 ball and 3 different board games, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "toy_store_balls_s1 = 1\ntoy_store_balls_s2 = 2\n \nif toy_store_balls_s1 is None or toy_store_balls_s2 is None:\n print('neutral')\n\nelif toy_store_balls_s1 < toy_store_balls_s2:\n print('Entailment')\n\nelif toy_store_balls_s1 != toy_store_balls_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": He will be 5 / 3 times as old as Tom 6 years hence, \"statement 2\" :He will be 1 / 3 times as old as Tom 6 years hence, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_ratio_s1 = 5/3\nage_ratio_s2 = 1/3\n \nif age_ratio_s1 is None or age_ratio_s2 is None:\n print('neutral')\n\nelif age_ratio_s1 == age_ratio_s2:\n print('Entailment')\n\nelif age_ratio_s1 != age_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 300 seniors at Morse High School , and 50 % of them have cars, \"statement 2\" :There are more than 100 seniors at Morse High School , and 50 % of them have cars, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "seniors_s1 = 300\nseniors_s2 = 100\n \nif seniors_s1 is None or seniors_s2 is None:\n print('neutral')\n\nelif seniors_s1 > seniors_s2:\n print('Entailment')\n\nelif seniors_s1 != seniors_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A florist had 37.0 roses, and she sold 16.0 of them and then later picked 19.0 more, \"statement 2\" :She would have 40.0 roses , \"options: \" Entailment or contradiction?", + "Output Program": [ + "floris_roses_s1 = 37 - 16 + 19\nfloris_roses_s2 = 40\n \nif floris_roses_s1 is None or floris_roses_s2 is None:\n print('neutral')\n\nelif floris_roses_s1 == floris_roses_s2:\n print('Entailment')\n\nelif floris_roses_s1 != floris_roses_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Arun makes a popular brand of ice cream in a rectangular shaped bar 6 cm long , 5 cm wide and 2 cm thick, \"statement 2\" :Arun makes a popular brand of ice cream in a rectangular shaped bar less than 6 cm long , 5 cm wide and 2 cm thick, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ice_crean_shape_s1 = 6\nice_crean_shape_s2 = 6-1\n \nif ice_crean_shape_s1 is None or ice_crean_shape_s2 is None:\n print('neutral')\n\nelif ice_crean_shape_s1 == ice_crean_shape_s2:\n print('Entailment')\n\nelif ice_crean_shape_s1 != ice_crean_shape_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Matt has five iron coins and fiveteen copper coins , how many different sums from less than 8 \u00a2 to 160 \u00a2 can he make with a combination of his coins ?, \"statement 2\" :If Matt has five iron coins and fiveteen copper coins , how many different sums from 1 \u00a2 to 160 \u00a2 can he make with a combination of his coins ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sums_from_s1 = None\nsums_from_s2 = 1\n \nif sums_from_s1 is None or sums_from_s2 is None:\n print('neutral')\n\nelif sums_from_s1 == sums_from_s2:\n print('Entailment')\n\nelif sums_from_s1 != sums_from_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jack walks in a straight line toward Christina at a constant speed of 7 feet per second and Christina walks in a straight line toward Jack at a constant speed of 8 feet per second, \"statement 2\" :Jack walks in a straight line toward Christina at a constant speed of more than 7 feet per second and Christina walks in a straight line toward Jack at a constant speed of 8 feet per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "constant_speed_s1 = 7\nconstant_speed_s2 = 7+1\n \nif constant_speed_s1 is None or constant_speed_s2 is None:\n print('neutral')\n\nelif constant_speed_s1 == constant_speed_s2:\n print('Entailment')\n\nelif constant_speed_s1 != constant_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Baker Raj is storing cake boxes in cartons that measure 25 inches by 42 inches by 60 inches, \"statement 2\" :Baker Raj is storing cake boxes in cartons that measure more than 15 inches by 42 inches by 60 inches, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cake_box_measures_s1 = 25\ncake_box_measures_s2 = 15\n \nif cake_box_measures_s1 is None or cake_box_measures_s2 is None:\n print('neutral')\n\nelif cake_box_measures_s1 > cake_box_measures_s2:\n print('Entailment')\n\nelif cake_box_measures_s1 != cake_box_measures_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many seconds does Sandy take to cover a distance of 600 meters , if Sandy runs at a speed of 18 km / hr ?, \"statement 2\" :How many seconds does Sandy take to cover a distance of more than 100 meters , if Sandy runs at a speed of 18 km / hr ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_cover_s1 = 600\nsandy_cover_s2 = 100\n \nif sandy_cover_s1 is None or sandy_cover_s2 is None:\n print('neutral')\n\nelif sandy_cover_s1 > sandy_cover_s2:\n print('Entailment')\n\nelif sandy_cover_s1 != sandy_cover_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Andrew purchased more than 5 kg of grapes at the rate of 70 per kg and 9 kg of mangoes at the rate of 55 per kg, \"statement 2\" :Andrew purchased 8 kg of grapes at the rate of 70 per kg and 9 kg of mangoes at the rate of 55 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "andrew_purchased_s1 = None\nandrew_purchased_s2 = 8\n \nif andrew_purchased_s1 is None or andrew_purchased_s2 is None:\n print('neutral')\n\nelif andrew_purchased_s1 == andrew_purchased_s2:\n print('Entailment')\n\nelif andrew_purchased_s1 != andrew_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": ( CNN ) -- A shooting at an LA Fitness gym outside Pittsburgh , Pennsylvania , killed at least four people and wounded several others , a local official told CNN ., \"statement 2\" :Shooting at LA Fitness gym leaves as many as 10 others hurt, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_hurt_s1 = None\npeople_hurt_s2 = 10\n \nif people_hurt_s1 is None or people_hurt_s2 is None:\n print('neutral')\n\nelif people_hurt_s1 == people_hurt_s2:\n print('Entailment')\n\nelif people_hurt_s1 != people_hurt_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": I am the single mother of three sons -- grown to manhood and doing just fine ., \"statement 2\" :Weldon says she 's a single mom of three flourishing young men , productive and happy, \"options: \" Entailment or neutral?", + "Output Program": [ + "sons_s1 = 3\nsons_s2 = 3\n \nif sons_s1 is None or sons_s2 is None:\n print('neutral')\n\nelif sons_s1 == sons_s2:\n print('Entailment')\n\nelif sons_s1 != sons_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Susan , John , Peter , Jack , Daisy , Tim , Matt and Kim need to be seated in 8 identical chairs in straight line so that Susan is seated always left to Tim, \"statement 2\" :Susan , John , Peter , Jack , Daisy , Tim , Matt and Kim need to be seated in more than 4 identical chairs in straight line so that Susan is seated always left to Tim, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "identical_chairs_s1 = 8\nidentical_chairs_s2 = 4\n \nif identical_chairs_s1 is None or identical_chairs_s2 is None:\n print('neutral')\n\nelif identical_chairs_s1 > identical_chairs_s2:\n print('Entailment')\n\nelif identical_chairs_s1 != identical_chairs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Winson will arrange more than 5 people of 6 different heights for photograph by placing them in two rows of three so that each person in the first row is standing is standing in front of someone in the second row, \"statement 2\" :Winson will arrange 6 people of 6 different heights for photograph by placing them in two rows of three so that each person in the first row is standing is standing in front of someone in the second row, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_arrange_s1 = None\npeople_arrange_s2 = 6\n \nif people_arrange_s1 is None or people_arrange_s2 is None:\n print('neutral')\n\nelif people_arrange_s1 == people_arrange_s2:\n print('Entailment')\n\nelif people_arrange_s1 != people_arrange_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mike had 33.0 quarters and 87.0 nickels in his bank and his dad borrowed 75.0 nickels from Mike , \"statement 2\" :He has 14.0 nickels now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "mike_nickles_s1 = 87 - 75\nmike_nickles_s2 = 14\n \nif mike_nickles_s1 is None or mike_nickles_s2 is None:\n print('neutral')\n\nelif mike_nickles_s1 == mike_nickles_s2:\n print('Entailment')\n\nelif mike_nickles_s1 != mike_nickles_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Snyder has less than 7 more men and 6 more women than Leigh , how many men are in the Snyder choir ?, \"statement 2\" :If Snyder has 4 more men and 6 more women than Leigh , how many men are in the Snyder choir ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "snyder_men_s1 = None\nsnyder_men_s2 = 4\n \nif snyder_men_s1 is None or snyder_men_s2 is None:\n print('neutral')\n\nelif snyder_men_s1 == snyder_men_s2:\n print('Entailment')\n\nelif snyder_men_s1 != snyder_men_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": For that , six protesters and counterprotesters got themselves arrested , Murrieta police said ., \"statement 2\" :Six protesters and counterprotesters were arrested, \"options: \" Entailment or neutral?", + "Output Program": [ + "prostesters_s1 = 6\nprostesters_s2 = 6\n \nif prostesters_s1 is None or prostesters_s2 is None:\n print('neutral')\n\nelif prostesters_s1 == prostesters_s2:\n print('Entailment')\n\nelif prostesters_s1 != prostesters_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sakshi can do a piece of work in 20 days, \"statement 2\" :Sakshi can do a piece of work in less than 70 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sakshi_work_s1 = 20\nsakshi_work_s2 = 70\n \nif sakshi_work_s1 is None or sakshi_work_s2 is None:\n print('neutral')\n\nelif sakshi_work_s1 < sakshi_work_s2:\n print('Entailment')\n\nelif sakshi_work_s1 != sakshi_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jason has 676.0 Pokemon cards and Alyssa bought Jason 224.0 new Pokemon cards , \"statement 2\" :Jason has 900.0 Pokemon cards now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "pokemon_crds_s1 = 676+224\npokemon_crds_s2 = 900\n \nif pokemon_crds_s1 is None or pokemon_crds_s2 is None:\n print('neutral')\n\nelif pokemon_crds_s1 == pokemon_crds_s2:\n print('Entailment')\n\nelif pokemon_crds_s1 != pokemon_crds_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Each week , Harry is paid x dollars per hour for the first 15 hours and 1.5 x dollars for each additional hour worked that week, \"statement 2\" :Each week , Harry is paid x dollars per hour for the first less than 65 hours and 1.5 x dollars for each additional hour worked that week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "harry_paid_s1 = 15\nharry_paid_s2 = 65\n \nif harry_paid_s1 is None or harry_paid_s2 is None:\n print('neutral')\n\nelif harry_paid_s1 < harry_paid_s2:\n print('Entailment')\n\nelif harry_paid_s1 != harry_paid_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a certain province in France there are 17 cities, \"statement 2\" :In a certain province in France there are less than 57 cities, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "france_cities_s1 = 17\nfrance_cities_s2 = 57\n \nif france_cities_s1 is None or france_cities_s2 is None:\n print('neutral')\n\nelif france_cities_s1 < france_cities_s2:\n print('Entailment')\n\nelif france_cities_s1 != france_cities_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 38.0 books on the shelf and Marta takes 10.0 books off the shelf, \"statement 2\" :28.0 books are on the shelf now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "book_shelf_s1 = 38-10\nbook_shelf_s2 = 28\n \nif book_shelf_s1 is None or book_shelf_s2 is None:\n print('neutral')\n\nelif book_shelf_s1 == book_shelf_s2:\n print('Entailment')\n\nelif book_shelf_s1 != book_shelf_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Of a certain group of less than 800 people , 40 graduated from High School L , 65 graduated from College Y , and 30 live in City Z, \"statement 2\" :Of a certain group of 100 people , 40 graduated from High School L , 65 graduated from College Y , and 30 live in City Z, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "certain_group_s1 = None\ncertain_group_s2 = 100\n \nif certain_group_s1 is None or certain_group_s2 is None:\n print('neutral')\n\nelif certain_group_s1 == certain_group_s2:\n print('Entailment')\n\nelif certain_group_s1 != certain_group_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At the end of ' n ' years , Sandy got back 3 times the original investment, \"statement 2\" :At the end of ' n ' years , Sandy got back less than 8 times the original investment, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_got_back_s1 = 3\nsandy_got_back_s2 = 8\n \nif sandy_got_back_s1 is None or sandy_got_back_s2 is None:\n print('neutral')\n\nelif sandy_got_back_s1 < sandy_got_back_s2:\n print('Entailment')\n\nelif sandy_got_back_s1 != sandy_got_back_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Apple Infotech has less than 6 Senior Managing Directors and 5 Managing Directors, \"statement 2\" :Apple Infotech has 4 Senior Managing Directors and 5 Managing Directors, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "senior_s1 = None\nsenior_s2 = 4\n \nif senior_s1 is None or senior_s2 is None:\n print('neutral')\n\nelif senior_s1 == senior_s2:\n print('Entailment')\n\nelif senior_s1 != senior_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jon had an average score of 85 on his first five quizzes, \"statement 2\" :Jon had an average score of more than 75 on his first five quizzes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_score_s1 = 85\naverage_score_s2 = 75\n \nif average_score_s1 is None or average_score_s2 is None:\n print('neutral')\n\nelif average_score_s1 > average_score_s2:\n print('Entailment')\n\nelif average_score_s1 != average_score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 13.0 ducks are swimming in a lake and 20.0 more ducks come to join them, \"statement 2\" :33.0 ducks are swimming in the lake, \"options: \" Entailment or contradiction?", + "Output Program": [ + "ducks_swimming_s1 = 13+20\nducks_swimming_s2 = 33\n \nif ducks_swimming_s1 is None or ducks_swimming_s2 is None:\n print('neutral')\n\nelif ducks_swimming_s1 == ducks_swimming_s2:\n print('Entailment')\n\nelif ducks_swimming_s1 != ducks_swimming_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": When m divided by less than 588 , the remainder is 47, \"statement 2\" :When m divided by 288 , the remainder is 47, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "m_divided_s1 = None\nm_divided_s2 = 288\n \nif m_divided_s1 is None or m_divided_s2 is None:\n print('neutral')\n\nelif m_divided_s1 == m_divided_s2:\n print('Entailment')\n\nelif m_divided_s1 != m_divided_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were originally 20817.0 houses in Lincoln County and During a housing boom , developers built 97741.0 , \"statement 2\" :118560.0 houses are there now in Lincoln County , \"options: \" Entailment or contradiction?", + "Output Program": [ + "lincoln_county_house_s1 = 20817+97741\nlincoln_county_house_s2 = 118560\n \nif lincoln_county_house_s1 is None or lincoln_county_house_s2 is None:\n print('neutral')\n\nelif lincoln_county_house_s1 == lincoln_county_house_s2:\n print('Entailment')\n\nelif lincoln_county_house_s1 != lincoln_county_house_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jeevan bought an article with 30 per cent discount on the labelled price, \"statement 2\" :Jeevan bought an article with less than 30 per cent discount on the labelled price, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "article_discount_s1 = 30\narticle_discount_s2 = 30-1\n \nif article_discount_s1 is None or article_discount_s2 is None:\n print('neutral')\n\nelif article_discount_s1 == article_discount_s2:\n print('Entailment')\n\nelif article_discount_s1 != article_discount_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At least 100 Americans have either left or attempted to leave to go to Syria and help ISIS , Johnson said ., \"statement 2\" :He says at least 100 Americans have tried to go fight with ISIS in Syria, \"options: \" Entailment or neutral?", + "Output Program": [ + "americans_dight_isis_s1 = 100\namericans_dight_isis_s2 = 100\n \nif americans_dight_isis_s1 is None or americans_dight_isis_s2 is None:\n print('neutral')\n\nelif americans_dight_isis_s1 == americans_dight_isis_s2:\n print('Entailment')\n\nelif americans_dight_isis_s1 != americans_dight_isis_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How much loss would Indu has suffered had she given it to Bindu for 2 years at 4 % per annum simple interest ?, \"statement 2\" :How much loss would Indu has suffered had she given it to Bindu for 7 years at 4 % per annum simple interest ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "indu_loss_years_s1 = 2\nindu_loss_years_s2 = 7\n \nif indu_loss_years_s1 is None or indu_loss_years_s2 is None:\n print('neutral')\n\nelif indu_loss_years_s1 == indu_loss_years_s2:\n print('Entailment')\n\nelif indu_loss_years_s1 != indu_loss_years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In 4 years , Raj ' s father age twice as raj , Two years ago , Raj ' s mother ' s age twice as raj, \"statement 2\" :In more than 2 years , Raj ' s father age twice as raj , Two years ago , Raj ' s mother ' s age twice as raj, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "raj_father_age_s1 = 4\nraj_father_age_s2 = 2\n \nif raj_father_age_s1 is None or raj_father_age_s2 is None:\n print('neutral')\n\nelif raj_father_age_s1 > raj_father_age_s2:\n print('Entailment')\n\nelif raj_father_age_s1 != raj_father_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy attempts 30 sums and obtains 55 marks, \"statement 2\" :Sandy attempts less than 80 sums and obtains 55 marks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_attempts_s1 = 30\nsandy_attempts_s2 = 80\n \nif sandy_attempts_s1 is None or sandy_attempts_s2 is None:\n print('neutral')\n\nelif sandy_attempts_s1 < sandy_attempts_s2:\n print('Entailment')\n\nelif sandy_attempts_s1 != sandy_attempts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a school, there are 542.0 girls and 387.0 boys., \"statement 2\" :929.0 pupils are there in that school, \"options: \" Entailment or contradiction?", + "Output Program": [ + "school_pupils_s1 = 542+387\nschool_pupils_s2 = 929\n \nif school_pupils_s1 is None or school_pupils_s2 is None:\n print('neutral')\n\nelif school_pupils_s1 == school_pupils_s2:\n print('Entailment')\n\nelif school_pupils_s1 != school_pupils_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 5 % people of a village in Sri Lanka died by bombardment , 15 % of the remainder left the village on account of fear, \"statement 2\" :more than 5 % people of a village in Sri Lanka died by bombardment , 15 % of the remainder left the village on account of fear, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_bombardment_s1 = 5\npeople_bombardment_s2 = 5+1\n \nif people_bombardment_s1 is None or people_bombardment_s2 is None:\n print('neutral')\n\nelif people_bombardment_s1 == people_bombardment_s2:\n print('Entailment')\n\nelif people_bombardment_s1 != people_bombardment_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the agreed period of the debenture was 18 months : calculate the amount of interest Jaclyn will earn for each quarter, \"statement 2\" :If the agreed period of the debenture was less than 68 months : calculate the amount of interest Jaclyn will earn for each quarter, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "debenture_agreed_period_s1 = 18\ndebenture_agreed_period_s2 = 68\n \nif debenture_agreed_period_s1 is None or debenture_agreed_period_s2 is None:\n print('neutral')\n\nelif debenture_agreed_period_s1 < debenture_agreed_period_s2:\n print('Entailment')\n\nelif debenture_agreed_period_s1 != debenture_agreed_period_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": For dinner , Sue ate 360 grams of fruit which was five times as much fruit as she ate for lunch , and three times as much fruit as she ate for breakfast, \"statement 2\" :For dinner , Sue ate less than 360 grams of fruit which was five times as much fruit as she ate for lunch , and three times as much fruit as she ate for breakfast, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sue_ate_fruit_s1 = 360\nsue_ate_fruit_s2 = 360-1\n \nif sue_ate_fruit_s1 is None or sue_ate_fruit_s2 is None:\n print('neutral')\n\nelif sue_ate_fruit_s1 == sue_ate_fruit_s2:\n print('Entailment')\n\nelif sue_ate_fruit_s1 != sue_ate_fruit_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Daniel went to the store 5 times last month, \"statement 2\" :Daniel went to the store more than 3 times last month, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "daniel_store_s1 = 5\ndaniel_store_s2 = 3\n \nif daniel_store_s1 is None or daniel_store_s2 is None:\n print('neutral')\n\nelif daniel_store_s1 > daniel_store_s2:\n print('Entailment')\n\nelif daniel_store_s1 != daniel_store_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The monthly income of Suman in the year 2009 was approximately what percentage of the monthly income of Jyothi in the year 2010 ?, \"statement 2\" :The monthly income of Suman in the year 5009 was approximately what percentage of the monthly income of Jyothi in the year 2010 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "suman_year_s1 = 2009\nsuman_year_s2 = 5009\n \nif suman_year_s1 is None or suman_year_s2 is None:\n print('neutral')\n\nelif suman_year_s1 == suman_year_s2:\n print('Entailment')\n\nelif suman_year_s1 != suman_year_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Six years ago , the ratio of ages of Kunal and Sagar was 6 : 5, \"statement 2\" :Six years ago , the ratio of ages of Kunal and Sagar was more than 5 : 5, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_ratio_s1 = 6/5\nage_ratio_s2 = 5/5\n \nif age_ratio_s1 is None or age_ratio_s2 is None:\n print('neutral')\n\nelif age_ratio_s1 > age_ratio_s2:\n print('Entailment')\n\nelif age_ratio_s1 != age_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A petri dish originally contained 600.0 bacteria and a scientist let the bacteria grow, and now there are 8917.0 more of them, \"statement 2\" :9517.0 bacteria are there now , \"options: \" Entailment or contradiction?", + "Output Program": [ + "bacteria_s1 = 600+8917\nbacteria_s2 = 9517\n \nif bacteria_s1 is None or bacteria_s2 is None:\n print('neutral')\n\nelif bacteria_s1 == bacteria_s2:\n print('Entailment')\n\nelif bacteria_s1 != bacteria_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many ways are there for 6 males and 3 females to sit ( around a circular table ) if no male should sit next to a male ( and no female next to female ) and Mary wants to sit with her back on the wall ?, \"statement 2\" :How many ways are there for 4 males and 3 females to sit ( around a circular table ) if no male should sit next to a male ( and no female next to female ) and Mary wants to sit with her back on the wall ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "males_sit_s1 = 6\nmales_sit_s2 = 4\n \nif males_sit_s1 is None or males_sit_s2 is None:\n print('neutral')\n\nelif males_sit_s1 == males_sit_s2:\n print('Entailment')\n\nelif males_sit_s1 != males_sit_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many years will it take John \u2019 s investment to double at a simple interest rate of less than 8 % per annum ., \"statement 2\" :How many years will it take John \u2019 s investment to double at a simple interest rate of 4 % per annum ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "simple_interest_s1 = None\nsimple_interest_s2 = 4\n \nif simple_interest_s1 is None or simple_interest_s2 is None:\n print('neutral')\n\nelif simple_interest_s1 == simple_interest_s2:\n print('Entailment')\n\nelif simple_interest_s1 != simple_interest_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Raman invests some money at the beginning , Lakshmi invests double the amount after 6 months , and Muthu invests thrice the amount after 8 months, \"statement 2\" :Raman invests some money at the beginning , Lakshmi invests double the amount after 8 months , and Muthu invests thrice the amount after 8 months, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "raman_invests_s1 = 6\nraman_invests_s2 = 8\n \nif raman_invests_s1 is None or raman_invests_s2 is None:\n print('neutral')\n\nelif raman_invests_s1 == raman_invests_s2:\n print('Entailment')\n\nelif raman_invests_s1 != raman_invests_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many ways are there for 5 males and 3 females to sit ( around a circular table ) if no male should sit next to a male ( and no female next to female ) and Mary wants to sit with her back on the wall ?, \"statement 2\" :How many ways are there for 8 males and 3 females to sit ( around a circular table ) if no male should sit next to a male ( and no female next to female ) and Mary wants to sit with her back on the wall ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "males_sit_s1 = 5\nmales_sit_s2 = 8\n \nif males_sit_s1 is None or males_sit_s2 is None:\n print('neutral')\n\nelif males_sit_s1 == males_sit_s2:\n print('Entailment')\n\nelif males_sit_s1 != males_sit_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Eight suspects were arrested ., \"statement 2\" :8 suspects have been arrested, \"options: \" Entailment or neutral?", + "Output Program": [ + "suspects_arrested_s1 = 8\nsuspects_arrested_s2 = 8\n \nif suspects_arrested_s1 is None or suspects_arrested_s2 is None:\n print('neutral')\n\nelif suspects_arrested_s1 == suspects_arrested_s2:\n print('Entailment')\n\nelif suspects_arrested_s1 != suspects_arrested_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Molly can do a task in 15 days while Sandy can do the task in 10 days, \"statement 2\" :Molly can do a task in less than 25 days while Sandy can do the task in 10 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "molly_task_s1 = 15\nmolly_task_s2 = 25\n \nif molly_task_s1 is None or molly_task_s2 is None:\n print('neutral')\n\nelif molly_task_s1 < molly_task_s2:\n print('Entailment')\n\nelif molly_task_s1 != molly_task_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Suresh can complete a job in 15 hours, \"statement 2\" :Suresh can complete a job in less than 25 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "suresh_job_complete_s1 = 15\nsuresh_job_complete_s2 = 25\n \nif suresh_job_complete_s1 is None or suresh_job_complete_s2 is None:\n print('neutral')\n\nelif suresh_job_complete_s1 < suresh_job_complete_s2:\n print('Entailment')\n\nelif suresh_job_complete_s1 != suresh_job_complete_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": ( CNN ) -- Norway 's world 100-meter breaststroke champion and Olympic silver medalist Alexander Dale Oen has died suddenly at the age 26 ., \"statement 2\" :Norwegian swimmer Alexander Dale Oen dies suddenly at the age of 26, \"options: \" Entailment or neutral?", + "Output Program": [ + "swimmer_age_s1 = 26\nswimmer_age_s2 = 26\n \nif swimmer_age_s1 is None or swimmer_age_s2 is None:\n print('neutral')\n\nelif swimmer_age_s1 == swimmer_age_s2:\n print('Entailment')\n\nelif swimmer_age_s1 != swimmer_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained 76 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained less than 76 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dacid_obtained_s1 = 76 + 65 + 82 + 67 + 85\ndacid_obtained_s2 = 76 + 65 + 82 + 67 + 85 - 1\n \nif dacid_obtained_s1 is None or dacid_obtained_s2 is None:\n print('neutral')\n\nelif dacid_obtained_s1 == dacid_obtained_s2:\n print('Entailment')\n\nelif dacid_obtained_s1 != dacid_obtained_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Jerry wants to raise his average by 2 points , what score must he earn on the fourth test ?, \"statement 2\" :If Jerry wants to raise his average by more than 1 points , what score must he earn on the fourth test ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_point_s1 = 2\naverage_point_s2 = 1\n \nif average_point_s1 is None or average_point_s2 is None:\n print('neutral')\n\nelif average_point_s1 > average_point_s2:\n print('Entailment')\n\nelif average_point_s1 != average_point_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If John received $ more than 400 more than Mike did , what was the profit made by their business in that year ?, \"statement 2\" :If John received $ 800 more than Mike did , what was the profit made by their business in that year ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_received_s1 = None\njohn_received_s2 = 800\n \nif john_received_s1 is None or john_received_s2 is None:\n print('neutral')\n\nelif john_received_s1 == john_received_s2:\n print('Entailment')\n\nelif john_received_s1 != john_received_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shawn invested one half of his savings in a bond that paid simple interest for less than 7 years and received $ 400 as interest, \"statement 2\" :Shawn invested one half of his savings in a bond that paid simple interest for 2 years and received $ 400 as interest, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "simple_interest_s1 = None\nsimple_interest_s2 = 2\n \nif simple_interest_s1 is None or simple_interest_s2 is None:\n print('neutral')\n\nelif simple_interest_s1 == simple_interest_s2:\n print('Entailment')\n\nelif simple_interest_s1 != simple_interest_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The average marks scored by Ganesh in English , Science , Mathematics and History is less than 16 from that scored by him in English , History , Geography and Mathematics, \"statement 2\" :The average marks scored by Ganesh in English , Science , Mathematics and History is less than less than 46 from that scored by him in English , History , Geography and Mathematics, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_marks_s1 = 16\naverage_marks_s2 = 46\n \nif average_marks_s1 is None or average_marks_s2 is None:\n print('neutral')\n\nelif average_marks_s1 < average_marks_s2:\n print('Entailment')\n\nelif average_marks_s1 != average_marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The car bombs that struck in quick succession targeted two commercial streets in al-Bayaa district , a predominantly Shiite area in southwestern Baghdad ., \"statement 2\" :Two car bombs in Baghdad kill more than a dozen people , police say, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_killed_s1 = None\npeople_killed_s2 = 2+12\n \nif people_killed_s1 is None or people_killed_s2 is None:\n print('neutral')\n\nelif people_killed_s1 == people_killed_s2:\n print('Entailment')\n\nelif people_killed_s1 != people_killed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The latest trend is theaters offering '' luxury '' options : premium screening rooms with cocktails , wine lists and upscale menus ., \"statement 2\" :Premium screening rooms offer cocktails , wine lists , $ 17 crab cakes, \"options: \" Entailment or neutral?", + "Output Program": [ + "crab_cakes_s1 = None\ncrab_cakes_s2 = 17\n \nif crab_cakes_s1 is None or crab_cakes_s2 is None:\n print('neutral')\n\nelif crab_cakes_s1 == crab_cakes_s2:\n print('Entailment')\n\nelif crab_cakes_s1 != crab_cakes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Paul has to secure 50 % marks to clear his exam of class 7 th .\nHe got 50 marks and failed by 10 marks .\nWhat is the maximum marks ?, \"statement 2\" :Paul has to secure more than 40 % marks to clear his exam of class 7 th . He got 50 marks and failed by 10 marks . What is the maximum marks ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "paul_marks_s1 = 50\npaul_marks_s2 = 40\n \nif paul_marks_s1 is None or paul_marks_s2 is None:\n print('neutral')\n\nelif paul_marks_s1 > paul_marks_s2:\n print('Entailment')\n\nelif paul_marks_s1 != paul_marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": '' Man on a Ledge '' underwhelmed with $ 8.3 million -- enough for fifth place ., \"statement 2\" :'' The Grey '' debuted in first place with a better-than-expected $ 20 million, \"options: \" Entailment or neutral?", + "Output Program": [ + "fifth_place_underwhelmed_s1 = 8.3\nfifth_place_underwhelmed_s2 = None\n \nif fifth_place_underwhelmed_s1 is None or fifth_place_underwhelmed_s2 is None:\n print('neutral')\n\nelif fifth_place_underwhelmed_s1 == fifth_place_underwhelmed_s2:\n print('Entailment')\n\nelif fifth_place_underwhelmed_s1 != fifth_place_underwhelmed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are less than 38 stations between Hyderabad and Bangalore, \"statement 2\" :There are 28 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stations_s1 = None\nstations_s2 = 28\n \nif stations_s1 is None or stations_s2 is None:\n print('neutral')\n\nelif stations_s1 == stations_s2:\n print('Entailment')\n\nelif stations_s1 != stations_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Authorities estimate the car contained 30-35 kilograms ( 66-77 lbs ) of explosive material ., \"statement 2\" :An estimated 30-35 kilograms of explosives were used in the car bomb, \"options: \" Entailment or neutral?", + "Output Program": [ + "authorities_estimate_s1 = [30,35]\nauthorities_estimate_s2 = [30,35]\n \nif authorities_estimate_s1 is None or authorities_estimate_s2 is None:\n print('neutral')\n\nelif authorities_estimate_s1 == authorities_estimate_s2:\n print('Entailment')\n\nelif authorities_estimate_s1 != authorities_estimate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a friendship gang Andrew has 8 gang , in how many ways can he invite one or more of the gang to his house ?, \"statement 2\" :In a friendship gang Andrew has more than 1 gang , in how many ways can he invite one or more of the gang to his house ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "andrew_gang_s1 = 8\nandrew_gang_s2 = 1\n \nif andrew_gang_s1 is None or andrew_gang_s2 is None:\n print('neutral')\n\nelif andrew_gang_s1 > andrew_gang_s2:\n print('Entailment')\n\nelif andrew_gang_s1 != andrew_gang_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Suresh can complete a job in less than 35 hours, \"statement 2\" :Suresh can complete a job in 15 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "suresh_works_s1 = None\nsuresh_works_s2 = 15\n \nif suresh_works_s1 is None or suresh_works_s2 is None:\n print('neutral')\n\nelif suresh_works_s1 == suresh_works_s2:\n print('Entailment')\n\nelif suresh_works_s1 != suresh_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After less than 80 minutes , Annie stops to fix a flat tire, \"statement 2\" :After 40 minutes , Annie stops to fix a flat tire, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "annie_stops_s1 = None\nannie_stops_s2 = 40\n \nif annie_stops_s1 is None or annie_stops_s2 is None:\n print('neutral')\n\nelif annie_stops_s1 == annie_stops_s2:\n print('Entailment')\n\nelif annie_stops_s1 != annie_stops_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": less than 8 buses runs between Chennai and Mysore, \"statement 2\" :4 buses runs between Chennai and Mysore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "buses_runs_s1 = None\nbuses_runs_s2 = 4\n \nif buses_runs_s1 is None or buses_runs_s2 is None:\n print('neutral')\n\nelif buses_runs_s1 == buses_runs_s2:\n print('Entailment')\n\nelif buses_runs_s1 != buses_runs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Hazard is the county seat in Perry County , where the jobless rate has been on a steady climb and is 12.7 percent ., \"statement 2\" :Unemployment rate in Kentucky is 11.1 percent, \"options: \" Entailment or neutral?", + "Output Program": [ + "county_jobless_rate_s1 = 12.7\ncounty_jobless_rate_s2 = None\n \nif county_jobless_rate_s1 is None or county_jobless_rate_s2 is None:\n print('neutral')\n\nelif county_jobless_rate_s1 == county_jobless_rate_s2:\n print('Entailment')\n\nelif county_jobless_rate_s1 != county_jobless_rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ravi ' s 4 days average income is 1025.68, \"statement 2\" :Ravi ' s 6 days average income is 1025.68, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_days_s1 = 4\naverage_days_s2 = 6\n \nif average_days_s1 is None or average_days_s2 is None:\n print('neutral')\n\nelif average_days_s1 == average_days_s2:\n print('Entailment')\n\nelif average_days_s1 != average_days_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ratio of the ages of Mona and Sona is more than 1 : 5, \"statement 2\" :The ratio of the ages of Mona and Sona is 4 : 5, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_ratio_s1 = None\nage_ratio_s2 = 4/5\n \nif age_ratio_s1 is None or age_ratio_s2 is None:\n print('neutral')\n\nelif age_ratio_s1 == age_ratio_s2:\n print('Entailment')\n\nelif age_ratio_s1 != age_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Kiran travels from A to B by car and returns from B to A by cycle in 7 hours, \"statement 2\" :Kiran travels from A to B by car and returns from B to A by cycle in 1 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kiran_travels_hours_s1 = 7\nkiran_travels_hours_s2 = 1\n \nif kiran_travels_hours_s1 is None or kiran_travels_hours_s2 is None:\n print('neutral')\n\nelif kiran_travels_hours_s1 == kiran_travels_hours_s2:\n print('Entailment')\n\nelif kiran_travels_hours_s1 != kiran_travels_hours_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jefferson County Deputy Sheriff Rod Carroll said that at least 80 and as many as 120 injured people were taken from the scene ., \"statement 2\" :As many as 120 injured were taken to hospitals, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_injured_s1 = 120\npeople_injured_s2 = 120\n \nif people_injured_s1 is None or people_injured_s2 is None:\n print('neutral')\n\nelif people_injured_s1 == people_injured_s2:\n print('Entailment')\n\nelif people_injured_s1 != people_injured_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Three deaths had been confirmed as a result of the storm ., \"statement 2\" :Officials say three people have died as a result of the storm, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_died_s1 = 3\npeople_died_s2 = 3\n\nif people_died_s1 is None or people_died_s2 is None:\n print('neutral')\n\nelif people_died_s1 == people_died_s2:\n print('Entailment')\n\nelif people_died_s1 != people_died_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 18 stations between Ernakulam and Chennai, \"statement 2\" :There are more than 18 stations between Ernakulam and Chennai, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "no_of_stations_s1 = 18\nno_of_stations_s2 = 18\n\nif no_of_stations_s1 is None or no_of_stations_s2 is None:\n print('neutral')\n\nelif no_of_stations_s1 > no_of_stations_s2:\n print('Entailment')\n\nelif no_of_stations_s1 <= no_of_stations_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In Richie ' s company more than 50 % of the employees earn less than $ 50,000 a year , 60 % of the employees earn more than $ 40,000 a year , 11 % of the employees earn $ 43,000 a year and 5 % of the employees earn $ 49,000 a year, \"statement 2\" :In Richie ' s company 60 % of the employees earn less than $ 50,000 a year , 60 % of the employees earn more than $ 40,000 a year , 11 % of the employees earn $ 43,000 a year and 5 % of the employees earn $ 49,000 a year, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "richie_company_s1 = None\nrichie_company_s2 = 60\n\nif richie_company_s1 is None or richie_company_s2 is None:\n print('neutral')\n\nelif richie_company_s1 == richie_company_s2:\n print('Entailment')\n\nelif richie_company_s1 != richie_company_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many ways are there for more than 2 males and 3 females to sit ( around a circular table ) if no male should sit next to a male ( and no female next to female ) and Mary wants to sit with her back on the wall ?, \"statement 2\" :How many ways are there for 5 males and 3 females to sit ( around a circular table ) if no male should sit next to a male ( and no female next to female ) and Mary wants to sit with her back on the wall ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "males_sit_s1 = None\nmales_sit_s2 = 5\n\nif males_sit_s1 is None or males_sit_s2 is None:\n print('neutral')\n\nelif males_sit_s1 == males_sit_s2:\n print('Entailment')\n\nelif males_sit_s1 != males_sit_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Andy has 20 pairs of matched gloves, \"statement 2\" :Andy has less than 20 pairs of matched gloves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "andy_pairs_of_gloves_s1 = 20\nandy_pairs_of_gloves_s2 = 20\n\nif andy_pairs_of_gloves_s1 is None or andy_pairs_of_gloves_s2 is None:\n print('neutral')\n\nelif andy_pairs_of_gloves_s1 < andy_pairs_of_gloves_s2:\n print('Entailment')\n\nelif andy_pairs_of_gloves_s1 >= andy_pairs_of_gloves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Veena ranks less than 83 rd from the top in a class of 198, \"statement 2\" :Veena ranks 73 rd from the top in a class of 198, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rank_of_veena_s1 = None\nrank_of_veena_s2 = 73\n\nif rank_of_veena_s1 is None or rank_of_veena_s2 is None:\n print('neutral')\n\nelif rank_of_veena_s1 == rank_of_veena_s2:\n print('Entailment')\n\nelif rank_of_veena_s1 != rank_of_veena_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Meg and Bob are among the 3 participants in a cycling race, \"statement 2\" :Meg and Bob are among the more than 2 participants in a cycling race, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cycling_race_participants_s1 = 3\ncycling_race_participants_s2 = 2\n\nif cycling_race_participants_s1 is None or cycling_race_participants_s2 is None:\n print('neutral')\n\nelif cycling_race_participants_s1 > cycling_race_participants_s2:\n print('Entailment')\n\nelif cycling_race_participants_s1 <= cycling_race_participants_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Elena purchased a total of 12 of these pens for $ 40.00 , how many brand X pens did she purchase ?, \"statement 2\" :If Elena purchased a total of 52 of these pens for $ 40.00 , how many brand X pens did she purchase ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "elena_pens_s1 = 12\nelena_pens_s2 = 52\n\nif elena_pens_s1 is None or elena_pens_s2 is None:\n print('neutral')\n\nelif elena_pens_s1 == elena_pens_s2:\n print('Entailment')\n\nelif elena_pens_s1 != elena_pens_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Baker Raj is storing cake boxes in cartons that measure 25 inches by 42 inches by 60 inches, \"statement 2\" :Baker Raj is storing cake boxes in cartons that measure more than 25 inches by 42 inches by 60 inches, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cake_measure_s1 = 25\ncake_measure_s2 = 25+1\n\nif cake_measure_s1 is None or cake_measure_s2 is None:\n print('neutral')\n\nelif cake_measure_s1 == cake_measure_s2:\n print('Entailment')\n\nelif cake_measure_s1 != cake_measure_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 544.0 pots and each pot has 32.0 flowers in it, \"statement 2\" :17410.0 flowers are there in all, \"options: \" Entailment or contradiction?", + "Output Program": [ + "no_of_pots = 544\nflowers_per_pots = 32\n\ntotal_no_flowers_s1 = no_of_pots * flowers_per_pots\ntotal_no_flowers_s2 = 17410\n\nif total_no_flowers_s1 is None or total_no_flowers_s2 is None:\n print('neutral')\n\nelif total_no_flowers_s1 == total_no_flowers_s2:\n print('Entailment')\n\nelif total_no_flowers_s1 != total_no_flowers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bhanu spends 30 % of his income on petrol on scooter 20 % of the remaining on house rent and the balance on food, \"statement 2\" :Bhanu spends more than 30 % of his income on petrol on scooter 20 % of the remaining on house rent and the balance on food, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bhanu_spends_s1 = 30\nbhanu_spends_s2 = 30+1\n\nif bhanu_spends_s1 is None or bhanu_spends_s2 is None:\n print('neutral')\n\nelif bhanu_spends_s1 == bhanu_spends_s2:\n print('Entailment')\n\nelif bhanu_spends_s1 != bhanu_spends_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a friendship gang Raja has 9 gang , in how many ways can he invite one or more of the gang to his house ?, \"statement 2\" :In a friendship gang Raja has 5 gang , in how many ways can he invite one or more of the gang to his house ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "raja_gang_s1 = 9\nraja_gang_s2 = 5\n\nif raja_gang_s1 is None or raja_gang_s2 is None:\n print('neutral')\n\nelif raja_gang_s1 == raja_gang_s2:\n print('Entailment')\n\nelif raja_gang_s1 != raja_gang_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": less than 70 % people of a village in Sri Lanka died by bombardment , 20 % of the remainder left the village on account of fear, \"statement 2\" :10 % people of a village in Sri Lanka died by bombardment , 20 % of the remainder left the village on account of fear, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "percent_people_died_in_srilanka_s1 = None\npercent_people_died_in_srilanka_s2 = 10\n\nif percent_people_died_in_srilanka_s1 is None or percent_people_died_in_srilanka_s2 is None:\n print('neutral')\n\nelif percent_people_died_in_srilanka_s1 == percent_people_died_in_srilanka_s2:\n print('Entailment')\n\nelif percent_people_died_in_srilanka_s1 != percent_people_died_in_srilanka_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 3.0 calories in a candy bar., \"statement 2\" :15.0 calories are there in 5.0 candy bars, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_calories = 15\ntotal_candy_bars = 5\n\ncalorie_per_candy_bar_s1 = 3\ncalorie_per_candy_bar_s2 = total_calories / total_candy_bars\n\nif calorie_per_candy_bar_s1 is None or calorie_per_candy_bar_s2 is None:\n print('neutral')\n\nelif calorie_per_candy_bar_s1 == calorie_per_candy_bar_s2:\n print('Entailment')\n\nelif calorie_per_candy_bar_s1 != calorie_per_candy_bar_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many ways are there for less than 7 males and 3 females to sit ( around a circular table ) if no male should sit next to a male ( and no female next to female ) and Mary wants to sit with her back on the wall ?, \"statement 2\" :How many ways are there for 6 males and 3 females to sit ( around a circular table ) if no male should sit next to a male ( and no female next to female ) and Mary wants to sit with her back on the wall ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "males_sit_s1 = None\nmales_sit_s2 = 6\n\nif males_sit_s1 is None or males_sit_s2 is None:\n print('neutral')\n\nelif males_sit_s1 == males_sit_s2:\n print('Entailment')\n\nelif males_sit_s1 != males_sit_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Four different children have jelly beans : Aaron has more than 6 , Bianca has 7 , Callie has 8 , and Dante has 11, \"statement 2\" :Four different children have jelly beans : Aaron has 7 , Bianca has 7 , Callie has 8 , and Dante has 11, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "aaron_jellly_beans_s1 = None\naaron_jellly_beans_s2 = 7\n\nif aaron_jellly_beans_s1 is None or aaron_jellly_beans_s2 is None:\n print('neutral')\n\nelif aaron_jellly_beans_s1 == aaron_jellly_beans_s2:\n print('Entailment')\n\nelif aaron_jellly_beans_s1 != aaron_jellly_beans_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After 6 years , Arun ' s age will be 26 years, \"statement 2\" :After less than 6 years , Arun ' s age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "after_years_s1 = 6\nafter_years_s2 = 6-1\n\nif after_years_s1 is None or after_years_s2 is None:\n print('neutral')\n\nelif after_years_s1 == after_years_s2:\n print('Entailment')\n\nelif after_years_s1 != after_years_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": About 450 people have been injured in clashes , according to the Pakistan Institute of Medical Sciences and Polytechnic Hospital ., \"statement 2\" :About 450 people were injured in clashes , health officials say, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_injured_in_clash_s1 = 450\npeople_injured_in_clash_s2 = 450\n\nif people_injured_in_clash_s1 is None or people_injured_in_clash_s2 is None:\n print('neutral')\n\nelif people_injured_in_clash_s1 == people_injured_in_clash_s2:\n print('Entailment')\n\nelif people_injured_in_clash_s1 != people_injured_in_clash_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the trip home took 1 / 2 hour longer than the trip to the beach , how many kilometers e did Carl drive each way ?, \"statement 2\" :If the trip home took less than 6 / 2 hour longer than the trip to the beach , how many kilometers e did Carl drive each way ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "trip_to_home_longer_s1 = 1/2\ntrip_to_home_longer_s2 = 6/2\n\nif trip_to_home_longer_s1 is None or trip_to_home_longer_s2 is None:\n print('neutral')\n\nelif trip_to_home_longer_s1 < trip_to_home_longer_s2:\n print('Entailment')\n\nelif trip_to_home_longer_s1 >= trip_to_home_longer_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were 58.0 geese and 37.0 ducks in the marsh., \"statement 2\" :95.0 birds were there in all, \"options: \" Entailment or contradiction?", + "Output Program": [ + "no_geese = 58\nno_ducks = 37\n\ntotal_no_birds_s1 = no_geese + no_ducks\ntotal_no_birds_s2 = 95\n\nif total_no_birds_s1 is None or total_no_birds_s2 is None:\n print('neutral')\n\nelif total_no_birds_s1 == total_no_birds_s2:\n print('Entailment')\n\nelif total_no_birds_s1 != total_no_birds_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained less than 81 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained 51 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dacid_english_marks_s1 = None\ndacid_english_marks_s2 = 51\n\nif dacid_english_marks_s1 is None or dacid_english_marks_s2 is None:\n print('neutral')\n\nelif dacid_english_marks_s1 == dacid_english_marks_s2:\n print('Entailment')\n\nelif dacid_english_marks_s1 != dacid_english_marks_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Inter led the last 16 clash 2-1 from the first leg in the San Siro , but many were expecting English Premier League title challengers Chelsea to overturn the deficit ., \"statement 2\" :Inter coach Jose Mourinho guided Chelsea to two English Premier League titles, \"options: \" Entailment or neutral?", + "Output Program": [ + "inter_clash_s1 = 16\ninter_clash_s2 = None\n\nif inter_clash_s1 is None or inter_clash_s2 is None:\n print('neutral')\n\nelif inter_clash_s1 == inter_clash_s2:\n print('Entailment')\n\nelif inter_clash_s1 != inter_clash_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Reeya obtained 65 , 67 , 76 , 80 and 95 out of 100 in different subjects , What will be the average, \"statement 2\" :Reeya obtained 85 , 67 , 76 , 80 and 95 out of 100 in different subjects , What will be the average, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "reeya_first_subject_marks_s1 = 65\nreeya_first_subject_marks_s2 = 85\n\nif reeya_first_subject_marks_s1 is None or reeya_first_subject_marks_s2 is None:\n print('neutral')\n\nelif reeya_first_subject_marks_s1 == reeya_first_subject_marks_s2:\n print('Entailment')\n\nelif reeya_first_subject_marks_s1 != reeya_first_subject_marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tim and Stacy need to select seats in a row of chairs that are numbered in order from 1 to 5, \"statement 2\" :Tim and Stacy need to select seats in a row of chairs that are numbered in order from less than 4 to 5, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "numbered_in_order_from_s1 = 1\nnumbered_in_order_from_s2 = 4\n\nif numbered_in_order_from_s1 is None or numbered_in_order_from_s2 is None:\n print('neutral')\n\nelif numbered_in_order_from_s1 < numbered_in_order_from_s2:\n print('Entailment')\n\nelif numbered_in_order_from_s1 >= numbered_in_order_from_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 46.0 rulers in the drawer and Tim put 25.0 more rulers into the drawer, \"statement 2\" :74.0 rulers are now in the drawer, \"options: \" Entailment or contradiction?", + "Output Program": [ + "available_rulers = 46\nadded_rulers = 25\n\nno_rulers_s1 = available_rulers + added_rulers\nno_rulers_s2 = 74\n\nif no_rulers_s1 is None or no_rulers_s2 is None:\n print('neutral')\n\nelif no_rulers_s1 == no_rulers_s2:\n print('Entailment')\n\nelif no_rulers_s1 != no_rulers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Level - less than 2 college graduates account for 15 % of Listco ' s sales staff, \"statement 2\" :Level - 1 college graduates account for 15 % of Listco ' s sales staff, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "no_college_graduates_s1 = None\nno_college_graduates_s2 = 1\n\nif no_college_graduates_s1 is None or no_college_graduates_s2 is None:\n print('neutral')\n\nelif no_college_graduates_s1 == no_college_graduates_s2:\n print('Entailment')\n\nelif no_college_graduates_s1 != no_college_graduates_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He works at it for 20 days and then Rajesh finished it in 30 days, \"statement 2\" :He works at it for less than 40 days and then Rajesh finished it in 30 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "no_days_work_s1 = 20\nno_days_work_s2 = 40\n\nif no_days_work_s1 is None or no_days_work_s2 is None:\n print('neutral')\n\nelif no_days_work_s1 < no_days_work_s2:\n print('Entailment')\n\nelif no_days_work_s1 >= no_days_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Stacy has a 63 page history paper due in 3 days, \"statement 2\" :Stacy has a more than 63 page history paper due in 3 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stacy_history_paper_page_s1 = 63\nstacy_history_paper_page_s2 = 63+1\n\nif stacy_history_paper_page_s1 is None or stacy_history_paper_page_s2 is None:\n print('neutral')\n\nelif stacy_history_paper_page_s1 > stacy_history_paper_page_s2:\n print('Entailment')\n\nelif stacy_history_paper_page_s1 <= stacy_history_paper_page_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": less than 7620 in 8 % stock , Michael earns Rs, \"statement 2\" :1620 in 8 % stock , Michael earns Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mike_earns_s1 = None\nmike_earns_s2 = 1620\n\nif mike_earns_s1 is None or mike_earns_s2 is None:\n print('neutral')\n\nelif mike_earns_s1 > mike_earns_s2:\n print('Entailment')\n\nelif mike_earns_s1 <= mike_earns_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": She turns around to head home after a short water break , how fast does Sasha need to ride , in miles per hour , to get home at 5 PM ?, \"statement 2\" :She turns around to head home after a short water break , how fast does Sasha need to ride , in miles per hour , to get home at more than 1 PM ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sasha_reach_home_at_PM_s1 = 5\nsasha_reach_home_at_PM_s2 = 1\n\nif sasha_reach_home_at_PM_s1 is None or sasha_reach_home_at_PM_s2 is None:\n print('neutral')\n\nelif sasha_reach_home_at_PM_s1 > sasha_reach_home_at_PM_s2:\n print('Entailment')\n\nelif sasha_reach_home_at_PM_s1 <= sasha_reach_home_at_PM_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 8 years ago Jason was 12 times older, \"statement 2\" :7 years ago Jason was 12 times older, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "years_ago_s1 = 8\nyears_ago_s2 = 7\n\nif years_ago_s1 is None or years_ago_s2 is None:\n print('neutral')\n\nelif years_ago_s1 == years_ago_s2:\n print('Entailment')\n\nelif years_ago_s1 != years_ago_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Ros \u00e9 reads at a constant rate of 3 pages every 5 minutes , how many seconds will it take her to read N pages ?, \"statement 2\" :If Ros \u00e9 reads at a constant rate of more than 1 pages every 5 minutes , how many seconds will it take her to read N pages ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pages_per_5_minute_s1 = 3\npages_per_5_minute_s2 = 1\n\nif pages_per_5_minute_s1 is None or pages_per_5_minute_s2 is None:\n print('neutral')\n\nelif pages_per_5_minute_s1 > pages_per_5_minute_s2:\n print('Entailment')\n\nelif pages_per_5_minute_s1 <= pages_per_5_minute_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a friendship gang Kala has 11 gang , in how many ways can he invite one or more of the gang to his house ?, \"statement 2\" :In a friendship gang Kala has less than 41 gang , in how many ways can he invite one or more of the gang to his house ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kala_gang_s1 = 11\nkala_gang_s2 = 41\n\nif kala_gang_s1 is None or kala_gang_s2 is None:\n print('neutral')\n\nelif kala_gang_s1 < kala_gang_s2:\n print('Entailment')\n\nelif kala_gang_s1 >= kala_gang_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The average of Pratyush ' s marks in 7 subjects is 75, \"statement 2\" :The average of Pratyush ' s marks in more than 4 subjects is 75, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "pratyush_no_of_subject_s1 = 7\npratyush_no_of_subject_s2 = 4\n\nif pratyush_no_of_subject_s1 is None or pratyush_no_of_subject_s2 is None:\n print('neutral')\n\nelif pratyush_no_of_subject_s1 > pratyush_no_of_subject_s2:\n print('Entailment')\n\nelif pratyush_no_of_subject_s1 <= pratyush_no_of_subject_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Last year less than 46 members of a certain club traveled to England , 26 members traveled to France , and 32 members traveled to Italy, \"statement 2\" :Last year 26 members of a certain club traveled to England , 26 members traveled to France , and 32 members traveled to Italy, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "members_traveled_england_s1 = None\nmembers_traveled_england_s2 = 26\n\nif members_traveled_england_s1 is None or members_traveled_england_s2 is None:\n print('neutral')\n\nelif members_traveled_england_s1 == members_traveled_england_s2:\n print('Entailment')\n\nelif members_traveled_england_s1 != members_traveled_england_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": It is rumored that in a match between less than 5 teams A and B , Paul picks A with the same probability as A \u2019 s chances of winning, \"statement 2\" :It is rumored that in a match between 2 teams A and B , Paul picks A with the same probability as A \u2019 s chances of winning, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "no_teams_in_match_s1 = None\nno_teams_in_match_s2 = 2\n\nif no_teams_in_match_s1 is None or no_teams_in_match_s2 is None:\n print('neutral')\n\nelif no_teams_in_match_s1 == no_teams_in_match_s2:\n print('Entailment')\n\nelif no_teams_in_match_s1 != no_teams_in_match_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Every Sunday , Giri jogs more than 1 miles, \"statement 2\" :Every Sunday , Giri jogs 3 miles, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "giri_jogs_s1 = None\ngiri_jogs_s2 = 3\n\nif giri_jogs_s1 is None or giri_jogs_s2 is None:\n print('neutral')\n\nelif giri_jogs_s1 == giri_jogs_s2:\n print('Entailment')\n\nelif giri_jogs_s1 != giri_jogs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Marilyn has 51.0 bottle caps and Nancy gives her 36.0, \"statement 2\" :Marilyn has 84.0 bottle caps now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "available_bottle_caps = 51\nadded_bottle_caps = 36\n\nmarilyn_bottle_caps_s1 = available_bottle_caps + added_bottle_caps\nmarilyn_bottle_caps_s2 = 84\n\nif marilyn_bottle_caps_s1 is None or marilyn_bottle_caps_s2 is None:\n print('neutral')\n\nelif marilyn_bottle_caps_s1 == marilyn_bottle_caps_s2:\n print('Entailment')\n\nelif marilyn_bottle_caps_s1 != marilyn_bottle_caps_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": David obtained 76 , 65 , 82 , 67 and 85 marks ( out in 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :David obtained 86 , 65 , 82 , 67 and 85 marks ( out in 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "david_english_marks_s1 = 76\ndavid_english_marks_s2 = 86\n\nif david_english_marks_s1 is None or david_english_marks_s2 is None:\n print('neutral')\n\nelif david_english_marks_s1 == david_english_marks_s2:\n print('Entailment')\n\nelif david_english_marks_s1 != david_english_marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ganesh covers the distance from X to Y at an average speed of 60 Km / hr, \"statement 2\" :Ganesh covers the distance from X to Y at an average speed of less than 70 Km / hr, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ganesh_average_speed_s1 = 60\nganesh_average_speed_s2 = 70\n\nif ganesh_average_speed_s1 is None or ganesh_average_speed_s2 is None:\n print('neutral')\n\nelif ganesh_average_speed_s1 < ganesh_average_speed_s2:\n print('Entailment')\n\nelif ganesh_average_speed_s1 >= ganesh_average_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": They remember Dylan Hockley , 6 , as always smiling and full of joy, \"statement 2\" :He was 6 and full of joy , his mother , Nicole Hockley , says ., \"options: \" Entailment or neutral?", + "Output Program": [ + "dylan_hockey_s1 = 6\ndylan_hockey_s2 = 6\n\nif dylan_hockey_s1 is None or dylan_hockey_s2 is None:\n print('neutral')\n\nelif dylan_hockey_s1 == dylan_hockey_s2:\n print('Entailment')\n\nelif dylan_hockey_s1 != dylan_hockey_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mira is making telescopes , each consisting of 2 lenses , 1 tube , and 1 eyepiece, \"statement 2\" :Mira is making telescopes , each consisting of less than 4 lenses , 1 tube , and 1 eyepiece, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "no_lenses_in_telescope_s1 = 2\nno_lenses_in_telescope_s2 = 4\n\nif no_lenses_in_telescope_s1 is None or no_lenses_in_telescope_s2 is None:\n print('neutral')\n\nelif no_lenses_in_telescope_s1 < no_lenses_in_telescope_s2:\n print('Entailment')\n\nelif no_lenses_in_telescope_s1 >= no_lenses_in_telescope_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a group of 90 people , 55 have visited Iceland and 33 have visited Norway, \"statement 2\" :In a group of more than 60 people , 55 have visited Iceland and 33 have visited Norway, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "no_people_in_group_s1 = 90\nno_people_in_group_s2 = 60\n\nif no_people_in_group_s1 is None or no_people_in_group_s2 is None:\n print('neutral')\n\nelif no_people_in_group_s1 > no_people_in_group_s2:\n print('Entailment')\n\nelif no_people_in_group_s1 <= no_people_in_group_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A study has found nearly 200 new species of frogs in Madagascar ., \"statement 2\" :Nearly 200 new species of amphibians found on biodiversity hotspot of Madagascar, \"options: \" Entailment or neutral?", + "Output Program": [ + "frogs_new_species_s1 = 200\nfrogs_new_species_s2 = 200\n\nif frogs_new_species_s1 is None or frogs_new_species_s2 is None:\n print('neutral')\n\nelif frogs_new_species_s1 == frogs_new_species_s2:\n print('Entailment')\n\nelif frogs_new_species_s1 != frogs_new_species_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The monthly income of Suman in the year 2009 was approximately what percentage of the monthly income of Jyothi in the year 2010 ?, \"statement 2\" :The monthly income of Suman in the year more than 1009 was approximately what percentage of the monthly income of Jyothi in the year 2010 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "suman_income_year_s1 = 2009\nsuman_income_year_s2 = 1009\n\nif suman_income_year_s1 is None or suman_income_year_s2 is None:\n print('neutral')\n\nelif suman_income_year_s1 > suman_income_year_s2:\n print('Entailment')\n\nelif suman_income_year_s1 != suman_income_year_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John ' s Bank ' s saving amount is decreased 20 % due to loan payment and current balance is Rs, \"statement 2\" :John ' s Bank ' s saving amount is decreased less than 70 % due to loan payment and current balance is Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "saving_amount_percent_decrease_s1 = 20\nsaving_amount_percent_decrease_s2 = 70\n\nif saving_amount_percent_decrease_s1 is None or saving_amount_percent_decrease_s2 is None:\n print('neutral')\n\nelif saving_amount_percent_decrease_s1 < saving_amount_percent_decrease_s2:\n print('Entailment')\n\nelif saving_amount_percent_decrease_s1 >= saving_amount_percent_decrease_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Champions League new boys Malaga sealed their passage to the knockout stage with a 1-1 draw at seven-time champions AC Milan in Group C., \"statement 2\" :Malaga qualify from Group C with 1-1 draw at AC Milan, \"options: \" Entailment or neutral?", + "Output Program": [ + "malaga_qualify_s1 = 1/1\nmalaga_qualify_s2 = 1/1\n\nif malaga_qualify_s1 is None or malaga_qualify_s2 is None:\n print('neutral')\n\nelif malaga_qualify_s1 == malaga_qualify_s2:\n print('Entailment')\n\nelif malaga_qualify_s1 != malaga_qualify_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Authorities seize 6,700 pounds of marijuana, \"statement 2\" :She said 6,700 pounds of marijuana had been seized ., \"options: \" Entailment or neutral?", + "Output Program": [ + "marijuana_pounds_s1 = 6700\nmarijuana_pounds_s2 = 6700\n\nif marijuana_pounds_s1 is None or marijuana_pounds_s2 is None:\n print('neutral')\n\nelif marijuana_pounds_s1 == marijuana_pounds_s2:\n print('Entailment')\n\nelif marijuana_pounds_s1 != marijuana_pounds_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Snyder has 4 more men and 6 more women than Leigh , how many women are in the Snyder choir ?, \"statement 2\" :If Snyder has more than 3 more men and 6 more women than Leigh , how many women are in the Snyder choir ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "snyder_men_s1 = 4\nsnyder_men_s2 = 3\n\nif snyder_men_s1 is None or snyder_men_s2 is None:\n print('neutral')\n\nelif snyder_men_s1 > snyder_men_s2:\n print('Entailment')\n\nelif snyder_men_s1 != snyder_men_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary is 16 years younger than Albert, \"statement 2\" :Mary is 36 years younger than Albert, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mary_younger_than_albert_s1 = 16\nmary_younger_than_albert_s2 = 36\n\nif mary_younger_than_albert_s1 is None or mary_younger_than_albert_s2 is None:\n print('neutral')\n\nelif mary_younger_than_albert_s1 == mary_younger_than_albert_s2:\n print('Entailment')\n\nelif mary_younger_than_albert_s1 != mary_younger_than_albert_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": They both work together for 5 days and then Sushil goes away, \"statement 2\" :They both work together for more than 4 days and then Sushil goes away, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "work_together_s1 = 5\nwork_together_s2 = 4\n\nif work_together_s1 is None or work_together_s2 is None:\n print('neutral')\n\nelif work_together_s1 > work_together_s2:\n print('Entailment')\n\nelif work_together_s1 <= work_together_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary is 14 years younger than Albert, \"statement 2\" :Mary is 34 years younger than Albert, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mary_younger_than_albert_s1 = 14\nmary_younger_than_albert_s2 = 34\n\nif mary_younger_than_albert_s1 is None or mary_younger_than_albert_s2 is None:\n print('neutral')\n\nelif mary_younger_than_albert_s1 == mary_younger_than_albert_s2:\n print('Entailment')\n\nelif mary_younger_than_albert_s1 != mary_younger_than_albert_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 58 , 5 , 25 , 59 , 30 ... and Powerball number 32 ., \"statement 2\" :The lucky numbers are : 58 , 5 , 25 , 59 , 30 ... and Powerball number 32, \"options: \" Entailment or neutral?", + "Output Program": [ + "lucky_numbers_s1 = [58 , 5 , 25 , 59 , 30]\nlucky_numbers_s2 = [58 , 5 , 25 , 59 , 30]\n\nif lucky_numbers_s1 is None or lucky_numbers_s2 is None:\n print('neutral')\n\nelif lucky_numbers_s1 == lucky_numbers_s2:\n print('Entailment')\n\nelif lucky_numbers_s1 != lucky_numbers_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After they have worked together for 12 days Matt stops and Peter completes the remaining work in 10 days, \"statement 2\" :After they have worked together for more than 12 days Matt stops and Peter completes the remaining work in 10 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "matt_stops_s1 = 12\nmatt_stops_s2 = 12+1\n\nif matt_stops_s1 is None or matt_stops_s2 is None:\n print('neutral')\n\nelif matt_stops_s1 == matt_stops_s2:\n print('Entailment')\n\nelif matt_stops_s1 != matt_stops_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Gwen drove an average speed of 15 miles per hour for the first 40 miles of a tripthen at a average speed of 30 miles / hr for the remaining 40 miles of the trip if she made no stops during the trip what was Gwen ' s avg speed in miles / hr for the entire trip, \"statement 2\" :Gwen drove an average speed of less than 75 miles per hour for the first 40 miles of a tripthen at a average speed of 30 miles / hr for the remaining 40 miles of the trip if she made no stops during the trip what was Gwen ' s avg speed in miles / hr for the entire trip, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gwen_average_speed_s1 = 15\ngwen_average_speed_s2 = 75\n\nif gwen_average_speed_s1 is None or gwen_average_speed_s2 is None:\n print('neutral')\n\nelif gwen_average_speed_s1 < gwen_average_speed_s2:\n print('Entailment')\n\nelif gwen_average_speed_s1 != gwen_average_speed_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In the city of San Durango , 60 people own cats , dogs , or rabbits, \"statement 2\" :In the city of San Durango , less than 60 people own cats , dogs , or rabbits, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_owns_cats_san_durango_s1 = 60\npeople_owns_cats_san_durango_s2 = 60\n\nif people_owns_cats_san_durango_s1 is None or people_owns_cats_san_durango_s2 is None:\n print('neutral')\n\nelif people_owns_cats_san_durango_s1 > people_owns_cats_san_durango_s2:\n print('Entailment')\n\nelif people_owns_cats_san_durango_s1 <= people_owns_cats_san_durango_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Renu can do a piece of work in 6 days , but with the help of her friend Suma , she can do it in 5 days, \"statement 2\" :Renu can do a piece of work in more than 5 days , but with the help of her friend Suma , she can do it in 5 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "no_days_renu_completes_work_s1 = 6\nno_days_renu_completes_work_s2 = 5\n\nif no_days_renu_completes_work_s1 is None or no_days_renu_completes_work_s2 is None:\n print('neutral')\n\nelif no_days_renu_completes_work_s1 > no_days_renu_completes_work_s2:\n print('Entailment')\n\nelif no_days_renu_completes_work_s1 <= no_days_renu_completes_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Christian\u2019s father and the senior ranger gathered firewood as they walked towards the lake in the park and brought with them sacks, and every sack can contain around 20.0 pieces of wood, \"statement 2\" :They were able to gather 1604.0 pieces of firewood if they gathered 80.0 sacks, \"options: \" Entailment or contradiction?", + "Output Program": [ + "pieces_of_wood = 1604\nno_sacks = 80\n\npiece_of_wood_per_sack_s1 = 20\npiece_of_wood_per_sack_s2 = pieces_of_wood / no_sacks\n\nif piece_of_wood_per_sack_s1 is None or piece_of_wood_per_sack_s2 is None:\n print('neutral')\n\nelif piece_of_wood_per_sack_s1 == piece_of_wood_per_sack_s2:\n print('Entailment')\n\nelif piece_of_wood_per_sack_s1 != piece_of_wood_per_sack_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What will be Rakesh \u2019 s share in the profit of 150000 earned at the end of three years from the start of the business in 1996 ?, \"statement 2\" :What will be Rakesh \u2019 s share in the profit of less than 750000 earned at the end of three years from the start of the business in 1996 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rakesh_profit_s1 = 150000\nrakesh_profit_s2 = 750000\n\nif rakesh_profit_s1 is None or rakesh_profit_s2 is None:\n print('neutral')\n\nelif rakesh_profit_s1 < rakesh_profit_s2:\n print('Entailment')\n\nelif rakesh_profit_s1 >= rakesh_profit_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": From a group of 6 boys & 4 girls a Committee of 4 persons is to be formed, \"statement 2\" :From a group of 2 boys & 4 girls a Committee of 4 persons is to be formed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "girls_4_and_boys_s1 = 6\ngirls_4_and_boys_s2 = 2\n\nif girls_4_and_boys_s1 is None or girls_4_and_boys_s2 is None:\n print('neutral')\n\nelif girls_4_and_boys_s1 == girls_4_and_boys_s2:\n print('Entailment')\n\nelif girls_4_and_boys_s1 != girls_4_and_boys_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Efrida and Frazer who live 13 miles apart , meet at a restaurant that is directly north of Efrida ' s home and directly east of Frazer ' s home, \"statement 2\" :Efrida and Frazer who live less than 53 miles apart , meet at a restaurant that is directly north of Efrida ' s home and directly east of Frazer ' s home, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "efrida_frazer_distance_s1 = 13\nefrida_frazer_distance_s2 = 53\n\nif efrida_frazer_distance_s1 is None or efrida_frazer_distance_s2 is None:\n print('neutral')\n\nelif efrida_frazer_distance_s1 < efrida_frazer_distance_s2:\n print('Entailment')\n\nelif efrida_frazer_distance_s1 >= efrida_frazer_distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Plans to build a $ 100 million , 13-story center have sparked an emotional debate ., \"statement 2\" :The project includes the construction of a $ 100 million , 13-story community center, \"options: \" Entailment or neutral?", + "Output Program": [ + "construction_plan_million_s1 = 100\nconstruction_plan_million_s2 = 100\n\nif construction_plan_million_s1 is None or construction_plan_million_s2 is None:\n print('neutral')\n\nelif construction_plan_million_s1 == construction_plan_million_s2:\n print('Entailment')\n\nelif construction_plan_million_s1 != construction_plan_million_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John traveled 80 % of the way from Yellow - town to Green - fields by train at an average speed of 80 miles per hour, \"statement 2\" :John traveled more than 50 % of the way from Yellow - town to Green - fields by train at an average speed of 80 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_travel_percent_by_train_s1 = 80\njohn_travel_percent_by_train_s2 = 50\n\nif john_travel_percent_by_train_s1 is None or john_travel_percent_by_train_s2 is None:\n print('neutral')\n\nelif john_travel_percent_by_train_s1 > john_travel_percent_by_train_s2:\n print('Entailment')\n\nelif john_travel_percent_by_train_s1 <= john_travel_percent_by_train_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Missy received 18 messages from Laurence , how many messages does Keith receive from Juan ?, \"statement 2\" :If Missy received 58 messages from Laurence , how many messages does Keith receive from Juan ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "missy_messages_s1 = 18\nmissy_messages_s2 = 58\n\nif missy_messages_s1 is None or missy_messages_s2 is None:\n print('neutral')\n\nelif missy_messages_s1 == missy_messages_s2:\n print('Entailment')\n\nelif missy_messages_s1 != missy_messages_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Efrida and Frazer who live 10 miles apart , meet at a restaurant that is directly north of Efrida ' s home and directly east of Frazer ' s home, \"statement 2\" :Efrida and Frazer who live less than 70 miles apart , meet at a restaurant that is directly north of Efrida ' s home and directly east of Frazer ' s home, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "efrida_frazer_distance_s1 = 10\nefrida_frazer_distance_s2 = 70\n\nif efrida_frazer_distance_s1 is None or efrida_frazer_distance_s2 is None:\n print('neutral')\n\nelif efrida_frazer_distance_s1 < efrida_frazer_distance_s2:\n print('Entailment')\n\nelif efrida_frazer_distance_s1 >= efrida_frazer_distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Susan drove an average speed of less than 45 miles per hour for the first 40 miles of a tripthen at a average speed of 60 miles / hr for the remaining 20 miles of the trip if she made no stops during the trip what was susan ' s avg speed in miles / hr for the entire trip, \"statement 2\" :Susan drove an average speed of 15 miles per hour for the first 40 miles of a tripthen at a average speed of 60 miles / hr for the remaining 20 miles of the trip if she made no stops during the trip what was susan ' s avg speed in miles / hr for the entire trip, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Susan_drove_s1 = None\nSusan_drove_s2 = 15\n\nif Susan_drove_s1 is None or Susan_drove_s2 is None:\n print('neutral')\n\nelif Susan_drove_s1 == Susan_drove_s2:\n print('Entailment')\n\nelif Susan_drove_s1 != Susan_drove_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jessica can text 85 words per minute , while Maurice can text 25 words per minute, \"statement 2\" :Jessica can text more than 75 words per minute , while Maurice can text 25 words per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jessica_can_text_s1 = 85\nJessica_can_text_s2 = 75\n\nif Jessica_can_text_s1 is None or Jessica_can_text_s2 is None:\n print('neutral')\n\nelif Jessica_can_text_s1 >= Jessica_can_text_s2:\n print('Entailment')\n\nelif Jessica_can_text_s1 != Jessica_can_text_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 4.0 squirrels in a tree with 2.0 nuts., \"statement 2\" :There are 2.0 more squirrels than nuts, \"options: \" Entailment or contradiction?", + "Output Program": [ + "squirrels_s1 = 4\nsquirrels_s2 = 2\n\nif squirrels_s1 is None or squirrels_s2 is None:\n print('neutral')\n\nelif squirrels_s1 >= squirrels_s2:\n print('Entailment')\n\nelif squirrels_s1 != squirrels_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If gas costs $ 4 / gallon , then how many miles can Dan \u2019 s car go on $ 38 of gas ?, \"statement 2\" :If gas costs $ less than 8 / gallon , then how many miles can Dan \u2019 s car go on $ 38 of gas ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gas_costs_s1 = 4\ngas_costs_s2 = 8\n\nif gas_costs_s1 is None or gas_costs_s2 is None:\n print('neutral')\n\nelif gas_costs_s1 <= gas_costs_s2:\n print('Entailment')\n\nelif gas_costs_s1 != gas_costs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At a certain automobile dealership that sells only Tajima ' s and Franks , the number of non hybrid Tajima ' s is 35 less than 3 times the number of hybrid Tajima ' s, \"statement 2\" :At a certain automobile dealership that sells only Tajima ' s and Franks , the number of non hybrid Tajima ' s is less than 65 less than 3 times the number of hybrid Tajima ' s, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nhybrid_Tajima_s1 = 35\nhybrid_Tajima_s2 = 65\n\nif hybrid_Tajima_s1 is None or hybrid_Tajima_s2 is None:\n print('neutral')\n\nelif hybrid_Tajima_s1 <= hybrid_Tajima_s2:\n print('Entailment')\n\nelif hybrid_Tajima_s1 != hybrid_Tajima_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Raviraj invested an amount of 100000000 at compound interest rate of 10 pcpa for a period of three years, \"statement 2\" :Raviraj invested an amount of less than 200000000 at compound interest rate of 10 pcpa for a period of three years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "invested_s1 = 100000000 \ninvested_s2 = 200000000\n\nif invested_s1 is None or invested_s2 is None:\n print('neutral')\n\nelif invested_s1 <= invested_s2:\n print('Entailment')\n\nelif invested_s1 != invested_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": We have a pile with 100.0 seeds in it and those seeds came from 4.0 watermelons, \"statement 2\" :25.0 seeds were there in each watermelon, \"options: \" Entailment or contradiction?", + "Output Program": [ + "pile_seeds_s1 = 100\npile_seeds_s2 = 25*4\n\nif pile_seeds_s1 is None or pile_seeds_s2 is None:\n print('neutral')\n\nelif pile_seeds_s1 == pile_seeds_s2:\n print('Entailment')\n\nelif pile_seeds_s1 != pile_seeds_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many possible ways can 4 girls ( Rebecca , Kate , Ashley ) go on a date with 4 boys ( Peter , Kyle , Sam ) ?, \"statement 2\" :How many possible ways can more than 4 girls ( Rebecca , Kate , Ashley ) go on a date with 4 boys ( Peter , Kyle , Sam ) ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "girl_date_with_boy_s1 = 4\ngirl_date_with_boy_s2 = 4+1\n\nif girl_date_with_boy_s1 is None or girl_date_with_boy_s2 is None:\n print('neutral')\n\nelif girl_date_with_boy_s1 == girl_date_with_boy_s2:\n print('Entailment')\n\nelif girl_date_with_boy_s1 != girl_date_with_boy_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John has less than 7 people in his group of friends, \"statement 2\" :John has 6 people in his group of friends, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "John_group_s1 = None\nJohn_group_s2 = 6\n\nif John_group_s1 is None or John_group_s2 is None:\n print('neutral')\n\nelif John_group_s1 == John_group_s2:\n print('Entailment')\n\nelif John_group_s1 != John_group_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Donald carries a total of 30 notes ( of either $ 10 or \u20ac 10 , ) then what is the total number of notes ( of either $ 10 or \u20ac 10 , ) they take ?, \"statement 2\" :If Donald carries a total of less than 40 notes ( of either $ 10 or \u20ac 10 , ) then what is the total number of notes ( of either $ 10 or \u20ac 10 , ) they take ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "donald_carries_notes_s1=30\ndonald_carries_notes_s1=40\n\nif donald_carries_notes_s1 is None or donald_carries_notes_s1 is None:\n print('neutral')\nelif donald_carries_notes_s1 <= donald_carries_notes_s1:\n print('Entailment')\nelif donald_carries_notes_s1 != donald_carries_notes_s1:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than more than 70 % ?, \"statement 2\" :If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than 80 % ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "time_departure_rate_S1= None \ntime_departure_rate_S2=80\n\nif time_departure_rate_S1 is None or time_departure_rate_S2 is None:\n print('neutral')\n\nelif time_departure_rate_S1 == time_departure_rate_S2:\n print('Entailment')\n\nelif time_departure_rate_S1 != time_departure_rate_S2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Another survey of less than 630 people in the town of Angie found that 60 % preferred Brand A, \"statement 2\" :Another survey of 130 people in the town of Angie found that 60 % preferred Brand A, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_in_town_s1= None\npeople_in_town_s2=130\n\nif people_in_town_s1 is None or people_in_town_s2 is None:\n print('neutral')\n\nelif people_in_town_s1 == people_in_town_s2:\n print('Entailment')\n\nelif people_in_town_s1 != people_in_town_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A runner runs the 40 miles from Marathon to Athens at a constant speed, \"statement 2\" :A runner runs the more than 20 miles from Marathon to Athens at a constant speed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "runner_speed_s1=40\nrunner_speed_s2=20\n\nif runner_speed_s1 is None or runner_speed_s2 is None:\n print('neutral')\nelif runner_speed_s1 >= runner_speed_s2:\n print('Entailment')\nelif runner_speed_s1 != runner_speed_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 40.0 boys and 117 girls on the playground., \"statement 2\" :159.0 children are on the playground, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Boys_and_girls_in_playground=40+117\nchildren_in_playground=159\n\nif Boys_and_girls_in_playground is None or children_in_playground is None:\n print('neutral')\n\nelif Boys_and_girls_in_playground == children_in_playground:\n print('Entailment')\n\nelif Boys_and_girls_in_playground != children_in_playground:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Present ages of Sameer and Anand are in the ratio of 5 : 4 respectively, \"statement 2\" :Present ages of Sameer and Anand are in the ratio of less than 6 : 4 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_ration_s1=1.25\nage_ration_s2=1.5\n\nif age_ration_s1 is None or age_ration_s2 is None:\n print('neutral')\nelif age_ration_s1 <= age_ration_s2:\n print('Entailment')\nelif age_ration_s1 != age_ration_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": One Hell 's Angels member died from his wounds , while two associated with Vagos suffered what the deputy chief described as '' non-life-threatening '' injuries ., \"statement 2\" :1 Hell 's Angels member has died , 2 Vagos members have '' non-life-threatening '' injuries, \"options: \" Entailment or neutral?", + "Output Program": [ + "dead_people_s1 = 3\ndead_people_s2 = 3\n\nif dead_people_s1 is None or dead_people_s2 is None:\n print('neutral')\n\nelif dead_people_s1 == dead_people_s2:\n print('Entailment')\n\nelif dead_people_s1 != dead_people_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Monika purchased a pressure cooker at 9 / 10 th of its selling price and sold it at 8 % more than its Selling Price, \"statement 2\" :Monika purchased a pressure cooker at less than 9 / 10 th of its selling price and sold it at 8 % more than its Selling Price, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Pressure_cooker_s1=0.9\nPressure_cooker_s2=1-0.9\n\nif Pressure_cooker_s1 is None or Pressure_cooker_s2 is None:\n print('neutral')\nelif Pressure_cooker_s1 == Pressure_cooker_s2:\n print('Entailment')\nelif Pressure_cooker_s1 != Pressure_cooker_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Susan weighs 7 pounds more than Anna does , and together they weigh a total of 127 pounds, \"statement 2\" :Susan weighs 4 pounds more than Anna does , and together they weigh a total of 127 pounds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Susan_weighs_s1 = 7\nSusan_weighs_s2 = 4\n\nif Susan_weighs_s1 is None or Susan_weighs_s2 is None:\n print('neutral')\n\nelif Susan_weighs_s1 == Susan_weighs_s2:\n print('Entailment')\n\nelif Susan_weighs_s1 != Susan_weighs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Robert purchased $ 2000 worth of US saving bonds, \"statement 2\" :Robert purchased $ 7000 worth of US saving bonds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "robert_purchased_s1=2000\nrobert_purchased_s2=7000\nif robert_purchased_s1 is None or robert_purchased_s2 is None:\n print('neutral')\n\nelif robert_purchased_s1 == robert_purchased_s2:\n print('Entailment')\n\nelif robert_purchased_s1 != robert_purchased_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": more than 100 tax added to Harini ' s pet cost, \"statement 2\" :300 tax added to Harini ' s pet cost, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "harini_tax_s1=None \nharini_tax_s2=300\nif harini_tax_s1 is None or harini_tax_s2 is None:\n print('neutral')\n\nelif harini_tax_s1 == harini_tax_s2:\n print('Entailment')\n\nelif harini_tax_s1 != harini_tax_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ashok and Pyarelal invested money together in a business and share a capital of Ashok is 1 / 9 of that of Pyarelal, \"statement 2\" :Ashok and Pyarelal invested money together in a business and share a capital of Ashok is 5 / 9 of that of Pyarelal, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "share_capital_s1 = 1/9\nshare_capital_s2 = 5/9\n\nif share_capital_s1 is None or share_capital_s2 is None:\n print('neutral')\n\nelif share_capital_s1 == share_capital_s2:\n print('Entailment')\n\nelif share_capital_s1 != share_capital_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many ways are there for 3 males and 4 females to sit ( around a circular table ) if no male should sit next to a male ( and no female next to female ) and Mary wants to sit with her back on the wall ?, \"statement 2\" :How many ways are there for less than 5 males and 4 females to sit ( around a circular table ) if no male should sit next to a male ( and no female next to female ) and Mary wants to sit with her back on the wall ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nMales_s1 = 3\nMales_s2 = 5\n\nif Males_s1 is None or Males_s2 is None:\n print('neutral')\n\nelif Males_s1 <= Males_s2:\n print('Entailment')\n\nelif Males_s1 != Males_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Couples feel more pressure to have second child than first , says one expert ., \"statement 2\" :Some couples decide to have one child, \"options: \" Entailment or neutral?", + "Output Program": [ + "Couples_s1 = 1\nCouples_s2 = 1\n\nif Couples_s1 is None or Couples_s2 is None:\n print('neutral')\n\nelif Couples_s1 == Couples_s2:\n print('Entailment')\n\nelif Couples_s1 != Couples_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The average price of a gallon of gasoline has jumped a nickel over the past two weeks and is back near the record high set earlier this year , according to a national survey released Sunday ., \"statement 2\" :Gas prices jumped 5 cents a gallon over the last two weeks ., \"options: \" Entailment or neutral?", + "Output Program": [ + "average_price_s1 = 5\naverage_price_s2 = 5\n\nif average_price_s1 is None or average_price_s2 is None:\n print('neutral')\n\nelif average_price_s1 == average_price_s2:\n print('Entailment')\n\nelif average_price_s1 != average_price_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The Soledad Fire Department said 12 ambulances and seven helicopters were dispatched to the scene ., \"statement 2\" :12 ambulances , 7 helicopters dispatched to the scene, \"options: \" Entailment or neutral?", + "Output Program": [ + "ambulances_s1 = 12\nambulances_s2 = 12\n\nif ambulances_s1 is None or ambulances_s2 is None:\n print('neutral')\n\nelif ambulances_s1 == ambulances_s2:\n print('Entailment')\n\nelif ambulances_s1 != ambulances_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary can do a piece of work in less than 56 days, \"statement 2\" :Mary can do a piece of work in 26 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mary_work_S1=None \nmary_work_S2= 26\nif mary_work_S1 is None or mary_work_s2 is None:\n print('neutral')\n\nelif mary_work_S1 == mary_work_s2:\n print('Entailment')\n\nelif mary_work_S1 != mary_work_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": You want to give 24.0 cookies to each of the 6.0 people., \"statement 2\" :You need 144.0 cookies, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Give_cookies_s1=144\nneeded_cookies_s2=144\n\nif Give_cookies_s1 is None or needed_cookies_s2 is None:\n print('neutral')\nelif Give_cookies_s1 == needed_cookies_s2:\n print('Entailment')\nelif Give_cookies_s1 != needed_cookies_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The pilot of a small aircraft with a 40 - gallon fuel tank wants to fly to Cleveland , which is 520 miles away, \"statement 2\" :The pilot of a small aircraft with a more than 40 - gallon fuel tank wants to fly to Cleveland , which is 520 miles away, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "air_craft_with_fuel=40 \nsmall_air_craft_with_fule=40+1\n\nif air_craft_with_fuel is None or small_air_craft_with_fule is None:\n print('neutral')\n\nelif air_craft_with_fuel == small_air_craft_with_fule:\n print('Entailment')\n\nelif air_craft_with_fuel != small_air_craft_with_fule:\n print('contradiction')\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Pearce got 45.3 % , election officials said ., \"statement 2\" :Pearce got 45.3 % of the vote , election officials say, \"options: \" Entailment or neutral?", + "Output Program": [ + "Pearce_got_s1=45.3\nPearce_got_s2=45.3\nif Pearce_got_s1 is None or Pearce_got_s2 is None:\n print('neutral')\nelif Pearce_got_s1 == Pearce_got_s2:\n print('Entailment')\nelif Pearce_got_s1 != Pearce_got_s2:\n print('contradiction')\n\n\n\n", + "Pearce_got_s1=45.3\nPearce_got_s2=45.3\n\nif Pearce_got_s1 is None or Pearce_got_s2 is None:\n print('neutral')\nelif Pearce_got_s1 == Pearce_got_s2:\n print('Entailment')\nelif Pearce_got_s1 != Pearce_got_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shekar scored 76 , 65 , 82 , 67 and 55 marks in Mathematics , Science , Social studies , English and Biology respectively, \"statement 2\" :Shekar scored less than 86 , 65 , 82 , 67 and 55 marks in Mathematics , Science , Social studies , English and Biology respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shekar_marks_s1=76,65,82,67,55 \nshekar_marks_s2=86,65,82,67,55\nif shekar_marks_s1 is None or shekar_marks_s2 is None:\n print('neutral')\n\nelif shekar_marks_s1 == shekar_marks_s2:\n print('Entailment')\n\nelif shekar_marks_s1 != shekar_marks_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 4.0 oranges, and there are 3.0 children, \"statement 2\" :6.0 oranges are there per child, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Oranges_s1=3\nOranges_s2=6\nif Oranges_s1 is None or Oranges_s2 is None:\n print('neutral')\n\nelif Oranges_s1 == Oranges_s2:\n print('Entailment')\n\nelif Oranges_s1 != Oranges_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John has 5 flavors of chocolate in him shop, \"statement 2\" :John has more than 1 flavors of chocolate in him shop, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jhon_has_Flavors_s1=5\njhon_has_Flavors_s1=1\n\nif jhon_has_Flavors_s1 is None or jhon_has_Flavors_s1 is None:\n print('neutral')\nelif jhon_has_Flavors_s1 >= jhon_has_Flavors_s1:\n print('Entailment')\nelif jhon_has_Flavors_s1 != jhon_has_Flavors_s1:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Albert is less than 7 times Mary \u2019 s age but only 4 times as old as Betty, \"statement 2\" :Albert is 2 times Mary \u2019 s age but only 4 times as old as Betty, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Albert_age_s1=7\nAlbert_age_s1=None \nAlbert_age_s2=2\n\nif Albert_age_s1 is None or Albert_age_s2 is None:\n print('neutral')\nelif Albert_age_s1 == Albert_age_s2:\n print('Entailment')\nelif Albert_age_s1 != Albert_age_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Steve Purchased a house for $ 15000 and he like to resell it with 20 % profit, \"statement 2\" :Steve Purchased a house for $ 25000 and he like to resell it with 20 % profit, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Steve_purchased_house_S1=15000\nsteve_purchased_house_S2=25000\n\nif Steve_purchased_house_S1 is None or steve_purchased_house_S2 is None:\n print('neutral')\n\nelif Steve_purchased_house_S1 == steve_purchased_house_S2:\n print('Entailment')\n\nelif Steve_purchased_house_S1 != steve_purchased_house_S2:\n print('contradiction')\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Every Sunday , Giri jogs 3 miles, \"statement 2\" :Every Sunday , Giri jogs less than 3 miles, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "giri_jogs_s1=3\ngiri_jogs_S2=3-1\n\nif giri_jogs_s1 is None or giri_jogs_S2 is None:\n print('neutral')\n\nelif giri_jogs_s1 == giri_jogs_S2:\n print('Entailment')\n\nelif giri_jogs_s1 != giri_jogs_S2:\n print('contradiction')\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A perfect score is 21 points and 3 games were played, \"statement 2\" :3.0 points were earned per round, \"options: \" Entailment or contradiction?", + "Output Program": [ + "score_s1 = 21\nscore_s2 = 3\n\nif score_s1 is None or score_s2 is None:\n print('neutral')\n\nelif score_s1 == score_s2:\n print('Entailment')\n\nelif score_s1 != score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If an outfit consists of 1 shirt , 1 pair of jeans , and 1 pair of sneakers , how many different outfits does Jordan have ?, \"statement 2\" :If an outfit consists of less than 3 shirt , 1 pair of jeans , and 1 pair of sneakers , how many different outfits does Jordan have ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shirt_s1 = 1\nshirt_s2 = 3\n\nif shirt_s1 is None or shirt_s2 is None:\n print('neutral')\n\nelif shirt_s1 <= shirt_s2:\n print('Entailment')\n\nelif shirt_s1 != shirt_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Molly is the owner of the Wafting Pie Company and her employees used 816.0 eggs to bake pumpkin pies this morning, and 1339.0 eggs this afternoon, \"statement 2\" :2155.0 eggs were used this day, \"options: \" Entailment or contradiction?", + "Output Program": [ + "\nUsed_eggs_s1 = 816+1339\nUsed_eggs_s2 = 2155\n\nif Used_eggs_s1 is None or Used_eggs_s2 is None:\n print('neutral')\n\nelif Used_eggs_s1 == Used_eggs_s2:\n print('Entailment')\n\nelif Used_eggs_s1 != Used_eggs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": For dinner , Sue ate 360 grams of fruit which was five times as much fruit as she ate for lunch , and three times as much fruit as she ate for breakfast, \"statement 2\" :For dinner , Sue ate less than 460 grams of fruit which was five times as much fruit as she ate for lunch , and three times as much fruit as she ate for breakfast, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sue_eat_s1=360\nSue_eat_s2=460\n\nif Sue_eat_s1 is None or Sue_eat_s2 is None:\n print('neutral')\nelif Sue_eat_s1 <= Sue_eat_s2:\n print('Entailment')\nelif Sue_eat_s1 != Sue_eat_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Latha has 10 candies , ramu has 20 candies, \"statement 2\" :Latha has 50 candies , ramu has 20 candies, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "giri_jogs_s1=3\ngiri_jogs_S2=3-1\n\nif giri_jogs_s1 is None or giri_jogs_S2 is None:\n print('neutral')\n\nelif giri_jogs_s1 == giri_jogs_S2:\n print('Entailment')\n\nelif giri_jogs_s1 != giri_jogs_S2:\n print('contradiction')\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": However , 55 percent of the sales representatives prefer to stay at Hotel XYZ and 45 percent prefer to stay at Hotel ABC, \"statement 2\" :However , less than 65 percent of the sales representatives prefer to stay at Hotel XYZ and 45 percent prefer to stay at Hotel ABC, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nsales_representatives_s1 = 55\nsales_representatives_s2 = 65\n\nif sales_representatives_s1 is None or sales_representatives_s2 is None:\n print('neutral')\n\nelif sales_representatives_s1 == sales_representatives_s2:\n print('Entailment')\n\nelif sales_representatives_s1 != sales_representatives_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The peak is 8,586 meters high ., \"statement 2\" :Kanchenjunga is 8586 meters high ., \"options: \" Entailment or neutral?", + "Output Program": [ + "peak_is_high_s1=None \nkanchenjunga_is_high_S2=8586\n\nif peak_is_high_s1 is None or kanchenjunga_is_high_S2 is None:\n print('neutral')\n\nelif peak_is_high_s1 == kanchenjunga_is_high_S2:\n print('Entailment')\n\nelif peak_is_high_s1 != kanchenjunga_is_high_S2:\n print('contradiction')\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At least 851 children living near a plant in northwestern China 's Shaanxi province were found to have excessive lead levels in their blood , according to the Xinhua news agency ., \"statement 2\" :In Hunan province , 1300 children near another plant were poisoned ., \"options: \" Entailment or neutral?", + "Output Program": [ + "children_living_s1 = None\nchildren_living_s2 = 1300\n\nif children_living_s1 is None or children_living_s2 is None:\n print('neutral')\n\nelif children_living_s1 == children_living_s2:\n print('Entailment')\n\nelif children_living_s1 != children_living_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Fairleigh Dickinson University 's Public Mind Poll found that Clinton garnered 45 % of the New Jersey electorate while Christie won 42 % ., \"statement 2\" :Poll gives Clinton 45 % of New Jersey electorate , compared to Christie 's 42 %, \"options: \" Entailment or neutral?", + "Output Program": [ + "\nClinton_garnered_s1 = 45\nClinton_garnered_s2 = 45\n\nif Clinton_garnered_s1 is None or Clinton_garnered_s2 is None:\n print('neutral')\n\nelif Clinton_garnered_s1 == Clinton_garnered_s2:\n print('Entailment')\n\nelif Clinton_garnered_s1 != Clinton_garnered_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The winners of the tie will face either Inter Milan or CSKA Moscow in the semifinals and Italian champions Inter hold a slender advantage after winning the first leg 1-0 at the San Siro ., \"statement 2\" :Diego Milito scores the only goal as Inter Milan defeat CSKA Moscow 1-0, \"options: \" Entailment or neutral?", + "Output Program": [ + "winners_s1 = None\nwinners_s2 = 1,0\n\nif winners_s1 is None or winners_s2 is None:\n print('neutral')\n\nelif winners_s1 == winners_s2:\n print('Entailment')\n\nelif winners_s1 != winners_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ashok and Pyarelal invested money together in a business and share a capital of Ashok is 1 / 9 of that of Pyarelal, \"statement 2\" :Ashok and Pyarelal invested money together in a business and share a capital of Ashok is more than 1 / 9 of that of Pyarelal, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "share_capital_s1 = 1/9\nshare_capital_s2 = 1/9+1\n\nif share_capital_s1 is None or share_capital_s2 is None:\n print('neutral')\n\nelif share_capital_s1 == share_capital_s2:\n print('Entailment')\n\nelif share_capital_s1 != share_capital_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Kim can do a work in 3 days while David can do the same work in 2 days, \"statement 2\" :Kim can do a work in more than 1 days while David can do the same work in 2 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Kim_work_s1 = 3\nKim_work_s2 = 1\n\nif Kim_work_s1 is None or Kim_work_s2 is None:\n print('neutral')\n\nelif Kim_work_s1 >= Kim_work_s2:\n print('Entailment')\n\nelif Kim_work_s1 != Kim_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sheila works 8 hours per day on Monday , Wednesday and Friday , and 6 hours per day on Tuesday and Thursday, \"statement 2\" :Sheila works 3 hours per day on Monday , Wednesday and Friday , and 6 hours per day on Tuesday and Thursday, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sheila_works_s1 = 8\nSheila_works_s2 = 3\n\nif Sheila_works_s1 is None or Sheila_works_s2 is None:\n print('neutral')\n\nelif Sheila_works_s1 == Sheila_works_s2:\n print('Entailment')\n\nelif Sheila_works_s1 != Sheila_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": While driving from City A to City B , Bob drives at a constant speed of 40 miles per hour, \"statement 2\" :While driving from City A to City B , Bob drives at a constant speed of less than 40 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Bob_speed_s1 = 40\nBob_speed_s2 = 40-1\n\nif Bob_speed_s1 is None or Bob_speed_s2 is None:\n print('neutral')\n\nelif Bob_speed_s1 == Bob_speed_s2:\n print('Entailment')\n\nelif Bob_speed_s1 != Bob_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Claire has a total of more than 76 pets consisting of gerbils and hamsters only, \"statement 2\" :Claire has a total of 86 pets consisting of gerbils and hamsters only, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "claire_has_pets=76+1 #morethan 76 pets\nclaire_has_total_pets=86\n\nif claire_has_pets is None or claire_has_total_pets is None:\n print('neutral')\n\nelif claire_has_pets == claire_has_total_pets:\n print('Entailment')\n\nelif claire_has_pets != claire_has_total_pets:\n print('contradiction')\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": '' That 's one small step for ( a ) man , one giant leap for mankind , '' Armstrong famously said, \"statement 2\" :He uttered the now-famous phrase : '' That 's one small step for ( a ) man , one giant leap for mankind . '', \"options: \" Entailment or neutral?", + "Output Program": [ + "step_s1 = 1\nstep_s2 = 1\n\nif step_s1 is None or step_s2 is None:\n print('neutral')\n\nelif step_s1 == step_s2:\n print('Entailment')\n\nelif step_s1 != step_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If they work in stretches of one hour alternately , Vikas beginning at 8 a, \"statement 2\" :If they work in stretches of one hour alternately , Vikas beginning at more than 8 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Vikas_beaginning_S1=8 \nVikas_beaginning_S2=8+1\n\nif Vikas_beaginning_S1 is None or Vikas_beaginning_S2 is None:\n print('neutral')\n\nelif Vikas_beaginning_S1 == Vikas_beaginning_S2:\n print('Entailment')\n\nelif Vikas_beaginning_S1 != Vikas_beaginning_S2:\n print('contradiction')\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Reeya obtained 50 , 60 , 70 , 80 and 80 out of 100 in different subjects , What will be the average, \"statement 2\" :Reeya obtained less than 50 , 60 , 70 , 80 and 80 out of 100 in different subjects , What will be the average, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "reeya_obtained_s1=50,6,70,80 \nreeya_obtained_s2=50,60,70,80-1\n\nif reeya_obtained_s1 is None or reeya_obtained_s2 is None:\n print('neutral')\n\nelif reeya_obtained_s1 == reeya_obtained_s2:\n print('Entailment')\n\nelif reeya_obtained_s1 != reeya_obtained_s2:\n print('contradiction')\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": During a car trip , Maria stopped to rest after she traveled 1 / 2 of the total distance to her destination, \"statement 2\" :During a car trip , Maria stopped to rest after she traveled 4 / 2 of the total distance to her destination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Maria_stopped_s1 = 1/2\nMaria_stopped_s2 = 4/2\n\nif Maria_stopped_s1 is None or Maria_stopped_s2 is None:\n print('neutral')\n\nelif Maria_stopped_s1 == Maria_stopped_s2:\n print('Entailment')\n\nelif Maria_stopped_s1 != Maria_stopped_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is 4 : 3 , After 10 Years Rahul age will be 26 years, \"statement 2\" :Ratio between Rahul and Deepak is more than 4 : 3 , After 10 Years Rahul age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ratio_s1 = 4/3\nRatio_s2 = 4/3+1\n\nif Ratio_s1 is None or Ratio_s2 is None:\n print('neutral')\n\nelif Ratio_s1 == Ratio_s2:\n print('Entailment')\n\nelif Ratio_s1 != Ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John takes a trip and drives 9 hours from Town X to Town Z at a rate of 60 miles per hour, \"statement 2\" :John takes a trip and drives more than 4 hours from Town X to Town Z at a rate of 60 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "John_drives_s1 = 9\nJohn_drives_s2 = 4\n\nif John_drives_s1 is None or John_drives_s2 is None:\n print('neutral')\n\nelif John_drives_s1 >= John_drives_s2:\n print('Entailment')\n\nelif John_drives_s1 != John_drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Morgan Construction has 4 Senior Managing Directors and 4 Managing Directors, \"statement 2\" :Morgan Construction has more than 4 Senior Managing Directors and 4 Managing Directors, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nSenior_Managing_s1 = 4\nSenior_Managing_s2 = 4+1\n\nif Senior_Managing_s1 is None or Senior_Managing_s2 is None:\n print('neutral')\n\nelif Senior_Managing_s1 == Senior_Managing_s2 :\n print('Entailment')\n\nelif Senior_Managing_s1 != Senior_Managing_s2 :\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In addition to 15 cases confirmed in Deir Ezzor province , '' two additional cases have been confirmed , one each in rural Damascus and Aleppo , confirming widespread circulation of the virus , '' the WHO said in a statement ., \"statement 2\" :It says a total of 17 polio cases have been confirmed, \"options: \" Entailment or neutral?", + "Output Program": [ + "cases_s1 = None\ncases_s2 = 17\n\nif cases_s1 is None or cases_s2 is None:\n print('neutral')\n\nelif cases_s1 == cases_s2:\n print('Entailment')\n\nelif cases_s1 != cases_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": When Professor Wang looked at the rosters for this term ' s classes , she saw that the roster for her economics class ( E ) had 24 names , the roster for her marketing class ( M ) had 28 , and the roster for her statistics class ( S ) had 18, \"statement 2\" :When Professor Wang looked at the rosters for this term ' s classes , she saw that the roster for her economics class ( E ) had less than 64 names , the roster for her marketing class ( M ) had 28 , and the roster for her statistics class ( S ) had 18, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Names_s1 = 24\nNames_s2 = 64\n\nif Names_s1 is None or Names_s2 is None:\n print('neutral')\n\nelif Names_s1 <= Names_s2:\n print('Entailment')\n\nelif Names_s1 != Names_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nagar the building were numbered from less than 5 to 100, \"statement 2\" :Nagar the building were numbered from 1 to 100, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "numbered_s1 = None\nnumbered_s2 = 1,100\n\nif numbered_s1 is None or numbered_s2 is None:\n print('neutral')\n\nelif numbered_s1 == numbered_s2:\n print('Entailment')\n\nelif numbered_s1 != numbered_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": But it has catapulted the plight of the estimated 12,000 street kids in Jakarta into public view ., \"statement 2\" :An estimated 12,000 street kids live in Jakarta, \"options: \" Entailment or neutral?", + "Output Program": [ + "street_kids_s1 = 12000\nstreet_kids_s2 = 12000\n\nif street_kids_s1 is None or street_kids_s2 is None:\n print('neutral')\n\nelif street_kids_s1 == street_kids_s2:\n print('Entailment')\n\nelif street_kids_s1 != street_kids_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 532.0 people are watching a movie in a theater and the theater has 750.0 seats, \"statement 2\" :218.0 seats are empty in the theater, \"options: \" Entailment or contradiction?", + "Output Program": [ + "\npeople_watching_movie_s1 = 750-532\npeople_watching_movie_s2 = 218\n\nif people_watching_movie_s1 is None or people_watching_movie_s2 is None:\n print('neutral')\n\nelif people_watching_movie_s1 == people_watching_movie_s2:\n print('Entailment')\n\nelif people_watching_movie_s1 != people_watching_movie_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Speed of Bruce is less than 60 m / s and that of Bhishma is 20 m / s, \"statement 2\" :Speed of Bruce is 30 m / s and that of Bhishma is 20 m / s, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bruce_speed_s1=None \nbruce_speed_s2=30\n\nif bruce_speed_s1 is None or bruce_speed_s2 is None:\n print('neutral')\n\nelif bruce_speed_s1 == bruce_speed_s2:\n print('Entailment')\n\nelif bruce_speed_s1 != bruce_speed_s2:\n print('contradiction')\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If the ratio of area of triangle ADE to that of the trapezium DECB is 144 : 25 and DE = 13 cm , then find the length of BC ., \"statement 2\" :If the ratio of area of triangle ADE to that of the trapezium DECB is less than 744 : 25 and DE = 13 cm , then find the length of BC ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "DE_s1=13\nDE_s2=13\n\nif DE_s1 is None or DE_s2 is None:\n print('neutral')\n\nelif DE_s1 == DE_s2:\n print('Entailment')\n\nelif DE_s1 != DE_s2:\n print('contradiction')\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Andy has 20 pairs of matched gloves, \"statement 2\" :Andy has less than 30 pairs of matched gloves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Andy_has_S1=20\nAndy_has_S2=30\n\nif Andy_has_S1 is None or Andy_has_S2 is None:\n print('neutral')\n\nelif Andy_has_S1 <= Andy_has_S2:\n print('Entailment')\n\nelif Andy_has_S1 != Andy_has_S2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Martha has 5 dogs and 5 cats, \"statement 2\" :Martha has 6 dogs and 5 cats, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Martha_Dog_s1 = 5\nMartha_Dog_s2 = 6\n\nif Martha_Dog_s1 is None or Martha_Dog_s2 is None:\n print('neutral')\n\nelif Martha_Dog_s1 == Martha_Dog_s2:\n print('Entailment')\n\nelif Martha_Dog_s1 != Martha_Dog_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the average speed of the whole journey was less than 56 mph , then what is Tom ' s speed driving from B to C in miles per hour ?, \"statement 2\" :If the average speed of the whole journey was 36 mph , then what is Tom ' s speed driving from B to C in miles per hour ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Average_speed_S1=None \nAverage_speed_S2=36\n\nif Average_speed_S1 is None or Average_speed_S2 is None:\n print('neutral')\n\nelif Average_speed_S1 == Average_speed_S2:\n print('Entailment')\n\nelif Average_speed_S1 != Average_speed_S2:\n print('contradiction')\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many days will it take both of them to complete the entire job , given that it would have taken David less than 52 days to complete the job alone ?, \"statement 2\" :How many days will it take both of them to complete the entire job , given that it would have taken David 12 days to complete the job alone ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "David_job_s1 = None\nDavid_job_s2 = 12\n\nif David_job_s1 is None or David_job_s2 is None:\n print('neutral')\n\nelif David_job_s1 == David_job_s2:\n print('Entailment')\n\nelif David_job_s1 != David_job_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Henry were to add less than 7 gallons of water to a tank that is already 3 / 4 full of water , the tank would be 7 / 8 full, \"statement 2\" :If Henry were to add 6 gallons of water to a tank that is already 3 / 4 full of water , the tank would be 7 / 8 full, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Henry_add_water_S1=None \nHenry_add_water_S2=6\n\nif Henry_add_water_S1 is None or Henry_add_water_S2 is None:\n print('neutral')\n\nelif Henry_add_water_S1 == Henry_add_water_S2:\n print('Entailment')\n\nelif Henry_add_water_S1 != Henry_add_water_S2:\n print('contradiction')\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sam had 9.0 dimes in his bank and his dad gave him 7.0 dimes , \"statement 2\" :Sam has 16.0 dimes now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Sam_dimes_S1=9+7\nSam_dimes_S2=16\n\nif Sam_dimes_S1 is None or Sam_dimes_S2 is None:\n print('neutral')\n\nelif Sam_dimes_S1 == Sam_dimes_S2:\n print('Entailment')\n\nelif Sam_dimes_S1 != Sam_dimes_S2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Paul got a box of 479.0 crayons for his birthday and at the end of the school year, he only had 134.0 left, \"statement 2\" :345.0 crayons had been lost or given away, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Paul_box_S1=134\nPaul_crayons_S2=479-345\n\nif Paul_box_S1 is None or Paul_crayons_S2 is None:\n print('neutral')\n\nelif Paul_box_S1 == Paul_crayons_S2:\n print('Entailment')\n\nelif Paul_box_S1 != Paul_crayons_S2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Martha has 6 dogs and 4 cats, \"statement 2\" :Martha has 3 dogs and 4 cats, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Martha_has_4_cats_and_dog_S1=6 \nMartha_has4_cats_and_dog_S2=3\n\nif Martha_has_4_cats_and_dog_S1 is None or Martha_has4_cats_and_dog_S2 is None:\n print('neutral')\n\nelif Martha_has_4_cats_and_dog_S1 == Martha_has4_cats_and_dog_S2:\n print('Entailment')\n\nelif Martha_has_4_cats_and_dog_S1 != Martha_has4_cats_and_dog_S2:\n print('contradiction')\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In how many years will the benefit Janet receives from her work double given that she receives a simple interest of 10 % per annum on the initial agreed paid benefit ., \"statement 2\" :In how many years will the benefit Janet receives from her work double given that she receives a simple interest of less than 80 % per annum on the initial agreed paid benefit ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Simple_intrest_S1=10\nSimple_intrest_S2=80\n\nif Simple_intrest_S1 is None or Simple_intrest_S2 is None:\n print('neutral')\n\nelif Simple_intrest_S1 <= Simple_intrest_S2:\n print('Entailment')\n\nelif Simple_intrest_S1 != Simple_intrest_S2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shankar got more than 26 , 83 , 77 , 68 , 86 marks ( out of 100 ) in English , Maths , physics , Biology and Chemistry, \"statement 2\" :Shankar got 66 , 83 , 77 , 68 , 86 marks ( out of 100 ) in English , Maths , physics , Biology and Chemistry, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Shanar_got_mars_S1=None #Morethan Marks Notproper number\nShanar_got_mars_S2=66,83,77,68,86\n\nif Shanar_got_mars_S1 is None or Shanar_got_mars_S2 is None:\n print('neutral')\n\nelif Shanar_got_mars_S1 <= Shanar_got_mars_S2:\n print('Entailment')\n\nelif Shanar_got_mars_S1 != Shanar_got_mars_S2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At the same time Joyce gets on an elevator on the more than 11 st floor of the same building and rides down at a rate of 53 floors per minute, \"statement 2\" :At the same time Joyce gets on an elevator on the 51 st floor of the same building and rides down at a rate of 53 floors per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Joyce_gets_s1 = None\nJoyce_gets_s2 = 51\n\nif Joyce_gets_s1 is None or Joyce_gets_s2 is None:\n print('neutral')\n\nelif Joyce_gets_s1 == Joyce_gets_s2:\n print('Entailment')\n\nelif Joyce_gets_s1 != Joyce_gets_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The fighting ended with all seven attackers dead , Afghan officials said ., \"statement 2\" :All seven militants are dead , authorities say, \"options: \" Entailment or neutral?", + "Output Program": [ + "Fightting_ended_S1=7\nall_Militants_dead_S2=7\n\nif Fightting_ended_S1 is None or all_Militants_dead_S2 is None:\n print('neutral')\n\nelif Fightting_ended_S1 <= all_Militants_dead_S2:\n print('Entailment')\n\nelif Fightting_ended_S1 != all_Militants_dead_S2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Matt and Peter can do together a piece of work in 20 days, \"statement 2\" :Matt and Peter can do together a piece of work in less than 20 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Work_in_day_s1=20\nWork_in_day_s2=20-1\n\nif Work_in_day_s1 is None or Work_in_day_s2 is None:\n print('neutral')\n\nelif Work_in_day_s1 <= Work_in_day_s2:\n print('Entailment')\n\nelif Work_in_day_s1 != Work_in_day_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A shoe store sells Adidas shoes for $ 60 each and Puma shoes for $ 50 each, \"statement 2\" :A shoe store sells Adidas shoes for $ more than 10 each and Puma shoes for $ 50 each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Adidas_shoes_s1 = 60\nAdidas_shoes_s2 = 10\n\nif Adidas_shoes_s1 is None or Adidas_shoes_s2 is None:\n print('neutral')\n\nelif Adidas_shoes_s1 >= Adidas_shoes_s2:\n print('Entailment')\n\nelif Adidas_shoes_s1 != Adidas_shoes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If today in the morning Salley makes a payment of $ 7 , for how many days , including today , will she be connected to the internet without any additional payments , given her initial balance was $ 0 ?, \"statement 2\" :If today in the morning Salley makes a payment of $ more than 1 , for how many days , including today , will she be connected to the internet without any additional payments , given her initial balance was $ 0 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Salley_makes_payment_S1=7\nSalley_makes_payment_S2=1\n\nif Salley_makes_payment_S1 is None or Salley_makes_payment_S2 is None:\n print('neutral')\n\nelif Salley_makes_payment_S1 >= Salley_makes_payment_S2:\n print('Entailment')\n\nelif Salley_makes_payment_S1 != Salley_makes_payment_S2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John ' s Bank ' s saving amount is decreased 12 % due to loan payment and current balance is Rs, \"statement 2\" :John ' s Bank ' s saving amount is decreased 32 % due to loan payment and current balance is Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Saving_amout_s1=12\nSaving_amout_s2=32\n\nif Saving_amout_s1 is None or Saving_amout_s2 is None:\n print('neutral')\n\nelif Saving_amout_s1 == Saving_amout_s2:\n print('Entailment')\n\nelif Saving_amout_s1 != Saving_amout_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Susan , John , Daisy , Tim , Matt and Kim need to be seated in more than 4 identical chairs in straight line so that Susan is seated always left to Tim, \"statement 2\" :Susan , John , Daisy , Tim , Matt and Kim need to be seated in 6 identical chairs in straight line so that Susan is seated always left to Tim, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "seated_people_on_chair_S1=None #morethan 4 chair not a proper number\nseated_people_on_chair_S2=6\n\nif seated_people_on_chair_S1 is None or seated_people_on_chair_S2 is None:\n print('neutral')\n\nelif seated_people_on_chair_S1 == seated_people_on_chair_S2:\n print('Entailment')\n\nelif seated_people_on_chair_S1 != seated_people_on_chair_S2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Two twins sisters Sita and Geeta were standing back to back and suddenly they started running in opposite directions for 8 km each, \"statement 2\" :Two twins sisters Sita and Geeta were standing back to back and suddenly they started running in opposite directions for less than 8 km each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Started_runng_s1=8\nStarted_running_s2=8-1\n\nif Started_runng_s1 is None or Started_running_s2 is None:\n print('neutral')\n\nelif Started_runng_s1 == Started_running_s2:\n print('Entailment')\n\nelif Started_runng_s1 != Started_running_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Martin bought 10 concert tickets , some at the full price of $ 2.00 per ticket , and some at a discounted price of $ 1.60 per ticket, \"statement 2\" :Martin bought less than 30 concert tickets , some at the full price of $ 2.00 per ticket , and some at a discounted price of $ 1.60 per ticket, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "marting_ticets_s1=10\nmarting_ticets_s2=30\n\nif marting_ticets_s1 is None or marting_ticets_s2 is None:\n print('neutral')\n\nelif marting_ticets_s1 <= marting_ticets_s2:\n print('Entailment')\n\nelif marting_ticets_s1 != marting_ticets_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The United Nations last night elected eight judges for the international war crimes tribunal that will try those accused of murders and other atrocities in former Yugoslavia since 1991 ., \"statement 2\" :11 judges in the Yugoslavia war tribunal were sworn in at the World court ., \"options: \" Entailment or neutral?", + "Output Program": [ + "judges_s1 = None\njudges_s2 = 11\n\nif judges_s1 is None or judges_s2 is None:\n print('neutral')\n\nelif judges_s1 == judges_s2:\n print('Entailment')\n\nelif judges_s1 != judges_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nitin borrowed some money at the rate of more than 1 % p, \"statement 2\" :Nitin borrowed some money at the rate of 6 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Borrowed_money_s1=1\nBorrowed_money_s1=None\nBorrowed_money_s2=6\n\nif Borrowed_money_s1 is None or Borrowed_money_s2 is None:\n print('neutral')\n\nelif Borrowed_money_s1 <= Borrowed_money_s2:\n print('Entailment')\n\nelif Borrowed_money_s1 != Borrowed_money_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": '' Bless these two brave troopers , '' one woman wrote ., \"statement 2\" :'' Bless these two brave troopers , '' a woman writes of the two officers, \"options: \" Entailment or neutral?", + "Output Program": [ + "brave_troopers_s1 = None\nbrave_troopers_s2 = 2\n\nif brave_troopers_s1 is None or brave_troopers_s2 is None:\n print('neutral')\n\nelif brave_troopers_s1 == brave_troopers_s2:\n print('Entailment')\n\nelif brave_troopers_s1 != brave_troopers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Costumes that cover the face , containers with more than 1 liter of liquid and bulky clothes such as vests with pockets were also prohibited ., \"statement 2\" :Three people died in the 2013 blasts and more than 260 were wounded, \"options: \" Entailment or neutral?", + "Output Program": [ + "liquid_in_containers_s1=1\nliquid_in_containers_s1=None\npeople_died_s2=2013\n\n\nif liquid_in_containers_s1 is None or people_died_s2 is None:\n print('neutral')\n\nelif liquid_in_containers_s1 == people_died_s2:\n print('Entailment')\n\nelif liquid_in_containers_s1 != people_died_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Quinones had served two tours in Iraq , said Franklin ., \"statement 2\" :Robert A. Quinones had done two tours in Iraq , his neighbor says, \"options: \" Entailment or neutral?", + "Output Program": [ + "quinones_tour_s1=2\nquinones_tour_s1=None\nquinones_tour_s2=2\n\n\nif quinones_tour_s1 is None or quinones_tour_s2 is None:\n print('neutral')\n\nelif quinones_tour_s1 == quinones_tour_s2:\n print('Entailment')\n\nelif quinones_tour_s1 != quinones_tour_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jane can make a handcrafted drum in less than 6 weeks, \"statement 2\" :Jane can make a handcrafted drum in 4 weeks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "handcrafted_drum_s1=6\nhandcrafted_drum_s1=None\nhandcrafted_drum_s2=4\n\n\nif handcrafted_drum_s1 is None or handcrafted_drum_s2 is None:\n print('neutral')\n\nelif handcrafted_drum_s1 == handcrafted_drum_s2:\n print('Entailment')\n\nelif handcrafted_drum_s1 != handcrafted_drum_s2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": David can divide his herd into 5 equal parts and also to 6 equal parts , but not to 9 equal parts, \"statement 2\" :David can divide his herd into more than 5 equal parts and also to 6 equal parts , but not to 9 equal parts, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "david_divide_herd_S1=5\ndavid_divide_herd_S2=5+1\n\n\nif david_divide_herd_S1 is None or david_divide_herd_S2 is None:\n print('neutral')\n\nelif david_divide_herd_S1 == david_divide_herd_S2:\n print('Entailment')\n\nelif david_divide_herd_S1 != david_divide_herd_S2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary and Harry enter into a partnership by investing $ 700 and $ 300 respectively, \"statement 2\" :Mary and Harry enter into a partnership by investing $ more than 400 and $ 300 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "investing_s1 = 700,300\ninvesting_s2 = 400,300\n\nif investing_s1 is None or investing_s2 is None:\n print('neutral')\n\nelif investing_s1 >= investing_s2:\n print('Entailment')\n\nelif investing_s1 != investing_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": While driving from City A to City B , Bob drives at a constant speed of 40 miles per hour, \"statement 2\" :While driving from City A to City B , Bob drives at a constant speed of more than 20 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "CityA_to_CityB_s1=40\nCityA_to_CityB_s2=20\nif CityA_to_CityB_s1 is None or CityA_to_CityB_s2 is None:\n print('neutral')\nelif CityA_to_CityB_s1 >= CityA_to_CityB_s2:\n print('Entailment')\nelif CityA_to_CityB_s1 != CityA_to_CityB_s2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bhanu spends 30 % of his income on petrol on scooter 30 % of the remaining on house rent and the balance on food, \"statement 2\" :Bhanu spends less than 60 % of his income on petrol on scooter 30 % of the remaining on house rent and the balance on food, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Bhanu_spend_s1 = 30\nBhanu_spend_s2 = 60\n\nif Bhanu_spend_s1 is None or Bhanu_spend_s2 is None:\n print('neutral')\n\nelif Bhanu_spend_s1 <= Bhanu_spend_s2:\n print('Entailment')\n\nelif Bhanu_spend_s1 != Bhanu_spend_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many days will it take both of them to complete the entire job , given that it would have taken David 12 days to complete the job alone ?, \"statement 2\" :How many days will it take both of them to complete the entire job , given that it would have taken David 42 days to complete the job alone ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "David_taken_day_s1=12\nDavid_taken_day_s2=42\n\nif David_taken_day_s1 is None or David_taken_day_s2 is None:\n print('neutral')\nelif David_taken_day_s1 == David_taken_day_s2:\n print('Entailment')\nelif David_taken_day_s1 != David_taken_day_s2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": AB = less than 60 and EC = 20, \"statement 2\" :AB = 10 and EC = 20, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "AB_60_EC_S1=20\nAB_60_EC_S1=None\nAB_10_EC_S2=20\n\nif AB_60_EC_S1 is None or AB_10_EC_S2 is None:\n print('neutral')\nelif AB_60_EC_S1 == AB_10_EC_S2:\n print('Entailment')\nelif AB_60_EC_S1 != AB_10_EC_S2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Frank is less than 75 years younger then John, \"statement 2\" :Frank is 15 years younger then John, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Frank_age_s1=75\nFrank_age_s1=None\nFrank_age_s2=15\n\nif Frank_age_s1 is None or Frank_age_s2 is None:\n print('neutral')\nelif Frank_age_s1 == Frank_age_s2:\n print('Entailment')\nelif Frank_age_s1 != Frank_age_s2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 16 stations between Mumbai and Chennai, \"statement 2\" :There are less than 26 stations between Mumbai and Chennai, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Station_betwwen_Mumbai_and_chennai_s1=16\nStation_betwwen_Mumbai_and_chennai_s2=26\n\n\nif Station_betwwen_Mumbai_and_chennai_s1 is None or Station_betwwen_Mumbai_and_chennai_s2 is None:\n print('neutral')\nelif Station_betwwen_Mumbai_and_chennai_s1 <= Station_betwwen_Mumbai_and_chennai_s2:\n print('Entailment')\nelif Station_betwwen_Mumbai_and_chennai_s1 != Station_betwwen_Mumbai_and_chennai_s2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": During a car trip , Maria stopped to rest after she traveled less than 7 / 2 of the total distance to her destination, \"statement 2\" :During a car trip , Maria stopped to rest after she traveled 1 / 2 of the total distance to her destination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Car_trip_S1=3.5\nCar_trip_S1=None\nCar_trip_S2=0.5\n\n\nif Car_trip_S1 is None or Car_trip_S2 is None:\n print('neutral')\nelif Car_trip_S1 <= Car_trip_S2:\n print('Entailment')\nelif Car_trip_S1 != Car_trip_S2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In addition to the deaths , Bakayoko said , another 49 people were injured , two seriously ., \"statement 2\" :Another 49 people are injured , Interior Minister Hamed Bakayoko says, \"options: \" Entailment or neutral?", + "Output Program": [ + "Beayoko_said_s1=49\nBeayoko_said_s2=49\n\n\nif Beayoko_said_s1 is None or Beayoko_said_s2 is None:\n print('neutral')\nelif Beayoko_said_s1 == Beayoko_said_s2:\n print('Entailment')\nelif Beayoko_said_s1 != Beayoko_said_s2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Renu can do a piece of work in 6 days , but with the help of her friend Suma , she can do it in 3 days, \"statement 2\" :Renu can do a piece of work in 8 days , but with the help of her friend Suma , she can do it in 3 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "renu_piece_of_work_s1=6\nrenu_piece_of_work_s2=8\nif renu_piece_of_work_s1 is None or renu_piece_of_work_s2 is None:\n print('neutral')\nelif renu_piece_of_work_s1 == renu_piece_of_work_s2:\n print('Entailment')\nelif renu_piece_of_work_s1 != renu_piece_of_work_s2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A starts from Delhi with a speed of 20 kmph at 7 a, \"statement 2\" :A starts from Delhi with a speed of 60 kmph at 7 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "A_speed_s1=20\nA_speed_s2=60\n\nif A_speed_s1 is None or A_speed_s2 is None:\n print('neutral')\nelif A_speed_s1 == A_speed_s2:\n print('Entailment')\nelif A_speed_s1 != A_speed_s2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The distance between their homes is less than 86 kilometers , Betty ' s walking speed is 4 km / h , and Dave ' s walking speed is 3 km / h, \"statement 2\" :The distance between their homes is 36 kilometers , Betty ' s walking speed is 4 km / h , and Dave ' s walking speed is 3 km / h, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Distance_betwen_home_s1=86 #lessthan 86 not proper number\nDistance_betwen_home_s1=None\nDistance_betwen_home_s2=36\n\nif Distance_betwen_home_s1 is None or Distance_betwen_home_s2 is None:\n print('neutral')\nelif Distance_betwen_home_s1 == Distance_betwen_home_s2:\n print('Entailment')\nelif Distance_betwen_home_s1 != Distance_betwen_home_s2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mark sold less than 81 boxes less than n and Ann sold 2 boxes less than n, \"statement 2\" :Mark sold 11 boxes less than n and Ann sold 2 boxes less than n, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mark_sold_s1=81 #lessthan n not proper number\nmark_sold_s1=None\nmark_sold_s2=11\n\nif mark_sold_s1 is None or mark_sold_s2 is None:\n print('neutral')\nelif mark_sold_s1 == mark_sold_s2:\n print('Entailment')\nelif mark_sold_s1 != mark_sold_s2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Raman mixed 24 kg of butter at Rs, \"statement 2\" :Raman mixed less than 44 kg of butter at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Raman_mixed_s1=24 \nRaman_mixed_s2=44\n\nif Raman_mixed_s1 is None or Raman_mixed_s2 is None:\n print('neutral')\nelif Raman_mixed_s1 <= Raman_mixed_s2:\n print('Entailment')\nelif Raman_mixed_s1 != Raman_mixed_s2:\n\n print('contradiction')\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 12 stations between Ernakulam and Chennai, \"statement 2\" :There are more than 12 stations between Ernakulam and Chennai, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "station_beetween_Ernaulam_s1=12 \nstation_beetween_Ernaulam_s2=12+1\n\nif station_beetween_Ernaulam_s1 is None or station_beetween_Ernaulam_s2 is None:\n print('neutral')\nelif station_beetween_Ernaulam_s1 == station_beetween_Ernaulam_s2:\n print('Entailment')\nelif station_beetween_Ernaulam_s1 != station_beetween_Ernaulam_s2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy invested a certain sum of money at 8 % p, \"statement 2\" :Sandy invested a certain sum of money at more than 2 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sandy_invested_s1=8 \nSandy_invested_s2=2\n\nif Sandy_invested_s1 is None or Sandy_invested_s2 is None:\n print('neutral')\nelif Sandy_invested_s1 >= Sandy_invested_s2:\n print('Entailment')\nelif Sandy_invested_s1 != Sandy_invested_s2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In the biology lab of ` ` Jefferson ' ' High School there are 6.48 * 10 ^ 6 germs , equally divided among 10,800 Petri dishes, \"statement 2\" :In the biology lab of ` ` Jefferson ' ' High School there are 6.48 * less than 20 ^ 6 germs , equally divided among 10,800 Petri dishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Divided_petri_dishes_s1=10800 \nDivided_petri_dishes_s2=10800\n\nif Divided_petri_dishes_s1 is None or Divided_petri_dishes_s2 is None:\n print('neutral')\nelif Divided_petri_dishes_s1 == Divided_petri_dishes_s2:\n print('Entailment')\nelif Divided_petri_dishes_s1 != Divided_petri_dishes_s2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In Kaya ' s teacher ' s desk there are 10 pink highlighters , 15 yellow highlighters , and 8 blue highlighters, \"statement 2\" :In Kaya ' s teacher ' s desk there are less than 60 pink highlighters , 15 yellow highlighters , and 8 blue highlighters, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "highlihter_on_desk_s1=33\nhighlihter_on_desk_s1=33\n\nif highlihter_on_desk_s1 is None or highlihter_on_desk_s1 is None:\n print('neutral')\nelif highlihter_on_desk_s1 == highlihter_on_desk_s1:\n print('Entailment')\nelif highlihter_on_desk_s1 != highlihter_on_desk_s1:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Annie , working alone , can do the same job in just more than 2 hours, \"statement 2\" :Annie , working alone , can do the same job in just 9 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Annie_woring_s1=2\nAnnie_woring_s1=None #morethan 2 not a prope number\nAnnie_woring_s2=9\nif Annie_woring_s1 is None or Annie_woring_s2 is None:\n print('neutral')\nelif Annie_woring_s1 == Annie_woring_s2:\n print('Entailment')\nelif Annie_woring_s1 != Annie_woring_s2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The world body said the measure was in addition to a decision to confine the entire battalion of 734 soldiers to barracks ., \"statement 2\" :U.N. confines all 734 members of Moroccan battalion to barracks, \"options: \" Entailment or neutral?", + "Output Program": [ + "battalion_s1=734\nbattalion_s1=None \nUN_confines_battalion_s1=734\nif battalion_s1 is None or battalion_s1 is None:\n print('neutral')\nelif battalion_s1 == battalion_s1:\n print('Entailment')\nelif battalion_s1 != battalion_s1:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a group of less than 70 people , 25 have visited Iceland and 23 have visited Norway, \"statement 2\" :In a group of 50 people , 25 have visited Iceland and 23 have visited Norway, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "group_of_people_s1=70\ngroup_of_people_s1=None #lessthan 70 not proper number\ngroup_pf_people_s2=50\n\nif group_of_people_s1 is None or group_pf_people_s2 is None:\n print('neutral')\nelif group_of_people_s1 == group_pf_people_s2:\n print('Entailment')\nelif group_of_people_s1 != group_pf_people_s2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": '' The Storm Prediction Center estimates the total will be around 75 when all surveys are complete , '' the weather service website said ., \"statement 2\" :Confirmed tornadoes are expected to be around 75, \"options: \" Entailment or neutral?", + "Output Program": [ + "Strom_predication_s1=75\nStrom_predication_s1=None\ntornado_expected_s1=75\n\n\nif Strom_predication_s1 is None or tornado_expected_s1 is None:\n print('neutral')\nelif Strom_predication_s1 == tornado_expected_s1:\n print('Entailment')\nelif Strom_predication_s1 != tornado_expected_s1:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": ( CNN ) -- Just another big name for Zach Galifianakis and his comic Web series , '' Between Two Ferns . '', \"statement 2\" :Brad Pitt is latest guest on comic Web series '' Between Two Ferns '', \"options: \" Entailment or neutral?", + "Output Program": [ + "comic_Web_series_s1 = None\ncomic_Web_series_s2 = 2\n\nif comic_Web_series_s1 is None or comic_Web_series_s2 is None:\n print('neutral')\n\nelif comic_Web_series_s1 == comic_Web_series_s2:\n print('Entailment')\n\nelif comic_Web_series_s1 != comic_Web_series_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In 1979 approximately 1 / 3 of the 37.3 million airline passengers traveling to or from the United States used Kennedy Airport, \"statement 2\" :In less than 1979 approximately 1 / 3 of the 37.3 million airline passengers traveling to or from the United States used Kennedy Airport, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Airline_passenger_s1=37.3\nAirline_passenger_s2=37.3-1\n\nif Airline_passenger_s1 is None or Airline_passenger_s2 is None:\n print('neutral')\nelif Airline_passenger_s1 == Airline_passenger_s2:\n print('Entailment')\nelif Airline_passenger_s1 != Airline_passenger_s2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ayesha ' s father was 34 years of age when she was born while her mother was 28 years old when her brother four years younger to her was born, \"statement 2\" :Ayesha ' s father was 54 years of age when she was born while her mother was 28 years old when her brother four years younger to her was born, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ayesha_father_Age_s1=34\nAyesha_father_Age_s2=54\n\nif Ayesha_father_Age_s1 is None or Ayesha_father_Age_s2 is None:\n print('neutral')\nelif Ayesha_father_Age_s1 == Ayesha_father_Age_s2:\n print('Entailment')\nelif Ayesha_father_Age_s1 != Ayesha_father_Age_s2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tom purchased 8 kg of apples at the rate of 70 per kg and 9 kg of mangoes at the rate of 55 per kg, \"statement 2\" :Tom purchased 5 kg of apples at the rate of 70 per kg and 9 kg of mangoes at the rate of 55 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tom_purchased_apples_s1=8\ntom_purchased_apples_S2=5\n\nif tom_purchased_apples_s1 is None or tom_purchased_apples_S2 is None:\n print('neutral')\nelif tom_purchased_apples_s1 == tom_purchased_apples_S2:\n print('Entailment')\nelif tom_purchased_apples_s1 != tom_purchased_apples_S2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jessica can text 95 words per minute , while Maurice can text 10 words per minute, \"statement 2\" :Jessica can text more than 75 words per minute , while Maurice can text 10 words per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jesscia_text_s1=95\njesscia_text_s2=75\n\nif jesscia_text_s1 is None or jesscia_text_s2 is None:\n print('neutral')\nelif jesscia_text_s1 >= jesscia_text_s2:\n print('Entailment')\nelif jesscia_text_s1 != jesscia_text_s2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy can do a job in 15 days and Molly can do the same job in 30 days, \"statement 2\" :Sandy can do a job in less than 85 days and Molly can do the same job in 30 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sandy_do_job_s1=15\nSandy_do_job_s1=85\n\nif Sandy_do_job_s1 is None or Sandy_do_job_s1 is None:\n print('neutral')\nelif Sandy_do_job_s1 >= Sandy_do_job_s1:\n print('Entailment')\nelif Sandy_do_job_s1 != Sandy_do_job_s1:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Torrealba has eluded capture at least three times before , and was wanted for questioning in a homicide investigation ., \"statement 2\" :He had eluded capture at least three times before, \"options: \" Entailment or neutral?", + "Output Program": [ + "torrealba_capture_s1=3\ntorrealba_capture_s1=None\ntorrealba_capture_s2=3\n\nif torrealba_capture_s1 is None or torrealba_capture_s2 is None:\n print('neutral')\nelif torrealba_capture_s1 == torrealba_capture_s2:\n print('Entailment')\nelif torrealba_capture_s1 != torrealba_capture_s2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Kiran travels from A to B by car and returns from B to A by cycle in 7 hours, \"statement 2\" :Kiran travels from A to B by car and returns from B to A by cycle in less than 8 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Kiran_travels_s1=7\nKiran_travels_s2=8\n\nif Kiran_travels_s1 is None or Kiran_travels_s2 is None:\n print('neutral')\nelif Kiran_travels_s1 == Kiran_travels_s2:\n print('Entailment')\nelif Kiran_travels_s1 != Kiran_travels_s2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Ashok and Pyarelal invested money together in a business and share a capital of Ashok is less than 7 / 9 of that of Pyarelal, \"statement 2\" :Ashok and Pyarelal invested money together in a business and share a capital of Ashok is 1 / 9 of that of Pyarelal, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Share_captial_of_ashok_s1=0.777\nShare_captial_of_ashok_s1=None #lessthan 7/9 not a proper number\nShare_captial_of_ashok_s2=0.1111\n\nif Share_captial_of_ashok_s1 is None or Share_captial_of_ashok_s2 is None:\n print('neutral')\nelif Share_captial_of_ashok_s1 == Share_captial_of_ashok_s2:\n print('Entailment')\nelif Share_captial_of_ashok_s1 != Share_captial_of_ashok_s2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Warner Limited has 4 Senior Managing Directors and 6 Managing Directors, \"statement 2\" :Warner Limited has 8 Senior Managing Directors and 6 Managing Directors, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "senoir_Managing_director_s1=4\nsenoir_Managing_director_s2=8\n\n\nif senoir_Managing_director_s1 is None or senoir_Managing_director_s2 is None:\n print('neutral')\nelif senoir_Managing_director_s1 == senoir_Managing_director_s2:\n print('Entailment')\nelif senoir_Managing_director_s1 != senoir_Managing_director_s2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Victor has less than 65 cups if flour , 16 cups of sugar and 8 cups of milk, \"statement 2\" :Victor has 15 cups if flour , 16 cups of sugar and 8 cups of milk, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Victor_has_s1=65\nVictor_has_s1=None #lessthan 65 not proper number\nVictor_has_s2=15\n\nif Victor_has_s1 is None or Victor_has_s2 is None:\n print('neutral')\nelif Victor_has_s1 == Victor_has_s2:\n print('Entailment')\nelif Victor_has_s1 != Victor_has_s2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Last year the US saw exports of goods and services rise 12.8 % to $ 1.44 trillion , while its imports gained 10.5 % to $ 2.2 trillion , said the Commerce Department ., \"statement 2\" :US exports rose 10.5 % ., \"options: \" Entailment or neutral?", + "Output Program": [ + "Goods_and_service_rise_s1=2.2\nGoods_and_service_rise_s1=None\nGoods_and_service_rise_s2=10.5\n\nif Goods_and_service_rise_s1 is None or Goods_and_service_rise_s2 is None:\n print('neutral')\nelif Goods_and_service_rise_s1 == Goods_and_service_rise_s2:\n print('Entailment')\nelif Goods_and_service_rise_s1 != Goods_and_service_rise_s2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many liters of blue paint must be added to 40 liters of Fuchsia to change it to Mauve paint ?, \"statement 2\" :How many liters of blue paint must be added to 10 liters of Fuchsia to change it to Mauve paint ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Liters_of_fuchsia_s1=40\nLiters_of_fuchsia_s2=10\n\n\nif Liters_of_fuchsia_s1 is None or Liters_of_fuchsia_s2 is None:\n print('neutral')\nelif Liters_of_fuchsia_s1 == Liters_of_fuchsia_s2:\n print('Entailment')\nelif Liters_of_fuchsia_s1 != Liters_of_fuchsia_s2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jane is currently 34 years old , and she stopped baby - sitting 12 years ago, \"statement 2\" :Jane is currently less than 54 years old , and she stopped baby - sitting 12 years ago, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jane_age_s1=30\nJane_age_s2=54\n\nif Jane_age_s1 is None or Jane_age_s2 is None:\n print('neutral')\nelif Jane_age_s1 <= Jane_age_s2:\n print('Entailment')\nelif Jane_age_s1 != Jane_age_s2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The Seminoles ( 13-0 ) outscored the Tigers ( 12-2 ) 24-10 after halftime to win their third national title ., \"statement 2\" :Florida State scored 24 points in the second half to win its third national title, \"options: \" Entailment or neutral?", + "Output Program": [ + "Win_third_national_title_s1=24\nWin_third_national_title_s2=24\n\nif Win_third_national_title_s1 is None or Win_third_national_title_s2 is None:\n print('neutral')\nelif Win_third_national_title_s1 == Win_third_national_title_s2:\n print('Entailment')\nelif Win_third_national_title_s1 != Win_third_national_title_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dan \u2019 s car gets less than 72 miles per gallon, \"statement 2\" :Dan \u2019 s car gets 32 miles per gallon, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dan_car_gets_s1=72\nDan_car_gets_s1=None #lessthan 72 not proper number\nDan_car_gets_s2=32\n\nif Dan_car_gets_s1 is None or Dan_car_gets_s2 is None:\n print('neutral')\nelif Dan_car_gets_s1 == Dan_car_gets_s2:\n print('Entailment')\nelif Dan_car_gets_s1 != Dan_car_gets_s2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In Kaya ' s teacher ' s desk there are 6 pink highlighters , 2 yellow highlighters , and 4 blue highlighters, \"statement 2\" :In Kaya ' s teacher ' s desk there are less than 6 pink highlighters , 2 yellow highlighters , and 4 blue highlighters, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hihliter_in_desk_s1=12\nhihliter_in_desk_s2=12-1\n\nif hihliter_in_desk_s1 is None or hihliter_in_desk_s2 is None:\n print('neutral')\nelif hihliter_in_desk_s1 == hihliter_in_desk_s2:\n print('Entailment')\nelif hihliter_in_desk_s1 != hihliter_in_desk_s2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Cindy\u2019s mom baked 41.0 cookies and Paul\u2019s dad ate 38.0, \"statement 2\" :0.0 cookies are left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "reaming_cookies_s1=3\nreaming_cooKies_s1=0\n\nif reaming_cookies_s1 is None or reaming_cooKies_s1 is None:\n print('neutral')\nelif reaming_cookies_s1 == reaming_cooKies_s1:\n print('Entailment')\nelif reaming_cookies_s1 != reaming_cooKies_s1:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Veena ranks 44 rd from the top in a class of 182, \"statement 2\" :Veena ranks 24 rd from the top in a class of 182, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "veena_rank_s1=44\nveena_rank_s2=24\n\nif veena_rank_s1 is None or veena_rank_s2 is None:\n print('neutral')\nelif veena_rank_s1 == veena_rank_s2:\n print('Entailment')\nelif veena_rank_s1 != veena_rank_s2:\n\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary works in a restaurant a maximum of 60 hours, \"statement 2\" :Mary works in a restaurant a maximum of more than 10 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Mary_works_s1=60\nMary_works_s2=10\n\nif Mary_works_s1 is None or Mary_works_s2 is None:\n print('neutral')\nelif Mary_works_s1 >= Mary_works_s2:\n print('Entailment')\nelif Mary_works_s1 != Mary_works_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nancy has 7.0 black balloons and Mary has 4.0 times more black balloons than Nancy, \"statement 2\" :Mary has 24.0 black balloons now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_balloon_s1=11+1\ntotal_balloon_s2=24\n\nif total_balloon_s1 is None or total_balloon_s2 is None:\n print('neutral')\nelif total_balloon_s1 == total_balloon_s2:\n print('Entailment')\nelif total_balloon_s1 != total_balloon_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jancy had 100 currency notes in all , some of which are of Rs 70 denomination and the remaining of Rs 50 denomination, \"statement 2\" :Jancy had less than 100 currency notes in all , some of which are of Rs 70 denomination and the remaining of Rs 50 denomination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jancy_has_currancy_notes_s1=100\njancy_has_currancy_notes_s2=100-1\n\nif jancy_has_currancy_notes_s1 is None or jancy_has_currancy_notes_s2 is None:\n print('neutral')\nelif jancy_has_currancy_notes_s1 == jancy_has_currancy_notes_s2:\n print('Entailment')\nelif jancy_has_currancy_notes_s1 != jancy_has_currancy_notes_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a group of 50 people , 25 have visited Iceland and 23 have visited Norway, \"statement 2\" :In a group of less than 70 people , 25 have visited Iceland and 23 have visited Norway, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_in_group_s1=50\npeople_in_group_s2=70\n\nif people_in_group_s1 is None or people_in_group_s2 is None:\n print('neutral')\nelif people_in_group_s1 <= people_in_group_s2:\n print('Entailment')\nelif people_in_group_s1 != people_in_group_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Gokul had less than 300 currency notes in all , some of which are of Rs 60 denomination and the remaining of Rs 50 denomination, \"statement 2\" :Gokul had 100 currency notes in all , some of which are of Rs 60 denomination and the remaining of Rs 50 denomination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gokul_has_notes_s1=300\ngokul_has_notes_s1=None #lessthan 300 Not a proper number\ngokul_has_notes_s2=100\n\nif gokul_has_notes_s1 is None or gokul_has_notes_s2 is None:\n print('neutral')\nelif gokul_has_notes_s1 == gokul_has_notes_s2:\n print('Entailment')\nelif gokul_has_notes_s1 != gokul_has_notes_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Last week James worked a total of less than 62 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"statement 2\" :Last week James worked a total of 42 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "james_worked_s1=62\njames_worked_s1=None #lessthan 62 Not a proper number\njames_worked_s2=42 \nif james_worked_s1 is None or james_worked_s2 is None:\n print('neutral')\nelif james_worked_s1 == james_worked_s2:\n print('Entailment')\nelif james_worked_s1 != james_worked_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Martin has to secure 80 % marks to clear his exam of class 9 th .\nHe got 200 marks and failed by 200 marks .\nWhat is the maximum marks ?, \"statement 2\" :Martin has to secure 70 % marks to clear his exam of class 9 th . He got 200 marks and failed by 200 marks . What is the maximum marks ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "martin_needs_marks_for_clear_exam_s1=80\nmartin_needs_marks_for_clear_exam_s2=70\n\nif martin_needs_marks_for_clear_exam_s1 is None or martin_needs_marks_for_clear_exam_s2 is None:\n print('neutral')\nelif martin_needs_marks_for_clear_exam_s1 == martin_needs_marks_for_clear_exam_s2:\n print('Entailment')\nelif martin_needs_marks_for_clear_exam_s1 != martin_needs_marks_for_clear_exam_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Zane can make a similar handcrafted drum in less than 7 weeks, \"statement 2\" :Zane can make a similar handcrafted drum in 6 weeks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "zane_make_drum_s1=7\nzane_make_drum_s1=None #lessthan 7 not proper number\nzane_make_drum_s2=6\n\nif zane_make_drum_s1 is None or zane_make_drum_s2 is None:\n print('neutral')\nelif zane_make_drum_s1 == zane_make_drum_s2:\n print('Entailment')\nelif zane_make_drum_s1 != zane_make_drum_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Hundreds of thousands took to the streets in Britain when the war began , protesting the deployment of British troops to join then-President George Bush 's '' Coalition of the Willing . '', \"statement 2\" :At the height of the war , 46,000 British troops were deployed to Iraq, \"options: \" Entailment or neutral?", + "Output Program": [ + "britin_war_s1=100\nbritin_war_s1=None\nbritish_troops=46000\n\nif britin_war_s1 is None or british_troops is None:\n print('neutral')\nelif britin_war_s1 == british_troops:\n print('Entailment')\nelif britin_war_s1 != british_troops:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The 44 parents participating in the Smithville PTA have been assigned to at least 1 of 3 committees : festival planning , classroom aid , and teacher relations, \"statement 2\" :The less than 44 parents participating in the Smithville PTA have been assigned to at least 1 of 3 committees : festival planning , classroom aid , and teacher relations, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Participating_in_PTA_s1=44\nParticipating_in_PTA_s2=44-1\n\nif Participating_in_PTA_s1 is None or Participating_in_PTA_s2 is None:\n print('neutral')\nelif Participating_in_PTA_s1 == Participating_in_PTA_s2:\n print('Entailment')\nelif Participating_in_PTA_s1 != Participating_in_PTA_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Present ages of Sameer and Anand are in the ratio of 5 : 4 respectively, \"statement 2\" :Present ages of Sameer and Anand are in the ratio of less than 5 : 4 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Age_ration_s1=1.25\nAge_ration_s2=1.25-1\n\nif Age_ration_s1 is None or Age_ration_s2 is None:\n print('neutral')\nelif Age_ration_s1 == Age_ration_s2:\n print('Entailment')\nelif Age_ration_s1 != Age_ration_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Fresh off their three week-long honeymoon , he quips , it was time for another vacation -- from each other ., \"statement 2\" :He and Lopilato , 23 , had a three week-long honeymoon, \"options: \" Entailment or neutral?", + "Output Program": [ + "Fresh_s1 = None\nFresh_s2 = 23\n\nif Fresh_s1 is None or Fresh_s2 is None:\n print('neutral')\n\nelif Fresh_s1 == Fresh_s2:\n print('Entailment')\n\nelif Fresh_s1 != Fresh_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He works at it for less than 40 days and then Rajesh finished it in 30 days, \"statement 2\" :He works at it for 20 days and then Rajesh finished it in 30 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Works_s1=40\nWorks_s1=None #lessthan 40 not proper number\nWorks_s2=20\n\nif Works_s1 is None or Works_s2 is None:\n print('neutral')\nelif Works_s1 == Works_s2:\n print('Entailment')\nelif Works_s1 != Works_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Mike can catch 30 fish in one hour , Jim can catch twice as much and Bob can catch 50 % more than Jim, \"statement 2\" :Mike can catch less than 60 fish in one hour , Jim can catch twice as much and Bob can catch 50 % more than Jim, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Mike_catch_fish_s1=30\nMike_catch_fish_s2=60\n\nif Mike_catch_fish_s1 is None or Mike_catch_fish_s2 is None:\n print('neutral')\nelif Mike_catch_fish_s1 <= Mike_catch_fish_s2:\n print('Entailment')\nelif Mike_catch_fish_s1 != Mike_catch_fish_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Martin bought 10 concert tickets , some at the full price of $ 2.00 per ticket , and some at a discounted price of $ 1.60 per ticket, \"statement 2\" :Martin bought less than 10 concert tickets , some at the full price of $ 2.00 per ticket , and some at a discounted price of $ 1.60 per ticket, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "concert_tickets_s1=10\nconcert_tickets_s2=10-1\n\nif concert_tickets_s1 is None or concert_tickets_s2 is None:\n print('neutral')\nelif concert_tickets_s1 == concert_tickets_s2:\n print('Entailment')\nelif concert_tickets_s1 != concert_tickets_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In addition to 79 fatalities , some 170 passengers were injured ., \"statement 2\" :The crash took the lives of 79 people and injured some 170, \"options: \" Entailment or neutral?", + "Output Program": [ + "injured_passeners_s1=170\ninjured_passeners_s2=170\n\nif injured_passeners_s1 is None or injured_passeners_s2 is None:\n print('neutral')\nelif injured_passeners_s1 == injured_passeners_s2:\n print('Entailment')\nelif injured_passeners_s1 != injured_passeners_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The distance between Delhi and Mathura is 130 kms, \"statement 2\" :The distance between Delhi and Mathura is less than 530 kms, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Distnace_between_delhi_and_mathura_s1=130\nDistnace_between_delhi_and_mathura_s2=530\nif Distnace_between_delhi_and_mathura_s1 is None or Distnace_between_delhi_and_mathura_s2 is None:\n print('neutral')\nelif Distnace_between_delhi_and_mathura_s1 <= Distnace_between_delhi_and_mathura_s2:\n print('Entailment')\nelif Distnace_between_delhi_and_mathura_s1 != Distnace_between_delhi_and_mathura_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At least 21 people were killed and 35 others injured at the funeral in al Taji , a mostly Sunni district , officials said ., \"statement 2\" :At least 21 people die and 35 are injured , police said, \"options: \" Entailment or neutral?", + "Output Program": [ + "killed_and_injured_people_s1=56\nkilled_and_injured_people_s2=56\n\nif killed_and_injured_people_s1 is None or killed_and_injured_people_s2 is None:\n print('neutral')\nelif killed_and_injured_people_s1 == killed_and_injured_people_s2:\n print('Entailment')\nelif killed_and_injured_people_s1 != killed_and_injured_people_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A cell phone company has a total of 7422.0 customers across the world, and they get 723.0 more customers in the United States, \"statement 2\" :They will have 8144.0 total customers , \"options: \" Entailment or contradiction?", + "Output Program": [ + "total_customer_s1=7422\ntotal_customer_s2=8144\n\nif total_customer_s1 is None or total_customer_s2 is None:\n print('neutral')\nelif total_customer_s1 == total_customer_s2:\n print('Entailment')\nelif total_customer_s1 != total_customer_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The pilot of a small aircraft with a 40 - gallon fuel tank wants to fly to Cleveland , which is 480 miles away, \"statement 2\" :The pilot of a small aircraft with a 60 - gallon fuel tank wants to fly to Cleveland , which is 480 miles away, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Small_air_craft_s1=40\nSmall_air_craft_s2=60\n\nif Small_air_craft_s1 is None or Small_air_craft_s2 is None:\n print('neutral')\nelif Small_air_craft_s1 == Small_air_craft_s2:\n print('Entailment')\nelif Small_air_craft_s1 != Small_air_craft_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Faye bought 48.0 coloring books, and she gave away 34.0 of them and then gave away 3.0 more, \"statement 2\" :She would have 11.0 coloring books left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "coloring_books_s1=11\ncoloring_books_left_s2=11\n\nif coloring_books_s1 is None or coloring_books_left_s2 is None:\n print('neutral')\nelif coloring_books_s1 == coloring_books_left_s2:\n print('Entailment')\nelif coloring_books_s1 != coloring_books_left_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Carol ' s rectangle measures 15 inches by 24 inches and Jordan ' s rectangle is 8 inches long , how wide is Jordan ' s rectangle , in inches ?, \"statement 2\" :If Carol ' s rectangle measures 65 inches by 24 inches and Jordan ' s rectangle is 8 inches long , how wide is Jordan ' s rectangle , in inches ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rectangle_measures_s1=15\nrectangle_measures_s2=65\n\nif rectangle_measures_s1 is None or rectangle_measures_s2 is None:\n print('neutral')\nelif rectangle_measures_s1 == rectangle_measures_s2:\n print('Entailment')\nelif rectangle_measures_s1 != rectangle_measures_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The Jordan Thomas Foundation has raised $ 350,000 through bracelets , charity golf tournaments and cookouts ., \"statement 2\" :Jordan Thomas Foundation has raised $ 350k to help those struggling to pay, \"options: \" Entailment or neutral?", + "Output Program": [ + "Jrodan_thomas_foundation_s1=350000\nJrodan_thomas_foundation_s1=None\nJrodan_thomas_foundation_s2=350000\n\nif Jrodan_thomas_foundation_s1 is None or Jrodan_thomas_foundation_s2 is None:\n print('neutral')\nelif Jrodan_thomas_foundation_s1 == Jrodan_thomas_foundation_s2:\n print('Entailment')\nelif Jrodan_thomas_foundation_s1 != Jrodan_thomas_foundation_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dan leaves City A 120 minutes after Cara, \"statement 2\" :Dan leaves City A less than 420 minutes after Cara, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dan_leaves_CityA_s1=120\nDan_leaves_CityA_s2=420\n\nif Dan_leaves_CityA_s1 is None or Dan_leaves_CityA_s2 is None:\n print('neutral')\nelif Dan_leaves_CityA_s1 <= Dan_leaves_CityA_s2:\n print('Entailment')\nelif Dan_leaves_CityA_s1 != Dan_leaves_CityA_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In the May 2005 general election Michael Howard failed to unseat the Labour Government , although the Conservatives did gain 33 seats , playing the most significant role in reducing Labour 's majority from 167 to 66 ., \"statement 2\" :In the May 2005 general election Conservatives got 33 seats ., \"options: \" Entailment or neutral?", + "Output Program": [ + "conservatives_gain_s1=33\nconservatives_gain_s1=None\nconservatives_gain_s2=33\n\nif conservatives_gain_s1 is None or conservatives_gain_s2 is None:\n print('neutral')\nelif conservatives_gain_s1 == conservatives_gain_s2:\n print('Entailment')\nelif conservatives_gain_s1 != conservatives_gain_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": From a group of 6 boys & 4 girls a Committee of 4 persons is to be formed, \"statement 2\" :From a group of less than 6 boys & 4 girls a Committee of 4 persons is to be formed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "group_of_4_girls_and_boy_s1=6\ngroup_of_4_girls_and_boy_s2=6-1\n\n\nif group_of_4_girls_and_boy_s1 is None or group_of_4_girls_and_boy_s2 is None:\n print('neutral')\nelif group_of_4_girls_and_boy_s1 == group_of_4_girls_and_boy_s2:\n print('Entailment')\nelif group_of_4_girls_and_boy_s1 != group_of_4_girls_and_boy_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many minutes does it take Dhoni to type less than 84 words if he types at the rate of 16 words per minute ?, \"statement 2\" :How many minutes does it take Dhoni to type 64 words if he types at the rate of 16 words per minute ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dhoni_types_s1=84\ndhoni_types_s1=None #lessthan 84 not proper number\ndhoni_types_s2=64\n\nif dhoni_types_s1 is None or dhoni_types_s2 is None:\n print('neutral')\nelif dhoni_types_s1 == dhoni_types_s2:\n print('Entailment')\nelif dhoni_types_s1 != dhoni_types_s2:\n print('contradiction')\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Packard reads at a constant rate of 4 pages every 5 minutes , how many seconds will it take him to read N pages ?, \"statement 2\" :If Packard reads at a constant rate of more than 1 pages every 5 minutes , how many seconds will it take him to read N pages ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "packard_read_s1=4\npacked_read_s2=1\n\nif packard_read_s1 is None or packed_read_s2 is None:\n print('neutral')\nelif packard_read_s1 >= packed_read_s2:\n print('Entailment')\nelif packard_read_s1 != packed_read_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Andrew purchased less than 51 kg of grapes at the rate of 98 per kg and 7 kg of mangoes at the rate of 50 per kg, \"statement 2\" :Andrew purchased 11 kg of grapes at the rate of 98 per kg and 7 kg of mangoes at the rate of 50 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Andrew_purchased_s1=51\nAndrew_purchased_s1=None #lessthan 51 not proper number\nAndrew_purchased_s2=11\n\nif Andrew_purchased_s1 is None or Andrew_purchased_s2 is None:\n print('neutral')\nelif Andrew_purchased_s1 == Andrew_purchased_s2:\n print('Entailment')\nelif Andrew_purchased_s1 != Andrew_purchased_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sreedhar and Sravan together can do a work in 25 days, \"statement 2\" :Sreedhar and Sravan together can do a work in less than 65 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sreedhar_sravan_work_together_s1=25\nSreedhar_sravan_work_together_s2=65\nif Sreedhar_sravan_work_together_s1 is None or Sreedhar_sravan_work_together_s2 is None:\n print('neutral')\nelif Sreedhar_sravan_work_together_s1 <= Sreedhar_sravan_work_together_s2:\n print('Entailment')\nelif Sreedhar_sravan_work_together_s1 != Sreedhar_sravan_work_together_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A runner runs the more than 10 miles from Marathon to Athens at a constant speed, \"statement 2\" :A runner runs the 40 miles from Marathon to Athens at a constant speed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Runner_runs_s1=10\nRunner_runs_s2=40\nif Runner_runs_s1 is None or Runner_runs_s2 is None:\n print('neutral')\nelif Runner_runs_s1 <= Runner_runs_s2:\n print('Entailment')\nelif Runner_runs_s1 != Runner_runs_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At least three people have been killed and 52 injured after Buddhist mobs rampaged through Muslim areas in southwest Sri Lanka , police say ., \"statement 2\" :At least 3 people dead , 52 injured after Buddhist mobs attacked Muslim areas in Sri Lanka, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_killed_s1=52\npeople_killed_s2=52\nif people_killed_s1 is None or people_killed_s2 is None:\n print('neutral')\nelif people_killed_s1 == people_killed_s2:\n print('Entailment')\nelif people_killed_s1 != people_killed_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Paul can dig the same well in 24 days, \"statement 2\" :Paul can dig the same well in less than 84 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "paul_can_dig_s1=24\npaul_ca_dig_s2=84\nif paul_can_dig_s1 is None or paul_ca_dig_s2 is None:\n print('neutral')\nelif paul_can_dig_s1 <= paul_ca_dig_s2:\n print('Entailment')\nelif paul_can_dig_s1 != paul_ca_dig_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John was thrice as old as Tom 6 yrs back, \"statement 2\" :John was thrice as old as Tom more than 3 yrs back, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jhon_old_as_s1=6\njhon_old_as_s2=3\nif jhon_old_as_s1 is None or jhon_old_as_s2 is None:\n print('neutral')\nelif jhon_old_as_s1 >= jhon_old_as_s2:\n print('Entailment')\nelif jhon_old_as_s1 != jhon_old_as_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A specialist firm on the New York stock Exchange was fined $ 480,350 for securities fraud by a judge who said he imposed the sentence as a deterrent ., \"statement 2\" :One judge said that the nearly half million dollar fine he levied on a specialist firm on the New York Stock Exchange was done as a deterrent ., \"options: \" Entailment or neutral?", + "Output Program": [ + "New_york_stock_exchange_s1=480350\nNew_york_stock_exchange_s2=480350\nif New_york_stock_exchange_s1 is None or New_york_stock_exchange_s2 is None:\n print('neutral')\nelif New_york_stock_exchange_s1 == New_york_stock_exchange_s2:\n print('Entailment')\nelif New_york_stock_exchange_s1 != New_york_stock_exchange_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Spain 's jobless rate is nearly 23 % overall , and nearly 50 % for youth ., \"statement 2\" :Spain has an unemployment rate of 23 %, \"options: \" Entailment or neutral?", + "Output Program": [ + "Spain_jobless_rate_s1=23\nSpain_Unemployment_rate_s1=23\nif Spain_jobless_rate_s1 is None or Spain_Unemployment_rate_s1 is None:\n print('neutral')\nelif Spain_jobless_rate_s1 == Spain_Unemployment_rate_s1:\n print('Entailment')\nelif Spain_jobless_rate_s1 != Spain_Unemployment_rate_s1:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Vijay sells a cupboard at 12 % below cost price, \"statement 2\" :Vijay sells a cupboard at less than 22 % below cost price, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Cup_bord_s1=12\nCup_bord_s2=22\nif Cup_bord_s1 is None or Cup_bord_s2 is None:\n print('neutral')\nelif Cup_bord_s1 <= Cup_bord_s2:\n print('Entailment')\nelif Cup_bord_s1 != Cup_bord_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The distance between their homes is 41 kilometers , Alice ' s walking speed is 5 km / h , and Bob ' s walking speed is 4 km / h, \"statement 2\" :The distance between their homes is less than 61 kilometers , Alice ' s walking speed is 5 km / h , and Bob ' s walking speed is 4 km / h, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_between_homes_s1=41\ndistance_between_homes_s2=60\nif distance_between_homes_s1 is None or distance_between_homes_s2 is None:\n print('neutral')\nelif distance_between_homes_s1 <= distance_between_homes_s2:\n print('Entailment')\nelif distance_between_homes_s1 != distance_between_homes_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Walker raised the specter of layoffs '' that would affect 1,500 individuals '' if the Democratic senators do not return to Madison promptly ., \"statement 2\" :He urges the 14 Democratic senators to come back to the Capitol, \"options: \" Entailment or neutral?", + "Output Program": [ + "Walker_raised_s1 = None\nWalker_raised_s2 = 14\n\nif Walker_raised_s1 is None or Walker_raised_s2 is None:\n print('neutral')\n\nelif Walker_raised_s1 == Walker_raised_s2:\n print('Entailment')\n\nelif Walker_raised_s1 != Walker_raised_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Back in the big time , Frankfurt has made a blistering start to its season , winning its first four games before being held to a 3-3 tie by champion Borussia Dortmund ., \"statement 2\" :Eintracht Frankfurt held to a 1-1 draw by Greuther Frth, \"options: \" Entailment or neutral?", + "Output Program": [ + "Frankfurt_made_s1 = None\nFrankfurt_made_s2 = 1,1\n\nif Frankfurt_made_s1 is None or Frankfurt_made_s2 is None:\n print('neutral')\n\nelif Frankfurt_made_s1 == Frankfurt_made_s2:\n print('Entailment')\n\nelif Frankfurt_made_s1 != Frankfurt_made_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the distance between their homes is 30 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"statement 2\" :If the distance between their homes is 80 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_between_homes_s1=30\ndistance_between_homes_s2=80\nif distance_between_homes_s1 is None or distance_between_homes_s2 is None:\n print('neutral')\nelif distance_between_homes_s1 <= distance_between_homes_s2:\n print('Entailment')\nelif distance_between_homes_s1 != distance_between_homes_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jessica can text more than 25 words per minute , while Maurice can text 55 words per minute, \"statement 2\" :Jessica can text 85 words per minute , while Maurice can text 55 words per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jessica_can_text_s1=25\njessica_can_text_s1=None #morethan 25 not proper number\njessica_can_text_s2=85\nif jessica_can_text_s1 is None or jessica_can_text_s2 is None:\n print('neutral')\nelif jessica_can_text_s1 == jessica_can_text_s2:\n print('Entailment')\nelif jessica_can_text_s1 != jessica_can_text_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John alone cleans the entire house in more than 1 hours, \"statement 2\" :John alone cleans the entire house in 6 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "John_cleans_s1=1\nJohn_cleans_s1=None #morethan 1 hour not proper number\nJohn_cleans_s2=6 \njessica_can_text_s2=85\nif John_cleans_s1 is None or John_cleans_s2 is None:\n print('neutral')\nelif John_cleans_s1 == John_cleans_s2:\n print('Entailment')\nelif John_cleans_s1 != John_cleans_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Arun borrowed a sum for 4 years on S, \"statement 2\" :Arun borrowed a sum for 5 years on S, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Arun_borrowed_s1=4\nArun_borrowed_s2=5\n\nif Arun_borrowed_s1 is None or Arun_borrowed_s2 is None:\n print('neutral')\nelif Arun_borrowed_s1 == Arun_borrowed_s2:\n print('Entailment')\nelif Arun_borrowed_s1 != Arun_borrowed_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Albert borrowed a total of $ more than 1000 from Brian and Milton, \"statement 2\" :Albert borrowed a total of $ 6000 from Brian and Milton, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "albert_borrowed_s1=1000\nalbert_borrowed_s1=None #morethan 1000 Not a proper number\nalbert_borrowed_s2=6000\n\nif albert_borrowed_s1 is None or albert_borrowed_s2 is None:\n print('neutral')\nelif albert_borrowed_s1 == albert_borrowed_s2:\n print('Entailment')\nelif albert_borrowed_s1 != albert_borrowed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained 76 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained more than 66 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dacid_obtained_s1 = 76,65,82,67,85\nDacid_obtained_s2 = 66,65,82,67,85\n\nif Dacid_obtained_s1 is None or Dacid_obtained_s2 is None:\n print('neutral')\n\nelif Dacid_obtained_s1 >= Dacid_obtained_s2:\n print('Entailment')\n\nelif Dacid_obtained_s1 != Dacid_obtained_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The catch brings to 20 the number of cannons that have been salvaged from the ship ., \"statement 2\" :A total of 20 cannons have been recovered from the Queen Anne 's Revenge, \"options: \" Entailment or neutral?", + "Output Program": [ + "Number_of_cannons_s1=20\nNumber_of_cannons_s1=None\nNumber_of_cannons_s2=20\n\nif Number_of_cannons_s1 is None or Number_of_cannons_s2 is None:\n print('neutral')\nelif Number_of_cannons_s1 == Number_of_cannons_s2:\n print('Entailment')\nelif Number_of_cannons_s1 != Number_of_cannons_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ratio between the number of sheep and the number of horses at the Stewart farm is 5 to 7 , If each horse is fed 230 ounces of horse food per day and the farm needs a total 12,880 ounces of horse food per day , what is the number of sheep in the farm ?, \"statement 2\" :The ratio between the number of sheep and the number of horses at the Stewart farm is more than 5 to 7 , If each horse is fed 230 ounces of horse food per day and the farm needs a total 12,880 ounces of horse food per day , what is the number of sheep in the farm ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_sheep_s1 = 5,7\nnumber_of_sheep_s2 = 5,7+1\n\nif number_of_sheep_s1 is None or number_of_sheep_s2 is None:\n print('neutral')\n\nelif number_of_sheep_s1 == number_of_sheep_s2:\n print('Entailment')\n\nelif number_of_sheep_s1 != number_of_sheep_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": All 11 remains were of African-American women ., \"statement 2\" :Anthony Sowell accused in deaths of 11 women, \"options: \" Entailment or neutral?", + "Output Program": [ + "African_American_women_s1 = None\nAfrican_American_women_s2 = 11\n\nif African_American_women_s1 is None or African_American_women_s2 is None:\n print('neutral')\n\nelif African_American_women_s1 == African_American_women_s2:\n print('Entailment')\n\nelif African_American_women_s1 != African_American_women_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jane started baby - sitting when she was 16 years old, \"statement 2\" :Jane started baby - sitting when she was 36 years old, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jane_started_baby_s1 = 16\nJane_started_baby_s2 = 36\n\nif Jane_started_baby_s1 is None or Jane_started_baby_s2 is None:\n print('neutral')\n\nelif Jane_started_baby_s1 == Jane_started_baby_s2:\n print('Entailment')\n\nelif Jane_started_baby_s1 != Jane_started_baby_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Andrew purchased less than 84 kg of grapes at the rate of 54 per kg and 10 kg of mangoes at the rate of 62 per kg, \"statement 2\" :Andrew purchased 14 kg of grapes at the rate of 54 per kg and 10 kg of mangoes at the rate of 62 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Andrew_purchased_s1 = None\nAndrew_purchased_s2 = 14\n\nif Andrew_purchased_s1 is None or Andrew_purchased_s2 is None:\n print('neutral')\n\nelif Andrew_purchased_s1 == Andrew_purchased_s2:\n print('Entailment')\n\nelif Andrew_purchased_s1 != Andrew_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Zack has less than 4 red fish , 5 yellow fish and 7 green fish, \"statement 2\" :Zack has 3 red fish , 5 yellow fish and 7 green fish, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Zack_s1 = None\nZack_s2 = 3\n\nif Zack_s1 is None or Zack_s2 is None:\n print('neutral')\n\nelif Zack_s1 == Zack_s2:\n print('Entailment')\n\nelif Zack_s1 != Zack_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The total of the ages of Amar , Akbar and Anthony is 80 years, \"statement 2\" :The total of the ages of Amar , Akbar and Anthony is more than 30 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ages_of_Amar_Akbar_and_Anthony_s1 = 80\nages_of_Amar_Akbar_and_Anthony_s2 = 30\n\nif ages_of_Amar_Akbar_and_Anthony_s1 is None or ages_of_Amar_Akbar_and_Anthony_s2 is None:\n print('neutral')\n\nelif ages_of_Amar_Akbar_and_Anthony_s1 >= ages_of_Amar_Akbar_and_Anthony_s2:\n print('Entailment')\n\nelif ages_of_Amar_Akbar_and_Anthony_s1 != ages_of_Amar_Akbar_and_Anthony_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If she worked one 8 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"statement 2\" :If she worked one more than 1 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "she_worked_s1 = 8\nshe_worked_s2 = 1\n\nif she_worked_s1 is None or she_worked_s2 is None:\n print('neutral')\n\nelif she_worked_s1 >= she_worked_s2:\n print('Entailment')\n\nelif she_worked_s1 != she_worked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rajesh is 20 years old and Mary is 30 years old, \"statement 2\" :Rajesh is less than 70 years old and Mary is 30 years old, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Rajesh_s1 = 20\nRajesh_s2 = 70\n\nif Rajesh_s1 is None or Rajesh_s2 is None:\n print('neutral')\n\nelif Rajesh_s1 <= Rajesh_s2:\n print('Entailment')\n\nelif Rajesh_s1 != Rajesh_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary can do a piece of work in less than 72 days, \"statement 2\" :Mary can do a piece of work in 12 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Mary_work_s1 = None\nMary_work_s2 = 12\n\nif Mary_work_s1 is None or Mary_work_s2 is None:\n print('neutral')\n\nelif Mary_work_s1 == Mary_work_s2:\n print('Entailment')\n\nelif Mary_work_s1 != Mary_work_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Dan works alone for 12 hours and then stops , how many hours will it take Annie , working alone , to complete the job ?, \"statement 2\" :If Dan works alone for 42 hours and then stops , how many hours will it take Annie , working alone , to complete the job ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dan_works_s1 = 12\nDan_works_s2 = 42\n\nif Dan_works_s1 is None or Dan_works_s2 is None:\n print('neutral')\n\nelif Dan_works_s1 == Dan_works_s2:\n print('Entailment')\n\nelif Dan_works_s1 != Dan_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 1380 , Deepak ' s share is :, \"statement 2\" :3380 , Deepak ' s share is :, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Deepak_share_s1 = 1380\nDeepak_share_s2 = 3380\n\nif Deepak_share_s1 is None or Deepak_share_s2 is None:\n print('neutral')\n\nelif Deepak_share_s1 == Deepak_share_s2:\n print('Entailment')\n\nelif Deepak_share_s1 != Deepak_share_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the distance between their homes is 54 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h, \"statement 2\" :If the distance between their homes is 44 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_between_their_homes_s1 = 54\ndistance_between_their_homes_s2 = 44\n\nif distance_between_their_homes_s1 is None or distance_between_their_homes_s2 is None:\n print('neutral')\n\nelif distance_between_their_homes_s1 == distance_between_their_homes_s2:\n print('Entailment')\n\nelif distance_between_their_homes_s1 != distance_between_their_homes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John paid a 15 % tip over the original price of the dish , while Jane paid the tip over the discounted price for the coupon, \"statement 2\" :John paid a more than 15 % tip over the original price of the dish , while Jane paid the tip over the discounted price for the coupon, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "John_paid_s1 = 15\nJohn_paid_s2 = 15+1\n\nif John_paid_s1 is None or John_paid_s2 is None:\n print('neutral')\n\nelif John_paid_s1 == John_paid_s2:\n print('Entailment')\n\nelif John_paid_s1 != John_paid_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lucy has 212.0 fish and then she buys 280.0 more fish, \"statement 2\" :She has 496.0 fish now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Lucy_fish_s1 = 212\nLucy_fish_s2 = 496\n\nif Lucy_fish_s1 is None or Lucy_fish_s2 is None:\n print('neutral')\n\nelif Lucy_fish_s1 == Lucy_fish_s2:\n print('Entailment')\n\nelif Lucy_fish_s1 != Lucy_fish_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Christine and Siri have 21 rs between them, \"statement 2\" :Christine and Siri have less than 81 rs between them, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Christine_and_Siri_s1 = 21\nChristine_and_Siri_s2 = 81\n\nif Christine_and_Siri_s1 is None or Christine_and_Siri_s2 is None:\n print('neutral')\n\nelif Christine_and_Siri_s1 <= Christine_and_Siri_s2:\n print('Entailment')\n\nelif Christine_and_Siri_s1 != Christine_and_Siri_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In Alagoas , more than 11,000 homes have been destroyed and another 7,000 damaged , Agencia Brasil said ., \"statement 2\" :More than 18,000 homes damaged or destroyed in Alagoas state, \"options: \" Entailment or neutral?", + "Output Program": [ + "\nAlagoas_s1 = 7000\nAlagoas_s2 = 18000\n\nif Alagoas_s1 is None or Alagoas_s2 is None:\n print('neutral')\n\nelif Alagoas_s1 <= Alagoas_s2:\n print('Entailment')\n\nelif Alagoas_s1 != Alagoas_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After 18 minutes , Cathy stops to stretch, \"statement 2\" :After 88 minutes , Cathy stops to stretch, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Cathy_stops_s1 = 18\nCathy_stops_s2 = 88\n\nif Cathy_stops_s1 is None or Cathy_stops_s2 is None:\n print('neutral')\n\nelif Cathy_stops_s1 == Cathy_stops_s2:\n print('Entailment')\n\nelif Cathy_stops_s1 != Cathy_stops_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Tina Works independently at the job for 8 hours and then Ann works\nindependently , how many hours will it take Ann to complete the remainder of the jobs ?, \"statement 2\" :If Tina Works independently at the job for more than 5 hours and then Ann works independently , how many hours will it take Ann to complete the remainder of the jobs ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Tina_Works_s1 = 8\nTina_Works_s2 = 5\n\nif Tina_Works_s1 is None or Tina_Works_s2 is None:\n print('neutral')\n\nelif Tina_Works_s1 >= Tina_Works_s2:\n print('Entailment')\n\nelif Tina_Works_s1 != Tina_Works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jaclyn buys $ less than 80 000 worth of debentures in a company, \"statement 2\" :Jaclyn buys $ 20 000 worth of debentures in a company, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jaclyn_buys_s1 = None\nJaclyn_buys_s2 = 20000\n\nif Jaclyn_buys_s1 is None or Jaclyn_buys_s2 is None:\n print('neutral')\n\nelif Jaclyn_buys_s1 == Jaclyn_buys_s2:\n print('Entailment')\n\nelif Jaclyn_buys_s1 != Jaclyn_buys_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Aarti had prior experience in that route and mentioned that the speed of stream was 4 kmph, \"statement 2\" :Aarti had prior experience in that route and mentioned that the speed of stream was more than 1 kmph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_of_stream_s1 = 4\nspeed_of_stream_s2 = 1\n\nif speed_of_stream_s1 is None or speed_of_stream_s2 is None:\n print('neutral')\n\nelif speed_of_stream_s1 >= speed_of_stream_s2:\n print('Entailment')\n\nelif speed_of_stream_s1 != speed_of_stream_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Indonesia 's Ministry of Transport has announced a full investigation and suspended Indonesia AirAsia flights between the two cities ., \"statement 2\" :Indonesian officials announce a full investigation , suspend AirAsia 's service between the two cities, \"options: \" Entailment or neutral?", + "Output Program": [ + "AirAsia_flights_s1 = 2\nAirAsia_flights_s2 = 2\n\nif AirAsia_flights_s1 is None or AirAsia_flights_s2 is None:\n print('neutral')\n\nelif AirAsia_flights_s1 == AirAsia_flights_s2:\n print('Entailment')\n\nelif AirAsia_flights_s1 != AirAsia_flights_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Maria picked 48.0 carrots from her garden, and she threw out 11.0 of them and then picked 15.0 more the next day, \"statement 2\" :She would have 52.0 carrots total, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Maria_picked_s1 = 48\nMaria_picked_s2 = 52\n\nif Maria_picked_s1 is None or Maria_picked_s2 is None:\n print('neutral')\n\nelif Maria_picked_s1 == Maria_picked_s2:\n print('Entailment')\n\nelif Maria_picked_s1 != Maria_picked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sam purchased more than 10 dozens of toys at the rate of Rs, \"statement 2\" :Sam purchased 20 dozens of toys at the rate of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sam_purchased_s1 = None\nSam_purchased_s2 = 20\n\nif Sam_purchased_s1 is None or Sam_purchased_s2 is None:\n print('neutral')\n\nelif Sam_purchased_s1 == Sam_purchased_s2:\n print('Entailment')\n\nelif Sam_purchased_s1 != Sam_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 20.0 ducks are swimming in a lake and 13.0 ducks leave, \"statement 2\" :11.0 ducks are swimming in the lake, \"options: \" Entailment or contradiction?", + "Output Program": [ + "ducks_s1 = 20\nducks_s2 = 11\n\nif ducks_s1 is None or ducks_s2 is None:\n print('neutral')\n\nelif ducks_s1 == ducks_s2:\n print('Entailment')\n\nelif ducks_s1 != ducks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Can the BAT , which stands for buoyant airborne turbine , help bring life-saving electricity to an estimated 1 billion people in rural areas where power is unavailable ?, \"statement 2\" :Worldwide , an estimated 1 billion rural residents have no access to electricity, \"options: \" Entailment or neutral?", + "Output Program": [ + "airborne_turbine_s1 = None\nairborne_turbine_s2 = 1\n\nif airborne_turbine_s1 is None or airborne_turbine_s2 is None:\n print('neutral')\n\nelif airborne_turbine_s1 == airborne_turbine_s2:\n print('Entailment')\n\nelif airborne_turbine_s1 != airborne_turbine_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John ' s Bank ' s saving amount is decreased 50 % due to loan payment and current balance is Rs, \"statement 2\" :John ' s Bank ' s saving amount is decreased more than 20 % due to loan payment and current balance is Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_saving_amount_decreased_s1=50\njohn_saving_amount_decreased_s2=20\nif john_saving_amount_decreased_s1 is None or john_saving_amount_decreased_s2 is None:\n print('Neutral')\nelif john_saving_amount_decreased_s1 >= john_saving_amount_decreased_s2 :\n print('Entailment')\nelse :\n print('Contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Two men , Vikas and Vishal , working separately can mow a field in 8 and 12 hours respectively, \"statement 2\" :Two men , Vikas and Vishal , working separately can mow a field in more than 1 and 12 hours respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Vikas_and_Visha_s1 = 8,12\nVikas_and_Visha_s2 = 1,12\n\nif Vikas_and_Visha_s1 is None or Vikas_and_Visha_s2 is None:\n print('neutral')\n\nelif Vikas_and_Visha_s1 >= Vikas_and_Visha_s2:\n print('Entailment')\n\nelif Vikas_and_Visha_s1 != Vikas_and_Visha_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The city 's al-Jalaa Hospital said it received the bodies of three soldiers killed in fighting that broke out in the eastern Sidi Khalifa district ., \"statement 2\" :Hospital says it received bodies of 3 soldiers killed in fighting in the eastern part of the city, \"options: \" Entailment or neutral?", + "Output Program": [ + "recieved_bodies_of_soldiers_s1=3 \nrecieved_bodies_of_soldiers_s2=3\nif recieved_bodies_of_soldiers_s1 is None or recieved_bodies_of_soldiers_s2 is None:\n print('Neutral')\nelif recieved_bodies_of_soldiers_s1 == recieved_bodies_of_soldiers_s2 :\n print('Entailment')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nitin borrowed some money at the rate of 6 % p, \"statement 2\" :Nitin borrowed some money at the rate of less than 8 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "nitin_borrowed_money_s1=6\nnitin_borrowed_money_s2=8\nif nitin_borrowed_money_s1 is None or nitin_borrowed_money_s2 is None:\n print('neutral')\nelif nitin_borrowed_money_s1 <= nitin_borrowed_money_s2:\n print('Entailment')\nelif nitin_borrowed_money_s1 != nitin_borrowed_money_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joe drives less than 580 miles at 60 miles per hour , and then he drives the next 120 miles at 40 miles per hour, \"statement 2\" :Joe drives 180 miles at 60 miles per hour , and then he drives the next 120 miles at 40 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "joe_drives_s1=580\njoe_drives_s1=None #lessthan 580 not proper number\njoe_drives_s2=180\nif joe_drives_s1 is None or joe_drives_s2 is None:\n print('neutral')\nelif joe_drives_s1 == joe_drives_s2:\n print('Entailment')\nelif joe_drives_s1 != joe_drives_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Matthew ' s walking rate was more than 1 km per hour and Johnny ' s was 4 km per hour , how many km had Johnny walked when they met ?, \"statement 2\" :Matthew ' s walking rate was 3 km per hour and Johnny ' s was 4 km per hour , how many km had Johnny walked when they met ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "matthew_waling_rate_s1=1\nmatthew_waling_rate_s1=None\nmatthew_waling_rate_s2=3\n\nif matthew_waling_rate_s1 is None or matthew_waling_rate_s2 is None:\n print('neutral')\nelif matthew_waling_rate_s1 == matthew_waling_rate_s2:\n print('Entailment')\nelif matthew_waling_rate_s1 != matthew_waling_rate_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": `` It was her blunders that made us know that she was one of us . '', \"statement 2\" :Godfather : `` Her blunders ... made us know that she was one of us '', \"options: \" Entailment or neutral?", + "Output Program": [ + "blunders_s1 = 1\nblunders_s2 = 1\n\nif blunders_s1 is None or blunders_s2 is None:\n print('neutral')\n\nelif blunders_s1 == blunders_s2:\n print('Entailment')\n\nelif blunders_s1 != blunders_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Carl drove from his home to the beach at an average speed of more than 40 kilometers per hour and returned home by the same route at an average speed of 70 kilometers per hour, \"statement 2\" :Carl drove from his home to the beach at an average speed of 80 kilometers per hour and returned home by the same route at an average speed of 70 kilometers per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\ncarl_averae_Speed_s1=None \ncarl_averae_Speed_s2=80\n\nif carl_averae_Speed_s1 is None or carl_averae_Speed_s2 is None:\n print('neutral')\nelif carl_averae_Speed_s1 == carl_averae_Speed_s2:\n print('Entailment')\nelif carl_averae_Speed_s1 != carl_averae_Speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Series Problem like less than 7 12 x 44 46 132 134 begin of the Skype highlighting 44 46 132 134 end of the Skype highlighting, \"statement 2\" :Series Problem like 4 12 x 44 46 132 134 begin of the Skype highlighting 44 46 132 134 end of the Skype highlighting, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nSeries_Problem_s1 = None\nSeries_Problem_s2 = 44,46,132,134\n\nif Series_Problem_s1 is None or Series_Problem_s2 is None:\n print('neutral')\n\nelif Series_Problem_s1 == Series_Problem_s2:\n print('Entailment')\n\nelif Series_Problem_s1 != Series_Problem_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rahim bought 65 books for Rs, \"statement 2\" :Rahim bought less than 65 books for Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Rahim_bouht_book_s1=65\nRahim_bouht_book_s2=65-1\n\nif Rahim_bouht_book_s1 is None or Rahim_bouht_book_s2 is None:\n print('neutral')\nelif Rahim_bouht_book_s1 == Rahim_bouht_book_s2:\n print('Entailment')\nelif Rahim_bouht_book_s1 != Rahim_bouht_book_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Robin uploaded 35.0 pictures from her phone and 5.0 from her camera to facebook, and she sorted the pics into 5.0 different albums with the same amount of pics in each album, \"statement 2\" :6.0 pictures were in each of the albums, \"options: \" Entailment or contradiction?", + "Output Program": [ + "robin_uploaded_pictures_s1=35\nPictures_in_each_album_s2=6\n\nif robin_uploaded_pictures_s1 is None or Pictures_in_each_album_s2 is None:\n print('neutral')\nelif robin_uploaded_pictures_s1 == Pictures_in_each_album_s2:\n print('Entailment')\nelif robin_uploaded_pictures_s1 != Pictures_in_each_album_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The total of the ages of Amar , Akbar and Anthony is less than 70 years, \"statement 2\" :The total of the ages of Amar , Akbar and Anthony is 40 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ages_of_amar_and_akbar_s1=70\nages_of_amar_and_akbar_s1=None #lessthan 70 not proper number\nages_of_amar_and_akbar_s2=40\n\nif ages_of_amar_and_akbar_s1 is None or ages_of_amar_and_akbar_s2 is None:\n print('neutral')\nelif ages_of_amar_and_akbar_s1 == ages_of_amar_and_akbar_s2:\n print('Entailment')\nelif ages_of_amar_and_akbar_s1 != ages_of_amar_and_akbar_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Stacy has a 63 page history paper due in 3 days, \"statement 2\" :Stacy has a more than 53 page history paper due in 3 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Stacy_has_history_paper_s1=63\nStacy_has_history_paper_s2=53\n\nif Stacy_has_history_paper_s1 is None or Stacy_has_history_paper_s2 is None:\n print('neutral')\nelif Stacy_has_history_paper_s1 >= Stacy_has_history_paper_s2:\n print('Entailment')\nelif Stacy_has_history_paper_s1 != Stacy_has_history_paper_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Stacy has a less than 73 page history paper due in 7 days, \"statement 2\" :Stacy has a 63 page history paper due in 7 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Stacy_has_history_paper_s1=73\nStacy_has_history_paper_s1=None #lessthan 70 not proper number\nStacy_has_history_paper_s2=63\n\nif Stacy_has_history_paper_s1 is None or Stacy_has_history_paper_s2 is None:\n print('neutral')\nelif Stacy_has_history_paper_s1 == Stacy_has_history_paper_s2:\n print('Entailment')\nelif Stacy_has_history_paper_s1 != Stacy_has_history_paper_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mike bought some toys and he bought marbles for $9.05, a football for $4.95, and received $6.52 for returning a baseball, \"statement 2\" :The net amount Mike spent on toys is 7.48, \"options: \" Entailment or contradiction?", + "Output Program": [ + "mike_bought_toys_s1=9.05+4.95-6.52\nmike_spent_on_toys_s2=7.48\n\nif mike_bought_toys_s1 is None or mike_spent_on_toys_s2 is None:\n print('neutral')\nelif mike_bought_toys_s1 == mike_spent_on_toys_s2:\n print('Entailment')\nelif mike_bought_toys_s1 != mike_spent_on_toys_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Aaron will jog from home at less than 7 miles per hour and then walk back home by the same route at 4 miles per hour, \"statement 2\" :Aaron will jog from home at 2 miles per hour and then walk back home by the same route at 4 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Aaron_jog_s1=None \nAaron_jog_s2=2\n\nif Aaron_jog_s1 is None or Aaron_jog_s2 is None:\n print('neutral')\nelif Aaron_jog_s1 == Aaron_jog_s2:\n print('Entailment')\nelif Aaron_jog_s1 != Aaron_jog_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A restaurant made 9.0 hamburgers and 4.0 hot dogs to serve during lunch and then the restaurant made 3.0 more hamburgers , \"statement 2\" :12.0 hamburgers were made , \"options: \" Entailment or contradiction?", + "Output Program": [ + "restaurant_made_hamurger_s1=12\nmade_hamurger_s2=12\n\nif restaurant_made_hamurger_s1 is None or made_hamurger_s2 is None:\n print('neutral')\nelif restaurant_made_hamurger_s1 == made_hamurger_s2:\n print('Entailment')\nelif restaurant_made_hamurger_s1 != made_hamurger_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Tom received $ 800 more than Jerry did , what was the profit made by their business in that year ?, \"statement 2\" :If Tom received $ more than 400 more than Jerry did , what was the profit made by their business in that year ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tom_received_s1=800\ntom_received_s2=400\n\nif tom_received_s1 is None or tom_received_s2 is None:\n print('neutral')\nelif tom_received_s1 >= tom_received_s2:\n print('Entailment')\nelif tom_received_s1 != tom_received_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": All three brothers are serving in Bravo Company , 1st Battalion , 121st Infantry Regiment of the 48th Brigade , Georgia Army National Guard ., \"statement 2\" :Nevada Army National Guard unit has nine sets of brothers serving in Afghanistan, \"options: \" Entailment or neutral?", + "Output Program": [ + "Bravo_Company_s1 = 121\nBravo_Company_s2 = None\n\nif Bravo_Company_s1 is None or Bravo_Company_s2 is None:\n print('neutral')\n\nelif Bravo_Company_s1 == Bravo_Company_s2:\n print('Entailment')\n\nelif Bravo_Company_s1 != Bravo_Company_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If gas costs $ 4 / gallon , then how many miles can Dan \u2019 s car go on $ 58 of gas ?, \"statement 2\" :If gas costs $ less than 6 / gallon , then how many miles can Dan \u2019 s car go on $ 58 of gas ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Gas_cost_s1=4\nGas_cost_s2=6\n\nif Gas_cost_s1 is None or Gas_cost_s2 is None:\n print('neutral')\nelif Gas_cost_s1 <= Gas_cost_s2:\n print('Entailment')\nelif Gas_cost_s1 != Gas_cost_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Reena and Shaloo are partners in a business , Reena invests Rs , 35,000 for more than 4 months and Shaloo invests Rs, \"statement 2\" :Reena and Shaloo are partners in a business , Reena invests Rs , 35,000 for 8 months and Shaloo invests Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "invests_s1 = None\ninvests_s2 = 35000\n\nif invests_s1 is None or invests_s2 is None:\n print('neutral')\n\nelif invests_s1 == invests_s2:\n print('Entailment')\n\nelif invests_s1 != invests_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rahim bought 65 books for Rs, \"statement 2\" :Rahim bought more than 65 books for Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rahim_bought_s1=65\nrahim_bought_s2=65+1\n\nif rahim_bought_s1 is None or rahim_bought_s2 is None:\n print('neutral')\nelif rahim_bought_s1 == rahim_bought_s2:\n print('Entailment')\nelif rahim_bought_s1 != rahim_bought_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": By how much must Rebecca ' s yearly income increase so that it constitutes 55 % of Rebecca and Jimmy ' s combined income ?, \"statement 2\" :By how much must Rebecca ' s yearly income increase so that it constitutes more than 15 % of Rebecca and Jimmy ' s combined income ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Yerly_income_s1=55\nYerly_income_s2=15\n\nif Yerly_income_s1 is None or Yerly_income_s2 is None:\n print('neutral')\nelif Yerly_income_s1 >= Yerly_income_s2:\n print('Entailment')\nelif Yerly_income_s1 != Yerly_income_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are less than 85 males altogether , how many gerbils does Claire have ?, \"statement 2\" :If there are 25 males altogether , how many gerbils does Claire have ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Males_s1=85\nMales_s1=None\nMales_s2=25\n\nif Males_s1 is None or Males_s2 is None:\n print('neutral')\nelif Males_s1 >= Males_s2:\n print('Entailment')\nelif Males_s1 != Males_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In addition to the arrests in the New York area , police in Italy detained 77 people in connection with organized crime ., \"statement 2\" :Police in Italy also make 77 arrests in connection with organized crime, \"options: \" Entailment or neutral?", + "Output Program": [ + "police_detained_s1=77\npolice_arrests_s2=77\nMales_s2=25\n\nif police_detained_s1 is None or police_arrests_s2 is None:\n print('neutral')\nelif police_detained_s1 == police_arrests_s2:\n print('Entailment')\nelif police_detained_s1 != police_arrests_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lucy has 212.0 fish and then she buys 280.0 more fish, \"statement 2\" :She has 492.0 fish now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "lucy_has_fish_s1=212+280\nlucy_has_fish_s2=492\n\nif lucy_has_fish_s1 is None or lucy_has_fish_s2 is None:\n print('neutral')\nelif lucy_has_fish_s1 == lucy_has_fish_s2:\n print('Entailment')\nelif lucy_has_fish_s1 != lucy_has_fish_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were 27.0 boys and 35.0 girls on the playground at recess and each boy went back inside paired with a girl, \"statement 2\" :7.0 children were left on the playground now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "boys_and_girls_in_playround_s1=27+35\nchildren_left_in_playround_s2=7\n\nif boys_and_girls_in_playround_s1 is None or children_left_in_playround_s2 is None:\n print('neutral')\nelif boys_and_girls_in_playround_s1 == children_left_in_playround_s2:\n print('Entailment')\nelif boys_and_girls_in_playround_s1 != children_left_in_playround_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Winson earns $ 10.00 per hour for the first more than 10 hours he works per week , and twice this rate for overtime, \"statement 2\" :Winson earns $ 10.00 per hour for the first 40 hours he works per week , and twice this rate for overtime, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "winson_work_s1=10\nwinson_work_s1=None #morethan 10 not a proper Number\nwinson_work_s2=40\nif winson_work_s1 is None or winson_work_s2 is None:\n print('neutral')\nelif winson_work_s1 == winson_work_s2:\n print('Entailment')\nelif winson_work_s1 != winson_work_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At least 13 Afghan civilians were also wounded in the attack , Afghan Interior Ministry spokesman Sediq Sediqqi said ., \"statement 2\" :13 Afghan civilians are among the wounded, \"options: \" Entailment or neutral?", + "Output Program": [ + "Civilians_wounded_s1=13\nCivilians_wounded_s2=13\nif Civilians_wounded_s1 is None or Civilians_wounded_s2 is None:\n print('neutral')\nelif Civilians_wounded_s1 == Civilians_wounded_s2:\n print('Entailment')\nelif Civilians_wounded_s1 != Civilians_wounded_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Jack ' s score was within less than 7 standard deviations of the mean , what is the lowest score he could have received ?, \"statement 2\" :If Jack ' s score was within 2 standard deviations of the mean , what is the lowest score he could have received ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jack_score_s1=7\nJack_score_s1=None \nJack_score_s2=2\nif Jack_score_s1 is None or Jack_score_s2 is None:\n print('neutral')\nelif Jack_score_s1 == Jack_score_s2:\n print('Entailment')\nelif Jack_score_s1 != Jack_score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If 15 % of all the students at Morse have cars , how many students are in the three lower grades ?, \"statement 2\" :If less than 35 % of all the students at Morse have cars , how many students are in the three lower grades ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "students_have_car_s1=15\nstudents_have_car_s2=35\n\nif students_have_car_s1 is None or students_have_car_s2 is None:\n print('neutral')\nelif students_have_car_s1 <= students_have_car_s2:\n print('Entailment')\nelif students_have_car_s1 != students_have_car_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary selects a total of less than 40 apples and oranges from the food stand , and the average ( arithmetic mean ) price of the 10 pieces of fruit is 54 \u00a2, \"statement 2\" :Mary selects a total of 10 apples and oranges from the food stand , and the average ( arithmetic mean ) price of the 10 pieces of fruit is 54 \u00a2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "mary_apples_s1=40\nmary_apples_s1=None\nmary_apples_s2=10\n\nif mary_apples_s1 is None or mary_apples_s2 is None:\n print('neutral')\nelif mary_apples_s1 == mary_apples_s2:\n print('Entailment')\nelif mary_apples_s1 != mary_apples_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Paul ' s salary was decreased by 50 % and subsequently increased by\n50 %, \"statement 2\" :Paul ' s salary was decreased by more than 30 % and subsequently increased by 50 %, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "paul_salary_increased_s1=50\npaul_salary_increased_s2=50\n\nif paul_salary_increased_s1 is None or paul_salary_increased_s2 is None:\n print('neutral')\nelif paul_salary_increased_s1 == paul_salary_increased_s2:\n print('Entailment')\nelif paul_salary_increased_s1 != paul_salary_increased_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A perfect score is 21 points and 3 games were played, \"statement 2\" :7.0 points were earned per round, \"options: \" Entailment or contradiction?", + "Output Program": [ + "points_in_game_s1=21/3\nearned_point_per_round_s2=7\n\nif points_in_game_s1 is None or earned_point_per_round_s2 is None:\n print('neutral')\nelif points_in_game_s1 == earned_point_per_round_s2:\n print('Entailment')\nelif points_in_game_s1 != earned_point_per_round_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 18 stations between Hyderabad and Bangalore, \"statement 2\" :There are 78 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Station_between_hyderabad_and_banglore_s1=18\nStation_between_hyderabad_and_banglore_s2=78\n\nif Station_between_hyderabad_and_banglore_s1 is None or Station_between_hyderabad_and_banglore_s2 is None:\n print('neutral')\nelif Station_between_hyderabad_and_banglore_s1 == Station_between_hyderabad_and_banglore_s2:\n print('Entailment')\nelif Station_between_hyderabad_and_banglore_s1 != Station_between_hyderabad_and_banglore_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Murali travelled from city A to city B at a speed of more than 10 kmph and from city B to city C at 60 kmph, \"statement 2\" :Murali travelled from city A to city B at a speed of 40 kmph and from city B to city C at 60 kmph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Murli_speed_s1=10\nMurli_speed_s1=None\nMurli_speed_s2=40\n\nif Murli_speed_s1 is None or Murli_speed_s2 is None:\n print('neutral')\nelif Murli_speed_s1 == Murli_speed_s2:\n print('Entailment')\nelif Murli_speed_s1 != Murli_speed_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sam purchased 20 dozens of toys at the rate of Rs, \"statement 2\" :Sam purchased more than 10 dozens of toys at the rate of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sam_purchased_toy_s1=20\nSam_purchased_toy_s2=10\n\nif Sam_purchased_toy_s1 is None or Sam_purchased_toy_s2 is None:\n print('neutral')\nelif Sam_purchased_toy_s1 >= Sam_purchased_toy_s2:\n print('Entailment')\nelif Sam_purchased_toy_s1 != Sam_purchased_toy_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The Computer Store has reduced the price of a computer by 15 % .\nWhat is the original price of the computer if the sale price is $ 1275 ?, \"statement 2\" :The Computer Store has reduced the price of a computer by more than 15 % . What is the original price of the computer if the sale price is $ 1275 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "reduced_priceof_computer_s1=15\nreduced_priceof_computer_s2=15+1\n\nif reduced_priceof_computer_s1 is None or reduced_priceof_computer_s2 is None:\n print('neutral')\nelif reduced_priceof_computer_s1 == reduced_priceof_computer_s2:\n print('Entailment')\nelif reduced_priceof_computer_s1 != reduced_priceof_computer_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Kim can do a work in 3 days while David can do the same work in 2 days, \"statement 2\" :Kim can do a work in less than 3 days while David can do the same work in 2 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "kim_do_work_in_s1=3\nkim_do_work_in_s2=3-1\n\nif kim_do_work_in_s1 is None or kim_do_work_in_s2 is None:\n print('neutral')\nelif kim_do_work_in_s1 == kim_do_work_in_s2:\n print('Entailment')\nelif kim_do_work_in_s1 != kim_do_work_in_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lali builds a tower using only red , green , and blue toy bricks in a ratio of 4 : 3 : 1, \"statement 2\" :Lali builds a tower using only red , green , and blue toy bricks in a ratio of more than 4 : 3 : 1, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tower_ration_s1=1.333\ntower_ration_s2=1.333+1\n\nif tower_ration_s1 is None or tower_ration_s2 is None:\n print('neutral')\nelif tower_ration_s1 == tower_ration_s2:\n print('Entailment')\nelif tower_ration_s1 != tower_ration_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ganesh covers the distance from X to Y at an average speed of 43 Km / hr, \"statement 2\" :Ganesh covers the distance from X to Y at an average speed of less than 63 Km / hr, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ganesh_speed_s1=43\nGanesh_speed_s2=63\n\nif Ganesh_speed_s1 is None or Ganesh_speed_s2 is None:\n print('neutral')\nelif Ganesh_speed_s1 <= Ganesh_speed_s2:\n print('Entailment')\nelif Ganesh_speed_s1 != Ganesh_speed_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Authorities contend the four suspects planned a gun attack on the newspaper , to be followed by '' the execution '' of hostages ., \"statement 2\" :The four men are convicted of targeting a Danish newspaper, \"options: \" Entailment or neutral?", + "Output Program": [ + "Authorities_contend_s1 = None\nAuthorities_contend_s2 = 4\n\nif Authorities_contend_s1 is None or Authorities_contend_s2 is None:\n print('neutral')\n\nelif Authorities_contend_s1 == Authorities_contend_s2:\n print('Entailment')\n\nelif Authorities_contend_s1 != Authorities_contend_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": less than 22 year old Manick is three times as old as his brother Rahul, \"statement 2\" :12 year old Manick is three times as old as his brother Rahul, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "manick_age_s1=22\nmanick_age_s1=None \nmanick_age_s2=12\n\nif manick_age_s1 is None or manick_age_s2 is None:\n print('neutral')\nelif manick_age_s1 == manick_age_s2:\n print('Entailment')\nelif manick_age_s1 != manick_age_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the number of such passengers that used Miami Airport was 1 / 2 the number that used Kennedy Airport and 4 times the number that used Logan Airport , approximately how many millions of these passengers used Logan Airport that year ?, \"statement 2\" :If the number of such passengers that used Miami Airport was less than 7 / 2 the number that used Kennedy Airport and 4 times the number that used Logan Airport , approximately how many millions of these passengers used Logan Airport that year ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Passenger_Miami_s1=0.5\nPassenger_Miami_s2=3.5 \n\nif Passenger_Miami_s1 is None or Passenger_Miami_s2 is None:\n print('neutral')\nelif Passenger_Miami_s1 <= Passenger_Miami_s2:\n print('Entailment')\nelif Passenger_Miami_s1 != Passenger_Miami_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Since receiving the biggest bail out in history , RBS has announced 27,500 layoffs worldwide -- of which 21,200 are in the UK ., \"statement 2\" :RBS has announced 27,500 layoffs worldwidel ; 21,200 alone in the UK, \"options: \" Entailment or neutral?", + "Output Program": [ + "RBS_layoffs_s1=27500\nRBS_announced_layoffs_s2=27500\n\nif RBS_layoffs_s1 is None or RBS_announced_layoffs_s2 is None:\n print('neutral')\nelif RBS_layoffs_s1 == RBS_announced_layoffs_s2:\n print('Entailment')\nelif RBS_layoffs_s1 != RBS_announced_layoffs_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Emily has a cylindrical water bottle that can hold 1000 \u03c0 cubic centimeters of water, \"statement 2\" :Emily has a cylindrical water bottle that can hold less than 1000 \u03c0 cubic centimeters of water, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cylinderical_bottle_hold_s1=1000\ncylinderical_bottle_hold_s2=1000-1\n\nif cylinderical_bottle_hold_s1 is None or cylinderical_bottle_hold_s2 is None:\n print('neutral')\nelif cylinderical_bottle_hold_s1 == cylinderical_bottle_hold_s2:\n print('Entailment')\nelif cylinderical_bottle_hold_s1 != cylinderical_bottle_hold_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The FBI is searching for this suspect , who they say has robbed at least 10 banks in the South ., \"statement 2\" :Police say suspect has hit 10 banks in the South, \"options: \" Entailment or neutral?", + "Output Program": [ + "robbed_bank_in_south_s1=10\nSuspect_ha_hit_bank_in_south_s2=10\n\nif robbed_bank_in_south_s1 is None or Suspect_ha_hit_bank_in_south_s2 is None:\n print('neutral')\nelif robbed_bank_in_south_s1 == Suspect_ha_hit_bank_in_south_s2:\n print('Entailment')\nelif robbed_bank_in_south_s1 != Suspect_ha_hit_bank_in_south_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": On his way back , James drives less than 70 miles per hour and stops in Town B which is midway between Town A and Town C, \"statement 2\" :On his way back , James drives 60 miles per hour and stops in Town B which is midway between Town A and Town C, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "James_drives_s1=70\nJames_drives_s1=None\nJames_drives_s2=60\n\nif James_drives_s1 is None or James_drives_s2 is None:\n print('neutral')\nelif James_drives_s1 == James_drives_s2:\n print('Entailment')\nelif James_drives_s1 != James_drives_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Today David , who is 40 years old , and his daughter , who is 12 years old , celebrate their birthdays, \"statement 2\" :Today David , who is less than 40 years old , and his daughter , who is 12 years old , celebrate their birthdays, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "David_age_s1=40\nDavid_age_s2=40-1\n\nif David_age_s1 is None or David_age_s2 is None:\n print('neutral')\nelif David_age_s1 == David_age_s2:\n print('Entailment')\nelif David_age_s1 != David_age_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Renu can do a piece of work in more than 5 days , but with the help of her friend Suma , she can do it in 3 days, \"statement 2\" :Renu can do a piece of work in 6 days , but with the help of her friend Suma , she can do it in 3 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "renu_can_do_work_s1=5\nrenu_can_do_work_s1=None\nrenu_can_do_work_s2=6\n\nif renu_can_do_work_s1 is None or renu_can_do_work_s2 is None:\n print('neutral')\nelif renu_can_do_work_s1 == renu_can_do_work_s2:\n print('Entailment')\nelif renu_can_do_work_s1 != renu_can_do_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Connie has 64.0 red and blue markers and 41.0 of the markers are red, \"statement 2\" :27.0 markers are blue, \"options: \" Entailment or contradiction?", + "Output Program": [ + "blue_marker_s1=64-41\nblue_marker_s2=27\n\nif blue_marker_s1 is None or blue_marker_s2 is None:\n print('neutral')\nelif blue_marker_s1 == blue_marker_s2:\n print('Entailment')\nelif blue_marker_s1 != blue_marker_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": You must be a teacher or a student age 13 or older to request a mention on the CNN Student News Roll Call !, \"statement 2\" :At the bottom of the page , comment for a chance to be mentioned on CNN Student News . You must be a teacher or a student age 13 or older to request a mention on the CNN Student News Roll Call ., \"options: \" Entailment or neutral?", + "Output Program": [ + "studnets_or_teacher_age_s1=13\nstudnets_or_teacher_age_s2=13\n\nif studnets_or_teacher_age_s1 is None or studnets_or_teacher_age_s2 is None:\n print('neutral')\nelif studnets_or_teacher_age_s1 == studnets_or_teacher_age_s2:\n print('Entailment')\nelif studnets_or_teacher_age_s1 != studnets_or_teacher_age_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The total of the ages of Amar , Akbar and Anthony is 36 years, \"statement 2\" :The total of the ages of Amar , Akbar and Anthony is more than 16 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "total_age_s1=36\ntotal_age_s2=16\n\nif total_age_s1 is None or total_age_s2 is None:\n print('neutral')\nelif total_age_s1 >= total_age_s2:\n print('Entailment')\nelif total_age_s1 != total_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": I read 21.0 pages of my English book yesterday and today, I read 17.0 pages, \"statement 2\" :The total number of pages I read is 34.0, \"options: \" Entailment or contradiction?", + "Output Program": [ + "read_pages_s1=21+17\nread_pages_s2=34\n\nif read_pages_s1 is None or read_pages_s2 is None:\n print('neutral')\nelif read_pages_s1 == read_pages_s2:\n print('Entailment')\nelif read_pages_s1 != read_pages_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": On every Adidas shoe the restaurant makes a profit of $ less than 30 while on every Puma shoe it makes a profit of $ 8, \"statement 2\" :On every Adidas shoe the restaurant makes a profit of $ 10 while on every Puma shoe it makes a profit of $ 8, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "restaurant_makes_profit_s1=30\nrestaurant_makes_profit_s1=None\nrestaurant_makes_profit_s2=10\n\nif restaurant_makes_profit_s1 is None or restaurant_makes_profit_s2 is None:\n print('neutral')\nelif restaurant_makes_profit_s1 == restaurant_makes_profit_s2:\n print('Entailment')\nelif restaurant_makes_profit_s1 != restaurant_makes_profit_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Donald carries a total of 33 notes ( of either $ 10 or \u20ac 10 , ) then what is the total number of notes ( of either $ 10 or \u20ac 10 , ) they take ?, \"statement 2\" :If Donald carries a total of more than 13 notes ( of either $ 10 or \u20ac 10 , ) then what is the total number of notes ( of either $ 10 or \u20ac 10 , ) they take ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "donald_carries_notes_s1=33\ndonald_carries_notes_s2=13\n\n\nif donald_carries_notes_s1 is None or donald_carries_notes_s2 is None:\n print('neutral')\nelif donald_carries_notes_s1 >= donald_carries_notes_s2:\n print('Entailment')\nelif donald_carries_notes_s1 != donald_carries_notes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lilly has less than 50 fish and Rosy has 14 fish, \"statement 2\" :Lilly has 10 fish and Rosy has 14 fish, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "lilly_has_fish_s1=50\nlilly_has_fish_s1=None\nlilly_has_fish_s2_s2=10\n\nif lilly_has_fish_s1 is None or lilly_has_fish_s2_s2 is None:\n print('neutral')\nelif lilly_has_fish_s1 >= lilly_has_fish_s2_s2:\n print('Entailment')\nelif lilly_has_fish_s1 != lilly_has_fish_s2_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Jadeja paid a total of $ 133 , excluding sales tax , to rent the tool , for how many hours did she rent it ?, \"statement 2\" :If Jadeja paid a total of $ less than 533 , excluding sales tax , to rent the tool , for how many hours did she rent it ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jadeja_paid_s1=133\njadeja_paid_s2=533\n\nif jadeja_paid_s1 is None or jadeja_paid_s2 is None:\n print('neutral')\nelif jadeja_paid_s1 <= jadeja_paid_s2:\n print('Entailment')\nelif jadeja_paid_s1 != jadeja_paid_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Peter reads at a constant rate of 1 pages every 5 minutes , how many seconds will it take him to read N pages ?, \"statement 2\" :If Peter reads at a constant rate of less than 1 pages every 5 minutes , how many seconds will it take him to read N pages ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "peter_read_s1=1\npeter_read_s2=1-1\nif peter_read_s1 is None or peter_read_s2 is None:\n print('neutral')\nelif peter_read_s1 == peter_read_s2:\n print('Entailment')\nelif peter_read_s1 != peter_read_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 47.0 eggs in a box and Harry takes 5.0 eggs, \"statement 2\" :42.0 eggs are left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Eggs_in_box_s1=47-5\nEggs_in_box_s2=42\nif Eggs_in_box_s1 is None or Eggs_in_box_s2 is None:\n print('neutral')\nelif Eggs_in_box_s1 == Eggs_in_box_s2:\n print('Entailment')\nelif Eggs_in_box_s1 != Eggs_in_box_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Assuming that Karen drives at an average speed of more than 10 mph and Tom drives at an average speed of 45 mph , how many Y miles will Tom drive before Karen wins the bet ?, \"statement 2\" :Assuming that Karen drives at an average speed of 60 mph and Tom drives at an average speed of 45 mph , how many Y miles will Tom drive before Karen wins the bet ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Average_speed_s1=10\nAverage_speed_s1=None\nAverage_speed_s2=60\nif Average_speed_s1 is None or Average_speed_s2 is None:\n print('neutral')\nelif Average_speed_s1 == Average_speed_s2:\n print('Entailment')\nelif Average_speed_s1 != Average_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 544.0 pots and each pot has 32.0 flowers in it, \"statement 2\" :17408.0 flowers are there in all, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Flowers_in_each_pot_s1=544*32\nFlowers_in_each_pot_s2=17408\n\nif Flowers_in_each_pot_s1 is None or Flowers_in_each_pot_s2 is None:\n print('neutral')\nelif Flowers_in_each_pot_s1 == Flowers_in_each_pot_s2:\n print('Entailment')\nelif Flowers_in_each_pot_s1 != Flowers_in_each_pot_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy attempts more than 10 sums and obtains 45 marks, \"statement 2\" :Sandy attempts 30 sums and obtains 45 marks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sandy_attempts_s1=10\nSandy_attempts_s1=None\nSandy_attempts_s2=30\n\nif Sandy_attempts_s1 is None or Sandy_attempts_s2 is None:\n print('neutral')\nelif Sandy_attempts_s1 == Sandy_attempts_s2:\n print('Entailment')\nelif Sandy_attempts_s1 != Sandy_attempts_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Arun purchased 30 kg of wheat at the rate of Rs, \"statement 2\" :Arun purchased less than 50 kg of wheat at the rate of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Arun_purchased_s1=30\nArun_purchased_s2=50\nif Arun_purchased_s1 is None or Arun_purchased_s2 is None:\n print('neutral')\nelif Arun_purchased_s1 <= Arun_purchased_s2:\n print('Entailment')\nelif Arun_purchased_s1 != Arun_purchased_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": more than 60 students represent x percent of the boys at Jones Elementary School, \"statement 2\" :90 students represent x percent of the boys at Jones Elementary School, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "studnet_represent_s1=60\nstudnet_represent_s1=None\nstudnet_represent_s2=90\nif studnet_represent_s1 is None or studnet_represent_s2 is None:\n print('neutral')\nelif studnet_represent_s1 == studnet_represent_s2:\n print('Entailment')\nelif studnet_represent_s1 != studnet_represent_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 14.0 rulers and 34.0 crayons in a drawer and Tim takes out 11.0 rulers from the drawer, \"statement 2\" :3.0 rulers are now in the drawer, \"options: \" Entailment or contradiction?", + "Output Program": [ + "rulers_in_drawer_s1=14-11\nrulers_in_drawer_s2=3\nif rulers_in_drawer_s1 is None or rulers_in_drawer_s2 is None:\n print('neutral')\nelif rulers_in_drawer_s1 == rulers_in_drawer_s2:\n print('Entailment')\nelif rulers_in_drawer_s1 != rulers_in_drawer_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ben runs the second leg of the course in 53 seconds, \"statement 2\" :Ben runs the second leg of the course in less than 63 seconds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ben_runs_course_s1=53\nben_runs_course_s2=63\nif ben_runs_course_s1 is None or ben_runs_course_s2 is None:\n print('neutral')\nelif ben_runs_course_s1 <= ben_runs_course_s2:\n print('Entailment')\nelif ben_runs_course_s1 != ben_runs_course_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were 58.0 geese and 37.0 ducks in the marsh., \"statement 2\" :98.0 birds were there in all, \"options: \" Entailment or contradiction?", + "Output Program": [ + "geeks_and_ducks_s1=58+37\nbirds_s2=98\nif geeks_and_ducks_s1 is None or birds_s2 is None:\n print('neutral')\nelif geeks_and_ducks_s1 == birds_s2:\n print('Entailment')\nelif geeks_and_ducks_s1 != birds_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Matt and Peter can do together a piece of work in more than 10 days, \"statement 2\" :Matt and Peter can do together a piece of work in 20 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "matt_and_peter_work_s1=10\nmatt_and_peter_work_s1=None\nmatt_and_peter_work_s2=20\nif matt_and_peter_work_s1 is None or matt_and_peter_work_s2 is None:\n print('neutral')\nelif matt_and_peter_work_s1 == matt_and_peter_work_s2:\n print('Entailment')\nelif matt_and_peter_work_s1 != matt_and_peter_work_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Store Z : $ 70 , a 30 % sales tax , and $ 10 rebate after tax\nIsaac can purchase a certain item in four different ways , as shown in the table, \"statement 2\" :Store Z : $ more than 70 , a 30 % sales tax , and $ 10 rebate after tax Isaac can purchase a certain item in four different ways , as shown in the table, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sales_tax_s1=70\nSales_tax_s2=70+1\n\nif Sales_tax_s1 is None or Sales_tax_s2 is None:\n print('neutral')\nelif Sales_tax_s1 == Sales_tax_s2:\n print('Entailment')\nelif Sales_tax_s1 != Sales_tax_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the minimum number of packages of Aero flight tees Bill must purchase to ensure that he has at least less than 50 golf tees for each member of his foursome , if he will buy no more than 1 packages of the generic golf tees ?, \"statement 2\" :What is the minimum number of packages of Aero flight tees Bill must purchase to ensure that he has at least 10 golf tees for each member of his foursome , if he will buy no more than 1 packages of the generic golf tees ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Golf_tea_s1=50\nGolf_tea_s2=10\nGolf_tea_s2=None\n\nif Golf_tea_s1 is None or Golf_tea_s2 is None:\n print('neutral')\nelif Golf_tea_s1 == Golf_tea_s2:\n print('Entailment')\nelif Golf_tea_s1 != Golf_tea_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Portuguese league leaders FC Porto secured a 1-0 victory at Russian club CSKA Moscow in their round of 16 clash , thanks to a 70th-minute strike from Colombian striker Freddy Guarin ., \"statement 2\" :Porto beat CSKA Moscow 1-0 , while Rangers draw 0-0 at PSV Eindhoven, \"options: \" Entailment or neutral?", + "Output Program": [ + "Russian_club_round_s1=16\nRussian_club_round_s1=None\nPorto_beat_CSKA_s2=1,0\n\nif Russian_club_round_s1 is None or Porto_beat_CSKA_s2 is None:\n print('neutral')\nelif Russian_club_round_s1 == Porto_beat_CSKA_s2:\n print('Entailment')\nelif Russian_club_round_s1 != Porto_beat_CSKA_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Exactly 5 / 6 of the ponies have horseshoes , and exactly 2 / 3 of the ponies with horseshoes are from Iceland, \"statement 2\" :Exactly more than 4 / 6 of the ponies have horseshoes , and exactly 2 / 3 of the ponies with horseshoes are from Iceland, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "horses_shoes_s1=0.8333\nhorses_shoes_s2=0.666\n\nif horses_shoes_s1 is None or horses_shoes_s2 is None:\n print('neutral')\nelif horses_shoes_s1 >= horses_shoes_s2:\n print('Entailment')\nelif horses_shoes_s1 != horses_shoes_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": City A to city B , Michael drove for 1 hour at 80 mph and for 3 hours at 60 mph, \"statement 2\" :City A to city B , Michael drove for less than 1 hour at 80 mph and for 3 hours at 60 mph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Michel_drove_s1=1\nMichel_drove_s2=1-0.5\n\nif Michel_drove_s1 is None or Michel_drove_s2 is None:\n print('neutral')\nelif Michel_drove_s1 == Michel_drove_s2:\n print('Entailment')\nelif Michel_drove_s1 != Michel_drove_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Marcella has 26 pairs of shoes, \"statement 2\" :Marcella has 86 pairs of shoes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Marcella_shoes_s1 = 26\nMarcella_shoes_s2 = 86\n\nif Marcella_shoes_s1 is None or Marcella_shoes_s2 is None:\n print('neutral')\n\nelif Marcella_shoes_s1 == Marcella_shoes_s2:\n print('Entailment')\n\nelif Marcella_shoes_s1 != Marcella_shoes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In Rwanda there were on average 8,000 victims per day for about 100 days ., \"statement 2\" :There were 800,000 victims of the massacres in Rwanda ., \"options: \" Entailment or neutral?", + "Output Program": [ + "Rwanda_victims_s1=8000\nRwanda_victims_s2=800000\nif Rwanda_victims_s1 is None or Rwanda_victims_s2 is None:\n print('neutral')\nelif Rwanda_victims_s1 == Rwanda_victims_s2:\n print('Entailment')\nelif Rwanda_victims_s1 != Rwanda_victims_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Matthew ' s walking rate was 3 km per hour and Johnny ' s was 4 km per hour , how many km had Johnny walked when they met ?, \"statement 2\" :Matthew ' s walking rate was less than 8 km per hour and Johnny ' s was 4 km per hour , how many km had Johnny walked when they met ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Rwanda_victims_s1=8000*100\nRwanda_victims_s2=800000\nif Rwanda_victims_s1 is None or Rwanda_victims_s2 is None:\n print('neutral')\nelif Rwanda_victims_s1 == Rwanda_victims_s2:\n print('Entailment')\nelif Rwanda_victims_s1 != Rwanda_victims_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Diana works 10 hours per day on Monday , Wednesday and Friday , and 15 hours per day on Tuesday and Thursday, \"statement 2\" :Diana works less than 50 hours per day on Monday , Wednesday and Friday , and 15 hours per day on Tuesday and Thursday, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Diana_work_s1 = 10\nDiana_work_s2 = 50\n\nif Diana_work_s1 is None or Diana_work_s2 is None:\n print('neutral')\n\nelif Diana_work_s1 == Diana_work_s2:\n print('Entailment')\n\nelif Diana_work_s1 != Diana_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Donald carries a total of 42 notes ( of either $ 10 or \u20ac 10 , ) then what is the total number of notes ( of either $ 10 or \u20ac 10 , ) they take ?, \"statement 2\" :If Donald carries a total of less than 52 notes ( of either $ 10 or \u20ac 10 , ) then what is the total number of notes ( of either $ 10 or \u20ac 10 , ) they take ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Donald_carries_notes_s1=42\nDonald_carries_notes_s2=52\nif Donald_carries_notes_s1 is None or Donald_carries_notes_s2 is None:\n print('neutral')\nelif Donald_carries_notes_s1 <= Donald_carries_notes_s2:\n print('Entailment')\nelif Donald_carries_notes_s1 != Donald_carries_notes_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": for Mathura and B starts from Mathura with a speed of 25 kmph at 8 p, \"statement 2\" :for Mathura and B starts from Mathura with a speed of 55 kmph at 8 p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "B_speed_from_mathura_s1=25\nB_speed_from_mathura_s2=55\nif B_speed_from_mathura_s1 is None or B_speed_from_mathura_s2 is None:\n print('neutral')\nelif B_speed_from_mathura_s1 == B_speed_from_mathura_s2:\n print('Entailment')\nelif B_speed_from_mathura_s1 != B_speed_from_mathura_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Even though the club does n't sell marijuana , the advocate said it '' thwart ( s ) the intent of Amendment 64 , '' which requires a year-long waiting period before stores are allowed to open and sell marijuana ., \"statement 2\" :Some marijuana advocates say the club violates the intent of Amendment 64, \"options: \" Entailment or neutral?", + "Output Program": [ + "\nAmendment_s1 = None\nAmendment_s2 = 64\n\nif Amendment_s1 is None or Amendment_s2 is None:\n print('neutral')\n\nelif Amendment_s1 == Amendment_s2:\n print('Entailment')\n\nelif Amendment_s1 != Amendment_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": One year ago , the ratio of Roonie \u2019 s and Ronaldo \u2019 s age was 6 : 7 respectively, \"statement 2\" :One year ago , the ratio of Roonie \u2019 s and Ronaldo \u2019 s age was less than 7 : 7 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Age_ration_s1=0.8571\nAge_ration_s2=1\nif Age_ration_s1 is None or Age_ration_s2 is None:\n print('neutral')\nelif Age_ration_s1 <= Age_ration_s2:\n print('Entailment')\nelif Age_ration_s1 != Age_ration_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At the faculty of Aerospace Engineering , 312 students study Random - processing methods , 232 students study Scramjet rocket engines and 114 students study them both, \"statement 2\" :At the faculty of Aerospace Engineering , 212 students study Random - processing methods , 232 students study Scramjet rocket engines and 114 students study them both, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "aerospace_eng_student_s1=312\naerospace_eng_student_s2=212\nif aerospace_eng_student_s1 is None or aerospace_eng_student_s2 is None:\n print('neutral')\nelif aerospace_eng_student_s1 == aerospace_eng_student_s2:\n print('Entailment')\nelif aerospace_eng_student_s1 != aerospace_eng_student_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Henry were to add more than 8 gallons of water to a tank that is already 3 / 4 full of water , the tank would be 7 / 8 full, \"statement 2\" :If Henry were to add 9 gallons of water to a tank that is already 3 / 4 full of water , the tank would be 7 / 8 full, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "henry_add_water_s1=8\nhenry_add_water_s2=9\nhenry_add_water_s2=None\nif henry_add_water_s1 is None or henry_add_water_s2 is None:\n print('neutral')\nelif henry_add_water_s1 == henry_add_water_s2:\n print('Entailment')\nelif henry_add_water_s1 != henry_add_water_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Henry were to add 8 gallons of water to a tank that is already 3 / 4 full of water , the tank would be 7 / 8 full, \"statement 2\" :If Henry were to add 2 gallons of water to a tank that is already 3 / 4 full of water , the tank would be 7 / 8 full, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "henry_add_water_s1=8\nhenry_add_water_s2=2\nif henry_add_water_s1 is None or henry_add_water_s2 is None:\n print('neutral')\nelif henry_add_water_s1 == henry_add_water_s2:\n print('Entailment')\nelif henry_add_water_s1 != henry_add_water_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill has less than 52 gallons of water stored in quart , half - gallon , and one gallon jars, \"statement 2\" :Jill has 42 gallons of water stored in quart , half - gallon , and one gallon jars, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jill_stored_water_s1=52\nJill_stored_water_s1=None\nJill_stored_water_s2=42\nif Jill_stored_water_s1 is None or Jill_stored_water_s2 is None:\n print('neutral')\nelif Jill_stored_water_s1 == Jill_stored_water_s2:\n print('Entailment')\nelif Jill_stored_water_s1 != Jill_stored_water_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Right now , the ratio between the ages of Sandy and Molly is 4 : 3, \"statement 2\" :Right now , the ratio between the ages of Sandy and Molly is less than 4 : 3, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_ratio_s1=1.33\nage_ratio_s2=1.33-1\n\nif age_ratio_s1 is None or age_ratio_s2 is None:\n print('neutral')\nelif age_ratio_s1 == age_ratio_s2:\n print('Entailment')\nelif age_ratio_s1 != age_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sacha runs at a constant speed of 6 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"statement 2\" :Sacha runs at a constant speed of more than 5 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sacha_speed_s1=6\nSacha_speed_s2=5+1\n\nif Sacha_speed_s1 is None or Sacha_speed_s2 is None:\n print('neutral')\nelif Sacha_speed_s1 == Sacha_speed_s2:\n print('Entailment')\nelif Sacha_speed_s1 != Sacha_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary can type less than 6 pages in 10 minutes, \"statement 2\" :Mary can type 5 pages in 10 minutes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Mary_type_s1=6\nMary_type_s1=None\nMary_type_s2=5\nif Mary_type_s1 is None or Mary_type_s2 is None:\n print('neutral')\nelif Mary_type_s1 == Mary_type_s2:\n print('Entailment')\nelif Mary_type_s1 != Mary_type_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained 70 , 63 , 80 , 63 and 65 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained less than 70 , 63 , 80 , 63 and 65 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dacid_obtained_s1 = 70,63,80,63,65\nDacid_obtained_s2 = 70,63,80,63,65-1\n\nif Dacid_obtained_s1 is None or Dacid_obtained_s2 is None:\n print('neutral')\n\nelif Dacid_obtained_s1 <= Dacid_obtained_s2:\n print('Entailment')\n\nelif Dacid_obtained_s1 != Dacid_obtained_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill has 28 gallons of water stored in quart , half - gallon , and one gallon jars, \"statement 2\" :Jill has 38 gallons of water stored in quart , half - gallon , and one gallon jars, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jill_has_water_s1=28\nJill_has_water_s2=38\nMary_type_s2=5\nif Jill_has_water_s1 is None or Jill_has_water_s2 is None:\n print('neutral')\nelif Jill_has_water_s1 == Jill_has_water_s2:\n print('Entailment')\nelif Jill_has_water_s1 != Jill_has_water_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Swetha takes a trip and drives 8 hours from Town A to Town C at a rate of 40 miles per hour, \"statement 2\" :Swetha takes a trip and drives 5 hours from Town A to Town C at a rate of 40 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Swetha_drives_s1=8\nSwetha_drives_s2=5\n\nif Swetha_drives_s1 is None or Swetha_drives_s2 is None:\n print('neutral')\nelif Swetha_drives_s1 == Swetha_drives_s2:\n print('Entailment')\nelif Swetha_drives_s1 != Swetha_drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mike picked 7.0 apples, Nancy picked 3.0 apples, but Keith ate 6.0 apples and 4.0 pears, at the farm., \"statement 2\" :1.0 apple is left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Mike_apples_s1=7-6\nleft_apples_s2=1\n\nif Mike_apples_s1 is None or left_apples_s2 is None:\n print('neutral')\nelif Mike_apples_s1 == left_apples_s2:\n print('Entailment')\nelif Mike_apples_s1 != left_apples_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": more than 50 students represent x percent of the boys at Jones Elementary School, \"statement 2\" :90 students represent x percent of the boys at Jones Elementary School, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Students_reresent_s1=50\nStudents_reresent_s1= None\nStudents_reresent_s2=90\n\nif Students_reresent_s1 is None or Students_reresent_s2 is None:\n print('neutral')\nelif Students_reresent_s1 == Students_reresent_s2:\n print('Entailment')\nelif Students_reresent_s1 != Students_reresent_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Ravi can do a piece of work in 24 days while Prakash can do it in 40 days, \"statement 2\" :Ravi can do a piece of work in 74 days while Prakash can do it in 40 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ravi_can_do_work_s1=24\nRavi_can_do_work_s2=74\n\nif Ravi_can_do_work_s1 is None or Ravi_can_do_work_s2 is None:\n print('neutral')\nelif Ravi_can_do_work_s1 == Ravi_can_do_work_s2:\n print('Entailment')\nelif Ravi_can_do_work_s1 != Ravi_can_do_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Fred and Sam are standing 40 miles apart and they start walking in a straight line toward each other at the same time, \"statement 2\" :Fred and Sam are standing less than 60 miles apart and they start walking in a straight line toward each other at the same time, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Fred_and_sam_walking_s1=40\nFred_and_sam_walking_s2=60\n\nif Fred_and_sam_walking_s1 is None or Fred_and_sam_walking_s2 is None:\n print('neutral')\nelif Fred_and_sam_walking_s1 <= Fred_and_sam_walking_s2:\n print('Entailment')\nelif Fred_and_sam_walking_s1 != Fred_and_sam_walking_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Paul completes a piece of work in 80 days , Rose completes the same work in 120 days, \"statement 2\" :Paul completes a piece of work in more than 70 days , Rose completes the same work in 120 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "paul_complate_work_s1=80\npaul_complate_work_s2=70\nif paul_complate_work_s1 is None or paul_complate_work_s2 is None:\n print('neutral')\nelif paul_complate_work_s1 >= paul_complate_work_s2:\n print('Entailment')\nelif paul_complate_work_s1 != paul_complate_work_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Henry were to add more than 7 gallons of water to a tank that is already 3 / 4 full of water , the tank would be 7 / 8 full, \"statement 2\" :If Henry were to add 8 gallons of water to a tank that is already 3 / 4 full of water , the tank would be 7 / 8 full, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "henry_add_water_s1=7\nhenry_add_water_s1=None\nhenry_add_water_s2=8\nif henry_add_water_s1 is None or henry_add_water_s2 is None:\n print('neutral')\nelif henry_add_water_s1 == henry_add_water_s2:\n print('Entailment')\nelif henry_add_water_s1 != henry_add_water_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mrs. Hilt has 50.0 cents and a pencil costs 5.0 cents, \"statement 2\" :She can buy 12.0 pencils with the money she has, \"options: \" Entailment or contradiction?", + "Output Program": [ + "pencils_s1=50/5\npencils_s2=12\n\nif pencils_s1 is None or pencils_s2 is None:\n print('neutral')\nelif pencils_s1 == pencils_s2:\n print('Entailment')\nelif pencils_s1 != pencils_s2:\n print('contradiction')\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained 96 , 95 , 82 , 97 and 95 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained 36 , 95 , 82 , 97 and 95 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dacid_marks_s1=96,95,82,97,95\ndacid_marks_s2=36,95,82,97,95\n\nif dacid_marks_s1 is None or dacid_marks_s2 is None:\n print('neutral')\nelif dacid_marks_s1 == dacid_marks_s2:\n print('Entailment')\nelif dacid_marks_s1 != dacid_marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John has more than 55 pencils , he distribute 20 pencils to his friends in his class, \"statement 2\" :John has 75 pencils , he distribute 20 pencils to his friends in his class, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jhon_pencil_s1=55\njhon_pencil_s1=None\njhon_pencil_s2=75\n\nif jhon_pencil_s1 is None or jhon_pencil_s2 is None:\n print('neutral')\nelif jhon_pencil_s1 == jhon_pencil_s2:\n print('Entailment')\nelif jhon_pencil_s1 != jhon_pencil_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In an exam , Amar scored more than 54 percent , Bhavan scored 36 percent and Chetan 44 percent, \"statement 2\" :In an exam , Amar scored 64 percent , Bhavan scored 36 percent and Chetan 44 percent, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "amar_scored_s1=54\namar_scored_s1=None\namar_scored_s2=64\nif amar_scored_s1 is None or amar_scored_s2 is None:\n print('neutral')\nelif amar_scored_s1 == amar_scored_s2:\n print('Entailment')\nelif amar_scored_s1 != amar_scored_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The average number of shirts with Salman , Ambani and Dalmiya is less than 70 , if all of them reached a shopping mall in Delhi and purchased 6 shirts each of them then average number of shirt each of them now has, \"statement 2\" :The average number of shirts with Salman , Ambani and Dalmiya is 60 , if all of them reached a shopping mall in Delhi and purchased 6 shirts each of them then average number of shirt each of them now has, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Average_number_of_shirts_s1=70\nAverage_number_of_shirts_s1=None\nAverage_number_of_shirts_s2=60\nif Average_number_of_shirts_s1 is None or Average_number_of_shirts_s2 is None:\n print('neutral')\nelif Average_number_of_shirts_s1 == Average_number_of_shirts_s2:\n print('Entailment')\nelif Average_number_of_shirts_s1 != Average_number_of_shirts_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Two pilots and three passengers died ., \"statement 2\" :Two pilots , three passengers killed, \"options: \" Entailment or neutral?", + "Output Program": [ + "passengers_died_s1=5\npassengers_died_s2=5\nif passengers_died_s1 is None or passengers_died_s2 is None:\n print('neutral')\nelif passengers_died_s1 == passengers_died_s2:\n print('Entailment')\nelif passengers_died_s1 != passengers_died_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Out of the seven expeditions who were permitted to climb the 8586-meter high Mt . Kanchenjunga , only one climber from the United States succeeded ., \"statement 2\" :Kanchenjunga is 8586 meters high ., \"options: \" Entailment or neutral?", + "Output Program": [ + "permitted_to_climb_s1=8586\nKanchan_ganga_high_s2=8586\nif permitted_to_climb_s1 is None or Kanchan_ganga_high_s2 is None:\n print('neutral')\nelif permitted_to_climb_s1 == Kanchan_ganga_high_s2:\n print('Entailment')\nelif permitted_to_climb_s1 != Kanchan_ganga_high_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a friendship gang Andrew has 8 gang , in how many ways can he invite one or more of the gang to his house ?, \"statement 2\" :In a friendship gang Andrew has 5 gang , in how many ways can he invite one or more of the gang to his house ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Andrew_gang_s1=8\nAndrew_gang_s2=5\nif Andrew_gang_s1 is None or Andrew_gang_s2 is None:\n print('neutral')\nelif Andrew_gang_s1 == Andrew_gang_s2:\n print('Entailment')\nelif Andrew_gang_s1 != Andrew_gang_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Half a million pilots needed globally, \"statement 2\" :As many as half a million new pilots needed globally, \"options: \" Entailment or neutral?", + "Output Program": [ + "pilots_needed_s1 = None\npilots_needed_s2 = 1,500,000\n\nif pilots_needed_s1 is None or pilots_needed_s2 is None:\n print('neutral')\n\nelif pilots_needed_s1 == pilots_needed_s2:\n print('Entailment')\n\nelif pilots_needed_s1 != pilots_needed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The Americans started their defense of the cup on minus two after being punished for illegally modifying their catamarans ., \"statement 2\" :U.S. crew started the best-of-17 series on -2 after illegally modifying catamarans, \"options: \" Entailment or neutral?", + "Output Program": [ + "defense_s1 = None\ndefense_s2 = 17\n\nif defense_s1 is None or defense_s2 is None:\n print('neutral')\n\nelif defense_s1 == defense_s2:\n print('Entailment')\n\nelif defense_s1 != defense_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": According to state-run media , Health Ministry officials said three tourists and the bus driver , who was from Egypt , were killed ., \"statement 2\" :The bus driver was among the four people killed , state TV reports, \"options: \" Entailment or neutral?", + "Output Program": [ + "killed_people_s1=4\nkilled_people_s2=4\nkilled_people_s2=None\nif killed_people_s1 is None or killed_people_s2 is None:\n print('neutral')\nelif killed_people_s1 == killed_people_s2:\n print('Entailment')\nelif killed_people_s1 != killed_people_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mike can catch 30 fish in one hour , Jim can catch twice as much and Bob can catch 50 % more than Jim, \"statement 2\" :Mike can catch more than 30 fish in one hour , Jim can catch twice as much and Bob can catch 50 % more than Jim, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Mike_catch_fish_s1=30\nMike_catch_fish_s2=30+1\n\nif Mike_catch_fish_s1 is None or Mike_catch_fish_s2 is None:\n print('neutral')\nelif Mike_catch_fish_s1 == Mike_catch_fish_s2:\n print('Entailment')\nelif Mike_catch_fish_s1 != Mike_catch_fish_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A bathing suit manufacturer has a supply of 14797.0 bathing suits for men and in addition , it has 4969.0 bathing suits for women , \"statement 2\" :19766.0 bathing suits are available overall , \"options: \" Entailment or contradiction?", + "Output Program": [ + "Bathing_suit_manufacturer_s1=14797+4969\nBathing_suit_manufacturer_s2=19766\nif Bathing_suit_manufacturer_s1 is None or Bathing_suit_manufacturer_s2 is None:\n print('neutral')\nelif Bathing_suit_manufacturer_s1 == Bathing_suit_manufacturer_s2:\n print('Entailment')\nelif Bathing_suit_manufacturer_s1 != Bathing_suit_manufacturer_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Christine and Siri have less than 81 rs between them, \"statement 2\" :Christine and Siri have 21 rs between them, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "christine_and_siri_rupee_s1=81\nchristine_and_siri_rupee_s1=None\nchristine_and_siri_rupee_s2=21\nif christine_and_siri_rupee_s1 is None or christine_and_siri_rupee_s2 is None:\n print('neutral')\nelif christine_and_siri_rupee_s1 == christine_and_siri_rupee_s2:\n print('Entailment')\nelif christine_and_siri_rupee_s1 != christine_and_siri_rupee_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If it takes Darcy a total of 20 more minutes to commute to work by walking than it takes her to commute to work by riding the train , what is the value of x ?, \"statement 2\" :If it takes Darcy a total of less than 50 more minutes to commute to work by walking than it takes her to commute to work by riding the train , what is the value of x ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Darcy_time_s1=20\nDarcy_time_s2=50\n\nif Darcy_time_s1 is None or Darcy_time_s2 is None:\n print('neutral')\nelif Darcy_time_s1 <= Darcy_time_s2:\n print('Entailment')\nelif Darcy_time_s1 != Darcy_time_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the share of Sravan , if Sreedhar alone can do the work in more than 25 days ?, \"statement 2\" :What is the share of Sravan , if Sreedhar alone can do the work in 75 days ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sreedhar_work_s1=25\nSreedhar_work_s1=None\nSreedhar_work_s2=75\nif Sreedhar_work_s1 is None or Sreedhar_work_s2 is None:\n print('neutral')\nelif Sreedhar_work_s1 <= Sreedhar_work_s2:\n print('Entailment')\nelif Sreedhar_work_s1 != Sreedhar_work_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": In the biology lab of ` ` Jefferson ' ' High School there are 5.4 * less than 70 ^ 6 germs , equally divided among 10,800 Petri dishes, \"statement 2\" :In the biology lab of ` ` Jefferson ' ' High School there are 5.4 * 10 ^ 6 germs , equally divided among 10,800 Petri dishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "germs_s1 = None\ngerms_s2 = 5400000\n\nif germs_s1 is None or germs_s2 is None:\n print('neutral')\n\nelif germs_s1 == germs_s2:\n print('Entailment')\n\nelif germs_s1 != germs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Officials said three people were killed in the blast in Damaturu , a northern town in Yobe state , John said ., \"statement 2\" :32 were killed in Madalla , a government official says, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_killed_s1=3\npeople_killed_s1=None\npeople_killed_in_madalla_s2=32\nif people_killed_s1 is None or people_killed_in_madalla_s2 is None:\n print('neutral')\nelif people_killed_s1 == people_killed_in_madalla_s2:\n print('Entailment')\nelif people_killed_s1 != people_killed_in_madalla_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The average number of shirts with Salman , Ambani and Dalmiya is 72 , if all of them reached a shopping mall in Delhi and purchased 12 shirts each of them then average number of shirt each of them now has, \"statement 2\" :The average number of shirts with Salman , Ambani and Dalmiya is 42 , if all of them reached a shopping mall in Delhi and purchased 12 shirts each of them then average number of shirt each of them now has, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Average_number_of_shirts_s1=72\nAverage_number_of_shirts_s2=42\nif Average_number_of_shirts_s1 is None or Average_number_of_shirts_s2 is None:\n print('neutral')\nelif Average_number_of_shirts_s1 == Average_number_of_shirts_s2:\n print('Entailment')\nelif Average_number_of_shirts_s1 != Average_number_of_shirts_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 30 % of all fishermen in Piscataquis County are also hunters while only 20 % of all hunters are fishermen, \"statement 2\" :less than 50 % of all fishermen in Piscataquis County are also hunters while only 20 % of all hunters are fishermen, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "fisher_man_s1=20\nfisher_man_s2=20\nif fisher_man_s1 is None or fisher_man_s2 is None:\n print('neutral')\nelif fisher_man_s1 == fisher_man_s2:\n print('Entailment')\nelif fisher_man_s1 != fisher_man_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sacha runs at a constant speed of more than 4 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"statement 2\" :Sacha runs at a constant speed of 6 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sacha_speed_s1=4\nSacha_speed_s1=None\nSacha_speed_s2=6\nif Sacha_speed_s1 is None or Sacha_speed_s2 is None:\n print('neutral')\nelif Sacha_speed_s1 == Sacha_speed_s2:\n print('Entailment')\nelif Sacha_speed_s1 != Sacha_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In 3 years John will be twice as old as Frank, \"statement 2\" :In more than 3 years John will be twice as old as Frank, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Johan_age_s1=3\nJohan_age_s2=3+1\n\nif Johan_age_s1 is None or Johan_age_s2 is None:\n print('neutral')\nelif Johan_age_s1 == Johan_age_s2:\n print('Entailment')\nelif Johan_age_s1 != Johan_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tali builds a tower using only red , green , and blue toy bricks in a ratio of 4 : 3 : 1, \"statement 2\" :Tali builds a tower using only red , green , and blue toy bricks in a ratio of less than 4 : 3 : 1, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ration_s1=1.333\nration_s2=1.333-1\n\nif ration_s1 is None or ration_s2 is None:\n print('neutral')\nelif ration_s1 == ration_s2:\n print('Entailment')\nelif ration_s1 != ration_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 4 more women than men on Centerville ' s board of education, \"statement 2\" :There are 7 more women than men on Centerville ' s board of education, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "centerville_board_s1=4\ncenterville_board_s2=7\n\nif centerville_board_s1 is None or centerville_board_s2 is None:\n print('neutral')\nelif centerville_board_s1 == centerville_board_s2:\n print('Entailment')\nelif centerville_board_s1 != centerville_board_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If KING is coded as 17 and MASS is coded as 29 Then DOG is coded as, \"statement 2\" :If KING is coded as less than 67 and MASS is coded as 29 Then DOG is coded as, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "King_coded_s1=17\nKing_coded_s2=67\nif King_coded_s1 is None or King_coded_s2 is None:\n print('neutral')\nelif King_coded_s1 <= King_coded_s2:\n print('Entailment')\nelif King_coded_s1 != King_coded_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Only 14 percent of Americans say an impending terrorist attack is likely in their community ., \"statement 2\" :30 percent said they think an attack on American soil is likely soon, \"options: \" Entailment or neutral?", + "Output Program": [ + "terrosist_attck_chance_s1=14\nterrosist_attck_chance_s1=None\nterrosist_attck_chance_s2=30\nif terrosist_attck_chance_s1 is None or terrosist_attck_chance_s2 is None:\n print('neutral')\nelif terrosist_attck_chance_s1 == terrosist_attck_chance_s2:\n print('Entailment')\nelif terrosist_attck_chance_s1 != terrosist_attck_chance_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Missy received less than 75 messages from Laurence , how many messages does Keith receive from Juan ?, \"statement 2\" :If Missy received 25 messages from Laurence , how many messages does Keith receive from Juan ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Missy_recevied_s1=75\nMissy_recevied_s1=None\nMissy_recevied_s2=25\nif Missy_recevied_s1 is None or Missy_recevied_s2 is None:\n print('neutral')\nelif Missy_recevied_s1 == Missy_recevied_s2:\n print('Entailment')\nelif Missy_recevied_s1 != Missy_recevied_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Molly is the owner of the Wafting Pie Company and her employees used 816.0 eggs to bake pumpkin pies this morning, and 1339.0 eggs this afternoon, \"statement 2\" :2156.0 eggs were used this day, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Eggs_used_s1=816+1339\nEggs_used_s2=2156\n\nif Eggs_used_s1 is None or Eggs_used_s2 is None:\n print('neutral')\nelif Eggs_used_s1 == Eggs_used_s2:\n print('Entailment')\nelif Eggs_used_s1 != Eggs_used_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Matt and Peter can do together a piece of work in 20 days, \"statement 2\" :Matt and Peter can do together a piece of work in more than 20 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "matt_and_peter_work_s1=20\nmatt_and_peter_work_s2=20+1\n\nif matt_and_peter_work_s1 is None or matt_and_peter_work_s2 is None:\n print('neutral')\nelif matt_and_peter_work_s1 == matt_and_peter_work_s2:\n print('Entailment')\nelif matt_and_peter_work_s1 != matt_and_peter_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If the distance between their homes is 80 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"statement 2\" :If the distance between their homes is more than 70 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distnace_between_homes_s1=80\ndistnace_between_homes_s2=70\n\nif distnace_between_homes_s1 is None or distnace_between_homes_s2 is None:\n print('neutral')\nelif distnace_between_homes_s1 >= distnace_between_homes_s2:\n print('Entailment')\nelif distnace_between_homes_s1 != distnace_between_homes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John will be 2 times as old as Tom in 4 years, \"statement 2\" :John will be 8 times as old as Tom in 4 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jhon_old_as_s1=2\nJhon_old_as_s2=8\n\nif Jhon_old_as_s1 is None or Jhon_old_as_s2 is None:\n print('neutral')\nelif Jhon_old_as_s1 == Jhon_old_as_s2:\n print('Entailment')\nelif Jhon_old_as_s1 != Jhon_old_as_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Another survey of 150 people in the town of Angie found that 60 % preferred Brand A, \"statement 2\" :Another survey of less than 250 people in the town of Angie found that 60 % preferred Brand A, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Preferred_brand_A_s1=60\nPreferred_brand_A_s2=60\n\nif Preferred_brand_A_s1 is None or Preferred_brand_A_s2 is None:\n print('neutral')\nelif Preferred_brand_A_s1 == Preferred_brand_A_s2:\n print('Entailment')\nelif Preferred_brand_A_s1 != Preferred_brand_A_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Paul has to secure 50 % marks to clear his exam of class 7 th .\nHe got 50 marks and failed by 10 marks .\nWhat is the maximum marks ?, \"statement 2\" :Paul has to secure 80 % marks to clear his exam of class 7 th . He got 50 marks and failed by 10 marks . What is the maximum marks ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "paul_need_marks_for_clearexam_s1=50\npaul_need_marks_for_clearexam_s2=80\n\nif paul_need_marks_for_clearexam_s1 is None or paul_need_marks_for_clearexam_s2 is None:\n print('neutral')\nelif paul_need_marks_for_clearexam_s1 == paul_need_marks_for_clearexam_s2:\n print('Entailment')\nelif paul_need_marks_for_clearexam_s1 != paul_need_marks_for_clearexam_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": `` That poster , that shot of her , is just one of the definitive images of that time , '' Leicht said ., \"statement 2\" :Professor : Poster `` one of the last iconic pinup images '', \"options: \" Entailment or neutral?", + "Output Program": [ + "Images_s1=1\nImages_s2=1\n\nif Images_s1 is None or Images_s2 is None:\n print('neutral')\nelif Images_s1 == Images_s2:\n print('Entailment')\nelif Images_s1 != Images_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Amar takes as much time in running less than 48 meters as a car takes in covering 48 meters, \"statement 2\" :Amar takes as much time in running 18 meters as a car takes in covering 48 meters, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Amar_running_s1=48\nAmar_running_s1=None\nAmar_running_s2=18\n\nif Amar_running_s1 is None or Amar_running_s2 is None:\n print('neutral')\nelif Amar_running_s1 == Amar_running_s2:\n print('Entailment')\nelif Amar_running_s1 != Amar_running_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mac has \u00a3 less than 5 more than Ken , but then Ken wins on the horses and trebles his money , so that he now has \u00a3 2 more than the original amount of money that the two boys had between them, \"statement 2\" :Mac has \u00a3 3 more than Ken , but then Ken wins on the horses and trebles his money , so that he now has \u00a3 2 more than the original amount of money that the two boys had between them, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Mac_has_s1=5\nMac_has_s1=None\nMac_has_s2=3\n\nif Mac_has_s1 is None or Mac_has_s2 is None:\n print('neutral')\nelif Mac_has_s1 == Mac_has_s2:\n print('Entailment')\nelif Mac_has_s1 != Mac_has_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sam has 6.0 puppies and he gave 2.0 of them to a friend, \"statement 2\" :He has 8.0 puppies now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "puppies_s1=6\npuppies_s2=8\nif puppies_s1 is None or puppies_s2 is None:\n print('neutral')\nelif puppies_s1 == puppies_s2:\n print('Entailment')\nelif puppies_s1 != puppies_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Arun obtained more than 56 , 65 , 82 , 67 and 85 marks ( out in 100 ) in English , Mathematics , Chemistry , Biology and Physics, \"statement 2\" :Arun obtained 76 , 65 , 82 , 67 and 85 marks ( out in 100 ) in English , Mathematics , Chemistry , Biology and Physics, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Arun_marks_s1=56,65,82,67\nArun_marks_s1=None\nArun_marks_s2=76,65,82,67,85\nif Arun_marks_s1 is None or Arun_marks_s2 is None:\n print('neutral')\nelif Arun_marks_s1 == Arun_marks_s2:\n print('Entailment')\nelif Arun_marks_s1 != Arun_marks_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": That means the pilots have become one obvious area of focus ., \"statement 2\" :The plane 's pilots have become one obvious area of focus, \"options: \" Entailment or neutral?", + "Output Program": [ + "pilots_become_area_focus_s1=1\npilots_become_area_focus_s2=1\n\nif pilots_become_area_focus_s1 is None or pilots_become_area_focus_s2 is None:\n print('neutral')\nelif pilots_become_area_focus_s1 == pilots_become_area_focus_s2:\n print('Entailment')\nelif pilots_become_area_focus_s1 != pilots_become_area_focus_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Meg and Bob are among the more than 3 participants in a cycling race, \"statement 2\" :Meg and Bob are among the 8 participants in a cycling race, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Cycling_race_s1=3\nCycling_race_s1=None #morethan 3 not proper number\nCycling_race_s2=8\n\nif Cycling_race_s1 is None or Cycling_race_s2 is None:\n print('neutral')\nelif Cycling_race_s1 == Cycling_race_s2:\n print('Entailment')\nelif Cycling_race_s1 != Cycling_race_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Luke had 47.0 pieces of clothing to wash and he put 17.0 of them in 1.0 load, but decided to split the rest into 5.0 equal loads, \"statement 2\" :10.0 pieces of clothing could go in each of the small loads, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Luke_clothes_pieces_s1=47\nLuke_clothes_pieces_s2=10\n\nif Luke_clothes_pieces_s1 is None or Luke_clothes_pieces_s2 is None:\n print('neutral')\nelif Luke_clothes_pieces_s1 == Luke_clothes_pieces_s2:\n print('Entailment')\nelif Luke_clothes_pieces_s1 != Luke_clothes_pieces_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Suraj has a certain average of runs for 16 innings, \"statement 2\" :Suraj has a certain average of runs for less than 86 innings, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Suraj_average_run_s1=16\nSuraj_average_run_s2=86\n\nif Suraj_average_run_s1 is None or Suraj_average_run_s2 is None:\n print('neutral')\nelif Suraj_average_run_s1 <= Suraj_average_run_s2:\n print('Entailment')\nelif Suraj_average_run_s1 != Suraj_average_run_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": At Veridux Corporation , there are less than 815 employees, \"statement 2\" :At Veridux Corporation , there are 215 employees, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Employees_s1=815\nEmployees_s1=None\nEmployees_s2=215\nif Employees_s1 is None or Employees_s2 is None:\n print('neutral')\nelif Employees_s1 == Employees_s2:\n print('Entailment')\nelif Employees_s1 != Employees_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a friendship gang Raja has 9 gang , in how many ways can he invite one or more of the gang to his house ?, \"statement 2\" :In a friendship gang Raja has more than 1 gang , in how many ways can he invite one or more of the gang to his house ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Raja_gang_s1=9\nRaja_gang_s2=1\n\nif Raja_gang_s1 is None or Raja_gang_s2 is None:\n print('neutral')\nelif Raja_gang_s1 >= Raja_gang_s2:\n print('Entailment')\nelif Raja_gang_s1 != Raja_gang_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are 330 baseball fans in the town , each of whom is a fan of exactly one of those three teams , how many NY Mets fans are there in this town ?, \"statement 2\" :If there are less than 330 baseball fans in the town , each of whom is a fan of exactly one of those three teams , how many NY Mets fans are there in this town ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Baseball_fans_s1=330\nBaseball_fans_s2=330-1\n\nif Baseball_fans_s1 is None or Baseball_fans_s2 is None:\n print('neutral')\nelif Baseball_fans_s1 == Baseball_fans_s2:\n print('Entailment')\nelif Baseball_fans_s1 != Baseball_fans_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 40.0 boys and 117 girls on the playground., \"statement 2\" :157.0 children are on the playground, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Children_in_playground_s1=40+117\nChildren_in_playground_s2=157\nif Children_in_playground_s1 is None or Children_in_playground_s2 is None:\n print('neutral')\nelif Children_in_playground_s1 == Children_in_playground_s2:\n print('Entailment')\nelif Children_in_playground_s1 != Children_in_playground_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the ratio between the one - third age of Neelam and half of Shaan ' s age of 5 : 9 , then what is the school age of Shaan ?, \"statement 2\" :If the ratio between the one - third age of Neelam and half of Shaan ' s age of less than 6 : 9 , then what is the school age of Shaan ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_ration_s1=0.5555\nage_ration_s2=0.6666\nif age_ration_s1 is None or age_ration_s2 is None:\n print('neutral')\nelif age_ration_s1 <= age_ration_s2:\n print('Entailment')\nelif age_ration_s1 != age_ration_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 4320 among John , Jose & Binoy in the ration 2 : 4 : 6, \"statement 2\" :more than 3320 among John , Jose & Binoy in the ration 2 : 4 : 6, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jhon_among_s1=4320\nJhon_among_s2=3320\nif Jhon_among_s1 is None or Jhon_among_s2 is None:\n print('neutral')\nelif Jhon_among_s1 >= Jhon_among_s2:\n print('Entailment')\nelif Jhon_among_s1 != Jhon_among_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The main issue was whether a 408-foot needle atop the One World Trade Center would be counted in the total height of the tower ., \"statement 2\" :One World Trade Center ruled to be taller than Willis Tower, \"options: \" Entailment or neutral?", + "Output Program": [ + "World_trade_center_height_s1=408\nWorld_trade_center_height_s1=None\nwills_tower_height_s2=442\nif World_trade_center_height_s1 is None or wills_tower_height_s2 is None:\n print('neutral')\nelif World_trade_center_height_s1 == wills_tower_height_s2:\n print('Entailment')\nelif World_trade_center_height_s1 != wills_tower_height_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the distance between their homes is 70 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"statement 2\" :If the distance between their homes is 40 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distace_between_home_s1=70\ndistace_between_home_s2=40\nif distace_between_home_s1 is None or distace_between_home_s2 is None:\n print('neutral')\nelif distace_between_home_s1 == distace_between_home_s2:\n print('Entailment')\nelif distace_between_home_s1 != distace_between_home_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": For the year , the Dow rose 3 percent , while the S & P 500 index added 9 percent ., \"statement 2\" :For the year , the Dow gained 3 percent , the S & P rose 9 percent ., \"options: \" Entailment or neutral?", + "Output Program": [ + "dow_gained_s1=3\ndow_gained_s2=3\nif dow_gained_s1 is None or dow_gained_s2 is None:\n print('neutral')\nelif dow_gained_s1 == dow_gained_s2:\n print('Entailment')\nelif dow_gained_s1 != dow_gained_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Evan ran a mile in 10 minutes Monday morning , and he ran the same mile in 8 minutes on Tuesday morning, \"statement 2\" :Evan ran a mile in less than 40 minutes Monday morning , and he ran the same mile in 8 minutes on Tuesday morning, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Evan_run_s1=10\nEvan_run_s2=40\nif Evan_run_s1 is None or Evan_run_s2 is None:\n print('neutral')\nelif Evan_run_s1 <= Evan_run_s2:\n print('Entailment')\nelif Evan_run_s1 != Evan_run_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mark sold 11 boxes less than n and Ann sold 2 boxes less than n, \"statement 2\" :Mark sold more than 11 boxes less than n and Ann sold 2 boxes less than n, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Mark_sold_s1=11-1\nMark_sold_s2=11+1\nif Mark_sold_s1 is None or Mark_sold_s2 is None:\n print('neutral')\nelif Mark_sold_s1 == Mark_sold_s2:\n print('Entailment')\nelif Mark_sold_s1 != Mark_sold_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Susan made a block with small cubes of 8 cubic cm volume to make a block , 3 small cubes long , 9 small cubes wide and 5 small cubes deep, \"statement 2\" :Susan made a block with small cubes of more than 6 cubic cm volume to make a block , 3 small cubes long , 9 small cubes wide and 5 small cubes deep, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Susan_block_s1=8\nSusan_block_s2=6\nif Susan_block_s1 is None or Susan_block_s2 is None:\n print('neutral')\nelif Susan_block_s1 >= Susan_block_s2:\n print('Entailment')\nelif Susan_block_s1 != Susan_block_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In Lulu company more than 20 % of the employees earn less than $ 50,000 a year , 60 % of the employees earn more than $ 40,000 a year , 11 % of the employees earn $ 43,000 a year and 5 % of the employees earn $ 49,000 a year, \"statement 2\" :In Lulu company 60 % of the employees earn less than $ 50,000 a year , 60 % of the employees earn more than $ 40,000 a year , 11 % of the employees earn $ 43,000 a year and 5 % of the employees earn $ 49,000 a year, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Employee_earn_s1=20\nEmployee_earn_s1=None\nEmployee_earn_s2=60\nif Employee_earn_s1 is None or Employee_earn_s2 is None:\n print('neutral')\nelif Employee_earn_s1 == Employee_earn_s2:\n print('Entailment')\nelif Employee_earn_s1 != Employee_earn_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The British island group of Tristan da Cunha stands profoundly alone in the South Atlantic ., \"statement 2\" :The islands of Tristan da Cunha sit 1,750 miles off South Africa, \"options: \" Entailment or neutral?", + "Output Program": [ + "british_island_group_s1=None\nTristan_island_south_africa=1750\nif british_island_group_s1 is None or Tristan_island_south_africa is None:\n print('neutral')\nelif british_island_group_s1 == Tristan_island_south_africa:\n print('Entailment')\nelif british_island_group_s1 != Tristan_island_south_africa:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dan ' s age after 20 years will be 7 times his age 4 years ago, \"statement 2\" :Dan ' s age after less than 20 years will be 7 times his age 4 years ago, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dan_age_s1=20\nDan_age_s2=20-1\nif Dan_age_s1 is None or Dan_age_s2 is None:\n print('neutral')\nelif Dan_age_s1 == Dan_age_s2:\n print('Entailment')\nelif Dan_age_s1 != Dan_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 532.0 people are watching a movie in a theater and there are 750.0 seats free, \"statement 2\" :1284.0 seats are there in the theater, \"options: \" Entailment or contradiction?", + "Output Program": [ + "watching_movie=532\nseats_in_theater=1284\nif watching_movie is None or seats_in_theater is None:\n print('neutral')\nelif watching_movie == seats_in_theater:\n print('Entailment')\nelif watching_movie != seats_in_theater:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were 10.0 students riding on the school bus and at the first stop, 3.0 students got off of the bus, \"statement 2\" :10.0 students are left on the bus, \"options: \" Entailment or contradiction?", + "Output Program": [ + "student_in_bus_s1=10-2\nleft_on_bus_s2=10\nif student_in_bus_s1 is None or left_on_bus_s2 is None:\n print('neutral')\nelif student_in_bus_s1 == left_on_bus_s2:\n print('Entailment')\nelif student_in_bus_s1 != left_on_bus_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Amar takes as much time in running 18 meters as a car takes in covering 48 meters, \"statement 2\" :Amar takes as much time in running less than 28 meters as a car takes in covering 48 meters, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Amar_takes_time_s1=18\nAmar_takes_time_s2=28\nif Amar_takes_time_s1 is None or Amar_takes_time_s2 is None:\n print('neutral')\nelif Amar_takes_time_s1 <= Amar_takes_time_s2:\n print('Entailment')\nelif Amar_takes_time_s1 != Amar_takes_time_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Last year 26 members of a certain club traveled to England , 26 members traveled to France , and 30 members traveled to Italy, \"statement 2\" :Last year 86 members of a certain club traveled to England , 26 members traveled to France , and 30 members traveled to Italy, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "club_travel_england_s1=26\nclub_travel_england_s2=86\nif club_travel_england_s1 is None or club_travel_england_s2 is None:\n print('neutral')\nelif club_travel_england_s1 == club_travel_england_s2:\n print('Entailment')\nelif club_travel_england_s1 != club_travel_england_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the driver beats the ticket , they pay Fixed 25 % of what the citation would have cost ., \"statement 2\" :If Fixed gets someone out of a ticket , it charges them 25 % of the ticket fine, \"options: \" Entailment or neutral?", + "Output Program": [ + "pay_fixed_s1=25\ncharges_ticket_fine_s2=25\nif pay_fixed_s1 is None or charges_ticket_fine_s2 is None:\n print('neutral')\nelif pay_fixed_s1 == charges_ticket_fine_s2:\n print('Entailment')\nelif pay_fixed_s1 != charges_ticket_fine_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 2.0 toucans are sitting on a tree limb and 1.0 more toucan joins them, \"statement 2\" :There are 3.0 toucans in all, \"options: \" Entailment or contradiction?", + "Output Program": [ + "toucans_on_tree_s1=2+1\ntoucans_on_tree_s2=3\nif toucans_on_tree_s1 is None or toucans_on_tree_s2 is None:\n print('neutral')\nelif toucans_on_tree_s1 == toucans_on_tree_s2:\n print('Entailment')\nelif toucans_on_tree_s1 != toucans_on_tree_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": On the first day , each patient received less than 85 milligrams of Dosaxin, \"statement 2\" :On the first day , each patient received 15 milligrams of Dosaxin, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dosaxin_on_first_day_s1=85\nDosaxin_on_first_day_s1=None\nDosaxin_on_first_day_s2=15\nif Dosaxin_on_first_day_s1 is None or Dosaxin_on_first_day_s2 is None:\n print('neutral')\nelif Dosaxin_on_first_day_s1 == Dosaxin_on_first_day_s2:\n print('Entailment')\nelif Dosaxin_on_first_day_s1 != Dosaxin_on_first_day_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy is younger than Molly by 14 years, \"statement 2\" :Sandy is younger than Molly by less than 64 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sandy_age_s1=14\nSandy_age_s2=64\n\nif Sandy_age_s1 is None or Sandy_age_s2 is None:\n print('neutral')\nelif Sandy_age_s1 <= Sandy_age_s2:\n print('Entailment')\nelif Sandy_age_s1 != Sandy_age_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Two demonstrators and two police officers were injured and taken to the hospital , Olsson said ., \"statement 2\" :Four people were injured , including two police officers, \"options: \" Entailment or neutral?", + "Output Program": [ + "Police_officer_and_demnstrators_s1=4\nInjured_people_s2=4\n\nif Police_officer_and_demnstrators_s1 is None or Injured_people_s2 is None:\n print('neutral')\nelif Police_officer_and_demnstrators_s1 == Injured_people_s2:\n print('Entailment')\nelif Police_officer_and_demnstrators_s1 != Injured_people_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Missy received 18 messages from Laurence , how many messages does Keith receive from Juan ?, \"statement 2\" :If Missy received less than 68 messages from Laurence , how many messages does Keith receive from Juan ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Missy_received_messages_s1=18\nMissy_received_messages_s2=68\n\nif Missy_received_messages_s1 is None or Missy_received_messages_s2 is None:\n print('neutral')\nelif Missy_received_messages_s1 <= Missy_received_messages_s2:\n print('Entailment')\nelif Missy_received_messages_s1 != Missy_received_messages_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jack and Christina are standing 240 feet apart on a level surface, \"statement 2\" :Jack and Christina are standing 640 feet apart on a level surface, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jack_and_christina_standing_s1=240\njack_and_christina_standing_s2=640\n\nif jack_and_christina_standing_s1 is None or jack_and_christina_standing_s2 is None:\n print('neutral')\nelif jack_and_christina_standing_s1 == jack_and_christina_standing_s2:\n print('Entailment')\nelif jack_and_christina_standing_s1 != jack_and_christina_standing_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Efrida and Frazer who live less than 70 miles apart , meet at a restaurant that is directly north of Efrida ' s home and directly east of Frazer ' s home, \"statement 2\" :Efrida and Frazer who live 10 miles apart , meet at a restaurant that is directly north of Efrida ' s home and directly east of Frazer ' s home, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Efrida_and_Frazer_live_s1=70\nEfrida_and_Frazer_live_s1=None #lessthan 70 not proper number\nEfrida_and_Frazer_live_s2=10\n\nif Efrida_and_Frazer_live_s1 is None or Efrida_and_Frazer_live_s2 is None:\n print('neutral')\nelif Efrida_and_Frazer_live_s1 == Efrida_and_Frazer_live_s2:\n print('Entailment')\nelif Efrida_and_Frazer_live_s1 != Efrida_and_Frazer_live_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A new report claiming to be the most comprehensive look at global slavery says 30 million people are living as slaves around the world ., \"statement 2\" :A new report claims 30 million people are living as slaves globally, \"options: \" Entailment or neutral?", + "Output Program": [ + "People_are_living_as_Slaves_s1=30\nPeople_are_living_as_Slaves_s1=30\nif People_are_living_as_Slaves_s1 is None or People_are_living_as_Slaves_s1 is None:\n print('neutral')\nelif People_are_living_as_Slaves_s1 == People_are_living_as_Slaves_s1:\n print('Entailment')\nelif People_are_living_as_Slaves_s1 != People_are_living_as_Slaves_s1:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Souju ' s father ' s age will be twice Tharak ' s age after\n10 years, \"statement 2\" :Souju ' s father ' s age will be twice Tharak ' s age after more than 10 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Souju_father_age_s1=10\nSouju_father_age_s2=10+1\nif Souju_father_age_s1 is None or Souju_father_age_s2 is None:\n print('neutral')\nelif Souju_father_age_s1 == Souju_father_age_s2:\n print('Entailment')\nelif Souju_father_age_s1 != Souju_father_age_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jane will take only 12 days to complete the same task, \"statement 2\" :Jane will take only less than 62 days to complete the same task, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jane_takes_day_s1=12\nJane_takes_day_s2=62\nif Jane_takes_day_s1 is None or Jane_takes_day_s2 is None:\n print('neutral')\nelif Jane_takes_day_s1 <= Jane_takes_day_s2:\n print('Entailment')\nelif Jane_takes_day_s1 != Jane_takes_day_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alyssa picked 42.0 pears, and Nancy picked 17.0 pears from the pear tree ., \"statement 2\" :60.0 pears were picked in all, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Alyssa_and_Nancy_picked_s1=42+17\ntotal_pears_s2=60\nif Alyssa_and_Nancy_picked_s1 is None or total_pears_s2 is None:\n print('neutral')\nelif Alyssa_and_Nancy_picked_s1 == total_pears_s2:\n print('Entailment')\nelif Alyssa_and_Nancy_picked_s1 != total_pears_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Based on data from NASA 's camera , Cooke estimated that the meteor was at least four feet wide , weighed about 4,000 pounds and burned five times brighter than a full moon ., \"statement 2\" :NASA scientist : Fireball burned five times brighter than a full moon, \"options: \" Entailment or neutral?", + "Output Program": [ + "mereor_weighed_s1=4000\nFireball_burned_five_times=None\nif mereor_weighed_s1 is None or Fireball_burned_five_times is None:\n print('neutral')\nelif mereor_weighed_s1 == Fireball_burned_five_times:\n print('Entailment')\nelif mereor_weighed_s1 != Fireball_burned_five_times:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A cereal box holds 18.0 cups of cereal and each serving is 2.0 cups, \"statement 2\" :9.0 servings are in the whole box, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Cereal_box_s1=18/2\nservings_in_box=9\nif Cereal_box_s1 is None or servings_in_box is None:\n print('neutral')\nelif Cereal_box_s1 == servings_in_box:\n print('Entailment')\nelif Cereal_box_s1 != servings_in_box:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Tim received $ 800 more than Jim did , what was the profit made by their business in that year ?, \"statement 2\" :If Tim received $ 700 more than Jim did , what was the profit made by their business in that year ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Tim_recevied_s1=800\nTim_recevied_s2=700\nif Tim_recevied_s1 is None or Tim_recevied_s2 is None:\n print('neutral')\nelif Tim_recevied_s1 == Tim_recevied_s2:\n print('Entailment')\nelif Tim_recevied_s1 != Tim_recevied_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Malaysian Maritime Enforcement Agency said 60 people have been rescued so far , and five bodies have been recovered ., \"statement 2\" :60 people rescued from sea, \"options: \" Entailment or neutral?", + "Output Program": [ + "rescued_people_s1=60\nrescued_people_s1=None\nrescued_people_s2=60\nif rescued_people_s1 is None or rescued_people_s2 is None:\n print('neutral')\nelif rescued_people_s1 == rescued_people_s2:\n print('Entailment')\nelif rescued_people_s1 != rescued_people_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jane earned enough money by selling seashells at less than 45 cents each to buy several used paperback books at 55 cents each, \"statement 2\" :Jane earned enough money by selling seashells at 25 cents each to buy several used paperback books at 55 cents each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Selling_seashells_s1=45\nSelling_seashells_s1=None #lessthan 45 Not proper number\nSelling_seashells_s2=25\n\nif Selling_seashells_s1 is None or Selling_seashells_s2 is None:\n print('neutral')\nelif Selling_seashells_s1 == Selling_seashells_s2:\n print('Entailment')\nelif Selling_seashells_s1 != Selling_seashells_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary had 33.0 Pokemon cards , and 6.0 were torn and Sam gave Mary 23.0 new Pokemon cards , \"statement 2\" :Mary has 57.0 Pokemon cards now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "mary_pockemon_card_s1=33-6+23\nmary_pockemon_card_s2=57\n\nif mary_pockemon_card_s1 is None or mary_pockemon_card_s2 is None:\n print('neutral')\nelif mary_pockemon_card_s1 == mary_pockemon_card_s2:\n print('Entailment')\nelif mary_pockemon_card_s1 != mary_pockemon_card_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Randy has 78.0 blocks and he uses 19.0 blocks to build a tower, \"statement 2\" :63.0 blocks are left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "randy_total_bocks_s1=78+19\nbocks_left_s2=63\n\nif randy_total_bocks_s1 is None or bocks_left_s2 is None:\n print('neutral')\nelif randy_total_bocks_s1 == bocks_left_s2:\n print('Entailment')\nelif randy_total_bocks_s1 != bocks_left_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mike buys less than 8 cartons of eggs at the store, \"statement 2\" :Mike buys 3 cartons of eggs at the store, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Mike_buys_eggs_s1=8\nMike_buys_eggs_s1=None\nMike_buys_eggs_s2=3\n\nif Mike_buys_eggs_s1 is None or Mike_buys_eggs_s2 is None:\n print('neutral')\nelif Mike_buys_eggs_s1 == Mike_buys_eggs_s2:\n print('Entailment')\nelif Mike_buys_eggs_s1 != Mike_buys_eggs_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Albert completes a piece of work in 20 days , Rose completes the same work in 30 days, \"statement 2\" :Albert completes a piece of work in less than 50 days , Rose completes the same work in 30 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "alert_complates_work_s1=20\nalert_complates_work_s2=50\n\nif alert_complates_work_s1 is None or alert_complates_work_s2 is None:\n print('neutral')\nelif alert_complates_work_s1 <= alert_complates_work_s2:\n print('Entailment')\nelif alert_complates_work_s1 != alert_complates_work_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are 55 possible combinations in which Michael is not selected , what is the value of e ?, \"statement 2\" :If there are more than 45 possible combinations in which Michael is not selected , what is the value of e ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "possible_combination_s1=55\npossible_combination_s2=45\n\nif possible_combination_s1 is None or possible_combination_s2 is None:\n print('neutral')\nelif possible_combination_s1 >= possible_combination_s2:\n print('Entailment')\nelif possible_combination_s1 != possible_combination_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At a meeting of the more than 3 Joint Chiefs of Staff , the Chief of Naval Operations does not want to sit next to the Chief of the National Guard Bureau, \"statement 2\" :At a meeting of the 8 Joint Chiefs of Staff , the Chief of Naval Operations does not want to sit next to the Chief of the National Guard Bureau, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "meeting_joint_chief__s1=3\nmeeting_joint_chief__s1=None\nmeeting_joint_chief__s2=8\nif meeting_joint_chief__s1 is None or meeting_joint_chief__s2 is None:\n print('neutral')\nelif meeting_joint_chief__s1 == meeting_joint_chief__s2:\n print('Entailment')\nelif meeting_joint_chief__s1 != meeting_joint_chief__s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Charles strolled at 3.0 miles per hour for 6.0 hours, \"statement 2\" :Charles travelled for 21.0 miles, \"options: \" Entailment or contradiction?", + "Output Program": [ + "charles_strolled__s1=6*3\ncharles_strolled_travelled_s2=21\nif charles_strolled__s1 is None or charles_strolled_travelled_s2 is None:\n print('neutral')\nelif charles_strolled__s1 == charles_strolled_travelled_s2:\n print('Entailment')\nelif charles_strolled__s1 != charles_strolled_travelled_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joe \u2019 s average ( arithmetic mean ) test score across 4 equally weighted tests was 60, \"statement 2\" :Joe \u2019 s average ( arithmetic mean ) test score across 2 equally weighted tests was 60, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Joe_average_s1=60/4\nJoe_average_s2=60/2\nif Joe_average_s1 is None or Joe_average_s2 is None:\n print('neutral')\nelif Joe_average_s1 == Joe_average_s2:\n print('Entailment')\nelif Joe_average_s1 != Joe_average_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Amy had 4.0 music files and 21.0 video files on her flash drive, and she deleted 23.0 of the files, \"statement 2\" :2.0 files were still on her flash drive, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Amy_delated_s1=21+4-23\nAmy_still_here_s2=2\nif Amy_delated_s1 is None or Amy_still_here_s2 is None:\n print('neutral')\nelif Amy_delated_s1 == Amy_still_here_s2:\n print('Entailment')\nelif Amy_delated_s1 != Amy_still_here_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Kiran travels from A to B by car and returns from B to A by cycle in less than 8 hours, \"statement 2\" :Kiran travels from A to B by car and returns from B to A by cycle in 7 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "B_to_A_s1=8\nB_to_A_s1=None\nB_to_A_s2=7\nif B_to_A_s1 is None or B_to_A_s2 is None:\n print('neutral')\nelif B_to_A_s1 == B_to_A_s2:\n print('Entailment')\nelif B_to_A_s1 != B_to_A_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Texan Gregory Rose , who 's uninsured , was diagnosed with leukemia at 23, \"statement 2\" :He had leukemia , at 23 ., \"options: \" Entailment or neutral?", + "Output Program": [ + "leukemia_at_s1=23\nHe_had_leukemia_at_s2=23\nif leukemia_at_s1 is None or He_had_leukemia_at_s2 is None:\n print('neutral')\nelif leukemia_at_s1 == He_had_leukemia_at_s2:\n print('Entailment')\nelif leukemia_at_s1 != He_had_leukemia_at_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Frank is 15 years younger then John, \"statement 2\" :Frank is less than 15 years younger then John, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "frank_young_s1=15\nfrank_young_s2=15-1\nif frank_young_s1 is None or frank_young_s2 is None:\n print('neutral')\nelif frank_young_s1 == frank_young_s2:\n print('Entailment')\nelif frank_young_s1 != frank_young_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": ( CNET.com ) -- The HP Pavilion Media Center TV m8120n is proof positive that quad-core processing is ready for mass consumption ., \"statement 2\" :The HP Pavilion Media Center TV m8120n retails for $ 1,150, \"options: \" Entailment or neutral?", + "Output Program": [ + "Hp_tvredy_for_cosumpation_s1=None\nHp_tv_retails_for_s2=1150\nif Hp_tvredy_for_cosumpation_s1 is None or Hp_tv_retails_for_s2 is None:\n print('neutral')\nelif Hp_tvredy_for_cosumpation_s1 == Hp_tv_retails_for_s2:\n print('Entailment')\nelif Hp_tvredy_for_cosumpation_s1 != Hp_tv_retails_for_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In the biology lab of ` ` Jefferson ' ' High School there are 2.16 * 10 ^ 6 germs , equally divided among 10,800 Petri dishes, \"statement 2\" :In the biology lab of ` ` Jefferson ' ' High School there are 2.16 * 40 ^ 6 germs , equally divided among 10,800 Petri dishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "germs_in_biology_lab_s1=2160000\ngerms_in_biology_lab_s2=8847360000\nif germs_in_biology_lab_s1 is None or germs_in_biology_lab_s2 is None:\n print('neutral')\nelif germs_in_biology_lab_s1 == germs_in_biology_lab_s2:\n print('Entailment')\nelif germs_in_biology_lab_s1 != germs_in_biology_lab_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John invests some money at the beginning , David invests double the amount after 6 months , and Xavier invests thrice the amount after 8 months, \"statement 2\" :John invests some money at the beginning , David invests double the amount after 3 months , and Xavier invests thrice the amount after 8 months, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "double_amount_s1=6\ndouble_amount_s2=3\nif double_amount_s1 is None or double_amount_s2 is None:\n print('neutral')\nelif double_amount_s1 == double_amount_s2:\n print('Entailment')\nelif double_amount_s1 != double_amount_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mrs. Santiago has 58.0 red roses and Mrs. Garrett has 24.0, \"statement 2\" :The total number of roses is 82.0, \"options: \" Entailment or contradiction?", + "Output Program": [ + "roses_s1=58+24\ntotal_roses_s2=82\nif roses_s1 is None or total_roses_s2 is None:\n print('neutral')\nelif roses_s1 == total_roses_s2:\n print('Entailment')\nelif roses_s1 != total_roses_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alex joined him 8 months later , investing Rs, \"statement 2\" :Alex joined him less than 8 months later , investing Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "alex_joined_s1=8\nalex_joined_s2=8-1\nif alex_joined_s1 is None or alex_joined_s2 is None:\n print('neutral')\nelif alex_joined_s1 == alex_joined_s2:\n print('Entailment')\nelif alex_joined_s1 != alex_joined_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John takes a trip and drives 9 hours from Town X to Town Z at a rate of 60 miles per hour, \"statement 2\" :John takes a trip and drives more than 9 hours from Town X to Town Z at a rate of 60 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jhon_trip_s1=9\nJhon_trip_s2=9+1\nif Jhon_trip_s1 is None or Jhon_trip_s2 is None:\n print('neutral')\nelif Jhon_trip_s1 == Jhon_trip_s2:\n print('Entailment')\nelif Jhon_trip_s1 != Jhon_trip_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A mortar attack north of Baghdad killed four Iraqi national guardsmen and wounded 80 others Tuesday , while a top official from a prominent charity was kidnapped in the Iraqi capital ., \"statement 2\" :On Tuesday , a mortar attack killed four Iraqi guardsmen and injured 80 north of Baghdad ., \"options: \" Entailment or neutral?", + "Output Program": [ + "guardsmen_s1=80\nkilled_fourguardsmen_s2=80\nif guardsmen_s1 is None or killed_fourguardsmen_s2 is None:\n print('neutral')\nelif guardsmen_s1 == killed_fourguardsmen_s2:\n print('Entailment')\nelif guardsmen_s1 != killed_fourguardsmen_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Matthew ' s walking rate was less than 4 km per hour and Johnny ' s was 4 km per hour , how many km had Johnny walked when they met ?, \"statement 2\" :Matthew ' s walking rate was 3 km per hour and Johnny ' s was 4 km per hour , how many km had Johnny walked when they met ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Matthew_walking_rate_s1=4\nMatthew_walking_rate_s1=None\nMatthew_walking_rate_s2=3\nif Matthew_walking_rate_s1 is None or Matthew_walking_rate_s2 is None:\n print('neutral')\nelif Matthew_walking_rate_s1 == Matthew_walking_rate_s2:\n print('Entailment')\nelif Matthew_walking_rate_s1 != Matthew_walking_rate_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many seconds does Sandy take to cover a distance of more than 200 meters , if Sandy runs at a speed of 18 km / hr ?, \"statement 2\" :How many seconds does Sandy take to cover a distance of 700 meters , if Sandy runs at a speed of 18 km / hr ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cover_distance_s1=200\ncover_distance_s1=None\ncover_distance_s2=700\nif cover_distance_s1 is None or cover_distance_s2 is None:\n print('neutral')\nelif cover_distance_s1 == cover_distance_s2:\n print('Entailment')\nelif cover_distance_s1 != cover_distance_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 5106.0 books in the Oak Grove school libraries and they donated 1986.0 to the public ibrary, \"statement 2\" :3120.0 books are left in the school libraries, \"options: \" Entailment or contradiction?", + "Output Program": [ + "books_s1=5106-1986\nbooks_left_s2=3120\nif books_s1 is None or books_left_s2 is None:\n print('neutral')\nelif books_s1 == books_left_s2:\n print('Entailment')\nelif books_s1 != books_left_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": David obtained less than 86 , 65 , 82 , 67 and 85 marks ( out in 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :David obtained 76 , 65 , 82 , 67 and 85 marks ( out in 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "David_marks_s1=86,65,82,67,85\nDavid_marks_s1=None\nDavid_marks_s2=76,65,82,67,85\nif David_marks_s1 is None or David_marks_s2 is None:\n print('neutral')\nelif David_marks_s1 == David_marks_s2:\n print('Entailment')\nelif David_marks_s1 != David_marks_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Aamir saves 32 % of his monthly salary, \"statement 2\" :Aamir saves less than 42 % of his monthly salary, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Aamir_Saves_s1=32\nAamir_Saves_s2=42\nif Aamir_Saves_s1 is None or Aamir_Saves_s2 is None:\n print('neutral')\nelif Aamir_Saves_s1 <= Aamir_Saves_s2:\n print('Entailment')\nelif Aamir_Saves_s1 != Aamir_Saves_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Kishore saved 10 % of his monthly salary, \"statement 2\" :Kishore saved less than 50 % of his monthly salary, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Kishore_saved_s1=10\nKishore_saved_s2=50\nif Kishore_saved_s1 is None or Kishore_saved_s2 is None:\n print('neutral')\nelif Kishore_saved_s1 <= Kishore_saved_s2:\n print('Entailment')\nelif Kishore_saved_s1 != Kishore_saved_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The average number of shirts with Salman , Ambani and Dalmiya is 60 , if all of them reached a shopping mall in Delhi and purchased 3 shirts each of them then average number of shirt each of them now has, \"statement 2\" :The average number of shirts with Salman , Ambani and Dalmiya is 70 , if all of them reached a shopping mall in Delhi and purchased 3 shirts each of them then average number of shirt each of them now has, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "number_of_shirt_s1=60\nnumber_of_shirt_s2=70\nif number_of_shirt_s1 is None or number_of_shirt_s2 is None:\n print('neutral')\nelif number_of_shirt_s1 == number_of_shirt_s2:\n print('Entailment')\nelif number_of_shirt_s1 != number_of_shirt_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Dhoni paid a total of $ 38 , excluding sales tax , to rent the tool , for how many hours did she rent it ?, \"statement 2\" :If Dhoni paid a total of $ less than 58 , excluding sales tax , to rent the tool , for how many hours did she rent it ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dhoni_paid_s1=38\ndhoni_paid_s2=58\nif dhoni_paid_s1 is None or dhoni_paid_s2 is None:\n print('neutral')\nelif dhoni_paid_s1 <= dhoni_paid_s2:\n print('Entailment')\nelif dhoni_paid_s1 != dhoni_paid_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": They told authorities that 14 others , including nine young children , had died en route and were dropped overboard , officials told CNN ., \"statement 2\" :Authorities : 14 others , including 9 children , died en route and thrown overboard, \"options: \" Entailment or neutral?", + "Output Program": [ + "died_children_and_people_s1=14\ndied_children_and_people_s2=14\nif died_children_and_people_s1 is None or died_children_and_people_s2 is None:\n print('neutral')\nelif died_children_and_people_s1 == died_children_and_people_s2:\n print('Entailment')\nelif died_children_and_people_s1 != died_children_and_people_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John has 75 pencils , he distribute 20 pencils to his friends in his class, \"statement 2\" :John has 25 pencils , he distribute 20 pencils to his friends in his class, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jhon_pencil_s1=75-20\njhon_pencil_s2=25+20\nif jhon_pencil_s1 is None or jhon_pencil_s2 is None:\n print('neutral')\nelif jhon_pencil_s1 == jhon_pencil_s2:\n print('Entailment')\nelif jhon_pencil_s1 != jhon_pencil_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": They both work together for 5 days and then Sushil goes away, \"statement 2\" :They both work together for 8 days and then Sushil goes away, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "work_together_s1=5\nwork_together_s2=8\nif work_together_s1 is None or work_together_s2 is None:\n print('neutral')\nelif work_together_s1 == work_together_s2:\n print('Entailment')\nelif work_together_s1 != work_together_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shop Offered 40 % offer for every Shirt , Smith bought a shirt at Rs, \"statement 2\" :Shop Offered 10 % offer for every Shirt , Smith bought a shirt at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "shop_offer_s1=40\nshop_offer_s2=10\nif shop_offer_s1 is None or shop_offer_s2 is None:\n print('neutral')\nelif shop_offer_s1 == shop_offer_s2:\n print('Entailment')\nelif shop_offer_s1 != shop_offer_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Murali travelled from city A to city B at a speed of 4 kmph and from city B to city C at 6 kmph, \"statement 2\" :Murali travelled from city A to city B at a speed of 1 kmph and from city B to city C at 6 kmph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "City_A_to_B_s1=4\nCity_A_to_B_s2=1\nif City_A_to_B_s1 is None or City_A_to_B_s2 is None:\n print('neutral')\nelif City_A_to_B_s1 == City_A_to_B_s2:\n print('Entailment')\nelif City_A_to_B_s1 != City_A_to_B_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bayern Munich kept up the pressure on Dortmund with a 2-0 win over Hannover at the Allianz Arena ., \"statement 2\" :Bayern Munich stay second win a 2-0 win over Hannover, \"options: \" Entailment or neutral?", + "Output Program": [ + "Bayern_munich_s1=2,0\nBayern_munich_s2=2,0\nBayern_munich_s2=None\nif Bayern_munich_s1 is None or Bayern_munich_s2 is None:\n print('neutral')\nelif Bayern_munich_s1 == Bayern_munich_s2:\n print('Entailment')\nelif Bayern_munich_s1 != Bayern_munich_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Three unnamed suspects have been arrested in connection with the tunnel , the DEA said ., \"statement 2\" :Three unnamed suspects are in custody, \"options: \" Entailment or neutral?", + "Output Program": [ + "Unnamed_suspects_s1=3\nUnnamed_suspects_s2=3\nif Unnamed_suspects_s1 is None or Unnamed_suspects_s2 is None:\n print('neutral')\nelif Unnamed_suspects_s1 == Unnamed_suspects_s2:\n print('Entailment')\nelif Unnamed_suspects_s1 != Unnamed_suspects_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Working independently , Tina can do a certain job in 12 hours, \"statement 2\" :Working independently , Tina can do a certain job in more than 12 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tina_work_s1=12\ntina_work_s2=12+1\nif tina_work_s1 is None or tina_work_s2 is None:\n print('neutral')\nelif tina_work_s1 == tina_work_s2:\n print('Entailment')\nelif tina_work_s1 != tina_work_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Michael earned $ less than 652 last week , how many hours did he work ?, \"statement 2\" :If Michael earned $ 352 last week , how many hours did he work ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Michael_earn_s1=652\nMichael_earn_s1=None\nMichael_earn_s2=352\nif Michael_earn_s1 is None or Michael_earn_s2 is None:\n print('neutral')\nelif Michael_earn_s1 == Michael_earn_s2:\n print('Entailment')\nelif Michael_earn_s1 != Michael_earn_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": more than 1900 from Anwar at 6 % p, \"statement 2\" :3900 from Anwar at 6 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Anwar_s1=1900\nAnwar_s1=None\nAnwar_s2=3900\nif Anwar_s1 is None or Anwar_s2 is None:\n print('neutral')\nelif Anwar_s1 == Anwar_s2:\n print('Entailment')\nelif Anwar_s1 != Anwar_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At the end of ' n ' years , Sandy got back 7 times the original investment, \"statement 2\" :At the end of ' n ' years , Sandy got back 1 times the original investment, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sandy_original_investment_s1=7\nSandy_original_investment_s2=1\nif Sandy_original_investment_s1 is None or Sandy_original_investment_s2 is None:\n print('neutral')\nelif Sandy_original_investment_s1 == Sandy_original_investment_s2:\n print('Entailment')\nelif Sandy_original_investment_s1 != Sandy_original_investment_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jane started baby - sitting when she was 18 years old, \"statement 2\" :Jane started baby - sitting when she was 78 years old, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jane_started_baby_s1=18\njane_started_baby_s2=78\nif jane_started_baby_s1 is None or jane_started_baby_s2 is None:\n print('neutral')\nelif jane_started_baby_s1 == jane_started_baby_s2:\n print('Entailment')\nelif jane_started_baby_s1 != jane_started_baby_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 219.0 people are going to the zoo, and there are 3.0 tasty sandwiches made ready for each person's lunch., \"statement 2\" :661.0 sandwiches are prepared in total, \"options: \" Entailment or contradiction?", + "Output Program": [ + "people_s1=219*3\nSandwhich_s2=661\nif people_s1 is None or Sandwhich_s2 is None:\n print('neutral')\nelif people_s1 == Sandwhich_s2:\n print('Entailment')\nelif people_s1 != Sandwhich_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Matt and Peter can do together a piece of work in 24 days, \"statement 2\" :Matt and Peter can do together a piece of work in 14 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "work_s1=24\nwork_together_s2=14\nif work_s1 is None or work_together_s2 is None:\n print('neutral')\nelif work_s1 == work_together_s2:\n print('Entailment')\nelif work_s1 != work_together_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many oranges must Mary put back so that the average price of the pieces of fruit that she keeps is 50 \u00a2 ?, \"statement 2\" :How many oranges must Mary put back so that the average price of the pieces of fruit that she keeps is 70 \u00a2 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "price_of_pieces_s1=50\nprice_of_pieces_s2=70\nif price_of_pieces_s1 is None or price_of_pieces_s2 is None:\n print('neutral')\nelif price_of_pieces_s1 == price_of_pieces_s2:\n print('Entailment')\nelif price_of_pieces_s1 != price_of_pieces_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Yesterday it took Robert 6 hours to drive from City A to City B, \"statement 2\" :Yesterday it took Robert 2 hours to drive from City A to City B, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Drive_A_to_B_s1=6\nDrive_A_to_B_s2=2\nif Drive_A_to_B_s1 is None or Drive_A_to_B_s2 is None:\n print('neutral')\nelif Drive_A_to_B_s1 == Drive_A_to_B_s2:\n print('Entailment')\nelif Drive_A_to_B_s1 != Drive_A_to_B_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Raja ' s Bank ' s saving amount is decreased 40 % due to loan payment and current balance is Rs, \"statement 2\" :Raja ' s Bank ' s saving amount is decreased less than 70 % due to loan payment and current balance is Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Raja_bank_saving_s1=40\nRaja_bank_saving_s2=70\nif Raja_bank_saving_s1 is None or Raja_bank_saving_s2 is None:\n print('neutral')\nelif Raja_bank_saving_s1 <= Raja_bank_saving_s2:\n print('Entailment')\nelif Raja_bank_saving_s1 != Raja_bank_saving_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Carina has 85 ounces of coffee divided into 5 - and 10 - ounce packages, \"statement 2\" :Carina has 75 ounces of coffee divided into 5 - and 10 - ounce packages, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Coffee_s1=85\nCoffee_s2=75\nif Coffee_s1 is None or Coffee_s2 is None:\n print('neutral')\nelif Coffee_s1 == Coffee_s2:\n print('Entailment')\nelif Coffee_s1 != Coffee_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy can do a job in less than 41 days and Molly can do the same job in 42 days, \"statement 2\" :Sandy can do a job in 21 days and Molly can do the same job in 42 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sandy_work_s1=41\nSandy_work_s1=None\nSandy_work_s2=21\nif Sandy_work_s1 is None or Sandy_work_s2 is None:\n print('neutral')\nelif Sandy_work_s1 <= Sandy_work_s2:\n print('Entailment')\nelif Sandy_work_s1 != Sandy_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tanya is less than 55 % more efficient than Sakshi, \"statement 2\" :Tanya is 25 % more efficient than Sakshi, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Tanya_s1=55\nTanya_s1=None\nTanya_s2=25\nif Tanya_s1 is None or Tanya_s2 is None:\n print('neutral')\nelif Tanya_s1 == Tanya_s2:\n print('Entailment')\nelif Tanya_s1 != Tanya_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is 4 : 3 , After 6 Years Rahul age will be 26 years, \"statement 2\" :Ratio between Rahul and Deepak is 5 : 3 , After 6 Years Rahul age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_between_s1=4/3\nratio_between_s2=5/3\nif ratio_between_s1 is None or ratio_between_s2 is None:\n print('neutral')\nelif ratio_between_s1 == ratio_between_s2:\n print('Entailment')\nelif ratio_between_s1 != ratio_between_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tom drives from town T to town B , driving at a constant speed of 60 miles per hour, \"statement 2\" :Tom drives from town T to town B , driving at a constant speed of 70 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Tom_Town_T_to_B_s1=60\nTom_Town_T_to_B_s2=70\nif Tom_Town_T_to_B_s1 is None or Tom_Town_T_to_B_s2 is None:\n print('neutral')\nelif Tom_Town_T_to_B_s1 == Tom_Town_T_to_B_s2:\n print('Entailment')\nelif Tom_Town_T_to_B_s1 != Tom_Town_T_to_B_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 38.0 books on the shelf and Marta put 10.0 more books on the shelf, \"statement 2\" :52.0 books are on the shelf now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "books_on_shelf_s1=38+10\nbooks_on_shelf_s2=52\nif books_on_shelf_s1 is None or books_on_shelf_s2 is None:\n print('neutral')\nelif books_on_shelf_s1 == books_on_shelf_s2:\n print('Entailment')\nelif books_on_shelf_s1 != books_on_shelf_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many different possible committees of more than 1 people can be selected from these 9 people if at least one of either Jane or Thomas is to be selected ?, \"statement 2\" :How many different possible committees of 4 people can be selected from these 9 people if at least one of either Jane or Thomas is to be selected ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_s1=9\npeople_s1=None\nselected_people=4\nif people_s1 is None or selected_people is None:\n print('neutral')\nelif people_s1 == selected_people:\n print('Entailment')\nelif people_s1 != selected_people:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Each child has 3.0 oranges, and there are 4.0 children, \"statement 2\" :9.0 oranges are there in total, \"options: \" Entailment or contradiction?", + "Output Program": [ + "oranges_needed_s1=4*3\noranges_s2=9\nif oranges_needed_s1 is None or oranges_s2 is None:\n print('neutral')\nelif oranges_needed_s1 == oranges_s2:\n print('Entailment')\nelif oranges_needed_s1 != oranges_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a Private Company 20 Nos, \"statement 2\" :In a Private Company less than 20 Nos, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Private_company_s1=20\nPrivate_company_s2=20-1\nif Private_company_s1 is None or Private_company_s2 is None:\n print('neutral')\nelif Private_company_s1 == Private_company_s2:\n print('Entailment')\nelif Private_company_s1 != Private_company_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ariel Sharon : Five things to know, \"statement 2\" :Ariel Sharon was 85, \"options: \" Entailment or neutral?", + "Output Program": [ + "Airel_sharon_s1=None\nAirel_sharon_age_s1=85\nif Airel_sharon_s1 is None or Airel_sharon_age_s1 is None:\n print('neutral')\nelif Airel_sharon_s1 == Airel_sharon_age_s1:\n print('Entailment')\nelif Airel_sharon_s1 != Airel_sharon_age_s1:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jones gave 40 % of the money he had to his wife, \"statement 2\" :Jones gave more than 10 % of the money he had to his wife, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jones_gave_s1=40\nJones_gave_s2=10\nif Jones_gave_s1 is None or Jones_gave_s2 is None:\n print('neutral')\nelif Jones_gave_s1 >= Jones_gave_s2:\n print('Entailment')\nelif Jones_gave_s1 != Jones_gave_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sam ranked 9 th from the top and 38 th from the bottom in a class, \"statement 2\" :Sam ranked more than 8 th from the top and 38 th from the bottom in a class, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sam_ramked_s1=9\nSam_ramked_s2=8+1\nif Sam_ramked_s1 is None or Sam_ramked_s2 is None:\n print('neutral')\nelif Sam_ramked_s1 == Sam_ramked_s2:\n print('Entailment')\nelif Sam_ramked_s1 != Sam_ramked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 18 stations between Hyderabad and Bangalore, \"statement 2\" :There are less than 38 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Stations_s1=18\nStations_s2=38\nif Stations_s1 is None or Stations_s2 is None:\n print('neutral')\nelif Stations_s1 <= Stations_s2:\n print('Entailment')\nelif Stations_s1 != Stations_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Cook can divide his herd into less than 6 equal parts and also to 6 equal parts , but not to 9 equal parts, \"statement 2\" :Cook can divide his herd into 5 equal parts and also to 6 equal parts , but not to 9 equal parts, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cook_divide_s1=6\ncook_divide_s1=None\ncook_divide_s2=5\nif cook_divide_s1 is None or cook_divide_s2 is None:\n print('neutral')\nelif cook_divide_s1 == cook_divide_s2:\n print('Entailment')\nelif cook_divide_s1 != cook_divide_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many ways are there for 3 males and 4 females to sit ( around a circular table ) if no male should sit next to a male ( and no female next to female ) and Mary wants to sit with her back on the wall ?, \"statement 2\" :How many ways are there for 1 males and 4 females to sit ( around a circular table ) if no male should sit next to a male ( and no female next to female ) and Mary wants to sit with her back on the wall ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "males_and_female_s1=7\nmales_and_female_s2=5\nif males_and_female_s1 is None or males_and_female_s2 is None:\n print('neutral')\nelif males_and_female_s1 == males_and_female_s2:\n print('Entailment')\nelif males_and_female_s1 != males_and_female_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Six people were injured , four seriously , according to state-run CCTV ., \"statement 2\" :Six people are injured, \"options: \" Entailment or neutral?", + "Output Program": [ + "injured_people_s1=6\ninjured_s2=6\nif injured_people_s1 is None or injured_s2 is None:\n print('neutral')\nelif injured_people_s1 == injured_s2:\n print('Entailment')\nelif injured_people_s1 != injured_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Because the measure would have altered Florida 's constitution , supporters needed 60 % for the question to pass ., \"statement 2\" :Because the law was a constitutional amendment , it needed 60 % approval, \"options: \" Entailment or neutral?", + "Output Program": [ + "supporters_needed_s1=60\nsupporters_needed_s2=60\nif supporters_needed_s1 is None or supporters_needed_s2 is None:\n print('neutral')\nelif supporters_needed_s1 == supporters_needed_s2:\n print('Entailment')\nelif supporters_needed_s1 != supporters_needed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is less than 5 : 3 , After 6 Years Rahul age will be 42 years, \"statement 2\" :Ratio between Rahul and Deepak is 4 : 3 , After 6 Years Rahul age will be 42 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ratio_s1=1.666\nRatio_s1=None\nRatio_s2=1.333\nif Ratio_s1 is None or Ratio_s2 is None:\n print('neutral')\nelif Ratio_s1 == Ratio_s2:\n print('Entailment')\nelif Ratio_s1 != Ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ravi can do a piece of work in 24 days while Prakash can do it in 40 days, \"statement 2\" :Ravi can do a piece of work in more than 14 days while Prakash can do it in 40 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ravi_can_do_work_s1=24\nRavi_can_do_work_s2=14\nif Ravi_can_do_work_s1 is None or Ravi_can_do_work_s2 is None:\n print('neutral')\nelif Ravi_can_do_work_s1 >= Ravi_can_do_work_s2:\n print('Entailment')\nelif Ravi_can_do_work_s1 != Ravi_can_do_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Heather bicycled 40.0 kilometers at 8.0 kilometers per hour, \"statement 2\" :Heather bicycled for 5.0 hours, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Kilometer_perhour_s1=8\nKilometer_forhour_s2=5\nif Kilometer_perhour_s1 is None or Kilometer_forhour_s2 is None:\n print('neutral')\nelif Kilometer_perhour_s1 >= Kilometer_forhour_s2:\n print('Entailment')\nelif Kilometer_perhour_s1 != Kilometer_forhour_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a friendship gang Andrew has more than 2 gang , in how many ways can he invite one or more of the gang to his house ?, \"statement 2\" :In a friendship gang Andrew has 8 gang , in how many ways can he invite one or more of the gang to his house ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Friends_ship_s1=2\nFriends_ship_s1=None\nFriends_ship_s2=8\nif Friends_ship_s1 is None or Friends_ship_s2 is None:\n print('neutral')\nelif Friends_ship_s1 == Friends_ship_s2:\n print('Entailment')\nelif Friends_ship_s1 != Friends_ship_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Cathy runs at 10 miles per hour , and Jim runs at 6 miles per hour, \"statement 2\" :Cathy runs at 30 miles per hour , and Jim runs at 6 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Cathy_runs_s1=10\nCathy_runs_s2=30\nif Cathy_runs_s1 is None or Cathy_runs_s2 is None:\n print('neutral')\nelif Cathy_runs_s1 == Cathy_runs_s2:\n print('Entailment')\nelif Cathy_runs_s1 != Cathy_runs_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Michael earned $ less than 720 last week , how many hours did he work ?, \"statement 2\" :If Michael earned $ 320 last week , how many hours did he work ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Michael_earned_s1=720\nMichael_earned_s1=None\nMichael_earned_s2=320\nif Michael_earned_s1 is None or Michael_earned_s2 is None:\n print('neutral')\nelif Michael_earned_s1 == Michael_earned_s2:\n print('Entailment')\nelif Michael_earned_s1 != Michael_earned_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n\nMichael_earned_s2=320\nif Michael_earned_s1 is None or Michael_earned_s2 is None:\n print('neutral')\nelif Michael_earned_s1 == Michael_earned_s2:\n print('Entailment')\nelif Michael_earned_s1 != Michael_earned_s2:\n print('contradiction')\n\n\n\n\n\n\n\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were 58.0 geese and 37.0 ducks in the marsh., \"statement 2\" :21.0 more geese were in the marsh, \"options: \" Entailment or contradiction?", + "Output Program": [ + "In_marsh_s1=58-37\ngeese_in_marsh_s1=21\nif In_marsh_s1 is None or geese_in_marsh_s1 is None:\n print('neutral')\nelif In_marsh_s1 == geese_in_marsh_s1:\n print('Entailment')\nelif In_marsh_s1 != geese_in_marsh_s1:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shirley sold 20.0 boxes of Do-Si-Dos., \"statement 2\" :Shirley needed 3.0 cases of 4.0 boxes , plus extra boxes, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Shirley_box_s1=20\nShirley_box_s2=3*4\nif Shirley_box_s1 is None or Shirley_box_s2 is None:\n print('neutral')\nelif Shirley_box_s1 == Shirley_box_s2:\n print('Entailment')\nelif Shirley_box_s1 != Shirley_box_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sara has 31.0 red and 15.0 green balloons and she gave Sandy 24.0 red balloons , \"statement 2\" :She has 3.0 red balloons left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Sara_balloons_s1=31+24\nSara_balloons_s2=3\nif Sara_balloons_s1 is None or Sara_balloons_s2 is None:\n print('neutral')\nelif Sara_balloons_s1 == Sara_balloons_s2:\n print('Entailment')\nelif Sara_balloons_s1 != Sara_balloons_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": David Golinkin is the editor or author of eighteen books , and over 150 responsa , articles , sermons and books ., \"statement 2\" :Golinkin has written eighteen books ., \"options: \" Entailment or neutral?", + "Output Program": [ + "david_golinin_s1=150\ngolinkin_written_s2=None\nif david_golinin_s1 is None or golinkin_written_s2 is None:\n print('neutral')\nelif david_golinin_s1 == golinkin_written_s2:\n print('Entailment')\nelif david_golinin_s1 != golinkin_written_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Matthew ' s walking rate was 3 km per hour and Johnny ' s was 4 km per hour , how many km had Johnny walked when they met ?, \"statement 2\" :Matthew ' s walking rate was more than 1 km per hour and Johnny ' s was 4 km per hour , how many km had Johnny walked when they met ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Matthew_working_s1=3\nMatthew_working_s2=1\nif Matthew_working_s1 is None or Matthew_working_s2 is None:\n print('neutral')\nelif Matthew_working_s1 >= Matthew_working_s2:\n print('Entailment')\nelif Matthew_working_s1 != Matthew_working_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sally had 760 quarters in her bank and she received 418 more quarters, \"statement 2\" :She has 1177.0 quarters now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Sally_has_s1=760+418\nSally_has_s2=1177\nif Sally_has_s1 is None or Sally_has_s2 is None:\n print('neutral')\nelif Sally_has_s1 == Sally_has_s2:\n print('Entailment')\nelif Sally_has_s1 != Sally_has_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill , who lives in City C , plans to visit 4 different cities , M , N , L , and S, \"statement 2\" :Jill , who lives in City C , plans to visit less than 8 different cities , M , N , L , and S, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jill_city_C_s1=4\nJill_city_C_s2=8\nif Jill_city_C_s1 is None or Jill_city_C_s2 is None:\n print('neutral')\nelif Jill_city_C_s1 <= Jill_city_C_s2:\n print('Entailment')\nelif Jill_city_C_s1 != Jill_city_C_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the number of such passengers that used Miami Airport was 1 / 2 the number that used Kennedy Airport and 5 times the number that used Logan Airport , approximately how many millions of these passengers used Logan Airport that year ?, \"statement 2\" :If the number of such passengers that used Miami Airport was 8 / 2 the number that used Kennedy Airport and 5 times the number that used Logan Airport , approximately how many millions of these passengers used Logan Airport that year ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Used_miami_airport_s1=0.5\nUsed_miami_airport_s2=4\nif Used_miami_airport_s1 is None or Used_miami_airport_s2 is None:\n print('neutral')\nelif Used_miami_airport_s1 == Used_miami_airport_s2:\n print('Entailment')\nelif Used_miami_airport_s1 != Used_miami_airport_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Peter Siebold , 43 , was identified as the pilot who survived the crash ., \"statement 2\" :Pilot who survived identified as Peter Siebold , 43 , Sheriff 's Office says, \"options: \" Entailment or neutral?", + "Output Program": [ + "Peter_siebold_s1=None\nPeter_seibold_s2=None\nif Peter_siebold_s1 is None or Peter_seibold_s2 is None:\n print('neutral')\nelif Peter_siebold_s1 == Peter_seibold_s2:\n print('Entailment')\nelif Peter_siebold_s1 != Peter_seibold_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If today in the morning Adams makes a payment of $ 7 , for how many days , including today , will she be connected to the internet without any additional payments , given her initial balance was $ 0 ?, \"statement 2\" :If today in the morning Adams makes a payment of $ more than 7 , for how many days , including today , will she be connected to the internet without any additional payments , given her initial balance was $ 0 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "adams_payment_s1=7\nadams_payment_s2=7+1\nif adams_payment_s1 is None or adams_payment_s2 is None:\n print('neutral')\nelif adams_payment_s1 == adams_payment_s2:\n print('Entailment')\nelif adams_payment_s1 != adams_payment_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the distance between their homes is more than 20 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"statement 2\" :If the distance between their homes is 30 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Distance_between_home_s1=20\nDistance_between_home_s1=None\nDistance_between_home_s2=30\nif Distance_between_home_s1 is None or Distance_between_home_s2 is None:\n print('neutral')\nelif Distance_between_home_s1 == Distance_between_home_s2:\n print('Entailment')\nelif Distance_between_home_s1 != Distance_between_home_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Two twins sisters Sita and Geeta were standing back to back and suddenly they started running in opposite directions for more than 5 km each, \"statement 2\" :Two twins sisters Sita and Geeta were standing back to back and suddenly they started running in opposite directions for 8 km each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "running_opposite_direction_s1=5\nrunning_opposite_direction_s1=None\nrunning_opposite_direction_s2=8\nif running_opposite_direction_s1 is None or running_opposite_direction_s2 is None:\n print('neutral')\nelif running_opposite_direction_s1 == running_opposite_direction_s2:\n print('Entailment')\nelif running_opposite_direction_s1 != running_opposite_direction_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The American Nonsmokers ' Rights Foundation reports nearly 60 college campuses around the United States have smoke-free policies that affect the entire campus ., \"statement 2\" :Nearly 60 U.S. colleges have smoke-free policies that affect entire campus, \"options: \" Entailment or neutral?", + "Output Program": [ + "college_campus_s1=60\nUs_collge_campus_s2=60\nif college_campus_s1 is None or Us_collge_campus_s2 is None:\n print('neutral')\nelif college_campus_s1 == Us_collge_campus_s2:\n print('Entailment')\nelif college_campus_s1 != Us_collge_campus_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dan Parris , 25 , and Rob Lehr , 26 , both from St. Louis , Missouri , were shooting an independent documentary on poverty in Africa ., \"statement 2\" :Two victims were U.S. filmmakers shooting documentary on African poverty, \"options: \" Entailment or neutral?", + "Output Program": [ + "Dan_parris_and_rob_lehr_s1=None\nTwo_victims_shooting_african_poverty_s2=None\nif Dan_parris_and_rob_lehr_s1 is None or Two_victims_shooting_african_poverty_s2 is None:\n print('neutral')\nelif Dan_parris_and_rob_lehr_s1 == Two_victims_shooting_african_poverty_s2:\n print('Entailment')\nelif Dan_parris_and_rob_lehr_s1 != Two_victims_shooting_african_poverty_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Steve Purchased a house for $ less than 75000 and he like to resell it with 20 % profit, \"statement 2\" :Steve Purchased a house for $ 15000 and he like to resell it with 20 % profit, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Steve_purchased_house_s1=75000\nSteve_purchased_house_s2=15000\nif Steve_purchased_house_s1 is None or Steve_purchased_house_s2 is None:\n print('neutral')\nelif Steve_purchased_house_s1 == Steve_purchased_house_s2:\n print('Entailment')\nelif Steve_purchased_house_s1 != Steve_purchased_house_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The Logan County Sheriff 's Office can be reached at 217-732-2156 ., \"statement 2\" :Have a tip ? Call the Tazewell County Sheriff 's Office at 309-346-4141, \"options: \" Entailment or neutral?", + "Output Program": [ + "Logan_office_s1=217-732-2156\nTazewell_office_call_s2=None\nif Logan_office_s1 is None or Tazewell_office_call_s2 is None:\n print('neutral')\nelif Logan_office_s1 == Tazewell_office_call_s2:\n print('Entailment')\nelif Logan_office_s1 != Tazewell_office_call_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Paco had 93.0 cookies and Paco ate 15.0 of them, \"statement 2\" :Paco has 78.0 cookies left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "paco_cookies_s1=93-15\npaco_cookies_s2=78\nif paco_cookies_s1 is None or paco_cookies_s2 is None:\n print('neutral')\nelif paco_cookies_s1 == paco_cookies_s2:\n print('Entailment')\nelif paco_cookies_s1 != paco_cookies_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the ratio of their ages is 7 : 9 , how old is Sandy ?, \"statement 2\" :If the ratio of their ages is more than 6 : 9 , how old is Sandy ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Age_ratio_s1=7/9\nAge_ratio_s2=6/9\nif Age_ratio_s1 is None or Age_ratio_s2 is None:\n print('neutral')\nelif Age_ratio_s1 >= Age_ratio_s2:\n print('Entailment')\nelif Age_ratio_s1 != Age_ratio_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Carl bought 16 gumballs , Lewis bought 12 gumballs , and Carey bought X gumballs, \"statement 2\" :Carl bought more than 16 gumballs , Lewis bought 12 gumballs , and Carey bought X gumballs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "carl_bought_s1=16\ncarl_bought_s2=16+1\nif carl_bought_s1 is None or carl_bought_s2 is None:\n print('neutral')\nelif carl_bought_s1 == carl_bought_s2:\n print('Entailment')\nelif carl_bought_s1 != carl_bought_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In 2003 , the number of girls attending Jefferson High School was equal to the number of boys, \"statement 2\" :In less than 7003 , the number of girls attending Jefferson High School was equal to the number of boys, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jefferson_highschool_s1=2003\nJefferson_highschool_s2=7003\nif Jefferson_highschool_s1 is None or Jefferson_highschool_s2 is None:\n print('neutral')\nelif Jefferson_highschool_s1 <= Jefferson_highschool_s2:\n print('Entailment')\nelif Jefferson_highschool_s1 != Jefferson_highschool_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Four of the dead were not from India , he told CNN ., \"statement 2\" :Four of the dead not from India , security official says, \"options: \" Entailment or neutral?", + "Output Program": [ + "Four_of_the_dead_from_india_s1=None\nFour_of_the_dead__Not_from_india_s2=None\nif Four_of_the_dead_from_india_s1 is None or Four_of_the_dead__Not_from_india_s2 is None:\n print('neutral')\nelif Four_of_the_dead_from_india_s1 == Four_of_the_dead__Not_from_india_s2:\n print('Entailment')\nelif Four_of_the_dead_from_india_s1 != Four_of_the_dead__Not_from_india_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Craig had less than 400 apples, \"statement 2\" :Craig had 200 apples, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Craig_apples_s1=400\nCraig_apples_s1=None\nCraig_apples_s2=200\nif Craig_apples_s1 is None or Craig_apples_s2 is None:\n print('neutral')\nelif Craig_apples_s1 == Craig_apples_s2:\n print('Entailment')\nelif Craig_apples_s1 != Craig_apples_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Maddie has 6 apples , if she give 3 to mike , how many does she have left ?, \"statement 2\" :Maddie has less than 8 apples , if she give 3 to mike , how many does she have left ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "maddie_apple_s1=6\nmaddie_apple_s2=6-3\nif maddie_apple_s1 is None or maddie_apple_s2 is None:\n print('neutral')\nelif maddie_apple_s1 == maddie_apple_s2:\n print('Entailment')\nelif maddie_apple_s1 != maddie_apple_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Two members of the 2000 Kanchenjunga Expedition of South Korea successfully scaled the 8,586m high Mt . Kanchenjunga via the south west face Friday , according to the Nepali Tourism Ministry ., \"statement 2\" :Kanchenjunga is 8586 meters high ., \"options: \" Entailment or neutral?", + "Output Program": [ + "kanchen_ganga_s1=8586\nkanchen_ganga_s2=8586\nif kanchen_ganga_s1 is None or kanchen_ganga_s2 is None:\n print('neutral')\nelif kanchen_ganga_s1 == kanchen_ganga_s2:\n print('Entailment')\nelif kanchen_ganga_s1 != kanchen_ganga_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The queen is the head of the Commonwealth , a voluntary association of 54 countries ., \"statement 2\" :The Commonwealth is a voluntary association of 54 countries around the world, \"options: \" Entailment or neutral?", + "Output Program": [ + "Association_s1=54\ncommonwaleth_association_s2=54\nif Association_s1 is None or commonwaleth_association_s2 is None:\n print('neutral')\nelif Association_s1 == commonwaleth_association_s2:\n print('Entailment')\nelif Association_s1 != commonwaleth_association_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": They both work together for 5 days and then Sushil goes away, \"statement 2\" :They both work together for more than 5 days and then Sushil goes away, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "work_together_s1=5\nwork_together_s2=5+1\nif work_together_s1 is None or work_together_s2 is None:\n print('neutral')\nelif work_together_s1 == work_together_s2:\n print('Entailment')\nelif work_together_s1 != work_together_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": There are 24.0 bicycles and 14.0 tricycles in the storage area at Danny's apartment building and each bicycle has 2.0 wheels, and each tricycle has 3.0 wheels, \"statement 2\" :90.0 wheels are there in all, \"options: \" Entailment or contradiction?", + "Output Program": [ + "bicycles_wheel_s1=24*2+14*3\ntotal_wheel=90\nif bicycles_wheel_s1 is None or total_wheel is None:\n print('neutral')\nelif bicycles_wheel_s1 == total_wheel:\n print('Entailment')\nelif bicycles_wheel_s1 != total_wheel:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The distance between their homes is 36 kilometers , Betty ' s walking speed is 4 km / h , and Dave ' s walking speed is 3 km / h, \"statement 2\" :The distance between their homes is less than 86 kilometers , Betty ' s walking speed is 4 km / h , and Dave ' s walking speed is 3 km / h, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Distace_between_two_homes_s1=36\nDistace_between_two_homes_s2=86\nif Distace_between_two_homes_s1 is None or Distace_between_two_homes_s2 is None:\n print('neutral')\nelif Distace_between_two_homes_s1 <= Distace_between_two_homes_s2:\n print('Entailment')\nelif Distace_between_two_homes_s1 != Distace_between_two_homes_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Around ten members of the business delegation will come to Burma ., \"statement 2\" :He is leading a delegation of 10 business leaders to the country, \"options: \" Entailment or neutral?", + "Output Program": [ + "come_to_burma=None\nhe_is_leading_deleation_of_leaders=10\nif come_to_burma is None or he_is_leading_deleation_of_leaders is None:\n print('neutral')\nelif come_to_burma == he_is_leading_deleation_of_leaders:\n print('Entailment')\nelif come_to_burma != he_is_leading_deleation_of_leaders:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jake , Paul and Hari together dig the well in more than 3 days, \"statement 2\" :Jake , Paul and Hari together dig the well in 8 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dig_together_s1=3\nDig_together_s1=None\nDig_together_s2=8\nif Dig_together_s1 is None or Dig_together_s2 is None:\n print('neutral')\nelif Dig_together_s1 == Dig_together_s2:\n print('Entailment')\nelif Dig_together_s1 != Dig_together_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Susan drove an average speed of 15 miles per hour for the first 40 miles of a tripthen at a average speed of 60 miles / hr for the remaining 20 miles of the trip if she made no stops during the trip what was susan ' s avg speed in miles / hr for the entire trip, \"statement 2\" :Susan drove an average speed of less than 45 miles per hour for the first 40 miles of a tripthen at a average speed of 60 miles / hr for the remaining 20 miles of the trip if she made no stops during the trip what was susan ' s avg speed in miles / hr for the entire trip, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Average_speed_s1=15\nAverage_speed_s2=45\nif Average_speed_s1 is None or Average_speed_s2 is None:\n print('neutral')\nelif Average_speed_s1 <= Average_speed_s2:\n print('Entailment')\nelif Average_speed_s1 != Average_speed_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jake can dig a well in 16 days, \"statement 2\" :Jake can dig a well in more than 16 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jake_ca_dig_s1=16\njake_ca_dig_s2=16+1\nif jake_ca_dig_s1 is None or jake_ca_dig_s2 is None:\n print('neutral')\nelif jake_ca_dig_s1 == jake_ca_dig_s2:\n print('Entailment')\nelif jake_ca_dig_s1 != jake_ca_dig_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If KING is coded as less than 57 and MASS is coded as 29 Then COP is coded as, \"statement 2\" :If KING is coded as 17 and MASS is coded as 29 Then COP is coded as, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "King_coded_s1=57\nKing_coded_s1=None\nKing_coded_s2=17\nif King_coded_s1 is None or King_coded_s2 is None:\n print('neutral')\nelif King_coded_s1 == King_coded_s2:\n print('Entailment')\nelif King_coded_s1 != King_coded_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": For Halloween Faye scored 47.0 pieces of candy and she ate 25.0 pieces the first night, and then her sister gave her 40.0 more pieces, \"statement 2\" :Faye has 62.0 pieces of candy now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Pieces_of_candy_s1=47+40-25\nPieces_of_candy_s2=62\nif Pieces_of_candy_s1 is None or Pieces_of_candy_s2 is None:\n print('neutral')\nelif Pieces_of_candy_s1 == Pieces_of_candy_s2:\n print('Entailment')\nelif Pieces_of_candy_s1 != Pieces_of_candy_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Henry were to add 9 gallons of water to a tank that is already 3 / 4 full of water , the tank would be 7 / 8 full, \"statement 2\" :If Henry were to add more than 8 gallons of water to a tank that is already 3 / 4 full of water , the tank would be 7 / 8 full, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "henry_add_water_s1=9\nhenry_add_water_s2=8+1\nif henry_add_water_s1 is None or henry_add_water_s2 is None:\n print('neutral')\nelif henry_add_water_s1 == henry_add_water_s2:\n print('Entailment')\nelif henry_add_water_s1 != henry_add_water_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If twice the age of Sunil is more than Syam ' s age by 4 years , what is Sunil ' s age ?, \"statement 2\" :If twice the age of Sunil is more than Syam ' s age by 6 years , what is Sunil ' s age ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sunil_age_s1=4\nSunil_age_s2=6\nif Sunil_age_s1 is None or Sunil_age_s2 is None:\n print('neutral')\nelif Sunil_age_s1 == Sunil_age_s2:\n print('Entailment')\nelif Sunil_age_s1 != Sunil_age_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Dan works alone for 12 hours and then stops , how many hours will it take Annie , working alone , to complete the job ?, \"statement 2\" :If Dan works alone for less than 42 hours and then stops , how many hours will it take Annie , working alone , to complete the job ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dan_works_s1=12\ndan_works_s2=42\nif dan_works_s1 is None or dan_works_s2 is None:\n print('neutral')\nelif dan_works_s1 <= dan_works_s2:\n print('Entailment')\nelif dan_works_s1 != dan_works_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If an outfit consists of 1 shirt , 1 pair of jeans , and 1 pair of sneakers , how many different outfits does Jordan have ?, \"statement 2\" :If an outfit consists of less than 6 shirt , 1 pair of jeans , and 1 pair of sneakers , how many different outfits does Jordan have ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jordan_shirt_s1=1\nJordan_shirt_s2=6\nif Jordan_shirt_s1 is None or Jordan_shirt_s2 is None:\n print('neutral')\nelif Jordan_shirt_s1 <= Jordan_shirt_s2:\n print('Entailment')\nelif Jordan_shirt_s1 != Jordan_shirt_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Souju ' s father ' s age will be twice Tharak ' s age after\n10 years, \"statement 2\" :Souju ' s father ' s age will be twice Tharak ' s age after less than 30 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Father_age_s1=10\nFather_age_s2=30\nif Father_age_s1 is None or Father_age_s2 is None:\n print('neutral')\nelif Father_age_s1 <= Father_age_s2:\n print('Entailment')\nelif Father_age_s1 != Father_age_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": ( CNN ) -- Manchester United have accepted a world-record $ 130 million offer for Cristiano Ronaldo from Real Madrid ., \"statement 2\" :Spanish club offer a world-record $ 130 million for Manchester United winger, \"options: \" Entailment or neutral?", + "Output Program": [ + "Offer_s1=130\nspanish_club_offer_s2=None\nif Offer_s1 is None or spanish_club_offer_s2 is None:\n print('neutral')\nelif Offer_s1 == spanish_club_offer_s2:\n print('Entailment')\nelif Offer_s1 != spanish_club_offer_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the distance between their homes is 50 kilometers , Maxwell ' s walking speed is 3 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"statement 2\" :If the distance between their homes is less than 80 kilometers , Maxwell ' s walking speed is 3 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Distance_between_Home_s1=50\nDistance_between_Home_s2=80\nif Distance_between_Home_s1 is None or Distance_between_Home_s2 is None:\n print('neutral')\nelif Distance_between_Home_s1 <= Distance_between_Home_s2:\n print('Entailment')\nelif Distance_between_Home_s1 != Distance_between_Home_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Both men were initially charged with felony theft of the camera , estimated to be worth $ 10,000 ., \"statement 2\" :The camera is thought to be worth $ 10,000, \"options: \" Entailment or neutral?", + "Output Program": [ + "camera_worth_s1=10000\ncamera_worth_s2=10000\nif camera_worth_s1 is None or camera_worth_s2 is None:\n print('neutral')\nelif camera_worth_s1 == camera_worth_s2:\n print('Entailment')\nelif camera_worth_s1 != camera_worth_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Barbara has 8 shirts and 9 pants, \"statement 2\" :Barbara has more than 1 shirts and 9 pants, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "barbara_has_s1=8,9\nbarbara_has_s2=1+7,9\nif barbara_has_s1 is None or barbara_has_s2 is None:\n print('neutral')\nelif barbara_has_s1 == barbara_has_s2:\n print('Entailment')\nelif barbara_has_s1 != barbara_has_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In Parkin ' s company more than 20 % of the employees earn less than $ 50,000 a year , 60 % of the employees earn more than $ 40,000 a year , 11 % of the employees earn $ 43,000 a year and 5 % of the employees earn $ 49,000 a year, \"statement 2\" :In Parkin ' s company 60 % of the employees earn less than $ 50,000 a year , 60 % of the employees earn more than $ 40,000 a year , 11 % of the employees earn $ 43,000 a year and 5 % of the employees earn $ 49,000 a year, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Employess_s1=20\nEmployess_s2=60\nif Employess_s1 is None or Employess_s2 is None:\n print('neutral')\nelif Employess_s1 == Employess_s2:\n print('Entailment')\nelif Employess_s1 != Employess_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After 6 years , Arun ' s age will be 26 years, \"statement 2\" :After 8 years , Arun ' s age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "After_years_s1=6\nAfter_years_s2=8\nif After_years_s1 is None or After_years_s2 is None:\n print('neutral')\nelif After_years_s1 == After_years_s2:\n print('Entailment')\nelif After_years_s1 != After_years_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Todd has 54.0 pieces of gum and Steve gave him 16.0 more pieces, \"statement 2\" :Todd has 73.0 pieces of gum now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Pieces_of_gum_s1=57+16\nPieces_of_gum_s2=73\nif Pieces_of_gum_s1 is None or Pieces_of_gum_s2 is None:\n print('neutral')\nelif Pieces_of_gum_s1 == Pieces_of_gum_s2:\n print('Entailment')\nelif Pieces_of_gum_s1 != Pieces_of_gum_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": When Robert ' s height is included , the average increases by less than 5 inches, \"statement 2\" :When Robert ' s height is included , the average increases by 2 inches, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "roert_height_s1=5\nroert_height_s1=None\nroert_height_s2=2\nif roert_height_s1 is None or roert_height_s2 is None:\n print('neutral')\nelif roert_height_s1 == roert_height_s2:\n print('Entailment')\nelif roert_height_s1 != roert_height_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Albert borrowed a total of $ 5800 from Brian and Charlie, \"statement 2\" :Albert borrowed a total of $ less than 8800 from Brian and Charlie, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Albert_borrowed_s1=5800\nAlbert_borrowed_s2=8800\nif Albert_borrowed_s1 is None or Albert_borrowed_s2 is None:\n print('neutral')\nelif Albert_borrowed_s1 <= Albert_borrowed_s2:\n print('Entailment')\nelif Albert_borrowed_s1 != Albert_borrowed_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John has 6 friends who want to ride in his new car that can accommodate only 3 people at a time ( John plus 2 passengers ), \"statement 2\" :John has more than 6 friends who want to ride in his new car that can accommodate only 3 people at a time ( John plus 2 passengers ), \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jhon_friend_s1=6\nJhon_friend_s2=6+1\nif Jhon_friend_s1 is None or Jhon_friend_s2 is None:\n print('neutral')\nelif Jhon_friend_s1 == Jhon_friend_s2:\n print('Entailment')\nelif Jhon_friend_s1 != Jhon_friend_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": David obtained 76 , 65 , 82 , 67 and 85 marks ( out in 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :David obtained more than 66 , 65 , 82 , 67 and 85 marks ( out in 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "David_marks_s1=76,65,82,67,85\nDavid_marks_s2=66,65,82,67,85\nif David_marks_s1 is None or David_marks_s2 is None:\n print('neutral')\nelif David_marks_s1 >= David_marks_s2:\n print('Entailment')\nelif David_marks_s1 != David_marks_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were originally 20817.0 houses in Lincoln County and there was a housing boom and now there are 97741.0 houses in the county, \"statement 2\" :76924.0 houses were built from the original to the present, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Home_s1=97741-20817\nHome_s2=76924\nif Home_s1 is None or Home_s2 is None:\n print('neutral')\nelif Home_s1 == Home_s2:\n print('Entailment')\nelif Home_s1 != Home_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Carl bought 16 gumballs , Lewis bought 12 gumballs , and Carey bought X gumballs, \"statement 2\" :Carl bought less than 26 gumballs , Lewis bought 12 gumballs , and Carey bought X gumballs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Carl_gum_balls_s1=16\nCarl_gum_balls_s2=26\nif Carl_gum_balls_s1 is None or Carl_gum_balls_s2 is None:\n print('neutral')\nelif Carl_gum_balls_s1 <= Carl_gum_balls_s2:\n print('Entailment')\nelif Carl_gum_balls_s1 != Carl_gum_balls_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jack has 5 more ladybugs\nthan Jill, \"statement 2\" :Jack has less than 7 more ladybugs than Jill, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ladybugs_s1=5\nLadybugs_s2=7-1\nif Ladybugs_s1 is None or Ladybugs_s2 is None:\n print('neutral')\nelif Ladybugs_s1 <= Ladybugs_s2:\n print('Entailment')\nelif Ladybugs_s1 != Ladybugs_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In Richard ' s office one half of the workers are Indians , quarter are from America , one - fifth are from Canada and the other 100 are China, \"statement 2\" :In Richard ' s office one half of the workers are Indians , quarter are from America , one - fifth are from Canada and the other less than 300 are China, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Workers_s1=100\nWorkers_s2=300\nif Workers_s1 is None or Workers_s2 is None:\n print('neutral')\nelif Workers_s1 <= Workers_s2:\n print('Entailment')\nelif Workers_s1 != Workers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a group of 90 people , 55 have visited Iceland and 33 have visited Norway, \"statement 2\" :In a group of more than 90 people , 55 have visited Iceland and 33 have visited Norway, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_in_group_s1=90\npeople_in_group_s2=9+1\nif people_in_group_s1 is None or people_in_group_s2 is None:\n print('neutral')\nelif people_in_group_s1 == people_in_group_s2:\n print('Entailment')\nelif people_in_group_s1 != people_in_group_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At Veridux Corporation , there are 215 employees, \"statement 2\" :At Veridux Corporation , there are 515 employees, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "employees_s1=215\nemployees_s2=515\nif employees_s1 is None or employees_s2 is None:\n print('neutral')\nelif employees_s1 == employees_s2:\n print('Entailment')\nelif employees_s1 != employees_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": One hour after Yolanda started walking from X to Y , a distance of 10 miles , Bob started walking along the same road from Y to X, \"statement 2\" :One hour after Yolanda started walking from X to Y , a distance of more than 10 miles , Bob started walking along the same road from Y to X, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Yolanda_waling_s1=10\nYolanda_waling_s2=10+1\nif Yolanda_waling_s1 is None or Yolanda_waling_s2 is None:\n print('neutral')\nelif Yolanda_waling_s1 == Yolanda_waling_s2:\n print('Entailment')\nelif Yolanda_waling_s1 != Yolanda_waling_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John alone cleans the entire house in 6 hours, \"statement 2\" :John alone cleans the entire house in more than 1 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jhon_cleans_house_s1=6\nJhon_cleans_house_s2=1\nif Jhon_cleans_house_s1 is None or Jhon_cleans_house_s2 is None:\n print('neutral')\nelif Jhon_cleans_house_s1 >= Jhon_cleans_house_s2:\n print('Entailment')\nelif Jhon_cleans_house_s1 != Jhon_cleans_house_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Jack ' s score was within less than 6 standard deviations of the mean , what is the lowest score he could have received ?, \"statement 2\" :If Jack ' s score was within 2 standard deviations of the mean , what is the lowest score he could have received ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jack_score_s1=6\nJack_score_s1=None\nJack_score_s2=2\nif Jack_score_s1 is None or Jack_score_s2 is None:\n print('neutral')\nelif Jack_score_s1 == Jack_score_s2:\n print('Entailment')\nelif Jack_score_s1 != Jack_score_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Murali travelled from city A to city B at a speed of 40 kmph and from city B to city C at 60 kmph, \"statement 2\" :Murali travelled from city A to city B at a speed of less than 80 kmph and from city B to city C at 60 kmph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Murli_travelled_s1=40\nMurli_travelled_s2=80\nif Murli_travelled_s1 is None or Murli_travelled_s2 is None:\n print('neutral')\nelif Murli_travelled_s1 <= Murli_travelled_s2:\n print('Entailment')\nelif Murli_travelled_s1 != Murli_travelled_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Angela has 12 pairs of matched socks, \"statement 2\" :Angela has 42 pairs of matched socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Matched_socks_s1=12\nMatched_socks_s2=42\nif Matched_socks_s1 is None or Matched_socks_s2 is None:\n print('neutral')\nelif Matched_socks_s1 == Matched_socks_s2:\n print('Entailment')\nelif Matched_socks_s1 != Matched_socks_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 4.0 birds were sitting on the fence and 2.0 more birds flew away, \"statement 2\" :2.0 birds are now sitting on the fence, \"options: \" Entailment or contradiction?", + "Output Program": [ + "birds_on_fence_s1=4-2\nbirds_on_fence_s2=2\nif birds_on_fence_s1 is None or birds_on_fence_s2 is None:\n print('neutral')\nelif birds_on_fence_s1 == birds_on_fence_s2:\n print('Entailment')\nelif birds_on_fence_s1 != birds_on_fence_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Andy has 20 pairs of matched gloves, \"statement 2\" :Andy has less than 40 pairs of matched gloves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Matched_gloves_s1=20\nMatched_gloves_s2=40\nif Matched_gloves_s1 is None or Matched_gloves_s2 is None:\n print('neutral')\nelif Matched_gloves_s1 <= Matched_gloves_s2:\n print('Entailment')\nelif Matched_gloves_s1 != Matched_gloves_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A florist had 37.0 roses, and she sold 16.0 of them and then later picked 19.0 more, \"statement 2\" :She would have 38.0 roses , \"options: \" Entailment or contradiction?", + "Output Program": [ + "Roses_s1=37-16+19\nRoses_s2=38\nif Roses_s1 is None or Roses_s2 is None:\n print('neutral')\nelif Roses_s1 == Roses_s2:\n print('Entailment')\nelif Roses_s1 != Roses_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Fred walks at a constant speed of 6 miles per hour and Sam walks at a constant speed of 5 miles per hour , how many miles has Sam walked when they meet ?, \"statement 2\" :If Fred walks at a constant speed of 2 miles per hour and Sam walks at a constant speed of 5 miles per hour , how many miles has Sam walked when they meet ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Fred_walk_s1=6\nFred_walk_s2=2\nif Fred_walk_s1 is None or Fred_walk_s2 is None:\n print('neutral')\nelif Fred_walk_s1 == Fred_walk_s2:\n print('Entailment')\nelif Fred_walk_s1 != Fred_walk_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In Kaya ' s teacher ' s desk there are less than 4 pink highlighters , 7 yellow highlighters , and 5 blue highlighters, \"statement 2\" :In Kaya ' s teacher ' s desk there are 3 pink highlighters , 7 yellow highlighters , and 5 blue highlighters, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "highliter_s1=None\nhighliter_s2=3+7+5\nif highliter_s1 is None or highliter_s2 is None:\n print('neutral')\nelif highliter_s1 == highliter_s2:\n print('Entailment')\nelif highliter_s1 != highliter_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If side AC = less than 30 units , what is the area of the triangle ?, \"statement 2\" :If side AC = 20 units , what is the area of the triangle ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "AC_s1=30\nAC_s1=None\nAC_s2=20\nif AC_s1 is None or AC_s2 is None:\n print('neutral')\nelif AC_s1 == AC_s2:\n print('Entailment')\nelif AC_s1 != AC_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sodano said the pope has the support of those who work in schools , hospitals and care centers , including 400,000 priests ., \"statement 2\" :Cardinal says pope has support of the faithful , including 400,000 priests, \"options: \" Entailment or neutral?", + "Output Program": [ + "Sodano_said_s1=400000\nSodano_said_s2=None\nif Sodano_said_s1 is None or Sodano_said_s2 is None:\n print('neutral')\nelif Sodano_said_s1 == Sodano_said_s2:\n print('Entailment')\nelif Sodano_said_s1 != Sodano_said_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Four different children have jelly beans : Aaron has 5 , Bianca has 7 , Callie has 8 , and Dante has 19, \"statement 2\" :Four different children have jelly beans : Aaron has more than 5 , Bianca has 7 , Callie has 8 , and Dante has 19, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jelly_beans_s1=5+7+8+19\njelly_beans_s2=6+7+8+19\nif jelly_beans_s1 is None or jelly_beans_s2 is None:\n print('neutral')\nelif jelly_beans_s1 == jelly_beans_s2:\n print('Entailment')\nelif jelly_beans_s1 != jelly_beans_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sara had 49.0 quarters in her bank and she spent 21.0 quarters, \"statement 2\" :She has 28.0 quarters now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Sara_quarters_s1=49-21\nsara_has_s2=28\nif Sara_quarters_s1 is None or sara_has_s2 is None:\n print('neutral')\nelif Sara_quarters_s1 == sara_has_s2:\n print('Entailment')\nelif Sara_quarters_s1 != sara_has_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jack walks in a straight line toward Christina at a constant speed of 3 feet per second and Christina walks in a straight line toward Jack at a constant speed of 3 feet per second, \"statement 2\" :Jack walks in a straight line toward Christina at a constant speed of more than 1 feet per second and Christina walks in a straight line toward Jack at a constant speed of 3 feet per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jack_walks_s1 = 3\nJack_walks_s2 = 1\n\nif Jack_walks_s1 is None or Jack_walks_s2 is None:\n print('neutral')\n\nelif Jack_walks_s1 >= Jack_walks_s2:\n print('Entailment')\n\nelif Jack_walks_s1 != Jack_walks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many possible ways can less than 7 girls ( Rebecca , Kate , Ashley ) go on a date with 3 boys ( Peter , Kyle , Sam ) ?, \"statement 2\" :How many possible ways can 1 girls ( Rebecca , Kate , Ashley ) go on a date with 3 boys ( Peter , Kyle , Sam ) ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Grils_date_with_boy_s1 = None\nGrils_date_with_boy_s2 = 1\n\nif Grils_date_with_boy_s1 is None or Grils_date_with_boy_s2 is None:\n print('neutral')\n\nelif Grils_date_with_boy_s1 == Grils_date_with_boy_s2:\n print('Entailment')\n\nelif Grils_date_with_boy_s1 != Grils_date_with_boy_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Guna has more than 2 flavors of ice cream in him parlor, \"statement 2\" :Guna has 8 flavors of ice cream in him parlor, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ice_cream_flavors_s1=2\nIce_cream_flavors_s1=None\nIce_cream_flavors_s2=8\nif Ice_cream_flavors_s1 is None or Ice_cream_flavors_s2 is None:\n print('neutral')\nelif Ice_cream_flavors_s1 == Ice_cream_flavors_s2:\n print('Entailment')\nelif Ice_cream_flavors_s1 != Ice_cream_flavors_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The study finds that while two-thirds of Latino voters support the Democrats , 22 percent back the Republican candidate ., \"statement 2\" :Pew study : Nearly two-thirds of Latinos support Democrats ; 22 percent back GOP, \"options: \" Entailment or neutral?", + "Output Program": [ + "Republican_candidate_s1=22\nLatinos_support_s2=22\nif Republican_candidate_s1 is None or Latinos_support_s2 is None:\n print('neutral')\nelif Republican_candidate_s1 == Latinos_support_s2:\n print('Entailment')\nelif Republican_candidate_s1 != Latinos_support_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many hours does it take Little Texas Drilling Company to produce 115 barrels of oil ?, \"statement 2\" :How many hours does it take Little Texas Drilling Company to produce less than 115 barrels of oil ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "produce_oil_s1=115\nproduce_oil_s2=115-1\nif produce_oil_s1 is None or produce_oil_s2 is None:\n print('neutral')\nelif produce_oil_s1 == produce_oil_s2:\n print('Entailment')\nelif produce_oil_s1 != produce_oil_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Caleb spends $ 66.50 on 50 hamburgers for the marching band, \"statement 2\" :Caleb spends $ 66.50 on more than 30 hamburgers for the marching band, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "hemburgers_s1=50\nhemburgers_s2=30\nif hemburgers_s1 is None or hemburgers_s2 is None:\n print('neutral')\nelif hemburgers_s1 >= hemburgers_s2:\n print('Entailment')\nelif hemburgers_s1 != hemburgers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Kim can do a work in less than 8 days while David can do the same work in 2 days, \"statement 2\" :Kim can do a work in 3 days while David can do the same work in 2 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Kim_work_s1=8\nKim_work_s1=None\nKim_work_s2=3\nif Kim_work_s1 is None or Kim_work_s2 is None:\n print('neutral')\nelif Kim_work_s1 == Kim_work_s2:\n print('Entailment')\nelif Kim_work_s1 != Kim_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In Kaya ' s teacher ' s desk there are 6 pink highlighters , 2 yellow highlighters , and 4 blue highlighters, \"statement 2\" :In Kaya ' s teacher ' s desk there are less than 8 pink highlighters , 2 yellow highlighters , and 4 blue highlighters, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "highliter_s1=6+2+4\nhighliter_s2=6+2+4\nif highliter_s1 is None or highliter_s2 is None:\n print('neutral')\nelif highliter_s1 == highliter_s2:\n print('Entailment')\nelif highliter_s1 != highliter_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shridhar together earned 19800, \"statement 2\" :Shridhar together earned more than 19800, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Shirdhar_earned_s1=19800\nShirdhar_earned_s2=19800+1\nif Shirdhar_earned_s1 is None or Shirdhar_earned_s2 is None:\n print('neutral')\nelif Shirdhar_earned_s1 == Shirdhar_earned_s2:\n print('Entailment')\nelif Shirdhar_earned_s1 != Shirdhar_earned_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": '' We ... need to construct some sort of timeline on when folks became aware of it if that is possible , '' one Air Force official wrote , responding to the public interest ., \"statement 2\" :'' No positive spin is possible . Admit mistake , '' says one, \"options: \" Entailment or neutral?", + "Output Program": [ + "possible_s1 = None\npossible_s2 = 1\n\nif possible_s1 is None or possible_s2 is None:\n print('neutral')\n\nelif possible_s1 == possible_s2:\n print('Entailment')\n\nelif possible_s1 != possible_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Triangle STV has sides ST = TV = 5 , and SV = 6, \"statement 2\" :Triangle STV has sides ST = TV = more than 5 , and SV = 6, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Tringle_stv_s1=5,6\nTringle_stv_s2=5+1,6\nif Tringle_stv_s1 is None or Tringle_stv_s2 is None:\n print('neutral')\nelif Tringle_stv_s1 == Tringle_stv_s2:\n print('Entailment')\nelif Tringle_stv_s1 != Tringle_stv_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Poll : Obama over 50 % in Florida , Ohio and Pennsylvania, \"statement 2\" :A new poll shows Obama ahead in Ohio and two other battleground states, \"options: \" Entailment or neutral?", + "Output Program": [ + "Poll_obama_s1=50\nPoll_obama_s2=50\nif Poll_obama_s1 is None or Poll_obama_s2 is None:\n print('neutral')\nelif Poll_obama_s1 == Poll_obama_s2:\n print('Entailment')\nelif Poll_obama_s1 != Poll_obama_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Martin returned two packet to the retailer , and the average price of the remaining millk packet was 12 \u00a2 , then what is the average price , in cents , of the two returned milk packets ?, \"statement 2\" :If Martin returned two packet to the retailer , and the average price of the remaining millk packet was less than 12 \u00a2 , then what is the average price , in cents , of the two returned milk packets ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Milk_packet_price_s1=12\nMilk_packet_price_s2=12-1\nif Milk_packet_price_s1 is None or Milk_packet_price_s2 is None:\n print('neutral')\nelif Milk_packet_price_s1 == Milk_packet_price_s2:\n print('Entailment')\nelif Milk_packet_price_s1 != Milk_packet_price_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 1250 , what is Ben ' s capital ?, \"statement 2\" :less than 8250 , what is Ben ' s capital ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ben_capital_s1=1250\nBen_capital_s2=8250\nif Ben_capital_s1 is None or Ben_capital_s2 is None:\n print('neutral')\nelif Ben_capital_s1 <= Ben_capital_s2:\n print('Entailment')\nelif Ben_capital_s1 != Ben_capital_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many clothing combinations does Barbara have , if she doesn \u2019 t wear 6 specific shirts with 5 specific pants ?, \"statement 2\" :How many clothing combinations does Barbara have , if she doesn \u2019 t wear more than 6 specific shirts with 5 specific pants ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Specific_shirts_s1=6\nSpecific_shirts_s2=6+1\nif Specific_shirts_s1 is None or Specific_shirts_s2 is None:\n print('neutral')\nelif Specific_shirts_s1 == Specific_shirts_s2:\n print('Entailment')\nelif Specific_shirts_s1 != Specific_shirts_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many minutes does it take Dhoni to type 64 words if he types at the rate of 16 words per minute ?, \"statement 2\" :How many minutes does it take Dhoni to type less than 84 words if he types at the rate of 16 words per minute ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dhoni_type_s1=64\nDhoni_type_s2=84\nif Dhoni_type_s1 is None or Dhoni_type_s2 is None:\n print('neutral')\nelif Dhoni_type_s1 <= Dhoni_type_s2:\n print('Entailment')\nelif Dhoni_type_s1 != Dhoni_type_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Carl bought less than 26 gumballs , Lewis bought 12 gumballs , and Carey bought X gumballs, \"statement 2\" :Carl bought 16 gumballs , Lewis bought 12 gumballs , and Carey bought X gumballs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Carl_bought_s1=26\nCarl_bought_s1=None\nCarl_bought_s2=16\nif Carl_bought_s1 is None or Carl_bought_s2 is None:\n print('neutral')\nelif Carl_bought_s1 == Carl_bought_s2:\n print('Entailment')\nelif Carl_bought_s1 != Carl_bought_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy had 26.0 pet fish and she bought 6.0 more fish, \"statement 2\" :Sandy has 32.0 pet fish now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Sandy_fish_s1=26+6\nSandy_fish_s2=32\nif Sandy_fish_s1 is None or Sandy_fish_s2 is None:\n print('neutral')\nelif Sandy_fish_s1 == Sandy_fish_s2:\n print('Entailment')\nelif Sandy_fish_s1 != Sandy_fish_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": '' Twenty-five others , including some players , are severely injured ., \"statement 2\" :25 people are injured , a spokesman says, \"options: \" Entailment or neutral?", + "Output Program": [ + "players_and_people_injured_s1=25\npeople_injured_s2=25\nif players_and_people_injured_s1 is None or people_injured_s2 is None:\n print('neutral')\nelif players_and_people_injured_s1 == people_injured_s2:\n print('Entailment')\nelif players_and_people_injured_s1 != people_injured_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Alluding to Greece 's proposal , and other differences within the alliance , Albright said `` there are a variety of ideas '' among the diverse 19 NATO member nations ., \"statement 2\" :The NATO has 16 members ., \"options: \" Entailment or neutral?", + "Output Program": [ + "NATO_Members_s1=19\nNATO_Members_s1=None\nNATO_Members_s2=16\nif NATO_Members_s1 is None or NATO_Members_s2 is None:\n print('neutral')\nelif NATO_Members_s1 == NATO_Members_s2:\n print('Entailment')\nelif NATO_Members_s1 != NATO_Members_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": '' I 've seen Inbee do this before , '' said Lewis , who finished 14 shots adrift of Park ., \"statement 2\" :World No. 1 Stacy Lewis finished 14 shots behind Park, \"options: \" Entailment or neutral?", + "Output Program": [ + "Drift_shots_s1=14\nDrift_shots_s2=14\nif Drift_shots_s1 is None or Drift_shots_s2 is None:\n print('neutral')\nelif Drift_shots_s1 == Drift_shots_s2:\n print('Entailment')\nelif Drift_shots_s1 != Drift_shots_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The magnitude-9 quake sent walls of water slamming into the country 's Pacific shores , sweeping away whole villages and leaving more than 27,000 dead or missing ., \"statement 2\" :The quake has left more than 13,000 dead and 14,000 missing, \"options: \" Entailment or neutral?", + "Output Program": [ + "dead_and_missing_s1=27000\ndead_and_missing_s1=None\nquake_s2=130000\nif dead_and_missing_s1 is None or quake_s2 is None:\n print('neutral')\nelif dead_and_missing_s1 == quake_s2:\n print('Entailment')\nelif dead_and_missing_s1 != quake_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill works as a waitress at the local diner where she earns an hourly wage of $ 4.00 per hour and a standard tip rate of less than 75 % of the cost of the orders she serves, \"statement 2\" :Jill works as a waitress at the local diner where she earns an hourly wage of $ 4.00 per hour and a standard tip rate of 15 % of the cost of the orders she serves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tip_rate_s1=75\ntip_rate_s1=None\ntip_rate_s2=15\nquake_s2=130000\nif tip_rate_s1 is None or tip_rate_s2 is None:\n print('neutral')\nelif tip_rate_s1 == tip_rate_s2:\n print('Entailment')\nelif tip_rate_s1 != tip_rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many different possible committees of 3 people can be selected from these 7 people if at least one of either Jane or Thomas is to be selected ?, \"statement 2\" :How many different possible committees of less than 4 people can be selected from these 7 people if at least one of either Jane or Thomas is to be selected ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "People_s1 = 3\nPeople_s2 = 4-1\n\nif People_s1 is None or People_s2 is None:\n print('neutral')\n\nelif People_s1 == People_s2:\n print('Entailment')\n\nelif People_s1 != People_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shekar scored 76 , 65 , 82 , 67 and 85 marks in Mathematics , Science , Social studies , English and Biology respectively, \"statement 2\" :Shekar scored more than 76 , 65 , 82 , 67 and 85 marks in Mathematics , Science , Social studies , English and Biology respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Shekar_marks_s1=76,65,82,67,85\nShekar_marks_s2=76,65,82,67,85\nif Shekar_marks_s1 is None or Shekar_marks_s2 is None:\n print('neutral')\nelif Shekar_marks_s1 <= Shekar_marks_s2:\n print('Entailment')\nelif Shekar_marks_s1 != Shekar_marks_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Molly can do a task in 20 days while Sandy can do the task in 30 days, \"statement 2\" :Molly can do a task in 50 days while Sandy can do the task in 30 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "molly_work_s1=20\nmolly_work_s2=50\nif molly_work_s1 is None or molly_work_s2 is None:\n print('neutral')\nelif molly_work_s1 == molly_work_s2:\n print('Entailment')\nelif molly_work_s1 != molly_work_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A waiter had 36.0 customers to wait on, and 19.0 of the customers left and then 14.0 of the remaining customers left, \"statement 2\" :He would have 5.0 customers , \"options: \" Entailment or contradiction?", + "Output Program": [ + "waiter_had_customer_s1=36+19-14\nwaiter_had_customer_s2=5\nif waiter_had_customer_s1 is None or waiter_had_customer_s2 is None:\n print('neutral')\nelif waiter_had_customer_s1 == waiter_had_customer_s2:\n print('Entailment')\nelif waiter_had_customer_s1 != waiter_had_customer_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Peter has 9 candies , rina has 5 candies, \"statement 2\" :Peter has less than 9 candies , rina has 5 candies, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "peter_has_s1=9+5\npeter_has_s2=8+5\nif peter_has_s1 is None or peter_has_s2 is None:\n print('neutral')\nelif peter_has_s1 == peter_has_s2:\n print('Entailment')\nelif peter_has_s1 != peter_has_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John invests some money at the beginning , David invests double the amount after less than 7 months , and Xavier invests thrice the amount after 8 months, \"statement 2\" :John invests some money at the beginning , David invests double the amount after 6 months , and Xavier invests thrice the amount after 8 months, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "David_amount_s1=7\nDavid_amount_s1=None\nDavid_amount_s2=6\nif David_amount_s1 is None or David_amount_s2 is None:\n print('neutral')\nelif David_amount_s1 == David_amount_s2:\n print('Entailment')\nelif David_amount_s1 != David_amount_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The workforce of Company Samsung is more than 50 % female, \"statement 2\" :The workforce of Company Samsung is 60 % female, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Samsung_workforce_s1=50\nSamsung_workforce_s1=None\nSamsung_workforce_s2=60\nif Samsung_workforce_s1 is None or Samsung_workforce_s2 is None:\n print('neutral')\nelif Samsung_workforce_s1 == Samsung_workforce_s2:\n print('Entailment')\nelif Samsung_workforce_s1 != Samsung_workforce_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Winson earns $ 10.00 per hour for the first 40 hours he works per week , and twice this rate for overtime, \"statement 2\" :Winson earns $ 10.00 per hour for the first 70 hours he works per week , and twice this rate for overtime, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Winson_earned_s1=40\nWinson_earned_s2=70\nif Winson_earned_s1 is None or Winson_earned_s2 is None:\n print('neutral')\nelif Winson_earned_s1 == Winson_earned_s2:\n print('Entailment')\nelif Winson_earned_s1 != Winson_earned_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After 6 years , Arun \u2019 s age will be 26 years, \"statement 2\" :After more than 2 years , Arun \u2019 s age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Arun_age_s1=26\nArun_age_s2=26\nif Arun_age_s1 is None or Arun_age_s2 is None:\n print('neutral')\nelif Arun_age_s1 == Arun_age_s2:\n print('Entailment')\nelif Arun_age_s1 != Arun_age_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": David can divide his herd into more than 3 equal parts and also to 6 equal parts , but not to 9 equal parts, \"statement 2\" :David can divide his herd into 5 equal parts and also to 6 equal parts , but not to 9 equal parts, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "david_divide_group_s1=3,6\ndavid_divide_group_s1=None\ndavid_divide_group_s2=5,6\nif david_divide_group_s1 is None or david_divide_group_s2 is None:\n print('neutral')\nelif david_divide_group_s1 == david_divide_group_s2:\n print('Entailment')\nelif david_divide_group_s1 != david_divide_group_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If John received $ 800 more than Mike did , what was the profit made by their business in that year ?, \"statement 2\" :If John received $ more than 800 more than Mike did , what was the profit made by their business in that year ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jhon_recevied_s1=800\njhon_recevied_s2=800+1\nif jhon_recevied_s1 is None or jhon_recevied_s2 is None:\n print('neutral')\nelif jhon_recevied_s1 == jhon_recevied_s2:\n print('Entailment')\nelif jhon_recevied_s1 != jhon_recevied_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At a meeting of the 9 Joint Chiefs of Staff , the Chief of Naval Operations does not want to sit next to the Chief of the National Guard Bureau, \"statement 2\" :At a meeting of the more than 6 Joint Chiefs of Staff , the Chief of Naval Operations does not want to sit next to the Chief of the National Guard Bureau, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Meeting_s1=9\nMeeting_s2=6+3\nif Meeting_s1 is None or Meeting_s2 is None:\n print('neutral')\nelif Meeting_s1 == Meeting_s2:\n print('Entailment')\nelif Meeting_s1 != Meeting_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Packard reads at a constant rate of more than 1 pages every 5 minutes , how many seconds will it take him to read N pages ?, \"statement 2\" :If Packard reads at a constant rate of 4 pages every 5 minutes , how many seconds will it take him to read N pages ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Packard_read_s1=1\nPackard_read_s1=None\nPackard_read_s2=4\nif Packard_read_s1 is None or Packard_read_s2 is None:\n print('neutral')\nelif Packard_read_s1 == Packard_read_s2:\n print('Entailment')\nelif Packard_read_s1 != Packard_read_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": '' It is an historic and symbolic moment that an Indian driver is on the grid and , of course , there is a lot following Formula One for a long time , '' the Hispania Racing Team driver told F1 's official website ., \"statement 2\" :Indian Formula One driver says the race can boost the sport 's popularity, \"options: \" Entailment or neutral?", + "Output Program": [ + "Hispania_racing_team_s1=None\nIndian_formula_driver_says=None\nif Hispania_racing_team_s1 is None or Indian_formula_driver_says is None:\n print('neutral')\nelif Hispania_racing_team_s1 == Indian_formula_driver_says:\n print('Entailment')\nelif Hispania_racing_team_s1 != Indian_formula_driver_says:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Efrida and Frazer who live less than 62 miles apart , meet at a restaurant that is directly north of Efrida ' s home and directly east of Frazer ' s home, \"statement 2\" :Efrida and Frazer who live 12 miles apart , meet at a restaurant that is directly north of Efrida ' s home and directly east of Frazer ' s home, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Efida_and_frazer_live_s1=62\nEfida_and_frazer_live_s1=None\nEfida_and_frazer_live_s2=12\nif Efida_and_frazer_live_s1 is None or Efida_and_frazer_live_s2 is None:\n print('neutral')\nelif Efida_and_frazer_live_s1 == Efida_and_frazer_live_s2:\n print('Entailment')\nelif Efida_and_frazer_live_s1 != Efida_and_frazer_live_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jose joined him less than 8 months later , investing Rs, \"statement 2\" :Jose joined him 2 months later , investing Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jose_joined_s1=8\nJose_joined_s1=None\nJose_joined_s2=2\nif Jose_joined_s1 is None or Jose_joined_s2 is None:\n print('neutral')\nelif Jose_joined_s1 == Jose_joined_s2:\n print('Entailment')\nelif Jose_joined_s1 != Jose_joined_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Louie takes out a three - month loan of $ 1000, \"statement 2\" :Louie takes out a three - month loan of $ less than 6000, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "louie_loan_s1=1000\nlouie_loan_s2=6000\nif louie_loan_s1 is None or louie_loan_s2 is None:\n print('neutral')\nelif louie_loan_s1 <= louie_loan_s2:\n print('Entailment')\nelif louie_loan_s1 != louie_loan_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If 51 people have visited both Iceland and Norway , how many people have visited neither country ?, \"statement 2\" :If 81 people have visited both Iceland and Norway , how many people have visited neither country ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "visited_iceland_and_Norway_s1=51\nvisited_iceland_and_Norway_s2=81\nif visited_iceland_and_Norway_s1 is None or visited_iceland_and_Norway_s2 is None:\n print('neutral')\nelif visited_iceland_and_Norway_s1 == visited_iceland_and_Norway_s2:\n print('Entailment')\nelif visited_iceland_and_Norway_s1 != visited_iceland_and_Norway_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Murali travelled from city A to city B at a speed of 40 kmph and from city B to city C at 60 kmph, \"statement 2\" :Murali travelled from city A to city B at a speed of 80 kmph and from city B to city C at 60 kmph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Murali_speed_s1=40\nMurali_speed_s2=80\nif Murali_speed_s1 is None or Murali_speed_s2 is None:\n print('neutral')\nelif Murali_speed_s1 == Murali_speed_s2:\n print('Entailment')\nelif Murali_speed_s1 != Murali_speed_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Joe \u2019 s average ( arithmetic mean ) test score across 4 equally weighted tests was 70, \"statement 2\" :Joe \u2019 s average ( arithmetic mean ) test score across less than 5 equally weighted tests was 70, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Joe_score_s1=70\nJoe_score_s2=70\nif Joe_score_s1 is None or Joe_score_s2 is None:\n print('neutral')\nelif Joe_score_s1 == Joe_score_s2:\n print('Entailment')\nelif Joe_score_s1 != Joe_score_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The Iraqi government said 17 civilians were killed , although the indictment alleges 14 died ., \"statement 2\" :The Iraqi government says 17 civilians were killed without provocation, \"options: \" Entailment or neutral?", + "Output Program": [ + "Civilians_were_killed_s1=17\nCivilians_were_killed_s2=17\nif Civilians_were_killed_s1 is None or Civilians_were_killed_s2 is None:\n print('neutral')\nelif Civilians_were_killed_s1 == Civilians_were_killed_s2:\n print('Entailment')\nelif Civilians_were_killed_s1 != Civilians_were_killed_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The average marks scored by Ganesh in English , Science , Mathematics and History is less than less than 65 from that scored by him in English , History , Geography and Mathematics, \"statement 2\" :The average marks scored by Ganesh in English , Science , Mathematics and History is less than 15 from that scored by him in English , History , Geography and Mathematics, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ganesh_marks_s1=65\nGanesh_marks_s2=15\nGanesh_marks_s2=None\nif Ganesh_marks_s1 is None or Ganesh_marks_s2 is None:\n print('neutral')\nelif Ganesh_marks_s1 == Ganesh_marks_s2:\n print('Entailment')\nelif Ganesh_marks_s1 != Ganesh_marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Last week James worked a total of 41 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"statement 2\" :Last week James worked a total of less than 51 hours If Harry and James were paid the same amount last week , how many hours did Harry work last week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "james_worked_s1=41\njames_worked_s2=51\nif james_worked_s1 is None or james_worked_s2 is None:\n print('neutral')\nelif james_worked_s1 <= james_worked_s2:\n print('Entailment')\nelif james_worked_s1 != james_worked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Ravi ' s average ( arithmetic mean ) test score on 4 tests is 78, \"statement 2\" :Ravi ' s average ( arithmetic mean ) test score on 2 tests is 78, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ravi_average_score_in_test_s1=4\nRavi_average_score_in_test_s2=2\nif Ravi_average_score_in_test_s1 is None or Ravi_average_score_in_test_s2 is None:\n print('neutral')\nelif Ravi_average_score_in_test_s1 == Ravi_average_score_in_test_s2:\n print('Entailment')\nelif Ravi_average_score_in_test_s1 != Ravi_average_score_in_test_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary works in a restaurant a maximum of more than 15 hours, \"statement 2\" :Mary works in a restaurant a maximum of 45 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Mary_work_s1=15\nMary_work_s1=None\nMary_work_s2=45\nif Mary_work_s1 is None or Mary_work_s2 is None:\n print('neutral')\nelif Mary_work_s1 == Mary_work_s2:\n print('Entailment')\nelif Mary_work_s1 != Mary_work_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Twenty-nine people in the northwest Alabama town of nearly 1,600 residents died , according to Marion County Sheriff Kevin Williams ., \"statement 2\" :Thirty-five people killed in Marion County , sheriff says, \"options: \" Entailment or neutral?", + "Output Program": [ + "Residents_died_s1=29\nthirty_five_people_killed_s2=None\nif Residents_died_s1 is None or thirty_five_people_killed_s2 is None:\n print('neutral')\nelif Residents_died_s1 == thirty_five_people_killed_s2:\n print('Entailment')\nelif Residents_died_s1 != thirty_five_people_killed_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Carolyn bought 15 gumballs , Lew bought 12 gumballs , and Carey bought X gumballs, \"statement 2\" :Carolyn bought more than 15 gumballs , Lew bought 12 gumballs , and Carey bought X gumballs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "carolyn_gumball_s1=15\ncarolyn_gumball_s2=15+1\nif carolyn_gumball_s1 is None or carolyn_gumball_s2 is None:\n print('neutral')\nelif carolyn_gumball_s1 == carolyn_gumball_s2:\n print('Entailment')\nelif carolyn_gumball_s1 != carolyn_gumball_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are less than 54 more FGH supermarkets in the US than in Canada , how many FGH supermarkets are there in the US ?, \"statement 2\" :If there are 14 more FGH supermarkets in the US than in Canada , how many FGH supermarkets are there in the US ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "super_market_s1=54\nsuper_market_s2=14\nsuper_market_s2=None\nif super_market_s1 is None or super_market_s2 is None:\n print('neutral')\nelif super_market_s1 == super_market_s2:\n print('Entailment')\nelif super_market_s1 != super_market_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Linda has 34.0 candies and she gave Chloe 28.0 candies, \"statement 2\" :Linda has 6.0 candies left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Linda_candies_s1=34-28\nLinda_candies_s2=6\nif Linda_candies_s1 is None or Linda_candies_s2 is None:\n print('neutral')\nelif Linda_candies_s1 == Linda_candies_s2:\n print('Entailment')\nelif Linda_candies_s1 != Linda_candies_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": One hour after Yolanda started walking from X to Y , a distance of 24 miles , Bob started walking along the same road from Y to X, \"statement 2\" :One hour after Yolanda started walking from X to Y , a distance of 64 miles , Bob started walking along the same road from Y to X, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Yolanda_walking_s1=24\nYolanda_walking_s2=64\nif Yolanda_walking_s1 is None or Yolanda_walking_s2 is None:\n print('neutral')\nelif Yolanda_walking_s1 == Yolanda_walking_s2:\n print('Entailment')\nelif Yolanda_walking_s1 != Yolanda_walking_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If gas costs $ 4 / gallon , then how many miles can Dan \u2019 s car go on $ 38 of gas ?, \"statement 2\" :If gas costs $ 2 / gallon , then how many miles can Dan \u2019 s car go on $ 38 of gas ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gas_cost_s1=4\ngas_cost_s2=2\nif gas_cost_s1 is None or gas_cost_s2 is None:\n print('neutral')\nelif gas_cost_s1 == gas_cost_s2:\n print('Entailment')\nelif gas_cost_s1 != gas_cost_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": For dinner , Sandy ate 200 grams of corn which was five times as much corn as she ate for lunch , and twice as much corn as she ate for breakfast, \"statement 2\" :For dinner , Sandy ate more than 200 grams of corn which was five times as much corn as she ate for lunch , and twice as much corn as she ate for breakfast, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sandy_ate_s1=200\nsandy_ate_s2=200+1\nif sandy_ate_s1 is None or sandy_ate_s2 is None:\n print('neutral')\nelif sandy_ate_s1 == sandy_ate_s2:\n print('Entailment')\nelif sandy_ate_s1 != sandy_ate_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jenny can divide her sweets equally to more than 4 people and also to 6 people equally but not to 12 people, \"statement 2\" :Jenny can divide her sweets equally to 5 people and also to 6 people equally but not to 12 people, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jenny_divide_s1=None\nJenny_divide_s2=5\nif Jenny_divide_s1 is None or Jenny_divide_s2 is None:\n print('neutral')\nelif Jenny_divide_s1 == Jenny_divide_s2:\n print('Entailment')\nelif Jenny_divide_s1 != Jenny_divide_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were 12 original members of NATO at the time of its founding ., \"statement 2\" :The NATO has 16 members ., \"options: \" Entailment or neutral?", + "Output Program": [ + "Original_members_s1=12\nOriginal_members_s1=None\nOriginal_members_s2=16\nif Original_members_s1 is None or Original_members_s2 is None:\n print('neutral')\nelif Original_members_s1 == Original_members_s2:\n print('Entailment')\nelif Original_members_s1 != Original_members_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Bill needs to walk from the corner of less than 7 nd Rd and 3 rd Ave to the corner of 6 th Rd and 9 th Ave in the shortest possible time , how many different routes could he take ?, \"statement 2\" :If Bill needs to walk from the corner of 2 nd Rd and 3 rd Ave to the corner of 6 th Rd and 9 th Ave in the shortest possible time , how many different routes could he take ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Bill_needs_s1 = None\nBill_needs_s2 = 2\n\nif Bill_needs_s1 is None or Bill_needs_s2 is None:\n print('neutral')\n\nelif Bill_needs_s1 == Bill_needs_s2:\n print('Entailment')\n\nelif Bill_needs_s1 != Bill_needs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Veena ranks 73 rd from the top in a class of 182, \"statement 2\" :Veena ranks more than 43 rd from the top in a class of 182, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Veena_top_in_class_s1=73\nVeena_top_in_class_s2=43\nif Veena_top_in_class_s1 is None or Veena_top_in_class_s2 is None:\n print('neutral')\nelif Veena_top_in_class_s1 >= Veena_top_in_class_s2:\n print('Entailment')\nelif Veena_top_in_class_s1 != Veena_top_in_class_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Suraj has a certain average of runs for 16 innings, \"statement 2\" :Suraj has a certain average of runs for 66 innings, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Suraj_average_s1=16\nSuraj_average_s2=66\nif Suraj_average_s1 is None or Suraj_average_s2 is None:\n print('neutral')\nelif Suraj_average_s1 == Suraj_average_s2:\n print('Entailment')\nelif Suraj_average_s1 != Suraj_average_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Software developer Molinker has been kicked out , along with more than 1,000 of its iPhone applications ., \"statement 2\" :Apple kicks software developer Molinker and its 1,000 apps out of its App Store, \"options: \" Entailment or neutral?", + "Output Program": [ + "Iphone_application_s1=1000\nIphone_application_s2=1000\nif Iphone_application_s1 is None or Iphone_application_s2 is None:\n print('neutral')\nelif Iphone_application_s1 == Iphone_application_s2:\n print('Entailment')\nelif Iphone_application_s1 != Iphone_application_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Martin bought less than 30 concert tickets , some at the full price of $ 2.00 per ticket , and some at a discounted price of $ 1.60 per ticket, \"statement 2\" :Martin bought 10 concert tickets , some at the full price of $ 2.00 per ticket , and some at a discounted price of $ 1.60 per ticket, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Martin_concert_ticket_s1=30\nMartin_concert_ticket_s1=None\nMartin_concert_ticket_s2=10\nif Martin_concert_ticket_s1 is None or Martin_concert_ticket_s2 is None:\n print('neutral')\nelif Martin_concert_ticket_s1 == Martin_concert_ticket_s2:\n print('Entailment')\nelif Martin_concert_ticket_s1 != Martin_concert_ticket_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jose starts with 7.0 bottle caps and he gives 2.0 to Rebecca, \"statement 2\" :Jose has 5.0 bottle caps left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "jose_bottle_s1=7-2\njose_bottle_s2=5\nif jose_bottle_s1 is None or jose_bottle_s2 is None:\n print('neutral')\nelif jose_bottle_s1 == jose_bottle_s2:\n print('Entailment')\nelif jose_bottle_s1 != jose_bottle_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Anne \u2019 s speed were doubled , they could clean their house in less than 5 hours working at their respective rates, \"statement 2\" :If Anne \u2019 s speed were doubled , they could clean their house in 3 hours working at their respective rates, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Anne_clean_house_s1=5\nAnne_clean_house_s1=None\nAnne_clean_house_s2=3\nif Anne_clean_house_s1 is None or Anne_clean_house_s2 is None:\n print('neutral')\nelif Anne_clean_house_s1 == Anne_clean_house_s2:\n print('Entailment')\nelif Anne_clean_house_s1 != Anne_clean_house_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": If side AC = 20 units , what is the area of the triangle ?, \"statement 2\" :If side AC = less than 30 units , what is the area of the triangle ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ac_s1=20\nAc_s2=30\nif Ac_s1 is None or Ac_s2 is None:\n print('neutral')\nelif Ac_s1 <= Ac_s2:\n print('Entailment')\nelif Ac_s1 != Ac_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": more than 10 percent of Andrea ' s living room floor is covered by a carpet that is 4 feet by 9 feet, \"statement 2\" :30 percent of Andrea ' s living room floor is covered by a carpet that is 4 feet by 9 feet, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Andera_living_floor_s1=10\nAndera_living_floor_s1=None\nAndera_living_floor_s2=30\nif Andera_living_floor_s1 is None or Ac_s2 is None:\n print('neutral')\nelif Andera_living_floor_s1 == Andera_living_floor_s2:\n print('Entailment')\nelif Andera_living_floor_s1 != Andera_living_floor_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ramesh can finish a work in 20 days and Sushil in 25 days, \"statement 2\" :Ramesh can finish a work in 50 days and Sushil in 25 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ramesh_finish_work_s1=20\nRamesh_finish_work_s2=50\nif Ramesh_finish_work_s1 is None or Ramesh_finish_work_s2 is None:\n print('neutral')\nelif Ramesh_finish_work_s1 == Ramesh_finish_work_s2:\n print('Entailment')\nelif Ramesh_finish_work_s1 != Ramesh_finish_work_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lindy runs at a constant speed of 12 feet per second from Christina to Jack , back to Christina , back to Jack , and so forth, \"statement 2\" :Lindy runs at a constant speed of 22 feet per second from Christina to Jack , back to Christina , back to Jack , and so forth, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Lindy_runs_s1=12\nLindy_runs_s2=22\nif Lindy_runs_s1 is None or Lindy_runs_s2 is None:\n print('neutral')\nelif Lindy_runs_s1 == Lindy_runs_s2:\n print('Entailment')\nelif Lindy_runs_s1 != Lindy_runs_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Of those 36 bodies , 32 have been identified , county officials said ., \"statement 2\" :32 of the 36 bodies have been identified , Snohomish County officials say, \"options: \" Entailment or neutral?", + "Output Program": [ + "Identified_bodies_s1=32\nIdentified_bodies_s2=32\nif Identified_bodies_s1 is None or Identified_bodies_s2 is None:\n print('neutral')\nelif Identified_bodies_s1 == Identified_bodies_s2:\n print('Entailment')\nelif Identified_bodies_s1 != Identified_bodies_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At Veridux Corporation , there are 250 employees, \"statement 2\" :At Veridux Corporation , there are more than 250 employees, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Employees_s1=250\nEmployees_s2=250+1\nif Employees_s1 is None or Employees_s2 is None:\n print('neutral')\nelif Employees_s1 == Employees_s2:\n print('Entailment')\nelif Employees_s1 != Employees_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Josh had 16.0 marbles in his collection and he lost 7.0 marbles, \"statement 2\" :He has 9.0 marbles now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Josh_marles_s1=16-7\nJosh_marles_s2=9\nif Josh_marles_s1 is None or Josh_marles_s2 is None:\n print('neutral')\nelif Josh_marles_s1 == Josh_marles_s2:\n print('Entailment')\nelif Josh_marles_s1 != Josh_marles_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John has 13 ten - dollar bills , 11 five - dollar bills , and 17 one - dollar bills, \"statement 2\" :John has 63 ten - dollar bills , 11 five - dollar bills , and 17 one - dollar bills, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jhon_bills_s1=13\njhon_bills_s2=63\nif jhon_bills_s1 is None or jhon_bills_s2 is None:\n print('neutral')\nelif jhon_bills_s1 == jhon_bills_s2:\n print('Entailment')\nelif jhon_bills_s1 != jhon_bills_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nitin ranks 23 th in a class of 60 students, \"statement 2\" :Nitin ranks 43 th in a class of 60 students, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Nitin_rank_s1=23\nNitin_rank_s2=43\nif Nitin_rank_s1 is None or Nitin_rank_s2 is None:\n print('neutral')\nelif Nitin_rank_s1 == Nitin_rank_s2:\n print('Entailment')\nelif Nitin_rank_s1 != Nitin_rank_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many possible ways can 3 girls ( Rebecca , Kate , Ashley ) go on a date with 3 boys ( Peter , Kyle , Sam ) ?, \"statement 2\" :How many possible ways can more than 3 girls ( Rebecca , Kate , Ashley ) go on a date with 3 boys ( Peter , Kyle , Sam ) ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "girls_date_with_boy_s1=3\nboys_date_with_girls_s2=3+1\nif girls_date_with_boy_s1 is None or boys_date_with_girls_s2 is None:\n print('neutral')\nelif girls_date_with_boy_s1 == boys_date_with_girls_s2:\n print('Entailment')\nelif girls_date_with_boy_s1 != boys_date_with_girls_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Robert purchased $ 2000 worth of US saving bonds, \"statement 2\" :Robert purchased $ less than 7000 worth of US saving bonds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Robert_purchased_s1=2000\nRobert_purchased_s2=7000\nif Robert_purchased_s1 is None or Robert_purchased_s2 is None:\n print('neutral')\nelif Robert_purchased_s1 <= Robert_purchased_s2:\n print('Entailment')\nelif Robert_purchased_s1 != Robert_purchased_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Glen is 130 km away from Hannah at 6 am , and also 130 km away from Hannah at 11 am , then how fast is Hannah driving ( in kilometers per hour ) ?, \"statement 2\" :If Glen is less than 430 km away from Hannah at 6 am , and also 130 km away from Hannah at 11 am , then how fast is Hannah driving ( in kilometers per hour ) ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Geln_away_s1=130\nGeln_away_s2=430\nif Geln_away_s1 is None or Geln_away_s2 is None:\n print('neutral')\nelif Geln_away_s1 <= Geln_away_s2:\n print('Entailment')\nelif Geln_away_s1 != Geln_away_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Kerri leaves City A 60 minutes after Jim, \"statement 2\" :Kerri leaves City A more than 60 minutes after Jim, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Kerri_leaves_s1=60\nKerri_leaves_s2=60+1\nif Kerri_leaves_s1 is None or Kerri_leaves_s2 is None:\n print('neutral')\nelif Kerri_leaves_s1 == Kerri_leaves_s2:\n print('Entailment')\nelif Kerri_leaves_s1 != Kerri_leaves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Fred and Sam are standing less than 65 miles apart and they start walking in a straight line toward each other at the same time, \"statement 2\" :Fred and Sam are standing 55 miles apart and they start walking in a straight line toward each other at the same time, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Fred_and_Sam_standig_s1=None\nFred_and_Sam_standig_s2=55\nif Fred_and_Sam_standig_s1 is None or Fred_and_Sam_standig_s2 is None:\n print('neutral')\nelif Fred_and_Sam_standig_s1 == Fred_and_Sam_standig_s2:\n print('Entailment')\nelif Fred_and_Sam_standig_s1 != Fred_and_Sam_standig_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Each week , James is paid x dollars per per hour for the first 40 hours and 2 x dollars for each additional hour worked that week, \"statement 2\" :Each week , James is paid x dollars per per hour for the first more than 20 hours and 2 x dollars for each additional hour worked that week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "James_paid_dollar_per_hour_s1=40\nJames_paid_dollar_per_hour_s2=20\nif James_paid_dollar_per_hour_s1 is None or James_paid_dollar_per_hour_s2 is None:\n print('neutral')\nelif James_paid_dollar_per_hour_s1 >= James_paid_dollar_per_hour_s2:\n print('Entailment')\nelif James_paid_dollar_per_hour_s1 != James_paid_dollar_per_hour_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ravi ' s average ( arithmetic mean ) test score on 4 tests is 78, \"statement 2\" :Ravi ' s average ( arithmetic mean ) test score on less than 5 tests is 78, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ravi_test_score_in_test_s1=4\nRavi_test_score_in_test_s2=5-1\nif Ravi_test_score_in_test_s1 is None or Ravi_test_score_in_test_s2 is None:\n print('neutral')\nelif Ravi_test_score_in_test_s1 == Ravi_test_score_in_test_s2:\n print('Entailment')\nelif Ravi_test_score_in_test_s1 != Ravi_test_score_in_test_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Our class got 54.0 books from the library and then we gave 23.0 away to a different class, \"statement 2\" :Class has 34.0 books from the library left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Books_got_s1=54\nBooks_got_s2=34\nif Books_got_s1 is None or Books_got_s2 is None:\n print('neutral')\nelif Books_got_s1 == Books_got_s2:\n print('Entailment')\nelif Books_got_s1 != Books_got_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If 20 % of all the students at Morse have cars , how many students are in the three lower grades ?, \"statement 2\" :If less than 50 % of all the students at Morse have cars , how many students are in the three lower grades ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Students_has_cars_s1=20\nStudents_has_cars_s2=50\nif Students_has_cars_s1 is None or Students_has_cars_s2 is None:\n print('neutral')\nelif Students_has_cars_s1 <= Students_has_cars_s2:\n print('Entailment')\nelif Students_has_cars_s1 != Students_has_cars_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Jessica found 8.0 seashells and she gave Joan 6.0 seashells, \"statement 2\" :Jessica has 1.0 seashells left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "jessica_seashells_s1=8-6\njessica_seashells_s2=1\nif jessica_seashells_s1 is None or jessica_seashells_s2 is None:\n print('neutral')\nelif jessica_seashells_s1 == jessica_seashells_s2:\n print('Entailment')\nelif jessica_seashells_s1 != jessica_seashells_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ratio between the school ages of Neelam and Shaan is more than 3 : 6 respectively, \"statement 2\" :The ratio between the school ages of Neelam and Shaan is 5 : 6 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Age_ratio_s1=3/6\nAge_ratio_s1=None\nAge_ratio_s2=5/6\nif Age_ratio_s1 is None or Age_ratio_s2 is None:\n print('neutral')\nelif Age_ratio_s1 == Age_ratio_s2:\n print('Entailment')\nelif Age_ratio_s1 != Age_ratio_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were no immediate reports of injuries , and authorities said they found no signs of fires at any other church in Greenville , which is about 75 miles east of Raleigh ., \"statement 2\" :Greenville is located about 75 miles east of Raleigh ., \"options: \" Entailment or neutral?", + "Output Program": [ + "Church_in_greenville_s1=75\nChurch_in_greenville_s2=75\nif Church_in_greenville_s1 is None or Church_in_greenville_s2 is None:\n print('neutral')\nelif Church_in_greenville_s1 == Church_in_greenville_s2:\n print('Entailment')\nelif Church_in_greenville_s1 != Church_in_greenville_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The compound interest earned by Sunil on a certain amount at the end of two years at the rate of 8 % p, \"statement 2\" :The compound interest earned by Sunil on a certain amount at the end of two years at the rate of 4 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "intrest_earned_by_sunil_s1=8\nintrest_earned_by_sunil_s2=4\nif intrest_earned_by_sunil_s1 is None or intrest_earned_by_sunil_s2 is None:\n print('neutral')\nelif intrest_earned_by_sunil_s1 == intrest_earned_by_sunil_s2:\n print('Entailment')\nelif intrest_earned_by_sunil_s1 != intrest_earned_by_sunil_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Peter purchased 30 kg of rice at the rate of $ 11.50 per kg and 20 kg of rice at the rate of 14.25 per kg, \"statement 2\" :Peter purchased 20 kg of rice at the rate of $ 11.50 per kg and 20 kg of rice at the rate of 14.25 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Peter_purchased_rice_s1=30\nPeter_purchased_rice_s2=20\nif Peter_purchased_rice_s1 is None or Peter_purchased_rice_s2 is None:\n print('neutral')\nelif Peter_purchased_rice_s1 == Peter_purchased_rice_s2:\n print('Entailment')\nelif Peter_purchased_rice_s1 != Peter_purchased_rice_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The average number of shirts with Salman , Ambani and Dalmiya is more than 10 , if all of them reached a shopping mall in Delhi and purchased 14 shirts each of them then average number of shirt each of them now has, \"statement 2\" :The average number of shirts with Salman , Ambani and Dalmiya is 40 , if all of them reached a shopping mall in Delhi and purchased 14 shirts each of them then average number of shirt each of them now has, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Shirts_average_s1=10\nShirts_average_s1=None\nShirts_average_s2=40\nif Shirts_average_s1 is None or Shirts_average_s2 is None:\n print('neutral')\nelif Shirts_average_s1 == Shirts_average_s2:\n print('Entailment')\nelif Shirts_average_s1 != Shirts_average_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained more than 35 , 35 , 52 , 47 and 55 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained 45 , 35 , 52 , 47 and 55 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dacid_marks_s1=35,35,52,47,55\nDacid_marks_s1=None\nDacid_marks_s2=45,35,52,47,55\nif Dacid_marks_s1 is None or Dacid_marks_s2 is None:\n print('neutral')\nelif Dacid_marks_s1 == Dacid_marks_s2:\n print('Entailment')\nelif Dacid_marks_s1 != Dacid_marks_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Twenty-two of the dead were U.S. Navy personnel , the Pentagon said ., \"statement 2\" :17 were Navy SEALs, \"options: \" Entailment or neutral?", + "Output Program": [ + "Us_navy_personnel_dead_s1=None\nNavy_seal_s1=17\nif Us_navy_personnel_dead_s1 is None or Navy_seal_s1 is None:\n print('neutral')\nelif Us_navy_personnel_dead_s1 == Navy_seal_s1:\n print('Entailment')\nelif Us_navy_personnel_dead_s1 != Navy_seal_s1:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mike picked 32.0 limes, and Alyssa ate 25.0 limes and Tom picked 12.0 plums , \"statement 2\" :7.0 limes were left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Mike_limes_s1=32-25\nLimes_left_s1=7\nif Mike_limes_s1 is None or Limes_left_s1 is None:\n print('neutral')\nelif Mike_limes_s1 == Limes_left_s1:\n print('Entailment')\nelif Mike_limes_s1 != Limes_left_s1:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Peter has more than 3 candies , rina has 5 candies, \"statement 2\" :Peter has 9 candies , rina has 5 candies, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "candies_s1=5+3\ncandies_s1=None\ncandies_s2=9+5\nif candies_s1 is None or candies_s2 is None:\n print('neutral')\nelif candies_s1 == candies_s2:\n print('Entailment')\nelif candies_s1 != candies_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Four different children have jelly beans : Aaron has 5 , Bianca has 7 , Callie has 8 , and Dante has 19, \"statement 2\" :Four different children have jelly beans : Aaron has less than 8 , Bianca has 7 , Callie has 8 , and Dante has 19, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jelly_beans_s1=5+7+8+19\nJelly_beans_s2=5+7+8+19\nif Jelly_beans_s1 is None or Jelly_beans_s2 is None:\n print('neutral')\nelif Jelly_beans_s1 == Jelly_beans_s2:\n print('Entailment')\nelif Jelly_beans_s1 != Jelly_beans_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 42 -- The number that appears on Danny 's shirt in the movie ., \"statement 2\" :$ 19 million -- That 's the estimated budget for the movie version, \"options: \" Entailment or neutral?", + "Output Program": [ + "Danny_shirt_number_s1=42\nDanny_shirt_number_s2=19\nDanny_shirt_number_s2=None\nif Danny_shirt_number_s1 is None or Danny_shirt_number_s2 is None:\n print('neutral')\nelif Danny_shirt_number_s1 == Danny_shirt_number_s2:\n print('Entailment')\nelif Danny_shirt_number_s1 != Danny_shirt_number_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 6.0 students were sitting at each table in the lunchroom and there are 34.0 tables, \"statement 2\" :202.0 students were sitting in the lunchroom, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Students_s1=6*34\nStudents_s2=202\nif Students_s1 is None or Students_s2 is None:\n print('neutral')\nelif Students_s1 == Students_s2:\n print('Entailment')\nelif Students_s1 != Students_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 30 % people of a village in Sri Lanka died by bombardment , 25 % of the remainder left the village on account of fear, \"statement 2\" :less than 50 % people of a village in Sri Lanka died by bombardment , 25 % of the remainder left the village on account of fear, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Bombardment_s1=30\nBombardment_s2=50\nif Bombardment_s1 is None or Bombardment_s2 is None:\n print('neutral')\nelif Bombardment_s1 <= Bombardment_s2:\n print('Entailment')\nelif Bombardment_s1 != Bombardment_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": more than 2970 , then what will be the share of Sameer in the profit ?, \"statement 2\" :6970 , then what will be the share of Sameer in the profit ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sameer_share_s1=2970\nSameer_share_s1=None\nSameer_share_s2=66970\nif Sameer_share_s1 is None or Sameer_share_s2 is None:\n print('neutral')\nelif Sameer_share_s1 == Sameer_share_s2:\n print('Entailment')\nelif Sameer_share_s1 != Sameer_share_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": It was centered 156 kilometers east-northeast of Bitung , Indonesia , and 164 kilometers west of Tobelo in the same South Asian nation ., \"statement 2\" :The tremor strikes over 150 kilometers off the coast of Ternate , Indonesia, \"options: \" Entailment or neutral?", + "Output Program": [ + "Kilometers_s1=156\nKilometers_s1=150\nif Kilometers_s1 is None or Kilometers_s1 is None:\n print('neutral')\nelif Kilometers_s1 <= Kilometers_s1:\n print('Entailment')\nelif Kilometers_s1 != Kilometers_s1:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the toy store is stocked with less than 8 types of balls and 6 types of board games , how many different selections Q of the 4 items can Amanda make ?, \"statement 2\" :If the toy store is stocked with 3 types of balls and 6 types of board games , how many different selections Q of the 4 items can Amanda make ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "toy_stored_stock_s1 = 8\ntoy_stored_stock_s1 = None\ntoy_stored_stock_s2 = 3\nif toy_stored_stock_s1 is None or toy_stored_stock_s2 is None:\n print('neutral')\nelif toy_stored_stock_s1 == toy_stored_stock_s2:\n print('Entailment')\nelif toy_stored_stock_s1 != toy_stored_stock_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ashok and Pyarelal invested money together in a business and share a capital of Ashok is less than 6 / 9 of that of Pyarelal, \"statement 2\" :Ashok and Pyarelal invested money together in a business and share a capital of Ashok is 1 / 9 of that of Pyarelal, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Share_captial_of_ashok_s1=6/9\nShare_captial_of_ashok_s1=None\nShare_captial_of_ashok_s2 =1/9\nif Share_captial_of_ashok_s1 is None or Share_captial_of_ashok_s2 is None:\n print('neutral')\nelif Share_captial_of_ashok_s1 == Share_captial_of_ashok_s2:\n print('Entailment')\nelif Share_captial_of_ashok_s1 != Share_captial_of_ashok_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": For dinner , Sandy ate less than 300 grams of corn which was five times as much corn as she ate for lunch , and twice as much corn as she ate for breakfast, \"statement 2\" :For dinner , Sandy ate 200 grams of corn which was five times as much corn as she ate for lunch , and twice as much corn as she ate for breakfast, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sandy_eat_s1=300 #lessthan 300 Not a proper number\nSandy_eat_s1=None\nSandy_eat_s2=200\nif Sandy_eat_s1 is None or Sandy_eat_s2 is None:\n print('neutral')\nelif Sandy_eat_s1 == Sandy_eat_s2:\n print('Entailment')\nelif Sandy_eat_s1 != Sandy_eat_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": One hundred and twenty kilometers out into the Caspian Sea , it 's still actually within the capital Baku 's city limits ., \"statement 2\" :It is 120km from land but still within the capital Baku 's city limits, \"options: \" Entailment or neutral?", + "Output Program": [ + "caspian_sea_s1=120\ncaspian_sea_s2=120\nif caspian_sea_s1 is None or caspian_sea_s2 is None:\n print('neutral')\nelif caspian_sea_s1 == caspian_sea_s2:\n print('Entailment')\nelif caspian_sea_s1 != caspian_sea_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In the biology lab of ` ` Jefferson ' ' High School there are 6.48 * 10 ^ 6 germs , equally divided among 10,800 Petri dishes, \"statement 2\" :In the biology lab of ` ` Jefferson ' ' High School there are 6.48 * 60 ^ 6 germs , equally divided among 10,800 Petri dishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Germs_s1=6480000\nGerms_s2=302330880000\nif Germs_s1 is None or Germs_s2 is None:\n print('neutral')\nelif Germs_s1 == Germs_s2:\n print('Entailment')\nelif Germs_s1 != Germs_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Of a certain group of 100 people , 40 graduated from High School O , 65 graduated from College Y , and 30 live in City Z, \"statement 2\" :Of a certain group of less than 600 people , 40 graduated from High School O , 65 graduated from College Y , and 30 live in City Z, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Group_of_people_s1=100\nGroup_of_people_s2=600\nif Group_of_people_s1 is None or Group_of_people_s2 is None:\n print('neutral')\nelif Group_of_people_s1 <= Group_of_people_s2:\n print('Entailment')\nelif Group_of_people_s1 != Group_of_people_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": James takes a trip and drives 7 hours from Town A to Town C at a rate of 30 miles per hour, \"statement 2\" :James takes a trip and drives more than 1 hours from Town A to Town C at a rate of 30 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Drives_A_to_C_s1=7\nDrives_A_to_C_s2=1\nif Drives_A_to_C_s1 is None or Drives_A_to_C_s2 is None:\n print('neutral')\nelif Drives_A_to_C_s1 >= Drives_A_to_C_s2:\n print('Entailment')\nelif Drives_A_to_C_s1 != Drives_A_to_C_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Each week , James is paid x dollars per per hour for the first 40 hours and 2 x dollars for each additional hour worked that week, \"statement 2\" :Each week , James is paid x dollars per per hour for the first less than 60 hours and 2 x dollars for each additional hour worked that week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "James_paid_s1=40\nJames_paid_s2=60\nif James_paid_s1 is None or James_paid_s2 is None:\n print('neutral')\nelif James_paid_s1 <= James_paid_s2:\n print('Entailment')\nelif James_paid_s1 != James_paid_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": On the first day , each patient received 15 milligrams of Dosaxin, \"statement 2\" :On the first day , each patient received less than 85 milligrams of Dosaxin, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dosaxin_first_day_s1=15\nDosaxin_first_day_s2=85\nif Dosaxin_first_day_s1 is None or Dosaxin_first_day_s2 is None:\n print('neutral')\nelif Dosaxin_first_day_s1 <= Dosaxin_first_day_s2:\n print('Entailment')\nelif Dosaxin_first_day_s1 != Dosaxin_first_day_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He works at it for 20 days and then Rajesh finished it in 30 days, \"statement 2\" :He works at it for 50 days and then Rajesh finished it in 30 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Works_s1=20\nWorks_s2=50\nif Works_s1 is None or Works_s2 is None:\n print('neutral')\nelif Works_s1 == Works_s2:\n print('Entailment')\nelif Works_s1 != Works_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Frank is 13 years younger then John, \"statement 2\" :Frank is less than 63 years younger then John, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Frank_age_s1=13\nFrank_age_s2=63\nif Frank_age_s1 is None or Frank_age_s2 is None:\n print('neutral')\nelif Frank_age_s1 <= Frank_age_s2:\n print('Entailment')\nelif Frank_age_s1 != Frank_age_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jason has 7.0 violet balloons and 4.0 red balloons and he lost 3.0 of the violet balloons , \"statement 2\" :Jason has 4.0 violet balloons now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Jason_violet_ballons_s1=7-3\nJason_violet_ballons_s2=4\nif Jason_violet_ballons_s1 is None or Jason_violet_ballons_s2 is None:\n print('neutral')\nelif Jason_violet_ballons_s1 == Jason_violet_ballons_s2:\n print('Entailment')\nelif Jason_violet_ballons_s1 != Jason_violet_ballons_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": According to the autopsy report , Box had five different painkillers in his system -- oxymorphone , morphine , hydrocodone , hydromorphone and oxycodone -- as well as alprazolam , an anti-anxiety drug ., \"statement 2\" :Medical examiner 's report shows player had five different painkillers in his system, \"options: \" Entailment or neutral?", + "Output Program": [ + "painkillers_s1 = None\npainkillers_s2 = 5\n\nif painkillers_s1 is None or painkillers_s2 is None:\n print('neutral')\n\nelif painkillers_s1 == painkillers_s2:\n print('Entailment')\n\nelif painkillers_s1 != painkillers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A train travels from Albany to Syracuse , a distance of 120 miles , at the average rate of 30 miles per hour, \"statement 2\" :A train travels from Albany to Syracuse , a distance of less than 620 miles , at the average rate of 30 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Distance_s1=120\nDistance_s2=620\nif Distance_s1 is None or Distance_s2 is None:\n print('neutral')\nelif Distance_s1 <= Distance_s2:\n print('Entailment')\nelif Distance_s1 != Distance_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": more than 4 % people of a village in Sri Lanka died by bombardment , 15 % of the remainder left the village on account of fear, \"statement 2\" :8 % people of a village in Sri Lanka died by bombardment , 15 % of the remainder left the village on account of fear, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Died_by_bombbardment_s1=4\nDied_by_bombbardment_s2=8\nif Died_by_bombbardment_s1 is None or Died_by_bombbardment_s2 is None:\n print('neutral')\nelif Died_by_bombbardment_s1 >= Died_by_bombbardment_s2:\n print('Entailment')\nelif Died_by_bombbardment_s1 != Died_by_bombbardment_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A renovation project required 0.16666666666666666 truck-load of sand , 0.3333333333333333 truck-load of dirt , and 0.16666666666666666 truck-load of cement ., \"statement 2\" :0.6666666667 truck-loads of material were needed in all, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Required_for_renovation_s1=0.6666666667\nRequired_for_renovation_s2=0.6666666667 \nif Required_for_renovation_s1 is None or Required_for_renovation_s2 is None:\n print('neutral')\nelif Required_for_renovation_s1 == Required_for_renovation_s2:\n print('Entailment')\nelif Required_for_renovation_s1 != Required_for_renovation_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary selects a total of 10 apples and oranges from the food stand , and the average ( arithmetic mean ) price of the 10 pieces of fruit is 54 \u00a2, \"statement 2\" :Mary selects a total of less than 40 apples and oranges from the food stand , and the average ( arithmetic mean ) price of the 10 pieces of fruit is 54 \u00a2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Mary_selects_s1=10\nMary_selects_s2=40 \nif Mary_selects_s1 is None or Mary_selects_s2 is None:\n print('neutral')\nelif Mary_selects_s1 <= Mary_selects_s2:\n print('Entailment')\nelif Mary_selects_s1 != Mary_selects_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": George ' s drawer has 10 loose black socks , 13 loose blue socks , and 8 loose white socks, \"statement 2\" :George ' s drawer has less than 10 loose black socks , 13 loose blue socks , and 8 loose white socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Losse_balck_socks_s1=10\nLosse_balck_socks_s2=10-1\nif Losse_balck_socks_s1 is None or Losse_balck_socks_s2 is None:\n print('neutral')\nelif Losse_balck_socks_s1 == Losse_balck_socks_s2:\n print('Entailment')\nelif Losse_balck_socks_s1 != Losse_balck_socks_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 121 , 144 , 169 , 196 , 225 , 256 , 288 , 324 , 361, \"statement 2\" :less than 321 , 144 , 169 , 196 , 225 , 256 , 288 , 324 , 361, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "X_s1 = 121,144,169\nX_s2 = 321,144,169\n\nif X_s1 is None or X_s2 is None:\n print('neutral')\n\nelif X_s1 <= X_s2:\n print('Entailment')\n\nelif X_s1 != X_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nitin borrowed some money at the rate of more than 2 % p, \"statement 2\" :Nitin borrowed some money at the rate of 6 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Nitin_borrowed_Money_s1=2\nNitin_borrowed_Money_s1=None #morethan 2 not proper number\nNitin_borrowed_Money_s2=6\nif Nitin_borrowed_Money_s1 is None or Nitin_borrowed_Money_s2 is None:\n print('neutral')\nelif Nitin_borrowed_Money_s1 == Nitin_borrowed_Money_s2:\n print('Entailment')\nelif Nitin_borrowed_Money_s1 != Nitin_borrowed_Money_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lucy deposited $ more than 42500 in an investment fund that provided 12 percent annual return compounded quarterly, \"statement 2\" :Lucy deposited $ 62500 in an investment fund that provided 12 percent annual return compounded quarterly, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Lucy_deposited_s1=42500\nLucy_deposited_s1=None\nLucy_deposited_s2=62500\nif Lucy_deposited_s1 is None or Lucy_deposited_s2 is None:\n print('neutral')\nelif Lucy_deposited_s1 == Lucy_deposited_s2:\n print('Entailment')\nelif Lucy_deposited_s1 != Lucy_deposited_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Anita , Indu and Geeta can do a piece of work in 18 days , 27 days and 36 days respectively, \"statement 2\" :Anita , Indu and Geeta can do a piece of work in less than 68 days , 27 days and 36 days respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Geeta_Work_s1 = 18\nGeeta_Work_s2 = 68\n\nif Geeta_Work_s1 is None or Geeta_Work_s2 is None:\n print('neutral')\n\nelif Geeta_Work_s1 <= Geeta_Work_s2:\n print('Entailment')\n\nelif Geeta_Work_s1 != Geeta_Work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Even so , the PGA Tour website noted that Woods moved up 20 spots in the Official World Golf Ranking with the win ., \"statement 2\" :Woods jumps 20 spots in world golf rankings with the win , the PGA Tour says, \"options: \" Entailment or neutral?", + "Output Program": [ + "golf_ranking_s1=20\ngolf_ranking_s2=20\nif golf_ranking_s1 is None or golf_ranking_s2 is None:\n print('neutral')\nelif golf_ranking_s1 == golf_ranking_s2:\n print('Entailment')\nelif golf_ranking_s1 != golf_ranking_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Raman mixed less than 68 kg of butter at Rs, \"statement 2\" :Raman mixed 48 kg of butter at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Raman_mixed_butter_s1=68\nRaman_mixed_butter_s1=None\nRaman_mixed_butter_s2=48\nif Raman_mixed_butter_s1 is None or Raman_mixed_butter_s2 is None:\n print('neutral')\nelif Raman_mixed_butter_s1 == Raman_mixed_butter_s2:\n print('Entailment')\nelif Raman_mixed_butter_s1 != Raman_mixed_butter_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is 2 : 3 ?\nA, \"statement 2\" :What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is 4 : 3 ? A, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distace_ratio_s1=2/3\ndistace_ratio_s2=4/3\nif distace_ratio_s1 is None or distace_ratio_s2 is None:\n print('neutral')\nelif distace_ratio_s1 == distace_ratio_s2:\n print('Entailment')\nelif distace_ratio_s1 != distace_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rosy is more than 30 % more efficient than Mary, \"statement 2\" :Rosy is 40 % more efficient than Mary, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Rosy_s1=30\nRosy_s2=40\nRosy_s2=None\nif Rosy_s1 is None or Rosy_s2 is None:\n print('neutral')\nelif Rosy_s1 == Rosy_s2:\n print('Entailment')\nelif Rosy_s1 != Rosy_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": less than 6200 among John , Jose & Binoy in the ration 2 : 4 : 6, \"statement 2\" :4200 among John , Jose & Binoy in the ration 2 : 4 : 6, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jhon_s1=6200 #lessthan 6200 Not proper number\nJhon_s1=None\nJhon_s2=4200\nif Jhon_s1 is None or Jhon_s2 is None:\n print('neutral')\nelif Jhon_s1 == Jhon_s2:\n print('Entailment')\nelif Jhon_s1 != Jhon_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": On the first day of her vacation , Louisa traveled 250 miles, \"statement 2\" :On the first day of her vacation , Louisa traveled less than 350 miles, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Loisa_Traveld_s1=250 \nLoisa_Traveld_s2=350\nif Loisa_Traveld_s1 is None or Loisa_Traveld_s2 is None:\n print('neutral')\nelif Loisa_Traveld_s1 <= Loisa_Traveld_s2:\n print('Entailment')\nelif Loisa_Traveld_s1 != Loisa_Traveld_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": James took a 3 - hour bike ride, \"statement 2\" :James took a less than 4 - hour bike ride, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "James_ride_s1=3 \nJames_ride_s2=4-1\nif James_ride_s1 is None or James_ride_s2 is None:\n print('neutral')\nelif James_ride_s1 == James_ride_s2:\n print('Entailment')\nelif James_ride_s1 != James_ride_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": But suddenly the two reporters were pinned against the railing of an overpass by young men who were accusing Amer of being an Israeli spy ., \"statement 2\" :One Egyptian journalist is accused of being an Israeli spy, \"options: \" Entailment or neutral?", + "Output Program": [ + "Reporters_s1=2 \nEgyptian_journalist_being_israeli_spy=None\nif Reporters_s1 is None or Egyptian_journalist_being_israeli_spy is None:\n print('neutral')\nelif Reporters_s1 == Egyptian_journalist_being_israeli_spy:\n print('Entailment')\nelif Reporters_s1 != Egyptian_journalist_being_israeli_spy:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Claire has a total of 92 pets consisting of gerbils and hamsters only, \"statement 2\" :Claire has a total of 12 pets consisting of gerbils and hamsters only, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Claire_pets_s1=92 \nClaire_pets_s2=12\nif Claire_pets_s1 is None or Claire_pets_s2 is None:\n print('neutral')\nelif Claire_pets_s1 == Claire_pets_s2:\n print('Entailment')\nelif Claire_pets_s1 != Claire_pets_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jane can make a handcrafted drum in 4 weeks, \"statement 2\" :Jane can make a handcrafted drum in more than 4 weeks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Make_hancrafted_drum_s1=4 \nMake_hancrafted_drum_s2=4+1\nif Make_hancrafted_drum_s1 is None or Make_hancrafted_drum_s2 is None:\n print('neutral')\nelif Make_hancrafted_drum_s1 == Make_hancrafted_drum_s2:\n print('Entailment')\nelif Make_hancrafted_drum_s1 != Make_hancrafted_drum_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Martin bought 10 concert tickets , some at the full price of $ 2.00 per ticket , and some at a discounted price of $ 1.60 per ticket, \"statement 2\" :Martin bought less than 50 concert tickets , some at the full price of $ 2.00 per ticket , and some at a discounted price of $ 1.60 per ticket, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "martin_bought_tickets_s1=10 \nmartin_bought_tickets_s2=50\nif martin_bought_tickets_s1 is None or martin_bought_tickets_s2 is None:\n print('neutral')\nelif martin_bought_tickets_s1 <= martin_bought_tickets_s2:\n print('Entailment')\nelif martin_bought_tickets_s1 != martin_bought_tickets_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Martin has to secure more than 10 % marks to clear his exam of class 9 th . He got 200 marks and failed by 200 marks . What is the maximum marks ?, \"statement 2\" :Martin has to secure 80 % marks to clear his exam of class 9 th .\nHe got 200 marks and failed by 200 marks .\nWhat is the maximum marks ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Martin_need_marks_to_clar_exam_s1=10\nMartin_need_marks_to_clar_exam_s1=None\nMartin_need_marks_to_clar_exam_s2=80\nif Martin_need_marks_to_clar_exam_s1 is None or Martin_need_marks_to_clar_exam_s2 is None:\n print('neutral')\nelif Martin_need_marks_to_clar_exam_s1 == Martin_need_marks_to_clar_exam_s2:\n print('Entailment')\nelif Martin_need_marks_to_clar_exam_s1 != Martin_need_marks_to_clar_exam_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Prosecutors allege that Medunjanin traveled to Pakistan 's tribal belt with two friends , where he sought to join the Taliban but ended up being recruited by al Qaeda to perform a suicide mission back in America ., \"statement 2\" :Prosecutors say he and two others were trained by al Qaeda in Pakistan, \"options: \" Entailment or neutral?", + "Output Program": [ + "\nfriends_s1 = None\nfriends_s2 = 2\n\nif friends_s1 is None or friends_s2 is None:\n print('neutral')\n\nelif friends_s1 == friends_s2:\n print('Entailment')\n\nelif friends_s1 != friends_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": More than 6,400 migratory birds and other animals were killed in Nevada by drinking water in the cyanide-laced ponds produced by gold mining operations ., \"statement 2\" :Animals have died by the thousands from drinking at cyanide-laced holding ponds ., \"options: \" Entailment or neutral?", + "Output Program": [ + "Animals_killed_s1=6400\nAnimals_killed_s1=1000\nif Animals_killed_s1 is None or Animals_killed_s1 is None:\n print('neutral')\nelif Animals_killed_s1 >= Animals_killed_s1:\n print('Entailment')\nelif Animals_killed_s1 != Animals_killed_s1:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tanya is 25 % more efficient than Sakshi, \"statement 2\" :Tanya is less than 55 % more efficient than Sakshi, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Tanya_s1=25\nTanya_s2=55\nif Tanya_s1 is None or Tanya_s2 is None:\n print('neutral')\nelif Tanya_s1 <= Tanya_s2:\n print('Entailment')\nelif Tanya_s1 != Tanya_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tom drives from town E to town B , driving at a constant speed of 60 miles per hour, \"statement 2\" :Tom drives from town E to town B , driving at a constant speed of more than 30 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Tom_drives_s1=60\nTom_drives_s2=30\nif Tom_drives_s1 is None or Tom_drives_s2 is None:\n print('neutral')\nelif Tom_drives_s1 >= Tom_drives_s2:\n print('Entailment')\nelif Tom_drives_s1 != Tom_drives_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": One assault occurred at the Church of Christ in Nations in Postikum , in Yobe province ., \"statement 2\" :One attack was in Yobe province , the other in Borno state, \"options: \" Entailment or neutral?", + "Output Program": [ + "Assault_occurred_in_church_s1=1\nAssault_occurred_in_church_s2=None\nif Assault_occurred_in_church_s1 is None or Assault_occurred_in_church_s2 is None:\n print('neutral')\nelif Assault_occurred_in_church_s1 == Assault_occurred_in_church_s2:\n print('Entailment')\nelif Assault_occurred_in_church_s1 != Assault_occurred_in_church_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A train leaves Delhi at 9 a, \"statement 2\" :A train leaves Delhi at more than 4 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Train_leaves_delhi_s1=9\nTrain_leaves_delhi_s2=4\nif Train_leaves_delhi_s1 is None or Train_leaves_delhi_s2 is None:\n print('neutral')\nelif Train_leaves_delhi_s1 >= Train_leaves_delhi_s2:\n print('Entailment')\nelif Train_leaves_delhi_s1 != Train_leaves_delhi_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Lucy deposited $ 67600 in an investment fund that provided 16 percent annual return compounded quarterly, \"statement 2\" :Lucy deposited $ more than 27600 in an investment fund that provided 16 percent annual return compounded quarterly, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Lucy_deposited_s1=67600\nLucy_deposited_s2=27600\nif Lucy_deposited_s1 is None or Lucy_deposited_s2 is None:\n print('neutral')\nelif Lucy_deposited_s1 >= Lucy_deposited_s2:\n print('Entailment')\nelif Lucy_deposited_s1 != Lucy_deposited_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 3.0 boats on the lake and there are 5.0 people total in the boats, \"statement 2\" :1.66666666667 people are in each boat on average, \"options: \" Entailment or contradiction?", + "Output Program": [ + "people_in_boat_s1=1.66666666667\npeople_in_boat_s2=1.66666666667\nif people_in_boat_s1 is None or people_in_boat_s2 is None:\n print('neutral')\nelif people_in_boat_s1 == people_in_boat_s2:\n print('Entailment')\nelif people_in_boat_s1 != people_in_boat_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Melanie had 7.0 dimes in her bank and her dad gave her 8.0 dimes, and she gave her mother 4.0 dimes , \"statement 2\" :Melanie has 6.0 dimes now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Melanie_dimes_s1=7+8-4\nMelanie_dimes_s2=6\nif Melanie_dimes_s1 is None or Melanie_dimes_s2 is None:\n print('neutral')\nelif Melanie_dimes_s1 == Melanie_dimes_s2:\n print('Entailment')\nelif Melanie_dimes_s1 != Melanie_dimes_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The final tally in the 300-member parliament was 153 votes in favor of the cuts and 128 opposed , with 18 abstentions ., \"statement 2\" :Austerity vote was 153 in favor in the 300-member parliament, \"options: \" Entailment or neutral?", + "Output Program": [ + "Votes_in_favor_s1=153\nAusterity_votes_wad_favor_s2=None\nif Votes_in_favor_s1 is None or Austerity_votes_wad_favor_s2 is None:\n print('neutral')\nelif Votes_in_favor_s1 == Austerity_votes_wad_favor_s2:\n print('Entailment')\nelif Votes_in_favor_s1 != Austerity_votes_wad_favor_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If more than 4 yrs are subtracted from the present age of John & the remainder is divided by 18 , then the presentage of his grandson Anup is obtained, \"statement 2\" :If 6 yrs are subtracted from the present age of John & the remainder is divided by 18 , then the presentage of his grandson Anup is obtained, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jhon_age_s1=4\njhon_age_s1=None\njhon_age_s2=6\nif jhon_age_s1 is None or jhon_age_s2 is None:\n print('neutral')\nelif jhon_age_s1 == jhon_age_s2:\n print('Entailment')\nelif jhon_age_s1 != jhon_age_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Today David , who is 40 years old , and his daughter , who is 12 years old , celebrate their birthdays, \"statement 2\" :Today David , who is less than 70 years old , and his daughter , who is 12 years old , celebrate their birthdays, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "David_age_s1=40\nDavid_age_s2=70\nif David_age_s1 is None or David_age_s2 is None:\n print('neutral')\nelif David_age_s1 <= David_age_s2:\n print('Entailment')\nelif David_age_s1 != David_age_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are 25 males altogether , how many gerbils does Claire have ?, \"statement 2\" :If there are less than 65 males altogether , how many gerbils does Claire have ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Males_together_s1=25\nMales_together_s2=65\nif Males_together_s1 is None or Males_together_s2 is None:\n print('neutral')\nelif Males_together_s1 <= Males_together_s2:\n print('Entailment')\nelif Males_together_s1 != Males_together_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 7.0 bottle caps in a box and Linda puts 7.0 more bottle caps inside, \"statement 2\" :14.0 bottle caps are in the box, \"options: \" Entailment or contradiction?", + "Output Program": [ + "bottle_caps_s1=7+7\nbottle_caps_s2=14\nif bottle_caps_s1 is None or bottle_caps_s2 is None:\n print('neutral')\nelif bottle_caps_s1 == bottle_caps_s2:\n print('Entailment')\nelif bottle_caps_s1 != bottle_caps_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Renu can do a piece of work in more than 4 days , but with the help of her friend Suma , she can do it in 4 days, \"statement 2\" :Renu can do a piece of work in 8 days , but with the help of her friend Suma , she can do it in 4 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Renu_can_do_work_s1=4\nRenu_can_do_work_s1=None\nRenu_can_do_work_s2=8\nif Renu_can_do_work_s1 is None or Renu_can_do_work_s2 is None:\n print('neutral')\nelif Renu_can_do_work_s1 == Renu_can_do_work_s2:\n print('Entailment')\nelif Renu_can_do_work_s1 != Renu_can_do_work_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In addition , nine other cases from people living outside of California were linked to Disneyland , authorities said ., \"statement 2\" :Nine Disney-linked cases spread outside California , home to 42 Disney-linked cases, \"options: \" Entailment or neutral?", + "Output Program": [ + "Cases_linked_to_disneyland_s1=9\nCases_linked_to_disneyland_s1=None\nCases_linked_to_disneyland_s2=42\nif Cases_linked_to_disneyland_s1 is None or Cases_linked_to_disneyland_s2 is None:\n print('neutral')\nelif Cases_linked_to_disneyland_s1 == Cases_linked_to_disneyland_s2:\n print('Entailment')\nelif Cases_linked_to_disneyland_s1 != Cases_linked_to_disneyland_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": By the close of play Pakistan had reached 42-0 , trailing their opponents by just 150 runs ., \"statement 2\" :Pakistan reach 42-0 at the close of play to take charge of the match, \"options: \" Entailment or neutral?", + "Output Program": [ + "opponents_s1=150\nPakistan_reach_s2=42,0\nPakistan_reach_s2=None\nif opponents_s1 is None or Pakistan_reach_s2 is None:\n print('neutral')\nelif opponents_s1 == Pakistan_reach_s2:\n print('Entailment')\nelif opponents_s1 != Pakistan_reach_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": From a group of 6 boys & 4 girls a Committee of 4 persons is to be formed, \"statement 2\" :From a group of 3 boys & 4 girls a Committee of 4 persons is to be formed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "group_of_boys_and_girls_s1=6+4\ngroup_of_boys_and_girls_s2=3+4\nif group_of_boys_and_girls_s1 is None or group_of_boys_and_girls_s2 is None:\n print('neutral')\nelif group_of_boys_and_girls_s1 == group_of_boys_and_girls_s2:\n print('Entailment')\nelif group_of_boys_and_girls_s1 != group_of_boys_and_girls_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rose has 9.0 apples and 12.0 erasers, and she shares the apples among 3.0 friends, \"statement 2\" :Each friend got 3.0 apples, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Shares_apples_with_friends_s1=3\nEach_friends_got=3\nif Shares_apples_with_friends_s1 is None or Each_friends_got is None:\n print('neutral')\nelif Shares_apples_with_friends_s1 == Each_friends_got:\n print('Entailment')\nelif Shares_apples_with_friends_s1 != Each_friends_got:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": '' This is an indicator of the incrementally increasing war between the two cartels battling for Juarez Plaza , the state 's drug trafficking corridor , '' Gonzalez said , referring to an ongoing battle between the Sinaloa and Juarez cartels for dominance in the area ., \"statement 2\" :Violence result of battle between two cartels , said attorney general 's spokesman, \"options: \" Entailment or neutral?", + "Output Program": [ + "incrasing_war_between_s1=None\nviolence_result_battle_s2=2\nif incrasing_war_between_s1 is None or violence_result_battle_s2 is None:\n print('neutral')\nelif incrasing_war_between_s1 == violence_result_battle_s2:\n print('Entailment')\nelif incrasing_war_between_s1 != violence_result_battle_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Jack ' s score was within 2 standard deviations of the mean , what is the lowest score he could have received ?, \"statement 2\" :If Jack ' s score was within less than 7 standard deviations of the mean , what is the lowest score he could have received ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jack_score_s1=2\nJack_score_s2=7\nif Jack_score_s1 is None or Jack_score_s2 is None:\n print('neutral')\nelif Jack_score_s1 <= Jack_score_s2:\n print('Entailment')\nelif Jack_score_s1 != Jack_score_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are more than 3 peanuts in a box and Mary puts 2 more peanuts inside , how many peanuts are in the box ?, \"statement 2\" :If there are 4 peanuts in a box and Mary puts 2 more peanuts inside , how many peanuts are in the box ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "peanuts_in_box_s1=None #motethan 3 not proper number\npeanuts_in_box_s2=4+2\nif peanuts_in_box_s1 is None or peanuts_in_box_s2 is None:\n print('neutral')\nelif peanuts_in_box_s1 == peanuts_in_box_s2:\n print('Entailment')\nelif peanuts_in_box_s1 != peanuts_in_box_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joe drives 420 miles at 60 miles per hour , and then he drives the next 120 miles at 40 miles per hour, \"statement 2\" :Joe drives less than 620 miles at 60 miles per hour , and then he drives the next 120 miles at 40 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Joe_drives_s1=420 \nJoe_drives_s2=620 #lessthan 620 not proper number\nif Joe_drives_s1 is None or Joe_drives_s2 is None:\n print('neutral')\nelif Joe_drives_s1 <= Joe_drives_s2:\n print('Entailment')\nelif Joe_drives_s1 != Joe_drives_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Ashwin paid a total of $ 125 , excluding sales tax , to rent the tool , for how many hours did she rent it ?, \"statement 2\" :If Ashwin paid a total of $ 725 , excluding sales tax , to rent the tool , for how many hours did she rent it ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ashwin_paid_s1=125 \nAshwin_paid_s2=725\nif Ashwin_paid_s1 is None or Ashwin_paid_s2 is None:\n print('neutral')\nelif Ashwin_paid_s1 == Ashwin_paid_s2:\n print('Entailment')\nelif Ashwin_paid_s1 != Ashwin_paid_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In covering a distance of less than 50 km , Arun takes 2 hours more than Anil, \"statement 2\" :In covering a distance of 30 km , Arun takes 2 hours more than Anil, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Arun_covering_distace_s1=50\nArun_covering_distace_s1=None #lessthan 50 not proper number\nArun_covering_distace_s2=30\nif Arun_covering_distace_s1 is None or Arun_covering_distace_s2 is None:\n print('neutral')\nelif Arun_covering_distace_s1 == Arun_covering_distace_s2:\n print('Entailment')\nelif Arun_covering_distace_s1 != Arun_covering_distace_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A restaurant served 9 pizzas but 6 were returned., \"statement 2\" :0.0 pizzas were successfully served, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Served_pizzas_s1=9+6\nServed_pizzas_s2=0 \nif Served_pizzas_s1 is None or Served_pizzas_s2 is None:\n print('neutral')\nelif Served_pizzas_s1 == Served_pizzas_s2:\n print('Entailment')\nelif Served_pizzas_s1 != Served_pizzas_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is 4 : 3 , After 2 Years Rahul age will be 26 years, \"statement 2\" :Ratio between Rahul and Deepak is 8 : 3 , After 2 Years Rahul age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ratio_between_rahul_and_deepak_s1=4/3\nRatio_between_rahul_and_deepak_s2=8/3 \nif Ratio_between_rahul_and_deepak_s1 is None or Ratio_between_rahul_and_deepak_s2 is None:\n print('neutral')\nelif Ratio_between_rahul_and_deepak_s1 == Ratio_between_rahul_and_deepak_s2:\n print('Entailment')\nelif Ratio_between_rahul_and_deepak_s1 != Ratio_between_rahul_and_deepak_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": However , 55 percent of the sales representatives prefer to stay at Hotel XYZ and 45 percent prefer to stay at Hotel ABC, \"statement 2\" :However , 85 percent of the sales representatives prefer to stay at Hotel XYZ and 45 percent prefer to stay at Hotel ABC, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Prefer_to_stay_hotel_XYZ_s1=55\nPrefer_to_stay_hotel_XYZ_s2=85 \nif Prefer_to_stay_hotel_XYZ_s1 is None or Prefer_to_stay_hotel_XYZ_s2 is None:\n print('neutral')\nelif Prefer_to_stay_hotel_XYZ_s1 == Prefer_to_stay_hotel_XYZ_s2:\n print('Entailment')\nelif Prefer_to_stay_hotel_XYZ_s1 != Prefer_to_stay_hotel_XYZ_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The number of hours that Pat , a resident of Town X , watched television last week was between 1 and 2 standard deviations below the mean, \"statement 2\" :The number of hours that Pat , a resident of Town X , watched television last week was between 6 and 2 standard deviations below the mean, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "watched_television_s1=1,2\nwatched_television_s2=6,2 \nif watched_television_s1 is None or watched_television_s2 is None:\n print('neutral')\nelif watched_television_s1 == watched_television_s2:\n print('Entailment')\nelif watched_television_s1 != watched_television_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In an exam , Amar scored 64 percent , Bhavan scored 36 percent and Chetan 44 percent, \"statement 2\" :In an exam , Amar scored 54 percent , Bhavan scored 36 percent and Chetan 44 percent, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Amar_scored_s1=64\nAmar_scored_s2=54 \nif Amar_scored_s1 is None or Amar_scored_s2 is None:\n print('neutral')\nelif Amar_scored_s1 == Amar_scored_s2:\n print('Entailment')\nelif Amar_scored_s1 != Amar_scored_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Lepore said he was moved to photograph the slumbering sentries after witnessing the same guard napping on three occasions ., \"statement 2\" :Joey Lepore says he took photos of one guard sleeping at post three times, \"options: \" Entailment or neutral?", + "Output Program": [ + "Guard_napping_s1=3\nGuard_sleeping_s2=3 \nif Guard_napping_s1 is None or Guard_sleeping_s2 is None:\n print('neutral')\nelif Guard_napping_s1 == Guard_sleeping_s2:\n print('Entailment')\nelif Guard_napping_s1 != Guard_sleeping_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If APPLE is coded as 0 and FLOWER is coded as 63 , then BASKET is coded as, \"statement 2\" :If APPLE is coded as less than 0 and FLOWER is coded as 63 , then BASKET is coded as, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Apple_coded_s1=0\nApple_coded_s2=0-1 \nif Apple_coded_s1 is None or Apple_coded_s2 is None:\n print('neutral')\nelif Apple_coded_s1 == Apple_coded_s2:\n print('Entailment')\nelif Apple_coded_s1 != Apple_coded_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Arun borrowed a sum for less than 8 years on S, \"statement 2\" :Arun borrowed a sum for 4 years on S, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Arun_borrowed_s1=8\nArun_borrowed_s1=None\nArun_borrowed_s2=4 \nif Arun_borrowed_s1 is None or Arun_borrowed_s2 is None:\n print('neutral')\nelif Arun_borrowed_s1 == Arun_borrowed_s2:\n print('Entailment')\nelif Arun_borrowed_s1 != Arun_borrowed_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Carol budgeted less than 28 dollars for gifts for each of the 15 people on her Christmas list, \"statement 2\" :Carol budgeted 18 dollars for gifts for each of the 15 people on her Christmas list, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Carol_budgeted_s1=28\nCarol_budgeted_s1=None #leesthan 28 Not proper number\nCarol_budgeted_s2=18\nif Carol_budgeted_s1 is None or Carol_budgeted_s2 is None:\n print('neutral')\nelif Carol_budgeted_s1 == Carol_budgeted_s2:\n print('Entailment')\nelif Carol_budgeted_s1 != Carol_budgeted_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 30 % of all fishermen in Piscataquis County are also hunters while only 20 % of all hunters are fishermen, \"statement 2\" :more than 30 % of all fishermen in Piscataquis County are also hunters while only 20 % of all hunters are fishermen, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Fisher_man_also_hunters_s1=30\nFisher_man_also_hunters_s2=30+1\nif Fisher_man_also_hunters_s1 is None or Fisher_man_also_hunters_s2 is None:\n print('neutral')\nelif Fisher_man_also_hunters_s1 == Fisher_man_also_hunters_s2:\n print('Entailment')\nelif Fisher_man_also_hunters_s1 != Fisher_man_also_hunters_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jaime earned enough money by selling seashells at 20 cents each to buy several used paperback books at 55 cents each, \"statement 2\" :Jaime earned enough money by selling seashells at 50 cents each to buy several used paperback books at 55 cents each, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jamie_earned_s1=20\nJamie_earned_s2=50\nif Jamie_earned_s1 is None or Jamie_earned_s2 is None:\n print('neutral')\nelif Jamie_earned_s1 == Jamie_earned_s2:\n print('Entailment')\nelif Jamie_earned_s1 != Jamie_earned_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In less than 7003 , the number of girls attending Jefferson High School was equal to the number of boys, \"statement 2\" :In 2003 , the number of girls attending Jefferson High School was equal to the number of boys, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Numbers_of_girls_s1=7003\nNumbers_of_girls_s1=None #lessthan 7003 Not proper Number\nNumbers_of_girls_s2=2003\nif Numbers_of_girls_s1 is None or Numbers_of_girls_s2 is None:\n print('neutral')\nelif Numbers_of_girls_s1 == Numbers_of_girls_s2:\n print('Entailment')\nelif Numbers_of_girls_s1 != Numbers_of_girls_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": For how many days did the trial last , if each patient received a total amount of 145 milligrams of Dosaxin during the whole trial ?, \"statement 2\" :For how many days did the trial last , if each patient received a total amount of less than 145 milligrams of Dosaxin during the whole trial ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dosaxing_received_by_patient_s1=145\nDosaxing_received_by_patient_s1=145-1\nif Dosaxing_received_by_patient_s1 is None or Dosaxing_received_by_patient_s1 is None:\n print('neutral')\nelif Dosaxing_received_by_patient_s1 == Dosaxing_received_by_patient_s1:\n print('Entailment')\nelif Dosaxing_received_by_patient_s1 != Dosaxing_received_by_patient_s1:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a recent election , Geoff received less than 75 percent of the 6,000 votes cast, \"statement 2\" :In a recent election , Geoff received 15 percent of the 6,000 votes cast, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Geoff_Received_s1=75\nGeoff_Received_s1=None #lessthan 75 Not proper Number\nGeoff_Received_s2=15\nif Geoff_Received_s1 is None or Geoff_Received_s2 is None:\n print('neutral')\nelif Geoff_Received_s1 == Geoff_Received_s2:\n print('Entailment')\nelif Geoff_Received_s1 != Geoff_Received_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary had 18.0 baseball cards and promised to give Fred 26.0 baseball cards, and Mary buys 40.0 baseball cards, \"statement 2\" :She will have 32.0 baseball cards left after she gives the promised cards to Fred, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Baseball_card_s1=18+40-26\nBaseball_card_s2=32\nif Baseball_card_s1 is None or Baseball_card_s2 is None:\n print('neutral')\nelif Baseball_card_s1 == Baseball_card_s2:\n print('Entailment')\nelif Baseball_card_s1 != Baseball_card_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Io is 2,236 miles ( 3,598 kilometers ) in diameter , slightly larger than the Earth 's moon ., \"statement 2\" :The terrestrial moon has a diameter of 3746 kilometers ., \"options: \" Entailment or neutral?", + "Output Program": [ + "Io_s1=3598\nIo_s2=3746\nIo_s2=None\nif Io_s1 is None or Io_s2 is None:\n print('neutral')\nelif Io_s1 == Io_s2:\n print('Entailment')\nelif Io_s1 != Io_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Arjun and Bhishma are running on a circular track of length 600 m, \"statement 2\" :Arjun and Bhishma are running on a circular track of length more than 600 m, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Running_s1=600\nRunning_s2=600+1\nif Running_s1 is None or Running_s2 is None:\n print('neutral')\nelif Running_s1 == Running_s2:\n print('Entailment')\nelif Running_s1 != Running_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In the biology lab of ` ` Jefferson ' ' High School there are 0.036 * 10 ^ 5 germs , equally divided among 45000 * 10 ^ ( - 3 ) Petri dishes, \"statement 2\" :In the biology lab of ` ` Jefferson ' ' High School there are 0.036 * less than 30 ^ 5 germs , equally divided among 45000 * 10 ^ ( - 3 ) Petri dishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "germs_s1=3600\ngerms_s2=874800 #leesthan 0.036*30^5 Not proper number\nif germs_s1 is None or germs_s2 is None:\n print('neutral')\nelif germs_s1 <= germs_s2:\n print('Entailment')\nelif germs_s1 != germs_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Standing at 5 feet 7 inches , Clark hit his peak weight at 405 pounds when he was 19 ., \"statement 2\" :At 405 pounds , Tevante Clark says he was extremely lonely, \"options: \" Entailment or neutral?", + "Output Program": [ + "Peak_weight_s1=None\nTevante_clark_s2=405 \nif Peak_weight_s1 is None or Tevante_clark_s2 is None:\n print('neutral')\nelif Peak_weight_s1 == Tevante_clark_s2:\n print('Entailment')\nelif Peak_weight_s1 != Tevante_clark_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Carol collects 5.0 peanuts and she gives her father 2.0, \"statement 2\" :Carol has 1.0 peanuts left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Carol_peanuts_s1=5+2\nCarol_peanuts_s2=1 \nif Carol_peanuts_s1 is None or Carol_peanuts_s2 is None:\n print('neutral')\nelif Carol_peanuts_s1 == Carol_peanuts_s2:\n print('Entailment')\nelif Carol_peanuts_s1 != Carol_peanuts_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lisa took a plane trip of 256.0 miles and she took this trip 32.0 times, \"statement 2\" :She has flown 8191.0 miles, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Lisa_plane_trip_s1=256*32\nLisa_plane_trip_s2=8191\nif Lisa_plane_trip_s1 is None or Lisa_plane_trip_s2 is None:\n print('neutral')\nelif Lisa_plane_trip_s1 == Lisa_plane_trip_s2:\n print('Entailment')\nelif Lisa_plane_trip_s1 != Lisa_plane_trip_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is 8 : 4 ?, \"statement 2\" :What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is more than 4 : 4 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Distace_ratio_s1=8/4\nDistace_ratio_s2=4/4+1\nif Distace_ratio_s1 is None or Distace_ratio_s2 is None:\n print('neutral')\nelif Distace_ratio_s1 == Distace_ratio_s2:\n print('Entailment')\nelif Distace_ratio_s1 != Distace_ratio_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jill , who lives in City C , plans to visit less than 6 different cities , M , L , S , N , and O, \"statement 2\" :Jill , who lives in City C , plans to visit 5 different cities , M , L , S , N , and O, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cities_s1 = None\ncities_s2 = 5\n\nif cities_s1 is None or cities_s2 is None:\n print('neutral')\n\nelif cities_s1 == cities_s2:\n print('Entailment')\n\nelif cities_s1 != cities_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are less than 86 stations between Hyderabad and Bangalore, \"statement 2\" :There are 16 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Stations_between_H_and_B_s1=86\nStations_between_H_and_B_s1=None #lessthan 86 Not a proper Number\nStations_between_H_and_B_s2=16\nif Stations_between_H_and_B_s1 is None or Stations_between_H_and_B_s2 is None:\n print('neutral')\nelif Stations_between_H_and_B_s1 == Stations_between_H_and_B_s2:\n print('Entailment')\nelif Stations_between_H_and_B_s1 != Stations_between_H_and_B_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Four other people were wounded , including Masoom Stanikzai , a key adviser to Rabbani , the police spokesman said ., \"statement 2\" :Four people were wounded in the attack , a police spokesman says, \"options: \" Entailment or neutral?", + "Output Program": [ + "Peole_wounded_s1=4\nPeole_wounded_in_attack_s2=4\nif Peole_wounded_s1 is None or Peole_wounded_in_attack_s2 is None:\n print('neutral')\nelif Peole_wounded_s1 == Peole_wounded_in_attack_s2:\n print('Entailment')\nelif Peole_wounded_s1 != Peole_wounded_in_attack_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Elena purchased a total of less than 22 of these pens for $ 20.00 , how many brand X pens did she purchase ?, \"statement 2\" :If Elena purchased a total of 12 of these pens for $ 20.00 , how many brand X pens did she purchase ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Elena_purchased_s1=22\nElena_purchased_s1=None\nElena_purchased_s2=12\nif Elena_purchased_s1 is None or Elena_purchased_s2 is None:\n print('neutral')\nelif Elena_purchased_s1 == Elena_purchased_s2:\n print('Entailment')\nelif Elena_purchased_s1 != Elena_purchased_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Grady and Howard are among those more than 5 friends but can never sit next to each other , how many 6 - person seating arrangements are possible ?, \"statement 2\" :If Grady and Howard are among those 6 friends but can never sit next to each other , how many 6 - person seating arrangements are possible ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Grady_and_howard_fried_s1=5 #lessthan 5 not proper number\nGrady_and_howard_fried_s1=None\nGrady_and_howard_fried_s2=6\nif Grady_and_howard_fried_s1 is None or Grady_and_howard_fried_s2 is None:\n print('neutral')\nelif Grady_and_howard_fried_s1 == Grady_and_howard_fried_s2:\n print('Entailment')\nelif Grady_and_howard_fried_s1 != Grady_and_howard_fried_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": more than 2000 more and Bhavan withdraws Rs, \"statement 2\" :4000 more and Bhavan withdraws Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Bhavin_widraws_s1=2000 #morethan 2000 not proper number\nBhavin_widraws_s2=4000 #morethan 4000 not proper number\nBhavin_widraws_s1=None\nBhavin_widraws_s2=None\n\nif Bhavin_widraws_s1 is None or Bhavin_widraws_s2 is None:\n print('neutral')\nelif Bhavin_widraws_s1 == Bhavin_widraws_s2:\n print('Entailment')\nelif Bhavin_widraws_s1 != Bhavin_widraws_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Aaron will jog from home at 6 miles per hour and then walk back home by the same route at 12 miles per hour, \"statement 2\" :Aaron will jog from home at 2 miles per hour and then walk back home by the same route at 12 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Aaron_will_jog_s1=6\nAaron_will_jog_s2=2\nif Aaron_will_jog_s1 is None or Aaron_will_jog_s2 is None:\n print('neutral')\nelif Aaron_will_jog_s1 == Aaron_will_jog_s2:\n print('Entailment')\nelif Aaron_will_jog_s1 != Aaron_will_jog_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A starts from Delhi with a speed of 25 kmph at 7 a, \"statement 2\" :A starts from Delhi with a speed of 65 kmph at 7 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Speed_of_A_s1=25\nSpeed_of_A_s2=65\nif Speed_of_A_s1 is None or Speed_of_A_s2 is None:\n print('neutral')\nelif Speed_of_A_s1 == Speed_of_A_s2:\n print('Entailment')\nelif Speed_of_A_s1 != Speed_of_A_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": George ' s drawer has less than 40 loose black socks , 13 loose blue socks , and 8 loose white socks, \"statement 2\" :George ' s drawer has 10 loose black socks , 13 loose blue socks , and 8 loose white socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Loose_black_socks_s1=40\nLoose_black_socks_s1=None\nLoose_black_socks_s2=10\nif Loose_black_socks_s1 is None or Loose_black_socks_s2 is None:\n print('neutral')\nelif Loose_black_socks_s1 == Loose_black_socks_s2:\n print('Entailment')\nelif Loose_black_socks_s1 != Loose_black_socks_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": '' One of those men was the intended target , '' Jachles told CNN ., \"statement 2\" :One of the other men was the target , police say, \"options: \" Entailment or neutral?", + "Output Program": [ + "Intended_target_s1=1\nOther_man_was_targeted_s2=None\nif Intended_target_s1 is None or Other_man_was_targeted_s2 is None:\n print('neutral')\nelif Intended_target_s1 == Other_man_was_targeted_s2:\n print('Entailment')\nelif Intended_target_s1 != Other_man_was_targeted_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Lionel ' s speed was 3 miles per hour and Walt ' s 6 miles per hour , how many miles had Lionel walked when he met Walt ?, \"statement 2\" :If Lionel ' s speed was less than 7 miles per hour and Walt ' s 6 miles per hour , how many miles had Lionel walked when he met Walt ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Lionel_and_walt_speed_s1=3,6\nLionel_and_walt_speed_s1=3,6\nif Lionel_and_walt_speed_s1 is None or Lionel_and_walt_speed_s1 is None:\n print('neutral')\nelif Lionel_and_walt_speed_s1 == Lionel_and_walt_speed_s1:\n print('Entailment')\nelif Lionel_and_walt_speed_s1 != Lionel_and_walt_speed_s1:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Around 70 % -80 % of fish sold at Aberdeen fish market already comes from fish farms and aquaculture facilities , mostly around mainland China ., \"statement 2\" :Fish farms provide around 70 % of fish to local wholesale markets, \"options: \" Entailment or neutral?", + "Output Program": [ + "Aberdeen_fish_s1=70,80\nfish_farms=None\nif Aberdeen_fish_s1 is None or fish_farms is None:\n print('neutral')\nelif Aberdeen_fish_s1 == fish_farms:\n print('Entailment')\nelif Aberdeen_fish_s1 != fish_farms:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After 7 years , Arun ' s age will be 19 years, \"statement 2\" :After more than 5 years , Arun ' s age will be 19 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Aruns_age_after_s1=7\nAruns_age_after_s2=5+2\nif Aruns_age_after_s1 is None or Aruns_age_after_s2 is None:\n print('neutral')\nelif Aruns_age_after_s1 == Aruns_age_after_s2:\n print('Entailment')\nelif Aruns_age_after_s1 != Aruns_age_after_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mrs. Hilt has 50.0 cents and a pencil costs 5.0 cents, \"statement 2\" :She can buy 10.0 pencils with the money she has, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Mrs_hilt_has_s1=50/5\nBuy_pencil=10\nif Mrs_hilt_has_s1 is None or Buy_pencil is None:\n print('neutral')\nelif Mrs_hilt_has_s1 == Buy_pencil:\n print('Entailment')\nelif Mrs_hilt_has_s1 != Buy_pencil:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Carlos is 8 years old, \"statement 2\" :Carlos is 3 years old, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Carlos_age_s1=8\nCarlos_age_s2=3\nif Carlos_age_s1 is None or Carlos_age_s2 is None:\n print('neutral')\nelif Carlos_age_s1 == Carlos_age_s2:\n print('Entailment')\nelif Carlos_age_s1 != Carlos_age_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Meg and Bob are among the 8 participants in a cycling race, \"statement 2\" :Meg and Bob are among the more than 3 participants in a cycling race, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Participants_s1=8\nParticipants_s2=3\nif Participants_s1 is None or Participants_s2 is None:\n print('neutral')\nelif Participants_s1 >= Participants_s2:\n print('Entailment')\nelif Participants_s1 != Participants_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Meanwhile , tournament favorite Ivory Coast came from two goals down to draw 2-2 with Algeria in Rustenburg ., \"statement 2\" :Ivory Coast tops group following 2-2 draw against Algeria, \"options: \" Entailment or neutral?", + "Output Program": [ + "Algeria_in_Rustenburg_s1=2,2\nIvory_cost_tops_s2=2,2\nIvory_cost_tops_s2=None\nif Algeria_in_Rustenburg_s1 is None or Ivory_cost_tops_s2 is None:\n print('neutral')\nelif Algeria_in_Rustenburg_s1 == Ivory_cost_tops_s2:\n print('Entailment')\nelif Algeria_in_Rustenburg_s1 != Ivory_cost_tops_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Clinton pledged $ 90 million in emergency economic assistance during a meeting in Cairo with Foreign Minister Nabil Al-Araby ., \"statement 2\" :The United States is pledging $ 90 million in emergency economic assistance, \"options: \" Entailment or neutral?", + "Output Program": [ + "Emerency_economic_s1=90\nEmerency_economic_s2=90\nif Emerency_economic_s1 is None or Emerency_economic_s2 is None:\n print('neutral')\nelif Emerency_economic_s1 == Emerency_economic_s2:\n print('Entailment')\nelif Emerency_economic_s1 != Emerency_economic_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How much simple interest per annum can I negotiate with my Bank so My Family can pay back in 40 years at most double of the money we will borrow ., \"statement 2\" :How much simple interest per annum can I negotiate with my Bank so My Family can pay back in 70 years at most double of the money we will borrow ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Family_can_pay_back_s1=40\nFamily_can_pay_back_s2=70\nif Family_can_pay_back_s1 is None or Family_can_pay_back_s2 is None:\n print('neutral')\nelif Family_can_pay_back_s1 == Family_can_pay_back_s2:\n print('Entailment')\nelif Family_can_pay_back_s1 != Family_can_pay_back_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the distance between their homes is 70 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"statement 2\" :If the distance between their homes is more than 30 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Distance_between_home_s1=70\nDistance_between_home_s2=30\nif Distance_between_home_s1 is None or Distance_between_home_s2 is None:\n print('neutral')\nelif Distance_between_home_s1 >= Distance_between_home_s2:\n print('Entailment')\nelif Distance_between_home_s1 != Distance_between_home_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mrs. Hilt saw a rollercoaster and 7.0 students rode the rollercoaster every 5.0 minutes, \"statement 2\" :21.0 students rode the rollercoaster in 15.0 minutes, \"options: \" Entailment or contradiction?", + "Output Program": [ + "students_s1 = 7\nstudents_s2 = 21\n\nif students_s1 is None or students_s2 is None:\n print('neutral')\n\nelif students_s1 <= students_s2:\n print('Entailment')\n\nelif students_s1 != students_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the rosters for Professor Wang ' s 3 classes are combined with no student ' s name listed more than once , how many names will be on the combined roster ?, \"statement 2\" :If the rosters for Professor Wang ' s more than 3 classes are combined with no student ' s name listed more than once , how many names will be on the combined roster ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Professor_wong_class_s1=3\nProfessor_wong_class_s2=3+1\nif Professor_wong_class_s1 is None or Professor_wong_class_s2 is None:\n print('neutral')\nelif Professor_wong_class_s1 == Professor_wong_class_s2:\n print('Entailment')\nelif Professor_wong_class_s1 != Professor_wong_class_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jose joined him 2 months later , investing Rs, \"statement 2\" :Jose joined him less than 4 months later , investing Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jose_joined_s1=2\nJose_joined_s2=4-2\nif Jose_joined_s1 is None or Jose_joined_s2 is None:\n print('neutral')\nelif Jose_joined_s1 == Jose_joined_s2:\n print('Entailment')\nelif Jose_joined_s1 != Jose_joined_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tom alone cleans the entire house in more than 2 hours, \"statement 2\" :Tom alone cleans the entire house in 6 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tom_clean_house_s1=2\ntom_clean_house_s1=None #morethan 2 not proper number\ntom_clean_house_s2=6\nif tom_clean_house_s1 is None or tom_clean_house_s2 is None:\n print('neutral')\nelif tom_clean_house_s1 == tom_clean_house_s2:\n print('Entailment')\nelif tom_clean_house_s1 != tom_clean_house_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Youth unemployment is at 19.9 percent in the eurozone and 20.5 percent in the wider European Union , it said ., \"statement 2\" :10 percent unemployment for eurozone , 9.7 percent for wider EU, \"options: \" Entailment or neutral?", + "Output Program": [ + "Unemployment_s1=19.9\nUnemployment_s2=9.7\nUnemployment_s2=None\nif Unemployment_s1 is None or Unemployment_s2 is None:\n print('neutral')\nelif Unemployment_s1 == Unemployment_s2:\n print('Entailment')\nelif Unemployment_s1 != Unemployment_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Seven ambulances met the plane and 175 patients complaining of ear pain or nausea were checked out , according to the Chicago Fire Department ., \"statement 2\" :175 passengers complaining of ear pain and nausea were checked out by medics, \"options: \" Entailment or neutral?", + "Output Program": [ + "According_to_chicago_fire_departmnet_s1=175\nAccording_to_chicago_fire_departmnet_s2=175\nif According_to_chicago_fire_departmnet_s1 is None or According_to_chicago_fire_departmnet_s2 is None:\n print('neutral')\nelif According_to_chicago_fire_departmnet_s1 == According_to_chicago_fire_departmnet_s2:\n print('Entailment')\nelif According_to_chicago_fire_departmnet_s1 != According_to_chicago_fire_departmnet_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dana borrows 6000 pounds annually for her college education, \"statement 2\" :Dana borrows 8000 pounds annually for her college education, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dana_borrows_s1=6000\nDana_borrows_s2=8000\nif Dana_borrows_s1 is None or Dana_borrows_s2 is None:\n print('neutral')\nelif Dana_borrows_s1 == Dana_borrows_s2:\n print('Entailment')\nelif Dana_borrows_s1 != Dana_borrows_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Fred and Sam are standing less than 60 miles apart and they start walking in a straight line toward each other at the same time, \"statement 2\" :Fred and Sam are standing 40 miles apart and they start walking in a straight line toward each other at the same time, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Fred_and_sam_standing_s1=60\nFred_and_sam_standing_s1=None\nFred_and_sam_standing_s2=40\nif Fred_and_sam_standing_s1 is None or Fred_and_sam_standing_s2 is None:\n print('neutral')\nelif Fred_and_sam_standing_s1 == Fred_and_sam_standing_s2:\n print('Entailment')\nelif Fred_and_sam_standing_s1 != Fred_and_sam_standing_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Henry were to add 4 gallons of water to a tank that is already 3 / 4 full of water , the tank would be 7 / 8 full, \"statement 2\" :If Henry were to add 3 gallons of water to a tank that is already 3 / 4 full of water , the tank would be 7 / 8 full, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Henry_add_water_s1=4\nHenry_add_water_s2=3\nif Henry_add_water_s1 is None or Henry_add_water_s2 is None:\n print('neutral')\nelif Henry_add_water_s1 == Henry_add_water_s2:\n print('Entailment')\nelif Henry_add_water_s1 != Henry_add_water_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Two car bombs explode near a police station outside of Baghdad 's Green Zone , killing seven police officers and wounding about 60 others ., \"statement 2\" :A pair of car bombs explode near government offices in Baghdad ., \"options: \" Entailment or neutral?", + "Output Program": [ + "Police_officers_wounding_s1=60\nPair_of_car_bomb_s2=None\nif Police_officers_wounding_s1 is None or Pair_of_car_bomb_s2 is None:\n print('neutral')\nelif Police_officers_wounding_s1 == Pair_of_car_bomb_s2:\n print('Entailment')\nelif Police_officers_wounding_s1 != Pair_of_car_bomb_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Matt has twu iron coins and twu copper coins , how many different sums from less than 8 \u00a2 to 14 \u00a2 can he make with a combination of his coins ?, \"statement 2\" :If Matt has twu iron coins and twu copper coins , how many different sums from 1 \u00a2 to 14 \u00a2 can he make with a combination of his coins ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "copper_coin_sums_s1=8,14\ncopper_coin_sums_s1=None\ncopper_coin_sums_s2=1,14\nif copper_coin_sums_s1 is None or copper_coin_sums_s2 is None:\n print('neutral')\nelif copper_coin_sums_s1 == copper_coin_sums_s2:\n print('Entailment')\nelif copper_coin_sums_s1 != copper_coin_sums_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Officers are investigating 12 potentially linked crimes at resorts near where the toddler vanished ., \"statement 2\" :Officers probing 12 potentially linked crimes at resorts near where Madeleine vanished, \"options: \" Entailment or neutral?", + "Output Program": [ + "Officers_investing_s1=12\nOfficers_probing_s2=12\nOfficers_probing_s2=None\nif Officers_investing_s1 is None or Officers_probing_s2 is None:\n print('neutral')\nelif Officers_investing_s1 == Officers_probing_s2:\n print('Entailment')\nelif Officers_investing_s1 != Officers_probing_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Karin 's science class weighed plastic rings for an experiment and they found that the orange ring weighed 0.08333333333333333 ounce , the purple ring weighed 0.3333333333333333 ounce , and the white ring weighed 0.4166666666666667 ounce , \"statement 2\" :The total weight of the plastic rings is 2.5, \"options: \" Entailment or contradiction?", + "Output Program": [ + "ring_weighed_s1 = 0.08333333\nring_weighed_s2 = 2.5\n\nif ring_weighed_s1 is None or ring_weighed_s2 is None:\n print('neutral')\n\nelif ring_weighed_s1 == ring_weighed_s2:\n print('Entailment')\n\nelif ring_weighed_s1 != ring_weighed_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the sum of their ages is 147 , what is the difference between the ages of Patrick and Monica ?, \"statement 2\" :If the sum of their ages is less than 847 , what is the difference between the ages of Patrick and Monica ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sum_of_ages_s1=147\nSum_of_ages_s2=847\nif Sum_of_ages_s1 is None or Sum_of_ages_s2 is None:\n print('neutral')\nelif Sum_of_ages_s1 <= Sum_of_ages_s2:\n print('Entailment')\nelif Sum_of_ages_s1 != Sum_of_ages_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Andy has 20 pairs of matched gloves, \"statement 2\" :Andy has less than 60 pairs of matched gloves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Matched_gloves_s1=20\nMatched_gloves_s2=60\nif Matched_gloves_s1 is None or Matched_gloves_s2 is None:\n print('neutral')\nelif Matched_gloves_s1 <= Matched_gloves_s2:\n print('Entailment')\nelif Matched_gloves_s1 != Matched_gloves_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Today John is 3 times older than Mark, \"statement 2\" :Today John is more than 1 times older than Mark, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jhon_older_than_mark_s1=3\nJhon_older_than_mark_s2=1+2\nif Jhon_older_than_mark_s1 is None or Jhon_older_than_mark_s2 is None:\n print('neutral')\nelif Jhon_older_than_mark_s1 == Jhon_older_than_mark_s2:\n print('Entailment')\nelif Jhon_older_than_mark_s1 != Jhon_older_than_mark_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 25 % of students from 100 Science students are locals and 85 % of total 120 Commerce students are locals, \"statement 2\" :55 % of students from 100 Science students are locals and 85 % of total 120 Commerce students are locals, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Locals_student_s1=25\nLocals_student_s2=55\nif Locals_student_s1 is None or Locals_student_s2 is None:\n print('neutral')\nelif Locals_student_s1 == Locals_student_s2:\n print('Entailment')\nelif Locals_student_s1 != Locals_student_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nitin ranks less than 48 th in a class of 49 students, \"statement 2\" :Nitin ranks 18 th in a class of 49 students, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Nitin_rank_s1=48\nNitin_rank_s1=None\nNitin_rank_s2=18\nif Nitin_rank_s1 is None or Nitin_rank_s2 is None:\n print('neutral')\nelif Nitin_rank_s1 == Nitin_rank_s2:\n print('Entailment')\nelif Nitin_rank_s1 != Nitin_rank_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": As one man tweeted , '' if you really want to see what the public thinks of police officers just take a look at #AskACop . '', \"statement 2\" :'' Just take a look at #AskACop '' to see public 's view of police , one man tweets, \"options: \" Entailment or neutral?", + "Output Program": [ + "man_twieeted_ASKCOP_s1=1\nman_twieeted_ASKCOP_s2=1\nif man_twieeted_ASKCOP_s1 is None or man_twieeted_ASKCOP_s2 is None:\n print('neutral')\nelif man_twieeted_ASKCOP_s1 == man_twieeted_ASKCOP_s2:\n print('Entailment')\nelif man_twieeted_ASKCOP_s1 != man_twieeted_ASKCOP_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": More than 1,000 members of the Russian and foreign media registered for the news conference , which has become an annual event ., \"statement 2\" :More than 1,000 members from Russia registered for the news conference ., \"options: \" Entailment or neutral?", + "Output Program": [ + "Registered_form_news_confernace_s1=1000\nRegistered_form_news_confernace_s1=None\nRegistered_form_news_confernace_s2=1000\nif Registered_form_news_confernace_s1 is None or Registered_form_news_confernace_s2 is None:\n print('neutral')\nelif Registered_form_news_confernace_s1 == Registered_form_news_confernace_s2:\n print('Entailment')\nelif Registered_form_news_confernace_s1 != Registered_form_news_confernace_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are 10 more FGH supermarkets in the US than in Canada , how many FGH supermarkets are there in the US ?, \"statement 2\" :If there are less than 60 more FGH supermarkets in the US than in Canada , how many FGH supermarkets are there in the US ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Supermarkets_s1=10\nSupermarkets_in_usa_s2=60\nif Supermarkets_s1 is None or Supermarkets_in_usa_s2 is None:\n print('neutral')\nelif Supermarkets_s1 <= Supermarkets_in_usa_s2:\n print('Entailment')\nelif Supermarkets_s1 != Supermarkets_in_usa_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Three people were initially reported to be on board the helicopter , Lunsford said ., \"statement 2\" :Three crew members , no patients were on board, \"options: \" Entailment or neutral?", + "Output Program": [ + "Reported_to_be_on_board_s1=None\nNo_patients_were_board=None\nif Reported_to_be_on_board_s1 is None or No_patients_were_board is None:\n print('neutral')\nelif Reported_to_be_on_board_s1 == No_patients_were_board:\n print('Entailment')\nelif Reported_to_be_on_board_s1 != No_patients_were_board:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 84.0 leaves and there are 139.0 ladybugs on each leaf, \"statement 2\" :11678.0 ladybugs are there in all, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Lady_bugs_s1=139*84\nLady_bugs_s2=11678\nif Lady_bugs_s1 is None or Lady_bugs_s2 is None:\n print('neutral')\nelif Lady_bugs_s1 == Lady_bugs_s2:\n print('Entailment')\nelif Lady_bugs_s1 != Lady_bugs_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If 1 / 4 of the passengers on a ship are from North America , 1 / 8 are Europeans , 1 / 12 are from Africa , 1 / 6 are from Asia and the remaining 36 people are citizens of other continents , then how many passengers are on board the ship ?, \"statement 2\" :If 6 / 4 of the passengers on a ship are from North America , 1 / 8 are Europeans , 1 / 12 are from Africa , 1 / 6 are from Asia and the remaining 36 people are citizens of other continents , then how many passengers are on board the ship ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Passengers_from_north_america_s1=1/4\nPassengers_from_north_america_s2=6/4\nif Passengers_from_north_america_s1 is None or Passengers_from_north_america_s2 is None:\n print('neutral')\nelif Passengers_from_north_america_s1 == Passengers_from_north_america_s2:\n print('Entailment')\nelif Passengers_from_north_america_s1 != Passengers_from_north_america_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The distance from Steve ' s house to work is 35 Km, \"statement 2\" :The distance from Steve ' s house to work is 45 Km, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Distance_from_steve_house_s1=35\nDistance_from_steve_house_s2=45\nif Distance_from_steve_house_s1 is None or Distance_from_steve_house_s2 is None:\n print('neutral')\nelif Distance_from_steve_house_s1 == Distance_from_steve_house_s2:\n print('Entailment')\nelif Distance_from_steve_house_s1 != Distance_from_steve_house_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Hardest hit was France , where at least 45 people were killed , French Prime Minister Francois Fillon announced ., \"statement 2\" :At least 55 deaths from extra-tropical cyclone , 45 of them in France, \"options: \" Entailment or neutral?", + "Output Program": [ + "People_were_killed_s1=45\nPeople_were_killed_s2=55\nPeople_were_killed_s2=None \nif People_were_killed_s1 is None or People_were_killed_s2 is None:\n print('neutral')\nelif People_were_killed_s1 == People_were_killed_s2:\n print('Entailment')\nelif People_were_killed_s1 != People_were_killed_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": For Halloween Faye scored 47.0 pieces of candy and she ate 25.0 pieces the first night, and then her sister gave her 40.0 more pieces, \"statement 2\" :Faye has 65.0 pieces of candy now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Pieces_of_candy_s1=47-25+40\nPieces_of_candy_s2=65\nif Pieces_of_candy_s1 is None or Pieces_of_candy_s2 is None:\n print('neutral')\nelif Pieces_of_candy_s1 == Pieces_of_candy_s2:\n print('Entailment')\nelif Pieces_of_candy_s1 != Pieces_of_candy_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At Amiee \u2019 s Pet Shop , 10 cups of bird seed are used every 4 days to feed 6 parakeets, \"statement 2\" :At Amiee \u2019 s Pet Shop , 70 cups of bird seed are used every 4 days to feed 6 parakeets, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cups_of_bird_seed_s1=10\ncups_of_bird_seed_s2=70\nif cups_of_bird_seed_s1 is None or cups_of_bird_seed_s2 is None:\n print('neutral')\nelif cups_of_bird_seed_s1 == cups_of_bird_seed_s2:\n print('Entailment')\nelif cups_of_bird_seed_s1 != cups_of_bird_seed_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 60 percent of Andrea ' s living room floor is covered by a carpet that is 4 feet by 9 feet, \"statement 2\" :less than 70 percent of Andrea ' s living room floor is covered by a carpet that is 4 feet by 9 feet, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Room_covered_by_carpet_s1=60\nRoom_covered_by_carpet_s2=70-10\nif Room_covered_by_carpet_s1 is None or Room_covered_by_carpet_s2 is None:\n print('neutral')\nelif Room_covered_by_carpet_s1 == Room_covered_by_carpet_s2:\n print('Entailment')\nelif Room_covered_by_carpet_s1 != Room_covered_by_carpet_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Donald carries a total of 45 notes ( of either $ 10 or \u20ac 10 , ) then what is the total number of notes ( of either $ 10 or \u20ac 10 , ) they take ?, \"statement 2\" :If Donald carries a total of less than 65 notes ( of either $ 10 or \u20ac 10 , ) then what is the total number of notes ( of either $ 10 or \u20ac 10 , ) they take ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Donald_carries_s1=45\nDonald_carries_s2=65\nif Donald_carries_s1 is None or Donald_carries_s2 is None:\n print('neutral')\nelif Donald_carries_s1 <= Donald_carries_s2:\n print('Entailment')\nelif Donald_carries_s1 != Donald_carries_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In fourth grade there were 10.0 students at the start of the year and During the year, 4.0 students left, and 42.0 new students came to school, \"statement 2\" :48.0 students were in fourth grade at the end, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Students_s1=10-4+42\nStudents_s2=48\nif Students_s1 is None or Students_s2 is None:\n print('neutral')\nelif Students_s1 == Students_s2:\n print('Entailment')\nelif Students_s1 != Students_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the distance between their homes is 54 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h, \"statement 2\" :If the distance between their homes is less than 84 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Distance_between_home_s1=54\nDistance_between_home_s2=84\nif Distance_between_home_s1 is None or Distance_between_home_s2 is None:\n print('neutral')\nelif Distance_between_home_s1 <= Distance_between_home_s2:\n print('Entailment')\nelif Distance_between_home_s1 != Distance_between_home_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Watson described the victims as '' four Hispanic males , all shot , '' from the surrounding Surry County area ., \"statement 2\" :Watson said all four shooting victims were Hispanic males, \"options: \" Entailment or neutral?", + "Output Program": [ + "Watson_described_victims_s1=4\nWatson_said_shooting_victims_s1=4\nif Watson_described_victims_s1 is None or Watson_said_shooting_victims_s1 is None:\n print('neutral')\nelif Watson_described_victims_s1 == Watson_said_shooting_victims_s1:\n print('Entailment')\nelif Watson_described_victims_s1 != Watson_said_shooting_victims_s1:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Despite design improvements , warnings and instructions to the company 's Generation Two model and Nap Nanny Chill recliner , there have been four more fatalities , the CPSC alleged ., \"statement 2\" :Five infant deaths have been linked to the recliners , the government says, \"options: \" Entailment or neutral?", + "Output Program": [ + "\nModel_genration_s1 = None\nModel_genration_s2 = 5\n\nif Model_genration_s1 is None or Model_genration_s2 is None:\n print('neutral')\n\nelif Model_genration_s1 == Model_genration_s2:\n print('Entailment')\n\nelif Model_genration_s1 != Model_genration_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Aaron will jog from home at 5 miles per hour and then walk back home by the same route at 10 miles per hour, \"statement 2\" :Aaron will jog from home at more than 3 miles per hour and then walk back home by the same route at 10 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Aron_jog_s1=5\nAron_jog_s2=3+2\nif Aron_jog_s1 is None or Aron_jog_s2 is None:\n print('neutral')\nelif Aron_jog_s1 == Aron_jog_s2:\n print('Entailment')\nelif Aron_jog_s1 != Aron_jog_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Arun borrowed a sum for 4 years on S, \"statement 2\" :Arun borrowed a sum for less than 8 years on S, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Arun_borrowed_s1=4\nArun_borrowed_s2=8-4\nif Arun_borrowed_s1 is None or Arun_borrowed_s2 is None:\n print('neutral')\nelif Arun_borrowed_s1 == Arun_borrowed_s2:\n print('Entailment')\nelif Arun_borrowed_s1 != Arun_borrowed_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lilly has 10 fish and Rosy has 12 fish, \"statement 2\" :Lilly has less than 20 fish and Rosy has 12 fish, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Lilly_fish_s1=10+12\nLilly_fish_s2=10+12\nif Lilly_fish_s1 is None or Lilly_fish_s2 is None:\n print('neutral')\nelif Lilly_fish_s1 == Lilly_fish_s2:\n print('Entailment')\nelif Lilly_fish_s1 != Lilly_fish_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The victims were taken to WellStar Kennestone Hospital , where an emergency room doctor involved in the response said three were in critical condition ., \"statement 2\" :Six people are taken to Wellstar Kennestone Hospital, \"options: \" Entailment or neutral?", + "Output Program": [ + "Victims_were_taken_hospital_s1=None\npeople_taken_in_hospital=6\nif Victims_were_taken_hospital_s1 is None or people_taken_in_hospital is None:\n print('neutral')\nelif Victims_were_taken_hospital_s1 == people_taken_in_hospital:\n print('Entailment')\nelif Victims_were_taken_hospital_s1 != people_taken_in_hospital:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The arrests bring to 18 the number of people detained , according to the Hebei Public Security Bureau ., \"statement 2\" :12 new arrests raises total number of people detained to 18, \"options: \" Entailment or neutral?", + "Output Program": [ + "Arrests_people_s1=18\nNew_Arrests_people_s2=12\nArrests_people_s2=None\nif Arrests_people_s1 is None or Arrests_people_s2 is None:\n print('neutral')\nelif Arrests_people_s1 == Arrests_people_s2:\n print('Entailment')\nelif Arrests_people_s1 != Arrests_people_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Two business travelers road test some stylish pieces whilst on their business trip to Maastricht ., \"statement 2\" :Two business travelers road test some stylish luggage on a trip to Malta, \"options: \" Entailment or neutral?", + "Output Program": [ + "Road_test_s1=None\nRoad_test_s2=None\nArrests_people_s2=None\nif Road_test_s1 is None or Road_test_s2 is None:\n print('neutral')\nelif Road_test_s1 == Road_test_s2:\n print('Entailment')\nelif Road_test_s1 != Road_test_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": India 's yearly pilgrimage to the Ganges river , worshiped by Hindus as the goddess Ganga , is the worlds largest gathering of people , with around 70 million participants , dwarfing other religious pilgrimages ., \"statement 2\" :Around 70 million people participate in pilgrimage to the Ganges river ., \"options: \" Entailment or neutral?", + "Output Program": [ + "Poeple_in_goddess_ganga_s1=70\nPilgarimage_to_ganga_river_s2=70\nif Poeple_in_goddess_ganga_s1 is None or Pilgarimage_to_ganga_river_s2 is None:\n print('neutral')\nelif Poeple_in_goddess_ganga_s1 == Pilgarimage_to_ganga_river_s2:\n print('Entailment')\nelif Poeple_in_goddess_ganga_s1 != Pilgarimage_to_ganga_river_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": '' Our losses are mounting ... as many as 40 military servicemen killed and over 100 wounded , '' he said ., \"statement 2\" :40 military killed and mounting civilian casualties , Georgia official says, \"options: \" Entailment or neutral?", + "Output Program": [ + "Militry_serviceman_killed_s1=40\nMilitry_serviceman_killed_s1=None \nMilitry_serviceman_killed_s2=40\nif Militry_serviceman_killed_s1 is None or Militry_serviceman_killed_s2 is None:\n print('neutral')\nelif Militry_serviceman_killed_s1 == Militry_serviceman_killed_s2:\n print('Entailment')\nelif Militry_serviceman_killed_s1 != Militry_serviceman_killed_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Vijay bought less than 460 shirts at the rate of Rs, \"statement 2\" :Vijay bought 160 shirts at the rate of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Vijay_bought_shirts_s1=460\nVijay_bought_shirts_s1=None #Lessthan 460 Not proper number\nVijay_bought_shirts_s2=160\nif Vijay_bought_shirts_s1 is None or Vijay_bought_shirts_s2 is None:\n print('neutral')\nelif Vijay_bought_shirts_s1 == Vijay_bought_shirts_s2:\n print('Entailment')\nelif Vijay_bought_shirts_s1 != Vijay_bought_shirts_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Ros \u00e9 reads at a constant rate of more than 1 pages every 5 minutes , how many seconds will it take her to read N pages ?, \"statement 2\" :If Ros \u00e9 reads at a constant rate of 3 pages every 5 minutes , how many seconds will it take her to read N pages ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Rose_reads_s1=1\nRose_reads_s1=None #morethan 460 Not proper number\nRose_reads_s2=3\nif Rose_reads_s1 is None or Rose_reads_s2 is None:\n print('neutral')\nelif Rose_reads_s1 == Rose_reads_s2:\n print('Entailment')\nelif Rose_reads_s1 != Rose_reads_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Since you ' re nice , you give John less than 7 baseball cards, \"statement 2\" :Since you ' re nice , you give John 4 baseball cards, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "baseball_card_s1=7\nbaseball_card_s1=None #lessthan 460 Not proper number\nbaseball_card_s2=4\nif baseball_card_s1 is None or baseball_card_s2 is None:\n print('neutral')\nelif baseball_card_s1 == baseball_card_s2:\n print('Entailment')\nelif baseball_card_s1 != baseball_card_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shop Offered 40 % offer for every Shirt , Smith bought a shirt at Rs, \"statement 2\" :Shop Offered more than 30 % offer for every Shirt , Smith bought a shirt at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Shop_offered_on_shirt_s1=40\nShop_offered_on_shirt_s2=30+10\nif Shop_offered_on_shirt_s1 is None or Shop_offered_on_shirt_s2 is None:\n print('neutral')\nelif Shop_offered_on_shirt_s1 == Shop_offered_on_shirt_s2:\n print('Entailment')\nelif Shop_offered_on_shirt_s1 != Shop_offered_on_shirt_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Vijay sells a cupboard at less than 26 % below cost price, \"statement 2\" :Vijay sells a cupboard at 16 % below cost price, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Vijay_sells_s1=26\nVijay_sells_s1=None #lessthan 26 not proper number\nVijay_sells_s2=16\nif Vijay_sells_s1 is None or Vijay_sells_s2 is None:\n print('neutral')\nelif Vijay_sells_s1 == Vijay_sells_s2:\n print('Entailment')\nelif Vijay_sells_s1 != Vijay_sells_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The pilot of a small aircraft with a more than 10 - gallon fuel tank wants to fly to Cleveland , which is 520 miles away, \"statement 2\" :The pilot of a small aircraft with a 40 - gallon fuel tank wants to fly to Cleveland , which is 520 miles away, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Fuel_tank_s1=10\nFuel_tank_s1=None #morethan 10 not proper number\nFuel_tank_s2=40\nif Fuel_tank_s1 is None or Fuel_tank_s2 is None:\n print('neutral')\nelif Fuel_tank_s1 == Fuel_tank_s2:\n print('Entailment')\nelif Fuel_tank_s1 != Fuel_tank_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Proctor was also ordered to pay about $ 58,000 in restitution to two women he knifed in the throat , prosecutors said ., \"statement 2\" :Proctor also has to pay money to two women who had their throats slashed, \"options: \" Entailment or neutral?", + "Output Program": [ + "Women_s1=2\nProtector_has_to_pay_s2=2\nif Women_s1 is None or Protector_has_to_pay_s2 is None:\n print('neutral')\nelif Women_s1 == Protector_has_to_pay_s2:\n print('Entailment')\nelif Women_s1 != Protector_has_to_pay_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 10 stations between Trichy and Chennai, \"statement 2\" :There are less than 50 stations between Trichy and Chennai, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Station_between_s1=10\nStation_between_s2=50\nif Station_between_s1 is None or Station_between_s2 is None:\n print('neutral')\nelif Station_between_s1 <= Station_between_s2:\n print('Entailment')\nelif Station_between_s1 != Station_between_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are 352 baseball fans in the town , each of whom is a fan of exactly one of those three teams , how many NY Mets fans are there in this town ?, \"statement 2\" :If there are more than 352 baseball fans in the town , each of whom is a fan of exactly one of those three teams , how many NY Mets fans are there in this town ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Baseball_fans_in_town_s1=352\nBaseball_fans_in_town_s2=352+1\nif Baseball_fans_in_town_s1 is None or Baseball_fans_in_town_s2 is None:\n print('neutral')\nelif Baseball_fans_in_town_s1 == Baseball_fans_in_town_s2:\n print('Entailment')\nelif Baseball_fans_in_town_s1 != Baseball_fans_in_town_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In 5 years John will be twice as old as Frank, \"statement 2\" :In 4 years John will be twice as old as Frank, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jhon_will_be_twice_in_s1=5\nJhon_will_be_twice_in_s2=4\nif Jhon_will_be_twice_in_s1 is None or Jhon_will_be_twice_in_s2 is None:\n print('neutral')\nelif Jhon_will_be_twice_in_s1 == Jhon_will_be_twice_in_s2:\n print('Entailment')\nelif Jhon_will_be_twice_in_s1 != Jhon_will_be_twice_in_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If neha is 10\nBoth Sonali and priyanka is 15\nBoth sadaf and tanu is 10 .\nhow much is prinka by the same system ?, \"statement 2\" :If neha is more than 10 Both Sonali and priyanka is 15 Both sadaf and tanu is 10 . how much is prinka by the same system ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Neha_is_s1=10\nNeha_is_s2=10+1\nif Neha_is_s1 is None or Neha_is_s2 is None:\n print('neutral')\nelif Neha_is_s1 == Neha_is_s2:\n print('Entailment')\nelif Neha_is_s1 != Neha_is_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Israeli radio reported that more than 1,000 police officers were deployed to ensure public order and the safety of the convoys , which headed to the Egyptian border ., \"statement 2\" :Israel is planning to release more than 1,000 prisoners for the captured soldier, \"options: \" Entailment or neutral?", + "Output Program": [ + "Deployed_police_officers_s1=1000\nDeployed_police_officers_s2=1000\nDeployed_police_officers_s2=None #Morethan 1000 not proper number\nif Deployed_police_officers_s1 is None or Deployed_police_officers_s2 is None:\n print('neutral')\nelif Deployed_police_officers_s1 == Deployed_police_officers_s2:\n print('Entailment')\nelif Deployed_police_officers_s1 != Deployed_police_officers_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a certain province in France there are 19 cities, \"statement 2\" :In a certain province in France there are 89 cities, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Cities_s1=19\nCities_s2=89\nif Cities_s1 is None or Cities_s2 is None:\n print('neutral')\nelif Cities_s1 == Cities_s2:\n print('Entailment')\nelif Cities_s1 != Cities_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jane and Thomas are among the 9 people from which a committee of 4 people is to be selected, \"statement 2\" :Jane and Thomas are among the 5 people from which a committee of 4 people is to be selected, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jane_and_thomas_are_among_s1=9\nJane_and_thomas_are_among_s2=5\nif Jane_and_thomas_are_among_s1 is None or Jane_and_thomas_are_among_s2 is None:\n print('neutral')\nelif Jane_and_thomas_are_among_s1 == Jane_and_thomas_are_among_s2:\n print('Entailment')\nelif Jane_and_thomas_are_among_s1 != Jane_and_thomas_are_among_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nitin borrowed some money at the rate of less than 7 % p, \"statement 2\" :Nitin borrowed some money at the rate of 6 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Nitin_borrowed_s1=7\nNitin_borrowed_s1=None #lessthan 7 not proper number\nNitin_borrowed_s2=6\nif Nitin_borrowed_s1 is None or Nitin_borrowed_s2 is None:\n print('neutral')\nelif Nitin_borrowed_s1 == Nitin_borrowed_s2:\n print('Entailment')\nelif Nitin_borrowed_s1 != Nitin_borrowed_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In an exam , Amar scored 64 percent , Bhavan scored 36 percent and Chetan 44 percent, \"statement 2\" :In an exam , Amar scored 84 percent , Bhavan scored 36 percent and Chetan 44 percent, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Amar_bhavan_chetan_scored_s1=64,36,44\nAmar_bhavan_chetan_scored_s2=84,36,44\nif Amar_bhavan_chetan_scored_s1 is None or Amar_bhavan_chetan_scored_s2 is None:\n print('neutral')\nelif Amar_bhavan_chetan_scored_s1 == Amar_bhavan_chetan_scored_s2:\n print('Entailment')\nelif Amar_bhavan_chetan_scored_s1 != Amar_bhavan_chetan_scored_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How much loss would Indu has suffered had she given it to Bindu for less than 5 years at 4 % per annum simple interest ?, \"statement 2\" :How much loss would Indu has suffered had she given it to Bindu for 2 years at 4 % per annum simple interest ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "given_to_bindu_s1=0\ngiven_to_bindu_s1<5\ngiven_to_bindu_s1=None\ngiven_to_bindu_s2=2\nif given_to_bindu_s1 is None or given_to_bindu_s2 is None:\n print('neutral')\nelif given_to_bindu_s1 == given_to_bindu_s2:\n print('Entailment')\nelif given_to_bindu_s1 != given_to_bindu_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If APPLE is coded as less than 6 and FLOWER is coded as 63 , then BASKET is coded as, \"statement 2\" :If APPLE is coded as 0 and FLOWER is coded as 63 , then BASKET is coded as, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Apple_coded_s1=0\nApple_coded_s1<6\nApple_coded_s1=None\nApple_coded_s2=0\nif Apple_coded_s1 is None or Apple_coded_s1 is None:\n print('neutral')\nelif Apple_coded_s1 == Apple_coded_s1:\n print('Entailment')\nelif Apple_coded_s1 != Apple_coded_s1:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": ASCAP is a membership association of more than 200,000 U.S. composers , songwriters , lyricists and music publishers of every kind of music ., \"statement 2\" :More than 200,000 U.S. composers , songwriters , lyricists and music publishers are members of ASCAP ., \"options: \" Entailment or neutral?", + "Output Program": [ + "Composers_songwriter_and_music_publishers_s1=200000+1\nComposers_songwriter_and_music_publishers_s2=200000+1\nif Composers_songwriter_and_music_publishers_s1 is None or Composers_songwriter_and_music_publishers_s2 is None:\n print('neutral')\nelif Composers_songwriter_and_music_publishers_s1 == Composers_songwriter_and_music_publishers_s2:\n print('Entailment')\nelif Composers_songwriter_and_music_publishers_s1 != Composers_songwriter_and_music_publishers_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jerry had an average score of 85 on his first eight quizzes, \"statement 2\" :Jerry had an average score of more than 15 on his first eight quizzes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jerry_score_s1=85\nJerry_score_s2=15\nif Jerry_score_s1 is None or Jerry_score_s2 is None:\n print('neutral')\nelif Jerry_score_s1 >= Jerry_score_s2:\n print('Entailment')\nelif Jerry_score_s1 != Jerry_score_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Maria has 45.0 bottles of water in her fridge, and she drank 14.0 of them and her sister drank 8.0, \"statement 2\" :18.0 bottles are left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Maria_bottles_s1=45-14-8\nMaria_bottles_left_s2=18\nif Maria_bottles_s1 is None or Maria_bottles_left_s2 is None:\n print('neutral')\nelif Maria_bottles_s1 == Maria_bottles_left_s2:\n print('Entailment')\nelif Maria_bottles_s1 != Maria_bottles_left_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He will be 5 / 3 times as old as Tom 6 years hence, \"statement 2\" :He will be less than 6 / 3 times as old as Tom 6 years hence, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Tom_years_s1=6\nTom_years_s2=6\nif Tom_years_s1 is None or Tom_years_s2 is None:\n print('neutral')\nelif Tom_years_s1 == Tom_years_s2:\n print('Entailment')\nelif Tom_years_s1 != Tom_years_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In how many ways can you seat more than 1 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"statement 2\" :In how many ways can you seat 7 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Howmany_ways_can_you_seat_People_s1=1\nHowmany_ways_can_you_seat_People_s1=None #morethan 1 not a proper number\nHowmany_ways_can_you_seat_People_s2=7\nif Howmany_ways_can_you_seat_People_s1 is None or Howmany_ways_can_you_seat_People_s2 is None:\n print('neutral')\nelif Howmany_ways_can_you_seat_People_s1 == Howmany_ways_can_you_seat_People_s2:\n print('Entailment')\nelif Howmany_ways_can_you_seat_People_s1 != Howmany_ways_can_you_seat_People_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than less than 60 % ?, \"statement 2\" :If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than 40 % ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Airport_on_time_departure_rate_s1=60\nAirport_on_time_departure_rate_s1=None \nAirport_on_time_departure_rate_s2=40 \n\nif Airport_on_time_departure_rate_s1 is None or Airport_on_time_departure_rate_s2 is None:\n print('neutral')\nelif Airport_on_time_departure_rate_s1 == Airport_on_time_departure_rate_s2:\n print('Entailment')\nelif Airport_on_time_departure_rate_s1 != Airport_on_time_departure_rate_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Fred walks at a constant speed of more than 1 miles per hour and Sam walks at a constant speed of 4 miles per hour , how many miles has Sam walked when they meet ?, \"statement 2\" :If Fred walks at a constant speed of 4 miles per hour and Sam walks at a constant speed of 4 miles per hour , how many miles has Sam walked when they meet ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Fread_walk_s1=1\nFread_walk_s1=None #Morethan 1 Not a proper Number\nFread_walk_s2=4\nif Fread_walk_s1 is None or Fread_walk_s2 is None:\n print('neutral')\nelif Fread_walk_s1 == Fread_walk_s2:\n print('Entailment')\nelif Fread_walk_s1 != Fread_walk_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The distance between their homes is less than 61 kilometers , Alice ' s walking speed is 5 km / h , and Bob ' s walking speed is 4 km / h, \"statement 2\" :The distance between their homes is 41 kilometers , Alice ' s walking speed is 5 km / h , and Bob ' s walking speed is 4 km / h, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Distnace_betweeb_home_s1=61\nDistnace_betweeb_home_s1=None #lessthan 61 Not a proper Number\nDistnace_betweeb_home_s2=41\nif Distnace_betweeb_home_s1 is None or Distnace_betweeb_home_s2 is None:\n print('neutral')\nelif Distnace_betweeb_home_s1 == Distnace_betweeb_home_s2:\n print('Entailment')\nelif Distnace_betweeb_home_s1 != Distnace_betweeb_home_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Andy solves problems 78 to 125 inclusive in a Math exercise, \"statement 2\" :Andy solves problems more than 28 to 125 inclusive in a Math exercise, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Andy_solve_problme_s1=78,125\nAndy_solve_problme_s2=28,125\nif Andy_solve_problme_s1 is None or Andy_solve_problme_s2 is None:\n print('neutral')\nelif Andy_solve_problme_s1 >= Andy_solve_problme_s2:\n print('Entailment')\nelif Andy_solve_problme_s1 != Andy_solve_problme_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Two of Samso 's turbines are owned by a co-operative of around 450 of the island 's residents . '', \"statement 2\" :Samso 's residents can buy shares in two of the island 's turbines, \"options: \" Entailment or neutral?", + "Output Program": [ + "Island_residents_s1=450\nSamso_Resident_buy_shares_=None\nif Island_residents_s1 is None or Samso_Resident_buy_shares_ is None:\n print('neutral')\nelif Island_residents_s1 == Samso_Resident_buy_shares_:\n print('Entailment')\nelif Island_residents_s1 != Samso_Resident_buy_shares_:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Henry has to secure more than 30 % marks to clear his exam of class 6 th . He got 110 marks and failed by 100 marks . What is the maximum marks ?, \"statement 2\" :Henry has to secure 70 % marks to clear his exam of class 6 th .\nHe got 110 marks and failed by 100 marks .\nWhat is the maximum marks ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Henry_need_Marks_to_clear_exam_s1=30\nHenry_need_Marks_to_clear_exam_s1=None #morethan 30 Not proper Number\nHenry_need_Marks_to_clear_exam_s2=70\nif Henry_need_Marks_to_clear_exam_s1 is None or Henry_need_Marks_to_clear_exam_s2 is None:\n print('neutral')\nelif Henry_need_Marks_to_clear_exam_s1 == Henry_need_Marks_to_clear_exam_s2:\n print('Entailment')\nelif Henry_need_Marks_to_clear_exam_s1 != Henry_need_Marks_to_clear_exam_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the boys at Jones Elementary make up 20 % of the total school population of x students , what is x ?, \"statement 2\" :If the boys at Jones Elementary make up more than 20 % of the total school population of x students , what is x ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Boys_at_jones_Elementry_s1=20\nBoys_at_jones_Elementry_s2=20+1\nif Boys_at_jones_Elementry_s1 is None or Boys_at_jones_Elementry_s2 is None:\n print('neutral')\nelif Boys_at_jones_Elementry_s1 == Boys_at_jones_Elementry_s2:\n print('Entailment')\nelif Boys_at_jones_Elementry_s1 != Boys_at_jones_Elementry_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At the arcade Cody won 49.0 tickets, and he lost 6.0 tickets and later spent 25.0 tickets on a beanie, \"statement 2\" :He would have 21.0 tickets left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Cody_ticket_s1=49-6-25\nCody_left_ticket_s2=21\nif Cody_ticket_s1 is None or Cody_left_ticket_s2 is None:\n print('neutral')\nelif Cody_ticket_s1 == Cody_left_ticket_s2:\n print('Entailment')\nelif Cody_ticket_s1 != Cody_left_ticket_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Calculate Tony ' ' s average score in an exam if he obtained the following marks 53 , 87 , 89 , 80 and 78 out of 100 in different subjects ., \"statement 2\" :Calculate Tony ' ' s average score in an exam if he obtained the following marks more than 53 , 87 , 89 , 80 and 78 out of 100 in different subjects ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Tony_marks_in_diffrent_subject_s1=53,87,89,80,78\nTony_marks_in_diffrent_subject_s2=53,87,89,80,78+1\nif Tony_marks_in_diffrent_subject_s1 is None or Tony_marks_in_diffrent_subject_s2 is None:\n print('neutral')\nelif Tony_marks_in_diffrent_subject_s1 == Tony_marks_in_diffrent_subject_s2:\n print('Entailment')\nelif Tony_marks_in_diffrent_subject_s1 != Tony_marks_in_diffrent_subject_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sue\u2019s mother made 75.0 cookies and she put the cookies in bags, with 3.0 cookies in each bag, \"statement 2\" :She could fill up 25.0 bags, \"options: \" Entailment or contradiction?", + "Output Program": [ + "cookies_s1=75/3\nFillup_bags=25\nif cookies_s1 is None or Fillup_bags is None:\n print('neutral')\nelif cookies_s1 == Fillup_bags:\n print('Entailment')\nelif cookies_s1 != Fillup_bags:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Present ages of Sameer and Anand are in the ratio of more than 1 : 4 respectively, \"statement 2\" :Present ages of Sameer and Anand are in the ratio of 5 : 4 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Age_ratio_between_Sameer_and_Anand_s1=1/4\nAge_ratio_between_Sameer_and_Anand_s1=None #Morethan 1:4 Not proper Number\nAge_ratio_between_Sameer_and_Anand_s2=5/4\nif Age_ratio_between_Sameer_and_Anand_s1 is None or Age_ratio_between_Sameer_and_Anand_s2 is None:\n print('neutral')\nelif Age_ratio_between_Sameer_and_Anand_s1 == Age_ratio_between_Sameer_and_Anand_s2:\n print('Entailment')\nelif Age_ratio_between_Sameer_and_Anand_s1 != Age_ratio_between_Sameer_and_Anand_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Around 80 people have been wounded in the push , the military said ., \"statement 2\" :Around 80 people have been wounded , Turkish military says, \"options: \" Entailment or neutral?", + "Output Program": [ + "People_wounded_in_Push_s1=80\nPeople_wounded_in_Push_s2=80\nif People_wounded_in_Push_s1 is None or People_wounded_in_Push_s2 is None:\n print('neutral')\nelif People_wounded_in_Push_s1 == People_wounded_in_Push_s2:\n print('Entailment')\nelif People_wounded_in_Push_s1 != People_wounded_in_Push_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": One year ago , the ratio of Roonie \u2019 s and Ronaldo \u2019 s age was 6 : 7 respectively, \"statement 2\" :One year ago , the ratio of Roonie \u2019 s and Ronaldo \u2019 s age was 5 : 7 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ratio_between_Roonie_and_Ronaldo_s1=6/7\nRatio_between_Roonie_and_Ronaldo_s2=5/7\nif Ratio_between_Roonie_and_Ronaldo_s1 is None or Ratio_between_Roonie_and_Ronaldo_s2 is None:\n print('neutral')\nelif Ratio_between_Roonie_and_Ronaldo_s1 == Ratio_between_Roonie_and_Ronaldo_s2:\n print('Entailment')\nelif Ratio_between_Roonie_and_Ronaldo_s1 != Ratio_between_Roonie_and_Ronaldo_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A starts from Delhi with a speed of 25 kmph at 7 a, \"statement 2\" :A starts from Delhi with a speed of less than 35 kmph at 7 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Speed_s1 = 25\nSpeed_s2 = 35\nif Speed_s1 is None or Speed_s2 is None:\n print('neutral')\nelif Speed_s1 <= Speed_s2:\n print('Entailment')\nelif Speed_s1 != Speed_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 12.0 birds on the fence and 8.0 birds fly away, \"statement 2\" :6.0 birds are on the fence, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Bird_on_fence_s1=12-8\nBird_on_fence_s2=6\nif Bird_on_fence_s1 is None or Bird_on_fence_s2 is None:\n print('neutral')\nelif Bird_on_fence_s1 == Bird_on_fence_s2:\n print('Entailment')\nelif Bird_on_fence_s1 != Bird_on_fence_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than 90 % ?, \"statement 2\" :If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than 40 % ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Airport_on_time_departure_rate_s1=90+1\nAirport_on_time_departure_rate_s2=40+1\nif Airport_on_time_departure_rate_s1 is None or Airport_on_time_departure_rate_s2 is None:\n print('neutral')\nelif Airport_on_time_departure_rate_s1 == Airport_on_time_departure_rate_s2:\n print('Entailment')\nelif Airport_on_time_departure_rate_s1 != Airport_on_time_departure_rate_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Another survey of 110 people in the town of Angie found that 60 % preferred Brand A, \"statement 2\" :Another survey of less than 810 people in the town of Angie found that 60 % preferred Brand A, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Town_angie_people_preferred_s1=110\nTown_angie_people_preferred_s2=810\nif Town_angie_people_preferred_s1 is None or Town_angie_people_preferred_s2 is None:\n print('neutral')\nelif Town_angie_people_preferred_s1 <= Town_angie_people_preferred_s2:\n print('Entailment')\nelif Town_angie_people_preferred_s1 != Town_angie_people_preferred_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Attorney Joe Sibley said that his client was shocked at the fine , noting that the price tag on the songs she downloaded was 99 cents ., \"statement 2\" :Attorney says client shocked at fine , noting the songs costs 99 cents each, \"options: \" Entailment or neutral?", + "Output Program": [ + "Price_tag_of_song_s1=99\nSong_cost_s1=99\nif Price_tag_of_song_s1 is None or Song_cost_s1 is None:\n print('neutral')\nelif Price_tag_of_song_s1 == Song_cost_s1:\n print('Entailment')\nelif Price_tag_of_song_s1 != Song_cost_s1:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The farmer had 127.0 apples and he gave 88.0 apples to his neighbor, \"statement 2\" :He has 35.0 apples now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "farmer_apples_s1=127-88\nfarmer_left_s1=35\nif farmer_apples_s1 is None or farmer_left_s1 is None:\n print('neutral')\nelif farmer_apples_s1 == farmer_left_s1:\n print('Entailment')\nelif farmer_apples_s1 != farmer_left_s1:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The La Paz urban gondola will consist of three separate service lines stretching across a combined 10.7 kilometer ( 6.1 mile ) area of the city ., \"statement 2\" :An urban gondola 10.7 kilometers in length is being designed and built in the Bolivian city of La Paz, \"options: \" Entailment or neutral?", + "Output Program": [ + "Kilometer_s1=10.7\nKilometer_s2=10.7\nKilometer_s2=None\nif Kilometer_s1 is None or Kilometer_s2 is None:\n print('neutral')\nelif Kilometer_s1 == Kilometer_s2:\n print('Entailment')\nelif Kilometer_s1 != Kilometer_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Each week , Harry is paid x dollars per hour for the first less than 65 hours and 1.5 x dollars for each additional hour worked that week, \"statement 2\" :Each week , Harry is paid x dollars per hour for the first 15 hours and 1.5 x dollars for each additional hour worked that week, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Harry_paid_s1=65\nHarry_paid_s1=None #lesstan 65 not proper Number\nHarry_paid_s2=15\nif Harry_paid_s1 is None or Harry_paid_s2 is None:\n print('neutral')\nelif Harry_paid_s1 == Harry_paid_s2:\n print('Entailment')\nelif Harry_paid_s1 != Harry_paid_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The new system will have two national semifinal games and a final ., \"statement 2\" :There will be two national semifinal games and a final , with teams selected by a committee, \"options: \" Entailment or neutral?", + "Output Program": [ + "New_system_Semifinal_and_final_s1=2\nSemifinal_and_final_s2=2\nSemifinal_and_final_s2=None #lesstan 65 not proper Number\nHarry_paid_s2=15\nif New_system_Semifinal_and_final_s1 is None or Semifinal_and_final_s2 is None:\n print('neutral')\nelif New_system_Semifinal_and_final_s1 == Semifinal_and_final_s2:\n print('Entailment')\nelif New_system_Semifinal_and_final_s1 != Semifinal_and_final_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Susan drove an average speed of 15 miles per hour for the first 40 miles of a tripthen at a average speed of 60 miles / hr for the remaining 20 miles of the trip if she made no stops during the trip what was susan ' s avg speed in miles / hr for the entire trip, \"statement 2\" :Susan drove an average speed of more than 15 miles per hour for the first 40 miles of a tripthen at a average speed of 60 miles / hr for the remaining 20 miles of the trip if she made no stops during the trip what was susan ' s avg speed in miles / hr for the entire trip, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Susan_average_speed_s1=60\nSusan_average_speed_s2=20\nif Susan_average_speed_s1 is None or Susan_average_speed_s2 is None:\n print('neutral')\nelif Susan_average_speed_s1 == Susan_average_speed_s2:\n print('Entailment')\nelif Susan_average_speed_s1 != Susan_average_speed_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were '' four separate homicide scenes within the residence '' -- suggesting people had been killed in four different locales -- Police Chief Greg Suhr said ., \"statement 2\" :There were 4 separate homicide scenes in the single residence , the city 's police chief says, \"options: \" Entailment or neutral?", + "Output Program": [ + "Separate_homicide_in_residence_s1=None\nSeparate_homicide_scenes_s2=4\nif Separate_homicide_in_residence_s1 is None or Separate_homicide_scenes_s2 is None:\n print('neutral')\nelif Separate_homicide_in_residence_s1 == Separate_homicide_scenes_s2:\n print('Entailment')\nelif Separate_homicide_in_residence_s1 != Separate_homicide_scenes_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Martha has 3 dogs and 4 cats, \"statement 2\" :Martha has less than 6 dogs and 4 cats, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Martha_has_s1=3+4\nMartha_has_s2=6-3+4\nif Martha_has_s1 is None or Martha_has_s2 is None:\n print('neutral')\nelif Martha_has_s1 == Martha_has_s2:\n print('Entailment')\nelif Martha_has_s1 != Martha_has_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shawn invested one half of his savings in a bond that paid simple interest for less than 5 years ( 20 % per anum ) and received $ 600 as interest, \"statement 2\" :Shawn invested one half of his savings in a bond that paid simple interest for 2 years ( 20 % per anum ) and received $ 600 as interest, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Simple_intrest_year_s1=5\nSimple_intrest_year_s1=None #Lessthan 5 years not proper number\nSimple_intrest_year_s2=2\nif Simple_intrest_year_s1 is None or Simple_intrest_year_s2 is None:\n print('neutral')\nelif Simple_intrest_year_s1 == Simple_intrest_year_s2:\n print('Entailment')\nelif Simple_intrest_year_s1 != Simple_intrest_year_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the share of Sravan , if Sreedhar alone can do the work in 75 days ?, \"statement 2\" :What is the share of Sravan , if Sreedhar alone can do the work in 25 days ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sreedhar_can_d0_work_s1=75\nSreedhar_can_d0_work_s2=25\nif Sreedhar_can_d0_work_s1 is None or Sreedhar_can_d0_work_s2 is None:\n print('neutral')\nelif Sreedhar_can_d0_work_s1 == Sreedhar_can_d0_work_s2:\n print('Entailment')\nelif Sreedhar_can_d0_work_s1 != Sreedhar_can_d0_work_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained 61 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained more than 51 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dacid_Marks_s1=61,65,82,6,85\nDacid_Marks_s2=61,65,82,6,85\nif Dacid_Marks_s1 is None or Dacid_Marks_s2 is None:\n print('neutral')\nelif Dacid_Marks_s1 == Dacid_Marks_s2:\n print('Entailment')\nelif Dacid_Marks_s1 != Dacid_Marks_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Christian\u2019s father and the senior ranger gathered firewood as they walked towards the lake in the park and brought with them sacks, and every sack can contain around 20.0 pieces of wood, \"statement 2\" :They were able to gather 1600.0 pieces of firewood if they gathered 80.0 sacks, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Pices_of_wood_s1=20\nAble_to_gather_pieces_s2=1600/80\nif Pices_of_wood_s1 is None or Able_to_gather_pieces_s2 is None:\n print('neutral')\nelif Pices_of_wood_s1 == Able_to_gather_pieces_s2:\n print('Entailment')\nelif Pices_of_wood_s1 != Able_to_gather_pieces_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John has 10 pairs of matched socks, \"statement 2\" :John has less than 70 pairs of matched socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jhon_matched_socks_s1=10\nJhon_matched_socks_s2=70\nif Jhon_matched_socks_s1 is None or Jhon_matched_socks_s2 is None:\n print('neutral')\nelif Jhon_matched_socks_s1 <= Jhon_matched_socks_s2:\n print('Entailment')\nelif Jhon_matched_socks_s1 != Jhon_matched_socks_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "test" + }, + { + "Input": " \"statement 1\": Joe \u2019 s average ( arithmetic mean ) test score across 4 equally weighted tests was 35, \"statement 2\" :Joe \u2019 s average ( arithmetic mean ) test score across more than 4 equally weighted tests was 35, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jhon_average_in_test_s1=4\nJhon_average_in_test_s2=4+1\nif Jhon_average_in_test_s1 is None or Jhon_average_in_test_s2 is None:\n print('neutral')\nelif Jhon_average_in_test_s1 == Jhon_average_in_test_s2:\n print('Entailment')\nelif Jhon_average_in_test_s1 != Jhon_average_in_test_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Paul ' s salary was decreased by 50 % and subsequently increased by\n50 %, \"statement 2\" :Paul ' s salary was decreased by 40 % and subsequently increased by 50 %, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "paul_salary_Decreased_s1=50\npaul_salary_Decreased_s2=40\nif paul_salary_Decreased_s1 is None or paul_salary_Decreased_s2 is None:\n print('neutral')\nelif paul_salary_Decreased_s1 == paul_salary_Decreased_s2:\n print('Entailment')\nelif paul_salary_Decreased_s1 != paul_salary_Decreased_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Susan drove an average speed of 30 miles per hour for the first 40 miles of a trip then at a average speed of 15 miles / hr for the remaining 40 miles of the trip if she made no stops during the trip what was susan ' s avg speed in miles / hr for the entire trip, \"statement 2\" :Susan drove an average speed of more than 20 miles per hour for the first 40 miles of a trip then at a average speed of 15 miles / hr for the remaining 40 miles of the trip if she made no stops during the trip what was susan ' s avg speed in miles / hr for the entire trip, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Suasn_Average_speed_s1=30\nSuasn_Average_speed_s2=20\nif Suasn_Average_speed_s1 is None or Suasn_Average_speed_s2 is None:\n print('neutral')\nelif Suasn_Average_speed_s1 >= Suasn_Average_speed_s2:\n print('Entailment')\nelif Suasn_Average_speed_s1 != Suasn_Average_speed_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He works at it for 20 days and then Rajesh finished it in 30 days, \"statement 2\" :He works at it for 70 days and then Rajesh finished it in 30 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Works_it_for_s1=20\nWorks_it_for_s2=70\nif Works_it_for_s1 is None or Works_it_for_s2 is None:\n print('neutral')\nelif Works_it_for_s1 == Works_it_for_s2:\n print('Entailment')\nelif Works_it_for_s1 != Works_it_for_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jose joined him 2 months later , investing Rs, \"statement 2\" :Jose joined him 4 months later , investing Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jose_joined_s1=2\nJose_joined_s2=4\nif Jose_joined_s1 is None or Jose_joined_s2 is None:\n print('neutral')\nelif Jose_joined_s1 == Jose_joined_s2:\n print('Entailment')\nelif Jose_joined_s1 != Jose_joined_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the average speed of the whole journey was 36 mph , then what is Tom ' s speed driving from B to C in miles per hour ?, \"statement 2\" :If the average speed of the whole journey was less than 46 mph , then what is Tom ' s speed driving from B to C in miles per hour ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Average_speed_in_whole_journey_s1=36\nAverage_speed_in_whole_journey_s2=46\nif Average_speed_in_whole_journey_s1 is None or Average_speed_in_whole_journey_s2 is None:\n print('neutral')\nelif Average_speed_in_whole_journey_s1 <= Average_speed_in_whole_journey_s2:\n print('Entailment')\nelif Average_speed_in_whole_journey_s1 != Average_speed_in_whole_journey_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Reeya obtained more than 20 , 60 , 70 , 80 and 80 out of 100 in different subjects , What will be the average, \"statement 2\" :Reeya obtained 50 , 60 , 70 , 80 and 80 out of 100 in different subjects , What will be the average, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Reeya_marks_s1=20,60,70,80,80\nReeya_marks_s1=None\nReeya_marks_s2=50,60,70,80,80\nif Reeya_marks_s1 is None or Reeya_marks_s2 is None:\n print('neutral')\nelif Reeya_marks_s1 == Reeya_marks_s2:\n print('Entailment')\nelif Reeya_marks_s1 != Reeya_marks_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Hari Dallakoti says business at his UPS store in Denver , Colorado , is down 25 percent ., \"statement 2\" :UPS store owner says business down at least 25 percent, \"options: \" Entailment or neutral?", + "Output Program": [ + "Business_in_ups_Store_s1=25\nBusiness_Down_s2=25\nif Business_in_ups_Store_s1 is None or Business_Down_s2 is None:\n print('neutral')\nelif Business_in_ups_Store_s1 == Business_Down_s2:\n print('Entailment')\nelif Business_in_ups_Store_s1 != Business_Down_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": An investor can sell her MicroTron stock for 36 $ per share and her Dynaco stock for 60 $ per share , If she sells 300 shares altogether , some of each stock , at an average price per share of 40 $ , how many shares of Dynaco stock has she sold ?, \"statement 2\" :An investor can sell her MicroTron stock for less than 36 $ per share and her Dynaco stock for 60 $ per share , If she sells 300 shares altogether , some of each stock , at an average price per share of 40 $ , how many shares of Dynaco stock has she sold ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Microton_stock_s1=36\nMicroton_stock_s2=36-1\nif Microton_stock_s1 is None or Microton_stock_s2 is None:\n print('neutral')\nelif Microton_stock_s1 == Microton_stock_s2:\n print('Entailment')\nelif Microton_stock_s1 != Microton_stock_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Barbara has 8 shirts and 9 pants, \"statement 2\" :Barbara has more than 8 shirts and 9 pants, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Barbara_pant_shirts_s1=8+9\nBarbara_pant_shirts_s2=8+1+9\nif Barbara_pant_shirts_s1 is None or Barbara_pant_shirts_s2 is None:\n print('neutral')\nelif Barbara_pant_shirts_s1 == Barbara_pant_shirts_s2:\n print('Entailment')\nelif Barbara_pant_shirts_s1 != Barbara_pant_shirts_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": less than 620000 for 6 months , whereas Dave invested his amount for the whole yr , what was the amount invested by Dave ?, \"statement 2\" :120000 for 6 months , whereas Dave invested his amount for the whole yr , what was the amount invested by Dave ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dave_invested_s1=620000\nDave_invested_s1=None #lessthan 620000 Not proper Number\nDave_invested_s2=120000\nif Dave_invested_s1 is None or Dave_invested_s2 is None:\n print('neutral')\nelif Dave_invested_s1 == Dave_invested_s2:\n print('Entailment')\nelif Dave_invested_s1 != Dave_invested_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mrs. Sheridan has 11.0 cats and she bought 43.0 more, \"statement 2\" :She has 54.0 cats now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Sheridan_cats_s1=11+43\nSheridan_cats_s2=54\nif Sheridan_cats_s1 is None or Sheridan_cats_s2 is None:\n print('neutral')\nelif Sheridan_cats_s1 == Sheridan_cats_s2:\n print('Entailment')\nelif Sheridan_cats_s1 != Sheridan_cats_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": An investor can sell her MicroTron stock for 36 $ per share and her Dynaco stock for 60 $ per share , If she sells 300 shares altogether , some of each stock , at an average price per share of 40 $ , how many shares of Dynaco stock has she sold ?, \"statement 2\" :An investor can sell her MicroTron stock for less than 56 $ per share and her Dynaco stock for 60 $ per share , If she sells 300 shares altogether , some of each stock , at an average price per share of 40 $ , how many shares of Dynaco stock has she sold ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Microton_stock_s1=36\nMicroton_stock_s2=56\nif Microton_stock_s1 is None or Microton_stock_s2 is None:\n print('neutral')\nelif Microton_stock_s1 <= Microton_stock_s2:\n print('Entailment')\nelif Microton_stock_s1 != Microton_stock_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 5.0 boats are in the lake and each boat has 3.0 people, \"statement 2\" :15.0 people are on boats in the lake, \"options: \" Entailment or contradiction?", + "Output Program": [ + "People_are_on_boats_in_the_lake_s1=5*3\nPeople_are_on_boats_in_the_lake_s2=15\nif People_are_on_boats_in_the_lake_s1 is None or People_are_on_boats_in_the_lake_s2 is None:\n print('neutral')\nelif People_are_on_boats_in_the_lake_s1 == People_are_on_boats_in_the_lake_s2:\n print('Entailment')\nelif People_are_on_boats_in_the_lake_s1 != People_are_on_boats_in_the_lake_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A restaurant served 7.0 slices of pie during lunch and 5.0 during dinner today and it served 8.0 of them yesterday , \"statement 2\" :11.0 slices of pie were served today , \"options: \" Entailment or contradiction?", + "Output Program": [ + "Slices_s1=7+5\nSlices_served_today_s2=11\nif Slices_s1 is None or Slices_served_today_s2 is None:\n print('neutral')\nelif Slices_s1 == Slices_served_today_s2:\n print('Entailment')\nelif Slices_s1 != Slices_served_today_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The sources said the gadget will have a screen between 7 and 8 inches wide , and one said that it will not have the high-definition '' retina display '' screen of the new iPad ., \"statement 2\" :Sources tell Bloomberg '' iPad Mini '' would have 7-8 inche screen, \"options: \" Entailment or neutral?", + "Output Program": [ + "Gadegt_Screen_s1=7,8\nIpad_mini_Screen_s2=7,8\nIpad_mini_Screen_s2=None\nif Gadegt_Screen_s1 is None or Ipad_mini_Screen_s2 is None:\n print('neutral')\nelif Gadegt_Screen_s1 == Ipad_mini_Screen_s2:\n print('Entailment')\nelif Gadegt_Screen_s1 != Ipad_mini_Screen_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In Parkin ' s company 60 % of the employees earn less than $ 50,000 a year , 60 % of the employees earn more than $ 40,000 a year , 11 % of the employees earn $ 43,000 a year and 5 % of the employees earn $ 49,000 a year, \"statement 2\" :In Parkin ' s company more than 20 % of the employees earn less than $ 50,000 a year , 60 % of the employees earn more than $ 40,000 a year , 11 % of the employees earn $ 43,000 a year and 5 % of the employees earn $ 49,000 a year, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Parkin_company_earn_year_s1=60\nParkin_company_earn_year_s2=20\nif Parkin_company_earn_year_s1 is None or Parkin_company_earn_year_s2 is None:\n print('neutral')\nelif Parkin_company_earn_year_s1 >= Parkin_company_earn_year_s2:\n print('Entailment')\nelif Parkin_company_earn_year_s1 != Parkin_company_earn_year_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The next act involved several jugglers, and each juggler is juggling 6.0 balls at a time, \"statement 2\" :2268.0 balls are needed if there are 378.0 jugglers putting a show at the same time, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Juggler_Juggling_balls_s1=6\nBalls_are_needed_s2=2268/378\nif Juggler_Juggling_balls_s1 is None or Balls_are_needed_s2 is None:\n print('neutral')\nelif Juggler_Juggling_balls_s1 == Balls_are_needed_s2:\n print('Entailment')\nelif Juggler_Juggling_balls_s1 != Balls_are_needed_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The Marching 100 was suspended shortly after his death ., \"statement 2\" :The school 's famed Marching 100 band was suspended after his death, \"options: \" Entailment or neutral?", + "Output Program": [ + "Marching_suspended_s1=100\nSchool_marching_Suspended_s2=100\nSchool_marching_Suspended_s2=None\nif Marching_suspended_s1 is None or School_marching_Suspended_s2 is None:\n print('neutral')\nelif Marching_suspended_s1 == School_marching_Suspended_s2:\n print('Entailment')\nelif Marching_suspended_s1 != School_marching_Suspended_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is 2 : 7 ?\nA, \"statement 2\" :What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is more than 2 : 7 ? A, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ratio_of_distance_s1=2/7\nRatio_of_distance_s2=2/7+1\nif Ratio_of_distance_s1 is None or Ratio_of_distance_s2 is None:\n print('neutral')\nelif Ratio_of_distance_s1 == Ratio_of_distance_s2:\n print('Entailment')\nelif Ratio_of_distance_s1 != Ratio_of_distance_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": For the fifth grade play, the chairs have been put into 27.0 rows with 16.0 chairs in each row., \"statement 2\" :433.0 chairs have been put out for the play, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Chairs_s1=16*27\nChairs_put_for_play_s2=433\nif Chairs_s1 is None or Chairs_put_for_play_s2 is None:\n print('neutral')\nelif Chairs_s1 == Chairs_put_for_play_s2:\n print('Entailment')\nelif Chairs_s1 != Chairs_put_for_play_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Holder said the Justice Department is working on extradition proceedings for the seven charged in the consulate killings and already in custody ., \"statement 2\" :Ten Mexican nationals have been charged and seven are already in custody, \"options: \" Entailment or neutral?", + "Output Program": [ + "Justice_department_working_seven_charged_consulate_s1=None\nTen_mexican_nationals_have_been_charged_s2=None\nif Justice_department_working_seven_charged_consulate_s1 is None or Ten_mexican_nationals_have_been_charged_s2 is None:\n print('neutral')\nelif Justice_department_working_seven_charged_consulate_s1 == Ten_mexican_nationals_have_been_charged_s2:\n print('Entailment')\nelif Justice_department_working_seven_charged_consulate_s1 != Ten_mexican_nationals_have_been_charged_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Albert is 2 times Mary \u2019 s age and 4 times as old as Betty, \"statement 2\" :Albert is 3 times Mary \u2019 s age and 4 times as old as Betty, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Albert_age_s1=2\nAlbert_age_s2=3\nif Albert_age_s1 is None or Albert_age_s2 is None:\n print('neutral')\nelif Albert_age_s1 == Albert_age_s2:\n print('Entailment')\nelif Albert_age_s1 != Albert_age_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How much loss would Indu has suffered had she given it to Bindu for 2 years at 4 % per annum simple interest ?, \"statement 2\" :How much loss would Indu has suffered had she given it to Bindu for less than 4 years at 4 % per annum simple interest ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "She_given_bindu_s1=2\nShe_given_bindu_s2=4\nif She_given_bindu_s1 is None or She_given_bindu_s2 is None:\n print('neutral')\nelif She_given_bindu_s1 <= She_given_bindu_s2:\n print('Entailment')\nelif She_given_bindu_s1 != She_given_bindu_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Forty-eight of those animals were killed by law enforcement , and two primates were killed by the other animals , zoo officials said ., \"statement 2\" :Law enforcement killed 48 of the released animals , and 2 primates were killed by the other animals, \"options: \" Entailment or neutral?", + "Output Program": [ + "Animals_killed_s1=48\nLaw_enforcemnet_Animals_killed_s2=48\nif Animals_killed_s1 is None or Law_enforcemnet_Animals_killed_s2 is None:\n print('neutral')\nelif Animals_killed_s1 == Law_enforcemnet_Animals_killed_s2:\n print('Entailment')\nelif Animals_killed_s1 != Law_enforcemnet_Animals_killed_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": One hour after Matthew started waking from w to y , a distance of less than 55 km , Johnny started walking along the same road from y to w, \"statement 2\" :One hour after Matthew started waking from w to y , a distance of 45 km , Johnny started walking along the same road from y to w, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Matthew_started_walking_a_distnace_s1=55\nMatthew_started_walking_a_distnace_s1=None #lessthan 55 Not proper Number\nMatthew_started_walking_a_distnace_s2=45\nif Matthew_started_walking_a_distnace_s1 is None or Matthew_started_walking_a_distnace_s2 is None:\n print('neutral')\nelif Matthew_started_walking_a_distnace_s1 == Matthew_started_walking_a_distnace_s2:\n print('Entailment')\nelif Matthew_started_walking_a_distnace_s1 != Matthew_started_walking_a_distnace_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In Lulu company 60 % of the employees earn less than $ 50,000 a year , 60 % of the employees earn more than $ 40,000 a year , 11 % of the employees earn $ 43,000 a year and 5 % of the employees earn $ 49,000 a year, \"statement 2\" :In Lulu company less than 60 % of the employees earn less than $ 50,000 a year , 60 % of the employees earn more than $ 40,000 a year , 11 % of the employees earn $ 43,000 a year and 5 % of the employees earn $ 49,000 a year, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Lulu_company_employees_earn_s1=60\nLulu_company_employees_earn_s2=60-1\nif Lulu_company_employees_earn_s1 is None or Lulu_company_employees_earn_s2 is None:\n print('neutral')\nelif Lulu_company_employees_earn_s1 == Lulu_company_employees_earn_s2:\n print('Entailment')\nelif Lulu_company_employees_earn_s1 != Lulu_company_employees_earn_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In an exam , Amar scored 64 percent , Bhavan scored 36 percent and Chetan 44 percent, \"statement 2\" :In an exam , Amar scored more than 44 percent , Bhavan scored 36 percent and Chetan 44 percent, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Amar_bhavan_and_chetan_scored_s1=64,36,44\nAmar_bhavan_and_chetan_scored_s2=44+20,36,44\nif Amar_bhavan_and_chetan_scored_s1 is None or Amar_bhavan_and_chetan_scored_s2 is None:\n print('neutral')\nelif Amar_bhavan_and_chetan_scored_s1 == Amar_bhavan_and_chetan_scored_s2:\n print('Entailment')\nelif Amar_bhavan_and_chetan_scored_s1 != Amar_bhavan_and_chetan_scored_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Spokesmen for two groups linked to the Pakistani Taliban -- Jundallah and Jamaat-ul-Ahrar -- separately claimed responsibility for the bombing , with the spokesman for the latter , Ehsanullah Ehsan , calling the Jundallah claim '' baseless . '', \"statement 2\" :Two groups claim responsibility for bombing , and one promises more attacks, \"options: \" Entailment or neutral?", + "Output Program": [ + "Responsibility_for_the_bombing_s1=None\nTwo_group_claim_responsibility_for_bombing_s2=None\nif Responsibility_for_the_bombing_s1 is None or Two_group_claim_responsibility_for_bombing_s2 is None:\n print('neutral')\nelif Responsibility_for_the_bombing_s1 == Two_group_claim_responsibility_for_bombing_s2:\n print('Entailment')\nelif Responsibility_for_the_bombing_s1 != Two_group_claim_responsibility_for_bombing_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many jelly beans must Dante give to Aaron to ensure that no child has more than 1 fewer jelly beans than any other child ?, \"statement 2\" :How many jelly beans must Dante give to Aaron to ensure that no child has more than less than 3 fewer jelly beans than any other child ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jelly_beans_s1=1\nJelly_beans_s2=3\nif Jelly_beans_s1 is None or Jelly_beans_s2 is None:\n print('neutral')\nelif Jelly_beans_s1 <= Jelly_beans_s2:\n print('Entailment')\nelif Jelly_beans_s1 != Jelly_beans_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Calculate Renee ' s average score in an exam if she obtained the following marks 71 , 57 , 61 , 80 and 88 out of 100 in different subjects ., \"statement 2\" :Calculate Renee ' s average score in an exam if she obtained the following marks 51 , 57 , 61 , 80 and 88 out of 100 in different subjects ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Renee_marks_s1=71,57,61,80,88\nRenee_marks_s2=51,57,61,80,88\nif Renee_marks_s1 is None or Renee_marks_s2 is None:\n print('neutral')\nelif Renee_marks_s1 == Renee_marks_s2:\n print('Entailment')\nelif Renee_marks_s1 != Renee_marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At Pete \u2019 s Pet Shop , 35 cups of bird seed are used every 5 days to feed 14 parakeets, \"statement 2\" :At Pete \u2019 s Pet Shop , more than 35 cups of bird seed are used every 5 days to feed 14 parakeets, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Cup_of_bird_seed_s1=35\nCup_of_bird_seed_s2=35+1\nif Cup_of_bird_seed_s1 is None or Cup_of_bird_seed_s2 is None:\n print('neutral')\nelif Cup_of_bird_seed_s1 == Cup_of_bird_seed_s2:\n print('Entailment')\nelif Cup_of_bird_seed_s1 != Cup_of_bird_seed_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Milford Lake was originally blue because it only had 3263.0 algae plants and now there are 809.0 more algae plants, and the lake has turned green, \"statement 2\" :4072.0 algae plants are in Milford Lake now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Plants_s1=3263+809\nAle_plants_s2=4072\nif Plants_s1 is None or Ale_plants_s2 is None:\n print('neutral')\nelif Plants_s1 == Ale_plants_s2:\n print('Entailment')\nelif Plants_s1 != Ale_plants_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 42.0 birds were sitting in a tree and then 29.0 more flew up to the tree, \"statement 2\" :71.0 birds are there in the tree, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Birds_sitting_on_tree_s1=42+29\nBirds_on_tree_s2=71\nif Birds_sitting_on_tree_s1 is None or Birds_on_tree_s2 is None:\n print('neutral')\nelif Birds_sitting_on_tree_s1 == Birds_on_tree_s2:\n print('Entailment')\nelif Birds_sitting_on_tree_s1 != Birds_on_tree_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sheriff : Suzanne Hopper , who was killed , was married and the mother of two children, \"statement 2\" :He said she was married and the mother of two children ., \"options: \" Entailment or neutral?", + "Output Program": [ + "Mother_of_children_s1=2\nMarrid_andthe_mother_s2=2\nif Mother_of_children_s1 is None or Marrid_andthe_mother_s2 is None:\n print('neutral')\nelif Mother_of_children_s1 == Marrid_andthe_mother_s2:\n print('Entailment')\nelif Mother_of_children_s1 != Marrid_andthe_mother_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John and Mike enter into a partnership by investing $ 700 and $ 300 respectively, \"statement 2\" :John and Mike enter into a partnership by investing $ more than 600 and $ 300 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jhon_and_mike_investing_s1=700+300\nJhon_and_mike_investing_s2=600+300\nif Jhon_and_mike_investing_s1 is None or Jhon_and_mike_investing_s2 is None:\n print('neutral')\nelif Jhon_and_mike_investing_s1 >= Jhon_and_mike_investing_s2:\n print('Entailment')\nelif Jhon_and_mike_investing_s1 != Jhon_and_mike_investing_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Monday , when the hearings begin , the Palestinians will hold their demonstration during the same hours , and a 25-person counter-demonstration by Israelis and Jews will take place ., \"statement 2\" :Israelis will demonstrate and a counter-demonstration of 25 Palestinians will be permitted as well ., \"options: \" Entailment or neutral?", + "Output Program": [ + "Person_counter_demonstraction_s1=25\nIsraelie_will_demonstrate_s2=None\nif Person_counter_demonstraction_s1 is None or Israelie_will_demonstrate_s2 is None:\n print('neutral')\nelif Person_counter_demonstraction_s1 == Israelie_will_demonstrate_s2:\n print('Entailment')\nelif Person_counter_demonstraction_s1 != Israelie_will_demonstrate_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In 2003 , Yunus brought the microcredit revolution to the streets of Bangladesh to support more than 50,000 beggars , whom the Grameen Bank respectfully calls Struggling Members ., \"statement 2\" :Yunus supported more than 50,000 Struggling Members ., \"options: \" Entailment or neutral?", + "Output Program": [ + "Bangladesh_support_beggars_s1=50000+1\nYouns_supported_s2=500000+1\nif Bangladesh_support_beggars_s1 is None or Youns_supported_s2 is None:\n print('neutral')\nelif Bangladesh_support_beggars_s1 == Youns_supported_s2:\n print('Entailment')\nelif Bangladesh_support_beggars_s1 != Youns_supported_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary can divide his herd into more than 1 equal parts and also to 6 equal parts , but not to 9 equal parts, \"statement 2\" :Mary can divide his herd into 5 equal parts and also to 6 equal parts , but not to 9 equal parts, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Mary_divide_s1=1\nMary_divide_s1=None\nMary_divide_herd_s2=5\nif Mary_divide_s1 is None or Mary_divide_herd_s2 is None:\n print('neutral')\nelif Mary_divide_s1 == Mary_divide_herd_s2:\n print('Entailment')\nelif Mary_divide_s1 != Mary_divide_herd_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": It left England needing 150 runs to avoid a humiliating innings defeat with only six wickets left ., \"statement 2\" :They trail by 150 runs with only six wickets left, \"options: \" Entailment or neutral?", + "Output Program": [ + "England_needing_s1=150\nTrail_by_s1=150\nif England_needing_s1 is None or Trail_by_s1 is None:\n print('neutral')\nelif England_needing_s1 == Trail_by_s1:\n print('Entailment')\nelif England_needing_s1 != Trail_by_s1:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Another is Erie , Pennsylvania , where snowfalls totals along the southern side of Lake Erie could reach 16 inches , Morris said ., \"statement 2\" :Up to 16 inches of snow possible in some parts of the Northeast, \"options: \" Entailment or neutral?", + "Output Program": [ + "Lake_Erie_reach_s1=16\nSnow_possible_s2=16\nif Lake_Erie_reach_s1 is None or Snow_possible_s2 is None:\n print('neutral')\nelif Lake_Erie_reach_s1 == Snow_possible_s2:\n print('Entailment')\nelif Lake_Erie_reach_s1 != Snow_possible_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Suraj has a certain average of runs for less than 86 innings, \"statement 2\" :Suraj has a certain average of runs for 16 innings, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Suraj_average_run_s1=86\nSuraj_average_run_s1=None\nSuraj_average_run_s2=16\nif Suraj_average_run_s1 is None or Suraj_average_run_s2 is None:\n print('neutral')\nelif Suraj_average_run_s1 == Suraj_average_run_s2:\n print('Entailment')\nelif Suraj_average_run_s1 != Suraj_average_run_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Caleb spends $ 74.50 on 50 hamburgers for the marching band, \"statement 2\" :Caleb spends $ 74.50 on 60 hamburgers for the marching band, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Hemburgers_s1=50\nHemburgers_s2=60\nif Hemburgers_s1 is None or Hemburgers_s2 is None:\n print('neutral')\nelif Hemburgers_s1 == Hemburgers_s2:\n print('Entailment')\nelif Hemburgers_s1 != Hemburgers_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shreehari has 500 chocolates in his self, \"statement 2\" :Shreehari has more than 200 chocolates in his self, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Shreehari_choclates_s1=500\nShreehari_choclates_s2=200\nif Shreehari_choclates_s1 is None or Shreehari_choclates_s2 is None:\n print('neutral')\nelif Shreehari_choclates_s1 >= Shreehari_choclates_s2:\n print('Entailment')\nelif Shreehari_choclates_s1 != Shreehari_choclates_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The ratio of Gomati \u2019 s and Rashmi \u2019 s ages is 3 : 5 respectively, \"statement 2\" :The ratio of Gomati \u2019 s and Rashmi \u2019 s ages is less than 3 : 5 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Age_ratio_s1=3/5\nAge_ratio_s2=3/5-1\nif Age_ratio_s1 is None or Age_ratio_s2 is None:\n print('neutral')\nelif Age_ratio_s1 == Age_ratio_s2:\n print('Entailment')\nelif Age_ratio_s1 != Age_ratio_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In all , police have arrested 10 people so far who are believed to have profited greatly from their crimes ., \"statement 2\" :10 people have been arrested in a case that could be huge, \"options: \" Entailment or neutral?", + "Output Program": [ + "Arrested_people_s1=10\nArrested_people_s1=None\nArrested_people_s2=10\nif Arrested_people_s1 is None or Arrested_people_s2 is None:\n print('neutral')\nelif Arrested_people_s1 == Arrested_people_s2:\n print('Entailment')\nelif Arrested_people_s1 != Arrested_people_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the probability that Catherine is adjacent\nto Caroline is 1 / 9 , then what is the value of n ?, \"statement 2\" :If the probability that Catherine is adjacent to Caroline is 2 / 9 , then what is the value of n ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Catherine_is_adjacent_to_caroline_s1=1/9\nCatherine_is_adjacent_to_caroline_s2=2/9\nif Catherine_is_adjacent_to_caroline_s1 is None or Catherine_is_adjacent_to_caroline_s2 is None:\n print('neutral')\nelif Catherine_is_adjacent_to_caroline_s1 == Catherine_is_adjacent_to_caroline_s2:\n print('Entailment')\nelif Catherine_is_adjacent_to_caroline_s1 != Catherine_is_adjacent_to_caroline_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Meg and Bob are among the 3 participants in a cycling race, \"statement 2\" :Meg and Bob are among the less than 4 participants in a cycling race, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Cycling_Race_s1=3\nCycling_Race_s2=4-1\nif Cycling_Race_s1 is None or Cycling_Race_s2 is None:\n print('neutral')\nelif Cycling_Race_s1 == Cycling_Race_s2:\n print('Entailment')\nelif Cycling_Race_s1 != Cycling_Race_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Sanoop returned less than 3 t - shirts to the retailer , and the average price of the remaining t - shirts was Rs, \"statement 2\" :If Sanoop returned 2 t - shirts to the retailer , and the average price of the remaining t - shirts was Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sanoop_returned_t_shirts_s1=3\nSanoop_returned_t_shirts_s1=None\nSanoop_returned_t_shirts_s2=2\nif Sanoop_returned_t_shirts_s1 is None or Sanoop_returned_t_shirts_s2 is None:\n print('neutral')\nelif Sanoop_returned_t_shirts_s1 == Sanoop_returned_t_shirts_s2:\n print('Entailment')\nelif Sanoop_returned_t_shirts_s1 != Sanoop_returned_t_shirts_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a group of 6 boys & 4 girls a Committee of 4 persons is to be formed, \"statement 2\" :In a group of 7 boys & 4 girls a Committee of 4 persons is to be formed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Group_of_boy_and_Girl_s1=6,4\nGroup_of_boy_and_Girl_s2=7,4\nif Group_of_boy_and_Girl_s1 is None or Group_of_boy_and_Girl_s2 is None:\n print('neutral')\nelif Group_of_boy_and_Girl_s1 == Group_of_boy_and_Girl_s2:\n print('Entailment')\nelif Group_of_boy_and_Girl_s1 != Group_of_boy_and_Girl_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Only 42 percent of Americans think things are going well , while 58 percent think things are going badly , the poll found ., \"statement 2\" :Only 42 percent think things are going well in the U.S. , according to the poll, \"options: \" Entailment or neutral?", + "Output Program": [ + "Americans_think_going_well_s1=42\nAmericans_think_going_well_s2=42\nif Americans_think_going_well_s1 is None or Americans_think_going_well_s2 is None:\n print('neutral')\nelif Americans_think_going_well_s1 == Americans_think_going_well_s2:\n print('Entailment')\nelif Americans_think_going_well_s1 != Americans_think_going_well_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Since mid-August , the Centers for Disease Control and Prevention has confirmed more than 100 cases of Enterovirus D68 in 12 states : Alabama , Colorado , Illinois , Indiana , Iowa , Kansas , Kentucky , Louisiana , Missouri , Montana , New York and Oklahoma ., \"statement 2\" :Alabama has also confirmed four cases of Enterovirus D68, \"options: \" Entailment or neutral?", + "Output Program": [ + "Cases_of_Enterovirus_s1=100\nAlabama_confirmed_four_cases=None\nif Cases_of_Enterovirus_s1 is None or Alabama_confirmed_four_cases is None:\n print('neutral')\nelif Cases_of_Enterovirus_s1 == Alabama_confirmed_four_cases:\n print('Entailment')\nelif Cases_of_Enterovirus_s1 != Alabama_confirmed_four_cases:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mike buys 3 cartons of eggs at the store, \"statement 2\" :Mike buys 2 cartons of eggs at the store, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Mike_buy_cartons_s1=3\nMike_buy_cartons_s2=2\nif Mike_buy_cartons_s1 is None or Mike_buy_cartons_s2 is None:\n print('neutral')\nelif Mike_buy_cartons_s1 == Mike_buy_cartons_s2:\n print('Entailment')\nelif Mike_buy_cartons_s1 != Mike_buy_cartons_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Oscar-nominated Chinese filmmaker Zhang Yimou has been fined 7.48 million yuan ( $ 1.2 million ) for breaching China 's one-child policy , authorities say ., \"statement 2\" :Local authorities demand a hefty fine of 7.48 million yuan ( $ 1.21 million ), \"options: \" Entailment or neutral?", + "Output Program": [ + "Chinese_filimmaker_fined_s1=7.48\nLocal_Authoritydemand_hefty_fine_s2=7.48\nif Chinese_filimmaker_fined_s1 is None or Local_Authoritydemand_hefty_fine_s2 is None:\n print('neutral')\nelif Chinese_filimmaker_fined_s1 == Local_Authoritydemand_hefty_fine_s2:\n print('Entailment')\nelif Chinese_filimmaker_fined_s1 != Local_Authoritydemand_hefty_fine_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": So far , an orchard has sold a combined total of 9792.0 pounds of fresh and frozen fruit this season , and they have sold 3513.0 pounds of frozen fruit, \"statement 2\" :6280.0 pounds of fresh fruit have been sold so far, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Fresh_Fruit_s1=9792\nFresh_Fruit_s2=6280\nif Fresh_Fruit_s1 is None or Fresh_Fruit_s2 is None:\n print('neutral')\nelif Fresh_Fruit_s1 == Fresh_Fruit_s2:\n print('Entailment')\nelif Fresh_Fruit_s1 != Fresh_Fruit_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sam had 9.0 dimes in his bank and he gave 7.0 dimes to his dad, \"statement 2\" :Sam has 5.0 dimes now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Sam_dimes_s1=9-7\nSam_dimes_now_s2=5\nif Sam_dimes_s1 is None or Sam_dimes_now_s2 is None:\n print('neutral')\nelif Sam_dimes_s1 == Sam_dimes_now_s2:\n print('Entailment')\nelif Sam_dimes_s1 != Sam_dimes_now_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tony alone can paint a wall in 7 days and his friend Roy alone can paint the same wall in 9 days, \"statement 2\" :Tony alone can paint a wall in 5 days and his friend Roy alone can paint the same wall in 9 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tony_paint_wall_s1=7\ntony_paint_wall_s2=5\nif tony_paint_wall_s1 is None or tony_paint_wall_s2 is None:\n print('neutral')\nelif tony_paint_wall_s1 == tony_paint_wall_s2:\n print('Entailment')\nelif tony_paint_wall_s1 != tony_paint_wall_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Bruce and Anne can clean their house in more than 1 hours working together at their respective constant rates, \"statement 2\" :Bruce and Anne can clean their house in 4 hours working together at their respective constant rates, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Bruce_and_Anne_clean_house_s1=1\nBruce_and_Anne_clean_house_s1=None #morethan 1 not proper number\nBruce_and_Anne_clean_house_s2=4\nif Bruce_and_Anne_clean_house_s1 is None or Bruce_and_Anne_clean_house_s2 is None:\n print('neutral')\nelif Bruce_and_Anne_clean_house_s1 == Bruce_and_Anne_clean_house_s2:\n print('Entailment')\nelif Bruce_and_Anne_clean_house_s1 != Bruce_and_Anne_clean_house_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jaydeep purchased 25 kg of rice at the rate of 16.50 per kg and 35 kg of rice at the rate of 24.50 per kg, \"statement 2\" :Jaydeep purchased less than 75 kg of rice at the rate of 16.50 per kg and 35 kg of rice at the rate of 24.50 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jaydeep_purchased_rice_s1=25\nJaydeep_purchased_rice_s2=75\nif Jaydeep_purchased_rice_s1 is None or Jaydeep_purchased_rice_s2 is None:\n print('neutral')\nelif Jaydeep_purchased_rice_s1 <= Jaydeep_purchased_rice_s2:\n print('Entailment')\nelif Jaydeep_purchased_rice_s1 != Jaydeep_purchased_rice_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Only seven men in history have achieved the feat of winning all four of the grand slams : Wimbledon , and the United States , Australian and French Opens ., \"statement 2\" :Only seven men have completed a career grand slam in singles, \"options: \" Entailment or neutral?", + "Output Program": [ + "Only_seven_men_in_history_achieved_the_feat_s1=None\nOnly_Seven_men_have_complate_a_career_grand_slam_s2=None\nif Only_seven_men_in_history_achieved_the_feat_s1 is None or Only_Seven_men_have_complate_a_career_grand_slam_s2 is None:\n print('neutral')\nelif Only_seven_men_in_history_achieved_the_feat_s1 == Only_Seven_men_have_complate_a_career_grand_slam_s2:\n print('Entailment')\nelif Only_seven_men_in_history_achieved_the_feat_s1 != Only_Seven_men_have_complate_a_career_grand_slam_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": He gave 19 toys to his brother Gourav , while Gourav playing all but 6 got destroyed, \"statement 2\" :He gave less than 19 toys to his brother Gourav , while Gourav playing all but 6 got destroyed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Gave_to_Gourav_s1=19\nGave_to_Gourav_s2=19-1\nif Gave_to_Gourav_s1 is None or Gave_to_Gourav_s2 is None:\n print('neutral')\nelif Gave_to_Gourav_s1 == Gave_to_Gourav_s2:\n print('Entailment')\nelif Gave_to_Gourav_s1 != Gave_to_Gourav_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nagar the building were numbered from 1 to 100, \"statement 2\" :Nagar the building were numbered from less than 5 to 100, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Nagar_buliding_numbers_s1=1,100\nNagar_buliding_numbers_s2=5,100\nif Nagar_buliding_numbers_s1 is None or Nagar_buliding_numbers_s2 is None:\n print('neutral')\nelif Nagar_buliding_numbers_s1 <= Nagar_buliding_numbers_s2:\n print('Entailment')\nelif Nagar_buliding_numbers_s1 != Nagar_buliding_numbers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The total of the ages of Amar , Akbar and Anthony is 36 years, \"statement 2\" :The total of the ages of Amar , Akbar and Anthony is more than 36 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Age_of_amar_akbar_Anthony_s1=36\nAge_of_amar_akbar_Anthony_s2=36+1\nif Age_of_amar_akbar_Anthony_s1 is None or Age_of_amar_akbar_Anthony_s2 is None:\n print('neutral')\nelif Age_of_amar_akbar_Anthony_s1 == Age_of_amar_akbar_Anthony_s2:\n print('Entailment')\nelif Age_of_amar_akbar_Anthony_s1 != Age_of_amar_akbar_Anthony_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mrs. Hilt ate 5.0 apples in hours., \"statement 2\" :She eats 3.6 apples per hour on average, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Mrs_hilt_eat_apples_s1=5\nMrs_hilt_eat_apples_s2=3.6\nif Mrs_hilt_eat_apples_s1 is None or Mrs_hilt_eat_apples_s2 is None:\n print('neutral')\nelif Mrs_hilt_eat_apples_s1 == Mrs_hilt_eat_apples_s2:\n print('Entailment')\nelif Mrs_hilt_eat_apples_s1 != Mrs_hilt_eat_apples_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Missy received 40 messages from Laurence , how many messages does Keith receive from Juan ?, \"statement 2\" :If Missy received less than 40 messages from Laurence , how many messages does Keith receive from Juan ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Missy_recevied_Messages_s1=40\nMissy_recevied_Messages_s2=40-1\nif Missy_recevied_Messages_s1 is None or Missy_recevied_Messages_s2 is None:\n print('neutral')\nelif Missy_recevied_Messages_s1 == Missy_recevied_Messages_s2:\n print('Entailment')\nelif Missy_recevied_Messages_s1 != Missy_recevied_Messages_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In addition , 49 so-called '' imported '' cases of dengue fever are reported in Florida ., \"statement 2\" :Number of cases of dengue fever in Key West area increases to 24, \"options: \" Entailment or neutral?", + "Output Program": [ + "Dengue_cases_s1=None\nDengue_cases_in_key_west_s2=24\nif Dengue_cases_s1 is None or Dengue_cases_in_key_west_s2 is None:\n print('neutral')\nelif Dengue_cases_s1 == Dengue_cases_in_key_west_s2:\n print('Entailment')\nelif Dengue_cases_s1 != Dengue_cases_in_key_west_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Mel saved more than $ 10 by purchasing a sweater at a 15 percent discount , what is the smallest amount the original price of the sweater could be , to the nearest dollar ?, \"statement 2\" :If Mel saved more than $ more than 10 by purchasing a sweater at a 15 percent discount , what is the smallest amount the original price of the sweater could be , to the nearest dollar ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Mel_saved_s1=10\nMel_saved_s2=10+1\nif Mel_saved_s1 is None or Mel_saved_s2 is None:\n print('neutral')\nelif Mel_saved_s1 == Mel_saved_s2:\n print('Entailment')\nelif Mel_saved_s1 != Mel_saved_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If an outfit consists of less than 3 shirt , 1 pair of jeans , and 1 pair of sneakers , how many different outfits does Jordan have ?, \"statement 2\" :If an outfit consists of 1 shirt , 1 pair of jeans , and 1 pair of sneakers , how many different outfits does Jordan have ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "An_outfit_shirt_s1=3\nAn_outfit_shirt_s1=None #lessthan 3 Not proper Number\nAn_outfit_shirt_s2=1\nif An_outfit_shirt_s1 is None or An_outfit_shirt_s2 is None:\n print(\"neutral\")\nelif An_outfit_shirt_s1 == An_outfit_shirt_s2:\n print(\"Entailment\")\nelif An_outfit_shirt_s1 != An_outfit_shirt_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 43.0 pencils in the drawer and 19.0 pencils on the desk and Dan placed 16.0 more pencils on the desk, \"statement 2\" :81.0 pencils are now there in total , \"options: \" Entailment or contradiction?", + "Output Program": [ + "Pencils_s1=43+19+16\ntotal_Pencils_s2=81\nif Pencils_s1 is None or total_Pencils_s2 is None:\n print(\"neutral\")\nelif Pencils_s1 == total_Pencils_s2:\n print(\"Entailment\")\nelif Pencils_s1 != total_Pencils_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jorge scored 156.0 goals playing soccer last season and this season he scored 187.0 goals, \"statement 2\" :The total number of goals Jorge scored is 343.0, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Jorge_goals_s1=156+187\nJorge_total_goals_s2=343\nif Jorge_goals_s1 is None or Jorge_total_goals_s2 is None:\n print(\"neutral\")\nelif Jorge_goals_s1 == Jorge_total_goals_s2:\n print(\"Entailment\")\nelif Jorge_goals_s1 != Jorge_total_goals_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Fred and Sam are standing 55 miles apart and they start walking in a straight line toward each other at the same time, \"statement 2\" :Fred and Sam are standing less than 65 miles apart and they start walking in a straight line toward each other at the same time, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Fred_sam_standing_s1=55\nFred_sam_standing_s2=65\nif Fred_sam_standing_s1 is None or Fred_sam_standing_s2 is None:\n print(\"neutral\")\nelif Fred_sam_standing_s1 <= Fred_sam_standing_s2:\n print(\"Entailment\")\nelif Fred_sam_standing_s1 != Fred_sam_standing_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a covering a distance of 30 km , Abhay takes 2 hours more than Sameer, \"statement 2\" :In a covering a distance of more than 10 km , Abhay takes 2 hours more than Sameer, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Abhay_covering_distnace_s1=30\nAbhay_covering_distnace_s2=10\nif Abhay_covering_distnace_s1 is None or Abhay_covering_distnace_s2 is None:\n print(\"neutral\")\nelif Abhay_covering_distnace_s1 >= Abhay_covering_distnace_s2:\n print(\"Entailment\")\nelif Abhay_covering_distnace_s1 != Abhay_covering_distnace_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Shop Offered 25 % offer for every Shirt , Smith bought a shirt at Rs, \"statement 2\" :Shop Offered less than 45 % offer for every Shirt , Smith bought a shirt at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Shop_offered_s1=25\nShop_offered_s2=45\nif Shop_offered_s1 is None or Shop_offered_s2 is None:\n print(\"neutral\")\nelif Shop_offered_s1 <= Shop_offered_s2:\n print(\"Entailment\")\nelif Shop_offered_s1 != Shop_offered_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Victory at Wimbledon will give Nadal his 11th grand slam title and close on the record 16 of arch-rival and third seed Roger Federer , but again the world No., \"statement 2\" :Nadal won three grand slams including Wimbledon where he defends the title, \"options: \" Entailment or neutral?", + "Output Program": [ + "Victory_wimbledon_will_give_nadal_slam_s1=None\nNadal_won_three_grand_slams_s2=None\nif Victory_wimbledon_will_give_nadal_slam_s1 is None or Nadal_won_three_grand_slams_s2 is None:\n print(\"neutral\")\nelif Victory_wimbledon_will_give_nadal_slam_s1 == Nadal_won_three_grand_slams_s2:\n print(\"Entailment\")\nelif Victory_wimbledon_will_give_nadal_slam_s1 != Nadal_won_three_grand_slams_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dr. David Kiima told CNN there are only 50 active psychiatrists in the country to serve a population of more than 30 million ., \"statement 2\" :Senior health official says there 's only 50 active psychiatrists in the country, \"options: \" Entailment or neutral?", + "Output Program": [ + "Active_psychiatrists_s1=50\nSenior_helth_officil_says_s2=50\nSenior_helth_officil_says_s2=None\nif Active_psychiatrists_s1 is None or Senior_helth_officil_says_s2 is None:\n print(\"neutral\")\nelif Active_psychiatrists_s1 == Senior_helth_officil_says_s2:\n print(\"Entailment\")\nelif Active_psychiatrists_s1 != Senior_helth_officil_says_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Keith picked 47.0 pears, and Mike picked 12.0 pears from the pear tree and Keith gave away 46.0 pears, \"statement 2\" :Mike has 10.0 pears left, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Mike_picked_pears_s1=12\nMike_Left_pears_s2=10\nif Mike_picked_pears_s1 is None or Mike_Left_pears_s2 is None:\n print(\"neutral\")\nelif Mike_picked_pears_s1 == Mike_Left_pears_s2:\n print(\"Entailment\")\nelif Mike_picked_pears_s1 != Mike_Left_pears_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In how many ways can you seat more than 6 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"statement 2\" :In how many ways can you seat 8 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ways_can_you_seat_people_s1=6\nWays_can_you_seat_people_s1=None\nWays_can_you_seat_people_s2=8\nif Ways_can_you_seat_people_s1 is None or Ways_can_you_seat_people_s2 is None:\n print(\"neutral\")\nelif Ways_can_you_seat_people_s1 == Ways_can_you_seat_people_s2:\n print(\"Entailment\")\nelif Ways_can_you_seat_people_s1 != Ways_can_you_seat_people_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After they have worked together for less than 32 days peter stops and Peter completes the remaining work in 10 days, \"statement 2\" :After they have worked together for 12 days peter stops and Peter completes the remaining work in 10 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Worked_day_s1=32\nWorked_day_s1=None #lesstan 32 Not proper number\nWorked_day_s2=12\nif Worked_day_s1 is None or Worked_day_s2 is None:\n print(\"neutral\")\nelif Worked_day_s1 == Worked_day_s2:\n print(\"Entailment\")\nelif Worked_day_s1 != Worked_day_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A book store had 41.0 books in the bargin bin and they then sort out 2.0 books off the bin and sold 33.0 books, \"statement 2\" :6.0 books would now be in the bin, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Books_in_store_s1=41-2-33\nBooks_in_bin_s2=6\nif Books_in_store_s1 is None or Books_in_bin_s2 is None:\n print(\"neutral\")\nelif Books_in_store_s1 == Books_in_bin_s2:\n print(\"Entailment\")\nelif Books_in_store_s1 != Books_in_bin_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a BCCI meeting there are less than 55 people, \"statement 2\" :In a BCCI meeting there are 15 people, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Poeple_in_bcci_meeting_s1=55\nPoeple_in_bcci_meeting_s1=None #lessthan 55 Not proper number\nIn_Bcci_Metting_people=15\nif Poeple_in_bcci_meeting_s1 is None or In_Bcci_Metting_people is None:\n print(\"neutral\")\nelif Poeple_in_bcci_meeting_s1 == In_Bcci_Metting_people:\n print(\"Entailment\")\nelif Poeple_in_bcci_meeting_s1 != In_Bcci_Metting_people:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Assuming that Karen drives at an average speed of more than 20 mph and Tom drives at an average speed of 45 mph , how many H miles will Tom drive before Karen wins the bet ?, \"statement 2\" :Assuming that Karen drives at an average speed of 60 mph and Tom drives at an average speed of 45 mph , how many H miles will Tom drive before Karen wins the bet ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "karan_average_speed_s1=20\nkaran_average_speed_s1=None #morethan 20 Not proper Number\nkaran_average_speed_s2=60\nif karan_average_speed_s1 is None or karan_average_speed_s2 is None:\n print(\"neutral\")\nelif karan_average_speed_s1 == karan_average_speed_s2:\n print(\"Entailment\")\nelif karan_average_speed_s1 != karan_average_speed_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Already 30 House Democrats have said they will boycott the speech ., \"statement 2\" :GOP 's Boehner invited Netanyahu ; 30 House Democrats say they will boycott the speech, \"options: \" Entailment or neutral?", + "Output Program": [ + "House_democrats_s1=30\nHouse_democrats_Said_s2=30\nif House_democrats_s1 is None or House_democrats_Said_s2 is None:\n print(\"neutral\")\nelif House_democrats_s1 == House_democrats_Said_s2:\n print(\"Entailment\")\nelif House_democrats_s1 != House_democrats_Said_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Suraj has a certain average of runs for 9 innings, \"statement 2\" :Suraj has a certain average of runs for more than 7 innings, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Suraj_average_runs_s1=9\nSuraj_average_runs_s2=7+2\nif Suraj_average_runs_s1 is None or Suraj_average_runs_s2 is None:\n print(\"neutral\")\nelif Suraj_average_runs_s1 == Suraj_average_runs_s2:\n print(\"Entailment\")\nelif Suraj_average_runs_s1 != Suraj_average_runs_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were reports that another four people reportedly died in waves , the agency said ., \"statement 2\" :There were reports of another four people dying in waves, \"options: \" Entailment or neutral?", + "Output Program": [ + "People_died_in_waves_s1=4\nPeople_died_in_waves_s2=4\nif People_died_in_waves_s1 is None or People_died_in_waves_s2 is None:\n print(\"neutral\")\nelif People_died_in_waves_s1 == People_died_in_waves_s2:\n print(\"Entailment\")\nelif People_died_in_waves_s1 != People_died_in_waves_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Anita , Indu and Geeta can do a piece of work in less than 68 days , 27 days and 36 days respectively, \"statement 2\" :Anita , Indu and Geeta can do a piece of work in 18 days , 27 days and 36 days respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Anita_indu_gita_work_s1=68\nAnita_indu_gita_work_s1=None\nAnita_indu_gita_work_s2=18\nif Anita_indu_gita_work_s1 is None or Anita_indu_gita_work_s2 is None:\n print(\"neutral\")\nelif Anita_indu_gita_work_s1 == Anita_indu_gita_work_s2:\n print(\"Entailment\")\nelif Anita_indu_gita_work_s1 != Anita_indu_gita_work_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are 352 baseball fans in the town , each of whom is a fan of exactly one of those three teams , how many NY Mets fans are there in this town ?, \"statement 2\" :If there are less than 652 baseball fans in the town , each of whom is a fan of exactly one of those three teams , how many NY Mets fans are there in this town ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Base_ball_Fans_s1=352\nBase_ball_Fans_s2=652\nif Base_ball_Fans_s1 is None or Base_ball_Fans_s2 is None:\n print(\"neutral\")\nelif Base_ball_Fans_s1 <= Base_ball_Fans_s2:\n print(\"Entailment\")\nelif Base_ball_Fans_s1 != Base_ball_Fans_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": It controls 20 percent of the world 's natural gas reserves and operates the world 's largest gas distribution network -- approximately 157,000 kilometers of pipelines covering an area from Europe to the Far East , according to its Web site ., \"statement 2\" :Gazprom controls 20 percent of world 's natural gas reserves, \"options: \" Entailment or neutral?", + "Output Program": [ + "Pipe_line_covering_Area_s1=157000\nGazprom_control_natural_gas=None\nif Pipe_line_covering_Area_s1 is None or Gazprom_control_natural_gas is None:\n print(\"neutral\")\nelif Pipe_line_covering_Area_s1 == Gazprom_control_natural_gas:\n print(\"Entailment\")\nelif Pipe_line_covering_Area_s1 != Gazprom_control_natural_gas:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many ways are there for 2 males and 3 females to sit ( around a circular table ) if no male should sit next to a male ( and no female next to female ) and Mary wants to sit with her back on the wall ?, \"statement 2\" :How many ways are there for less than 8 males and 3 females to sit ( around a circular table ) if no male should sit next to a male ( and no female next to female ) and Mary wants to sit with her back on the wall ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "males_and_females_s1=2,3\nmales_and_females_s2=8,3\nif males_and_females_s1 is None or males_and_females_s2 is None:\n print(\"neutral\")\nelif males_and_females_s1 <= males_and_females_s2:\n print(\"Entailment\")\nelif males_and_females_s1 != males_and_females_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Abhay double his speed , then he would take 1 hour less than Sammer, \"statement 2\" :If Abhay double his speed , then he would take 8 hour less than Sammer, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Abhay_take_time_s1=1\nAbhay_take_time_s2=8\nif Abhay_take_time_s1 is None or Abhay_take_time_s2 is None:\n print(\"neutral\")\nelif Abhay_take_time_s1 == Abhay_take_time_s2:\n print(\"Entailment\")\nelif Abhay_take_time_s1 != Abhay_take_time_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Steve gets on the elevator at the less than 81 th floor of a building and rides up at a rate of 47 floors per minute, \"statement 2\" :Steve gets on the elevator at the 11 th floor of a building and rides up at a rate of 47 floors per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Steve_gates_on_elevator_s1=81\nSteve_gates_on_elevator_s1=None\nSteve_gates_on_elevator_s2=11\nif Steve_gates_on_elevator_s1 is None or Steve_gates_on_elevator_s2 is None:\n print(\"neutral\")\nelif Steve_gates_on_elevator_s1 == Steve_gates_on_elevator_s2:\n print(\"Entailment\")\nelif Steve_gates_on_elevator_s1 != Steve_gates_on_elevator_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sacha runs at a constant speed of more than 2 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"statement 2\" :Sacha runs at a constant speed of 6 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sacha_runs_s1=2\nSacha_runs_s1=None\nSacha_runs_s2=6\nif Sacha_runs_s1 is None or Sacha_runs_s2 is None:\n print(\"neutral\")\nelif Sacha_runs_s1 == Sacha_runs_s2:\n print(\"Entailment\")\nelif Sacha_runs_s1 != Sacha_runs_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Tanya is less than 45 % more efficient than Sakshi, \"statement 2\" :Tanya is 25 % more efficient than Sakshi, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Tanya_efficient_than_Sakshi_s1=45\nTanya_efficient_than_Sakshi_s1=None\nTanya_efficient_than_Sakshi_s2=25\nif Tanya_efficient_than_Sakshi_s1 is None or Tanya_efficient_than_Sakshi_s2 is None:\n print(\"neutral\")\nelif Tanya_efficient_than_Sakshi_s1 == Tanya_efficient_than_Sakshi_s2:\n print(\"Entailment\")\nelif Tanya_efficient_than_Sakshi_s1 != Tanya_efficient_than_Sakshi_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many crayons does Albert have if he buys less than 5 additional boxes ?, \"statement 2\" :How many crayons does Albert have if he buys 2 additional boxes ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Albert_buy_s1=5\nAlbert_buy_s1=None\nAlbert_buy_s2=2\nif Albert_buy_s1 is None or Albert_buy_s2 is None:\n print(\"neutral\")\nelif Albert_buy_s1 == Albert_buy_s2:\n print(\"Entailment\")\nelif Albert_buy_s1 != Albert_buy_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 6.0 birds and 3.0 nests., \"statement 2\" :There are 9.0 bird-related objects, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Birds_and_nets_s1=6+3\nBird_related_object_s2=9\nif Birds_and_nets_s1 is None or Bird_related_object_s2 is None:\n print(\"neutral\")\nelif Birds_and_nets_s1 == Bird_related_object_s2:\n print(\"Entailment\")\nelif Birds_and_nets_s1 != Bird_related_object_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The distance between Delhi and Mathura is less than 410 kms, \"statement 2\" :The distance between Delhi and Mathura is 110 kms, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Distnce_between_delhi_and_mathura_s1=410\nDistnce_between_delhi_and_mathura_s1=None\nDistnce_between_delhi_and_mathura_s2=110\nif Distnce_between_delhi_and_mathura_s1 is None or Distnce_between_delhi_and_mathura_s2 is None:\n print(\"neutral\")\nelif Distnce_between_delhi_and_mathura_s1 == Distnce_between_delhi_and_mathura_s2:\n print(\"Entailment\")\nelif Distnce_between_delhi_and_mathura_s1 != Distnce_between_delhi_and_mathura_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In Baghdad , a car bomb exploded late Sunday near a police patrol in the fashionable Jadiriyah district , killing at least six people , including three police officers , and wounding 26 others ., \"statement 2\" :The bomb killed six people , including three policeman ., \"options: \" Entailment or neutral?", + "Output Program": [ + "People_killed_in_car_bomb_s1=6\nBomb_killed_s2=6\nif People_killed_in_car_bomb_s1 is None or Bomb_killed_s2 is None:\n print(\"neutral\")\nelif People_killed_in_car_bomb_s1 == Bomb_killed_s2:\n print(\"Entailment\")\nelif People_killed_in_car_bomb_s1 != Bomb_killed_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a recent election , Geoff received 15 percent of the 6,000 votes cast, \"statement 2\" :In a recent election , Geoff received less than 75 percent of the 6,000 votes cast, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Votes_cast_s1=6000\nVotes_cast_s2=6000\nif Votes_cast_s1 is None or Votes_cast_s2 is None:\n print(\"neutral\")\nelif Votes_cast_s1 == Votes_cast_s2:\n print(\"Entailment\")\nelif Votes_cast_s1 != Votes_cast_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 5400 among John , Jose & Binoy in the ration 2 : 4 : 6, \"statement 2\" :less than 5400 among John , Jose & Binoy in the ration 2 : 4 : 6, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Among_jhon_s1=5400\nAmong_jhon_s2=5400-1\nif Among_jhon_s1 is None or Among_jhon_s2 is None:\n print(\"neutral\")\nelif Among_jhon_s1 == Among_jhon_s2:\n print(\"Entailment\")\nelif Among_jhon_s1 != Among_jhon_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": On the first day of her vacation , Louisa traveled 100 miles, \"statement 2\" :On the first day of her vacation , Louisa traveled 600 miles, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Louisa_Traveled_s1=100\nLouisa_Traveled_s2=600\nif Louisa_Traveled_s1 is None or Louisa_Traveled_s2 is None:\n print(\"neutral\")\nelif Louisa_Traveled_s1 == Louisa_Traveled_s2:\n print(\"Entailment\")\nelif Louisa_Traveled_s1 != Louisa_Traveled_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Susan , Tim , Matt and Kim need to be seated in 4 identical chairs in straight line so that Susan is seated always left to Tim, \"statement 2\" :Susan , Tim , Matt and Kim need to be seated in more than 2 identical chairs in straight line so that Susan is seated always left to Tim, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Chairs_s1=4\nChairs_s2=2+2\nif Chairs_s1 is None or Chairs_s2 is None:\n print(\"neutral\")\nelif Chairs_s1 == Chairs_s2:\n print(\"Entailment\")\nelif Chairs_s1 != Chairs_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the distance between their homes is 50 kilometers , Maxwell ' s walking speed is 3 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"statement 2\" :If the distance between their homes is more than 50 kilometers , Maxwell ' s walking speed is 3 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Distnace_between_home_s1=50\nDistnace_between_home_s2=50+1\nif Distnace_between_home_s1 is None or Distnace_between_home_s2 is None:\n print(\"neutral\")\nelif Distnace_between_home_s1 == Distnace_between_home_s2:\n print(\"Entailment\")\nelif Distnace_between_home_s1 != Distnace_between_home_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Emily has a cylindrical water bottle that can hold 1000 \u03c0 cubic centimeters of water, \"statement 2\" :Emily has a cylindrical water bottle that can hold less than 6000 \u03c0 cubic centimeters of water, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Hold_water_s1=1000\nHold_water_s2=6000\nif Hold_water_s1 is None or Hold_water_s2 is None:\n print(\"neutral\")\nelif Hold_water_s1 <= Hold_water_s2:\n print(\"Entailment\")\nelif Hold_water_s1 != Hold_water_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained 91 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained 81 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dacid_marks_s1=91,65,82,67,85\nDacid_marks_s2=81,65,82,67,85\nif Dacid_marks_s1 is None or Dacid_marks_s2 is None:\n print(\"neutral\")\nelif Dacid_marks_s1 == Dacid_marks_s2:\n print(\"Entailment\")\nelif Dacid_marks_s1 != Dacid_marks_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Monika purchased a pressure cooker at more than 5 / 10 th of its selling price and sold it at 8 % more than its Selling Price, \"statement 2\" :Monika purchased a pressure cooker at 9 / 10 th of its selling price and sold it at 8 % more than its Selling Price, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Monika_purchased_s1=5/10\nMonika_purchased_s1=None\nMonika_purchased_s2=9/10\nif Monika_purchased_s1 is None or Monika_purchased_s2 is None:\n print(\"neutral\")\nelif Monika_purchased_s1 == Monika_purchased_s2:\n print(\"Entailment\")\nelif Monika_purchased_s1 != Monika_purchased_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The association says there are 2,000 for-profit haunts across the country , plus another 1,000 houses run for charity ., \"statement 2\" :About a third of the 3,000 houses in the United States benefit charity , group says, \"options: \" Entailment or neutral?", + "Output Program": [ + "Houses_in_country_s1=2000+1000\nCharity_benifit_house_s2=3000\nif Houses_in_country_s1 is None or Charity_benifit_house_s2 is None:\n print(\"neutral\")\nelif Houses_in_country_s1 == Charity_benifit_house_s2:\n print(\"Entailment\")\nelif Houses_in_country_s1 != Charity_benifit_house_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Elena purchased a total of 12 of these pens for $ 42.00 , how many brand X pens did she purchase ?, \"statement 2\" :If Elena purchased a total of less than 12 of these pens for $ 42.00 , how many brand X pens did she purchase ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Elena_purchased_pens_s1=12\nElena_purchased_pens_s2=12-1\nif Elena_purchased_pens_s1 is None or Elena_purchased_pens_s2 is None:\n print(\"neutral\")\nelif Elena_purchased_pens_s1 == Elena_purchased_pens_s2:\n print(\"Entailment\")\nelif Elena_purchased_pens_s1 != Elena_purchased_pens_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Altogether , Steve is spending 6 hours a day on the roads, \"statement 2\" :Altogether , Steve is spending more than 1 hours a day on the roads, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Steve_Spending_hours_s1=6\nSteve_Spending_hours_s2=1\nif Steve_Spending_hours_s1 is None or Steve_Spending_hours_s2 is None:\n print(\"neutral\")\nelif Steve_Spending_hours_s1 >= Steve_Spending_hours_s2:\n print(\"Entailment\")\nelif Steve_Spending_hours_s1 != Steve_Spending_hours_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In Spain 's Copa Del Rey , Real Madrid thumped Real Murcia 5-1 at home to avoid the domestic cup upsets of recent seasons ., \"statement 2\" :Real Madrid thrash Real Murcia 5-1 to progress in Copa Del Rey, \"options: \" Entailment or neutral?", + "Output Program": [ + "Real_madird_thumped_real_murica_s1=5,1\nReal_madird_thumped_real_murica_s2=5,1\nif Real_madird_thumped_real_murica_s1 is None or Real_madird_thumped_real_murica_s2 is None:\n print(\"neutral\")\nelif Real_madird_thumped_real_murica_s1 == Real_madird_thumped_real_murica_s2:\n print(\"Entailment\")\nelif Real_madird_thumped_real_murica_s1 != Real_madird_thumped_real_murica_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ravi can do a piece of work in more than 14 days while Prakash can do it in 40 days, \"statement 2\" :Ravi can do a piece of work in 24 days while Prakash can do it in 40 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ravi_can_do_work_s1=14\nRavi_can_do_work_s1=None\nRavi_can_do_work_s2=24\nif Ravi_can_do_work_s1 is None or Ravi_can_do_work_s2 is None:\n print(\"neutral\")\nelif Ravi_can_do_work_s1 == Ravi_can_do_work_s2:\n print(\"Entailment\")\nelif Ravi_can_do_work_s1 != Ravi_can_do_work_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Along with those killed , four French soldiers and three Afghan civilians were injured ., \"statement 2\" :Five French soldiers , 1 Afghan civilian are killed, \"options: \" Entailment or neutral?", + "Output Program": [ + "Killed_people_and_french_Soldiers_s1=None\nAfgan_civillian_and_French_soldires_killed_s2=6\nif Killed_people_and_french_Soldiers_s1 is None or Afgan_civillian_and_French_soldires_killed_s2 is None:\n print(\"neutral\")\nelif Killed_people_and_french_Soldiers_s1 == Afgan_civillian_and_French_soldires_killed_s2:\n print(\"Entailment\")\nelif Killed_people_and_french_Soldiers_s1 != Afgan_civillian_and_French_soldires_killed_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Madhav Kumar Nepal of the Communist Party of Nepal ( Unified Marxist-Leninist ) was the only person to serve as a candidate for the post after he received backing from more than 20 of the 25 parties in parliament ., \"statement 2\" :Nepal , 56 , is a former general secretary of the Communist Party, \"options: \" Entailment or neutral?", + "Output Program": [ + "Candidate_post_after_reccive_backing_s1=20\nCandidate_post_after_reccive_backing_s1=None\nformal_genral_secretry_s2=56\nif Candidate_post_after_reccive_backing_s1 is None or formal_genral_secretry_s2 is None:\n print(\"neutral\")\nelif Candidate_post_after_reccive_backing_s1 == formal_genral_secretry_s2:\n print(\"Entailment\")\nelif Candidate_post_after_reccive_backing_s1 != formal_genral_secretry_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many liters of blue paint must be added to 24 liters of Fuchsia to change it to Mauve paint ?, \"statement 2\" :How many liters of blue paint must be added to less than 24 liters of Fuchsia to change it to Mauve paint ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Liters_of_fuchsia_s1=24\nLiters_of_fuchsia_s2=24-1\nif Liters_of_fuchsia_s1 is None or Liters_of_fuchsia_s2 is None:\n print(\"neutral\")\nelif Liters_of_fuchsia_s1 == Liters_of_fuchsia_s2:\n print(\"Entailment\")\nelif Liters_of_fuchsia_s1 != Liters_of_fuchsia_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary works in a restaurant a maximum of more than 60 hours, \"statement 2\" :Mary works in a restaurant a maximum of 70 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Mary_work_s1=60\nMary_work_s1=None\nMary_work_s2=70\nif Mary_work_s1 is None or Mary_work_s2 is None:\n print(\"neutral\")\nelif Mary_work_s1 == Mary_work_s2:\n print(\"Entailment\")\nelif Mary_work_s1 != Mary_work_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many different possible committees of more than 2 people can be selected from these 8 people if at least one of either Jane or Thomas is to be selected ?, \"statement 2\" :How many different possible committees of 3 people can be selected from these 8 people if at least one of either Jane or Thomas is to be selected ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "People_selected_s1=2\nPeople_selected_s1=None\nPeople_selected_s2=3\nif People_selected_s1 is None or People_selected_s2 is None:\n print(\"neutral\")\nelif People_selected_s1 == People_selected_s2:\n print(\"Entailment\")\nelif People_selected_s1 != People_selected_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": I 'd rather be na ve , heartfelt and hopeful than resigned to say nothing for fear of misinterpretation and retribution , '' he wrote ., \"statement 2\" :'' Call me na ve , '' Vedder said in website post, \"options: \" Entailment or neutral?", + "Output Program": [ + "id_rather_be_na_ve_heratfelt_s1=None\nCall_me_na_ve_s2=None\nif id_rather_be_na_ve_heratfelt_s1 is None or Call_me_na_ve_s2 is None:\n print(\"neutral\")\nelif id_rather_be_na_ve_heratfelt_s1 == Call_me_na_ve_s2:\n print(\"Entailment\")\nelif id_rather_be_na_ve_heratfelt_s1 != Call_me_na_ve_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": However , after Mary and Alan eat four apples , the ratio changes to 3 to 2, \"statement 2\" :However , after Mary and Alan eat four apples , the ratio changes to less than 5 to 2, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ratio_changes_s1=3,2\nRatio_changes_s2=5,2\nif Ratio_changes_s1 is None or Ratio_changes_s2 is None:\n print(\"neutral\")\nelif Ratio_changes_s1 <= Ratio_changes_s2:\n print(\"Entailment\")\nelif Ratio_changes_s1 != Ratio_changes_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Karen sold 36.0 boxes of Tagalongs, \"statement 2\" :Karen picked up 3.0 cases of 12.0 boxes, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Karen_Sold_boxes_s1=36\nKaren_Sold_boxes_s2=12*3\nif Karen_Sold_boxes_s1 is None or Karen_Sold_boxes_s2 is None:\n print(\"neutral\")\nelif Karen_Sold_boxes_s1 == Karen_Sold_boxes_s2:\n print(\"Entailment\")\nelif Karen_Sold_boxes_s1 != Karen_Sold_boxes_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jagtap purchases more than 20 kg of wheat at the rate of 11.50 per kg and 20 kg of wheat at the rate of 14.25 per kg, \"statement 2\" :Jagtap purchases 30 kg of wheat at the rate of 11.50 per kg and 20 kg of wheat at the rate of 14.25 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jagtap_purchased_wheat_s1=20\nJagtap_purchased_wheat_s1=None\nJagtap_purchased_wheat_s2=30\nif Jagtap_purchased_wheat_s1 is None or Jagtap_purchased_wheat_s2 is None:\n print(\"neutral\")\nelif Jagtap_purchased_wheat_s1 == Jagtap_purchased_wheat_s2:\n print(\"Entailment\")\nelif Jagtap_purchased_wheat_s1 != Jagtap_purchased_wheat_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The average number of shirts with Salman , Ambani and Dalmiya is more than 30 , if all of them reached a shopping mall in Delhi and purchased 3 shirts each of them then average number of shirt each of them now has, \"statement 2\" :The average number of shirts with Salman , Ambani and Dalmiya is 60 , if all of them reached a shopping mall in Delhi and purchased 3 shirts each of them then average number of shirt each of them now has, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Average_number_of_shirts_s1=30\nAverage_number_of_shirts_s1=None\nAverage_number_of_shirts_s2=60\nif Average_number_of_shirts_s1 is None or Average_number_of_shirts_s2 is None:\n print(\"neutral\")\nelif Average_number_of_shirts_s1 == Average_number_of_shirts_s2:\n print(\"Entailment\")\nelif Average_number_of_shirts_s1 != Average_number_of_shirts_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Elena purchased a total of 12 of these pens for $ 20.00 , how many brand X pens did she purchase ?, \"statement 2\" :If Elena purchased a total of 82 of these pens for $ 20.00 , how many brand X pens did she purchase ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Elena_purchased_pen_s1=12\nElena_purchased_pen_s2=82\nif Elena_purchased_pen_s1 is None or Elena_purchased_pen_s2 is None:\n print(\"neutral\")\nelif Elena_purchased_pen_s1 == Elena_purchased_pen_s2:\n print(\"Entailment\")\nelif Elena_purchased_pen_s1 != Elena_purchased_pen_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 5 years ago Kate was 5 times as old as her Son, \"statement 2\" :3 years ago Kate was 5 times as old as her Son, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Kate_age_s1=5\nKate_age_s2=3\nif Kate_age_s1 is None or Kate_age_s2 is None:\n print(\"neutral\")\nelif Kate_age_s1 == Kate_age_s2:\n print(\"Entailment\")\nelif Kate_age_s1 != Kate_age_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 32 stations between Ernakulam and Chennai, \"statement 2\" :There are less than 32 stations between Ernakulam and Chennai, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Station_between_Ernakulam_and_chennai_s1=32\nStation_between_Ernakulam_and_chennai_s2=32-1\nif Station_between_Ernakulam_and_chennai_s1 is None or Station_between_Ernakulam_and_chennai_s2 is None:\n print(\"neutral\")\nelif Station_between_Ernakulam_and_chennai_s1 == Station_between_Ernakulam_and_chennai_s2:\n print(\"Entailment\")\nelif Station_between_Ernakulam_and_chennai_s1 != Station_between_Ernakulam_and_chennai_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A restaurant served 9.0 pizzas during lunch and 6.0 during dinner today ., \"statement 2\" :15.0 pizzas were served today, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Served_pizza_s1=6+9\nServed_pizza_today_s2=15\nif Served_pizza_s1 is None or Served_pizza_today_s2 is None:\n print(\"neutral\")\nelif Served_pizza_s1 == Served_pizza_today_s2:\n print(\"Entailment\")\nelif Served_pizza_s1 != Served_pizza_today_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Andrew purchased 11 kg of grapes at the rate of 98 per kg and 7 kg of mangoes at the rate of 50 per kg, \"statement 2\" :Andrew purchased less than 51 kg of grapes at the rate of 98 per kg and 7 kg of mangoes at the rate of 50 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Andrew_purchased_grapes_s1=98\nAndrew_purchased_grapes_s2=98\nif Andrew_purchased_grapes_s1 is None or Andrew_purchased_grapes_s2 is None:\n print(\"neutral\")\nelif Andrew_purchased_grapes_s1 == Andrew_purchased_grapes_s2:\n print(\"Entailment\")\nelif Andrew_purchased_grapes_s1 != Andrew_purchased_grapes_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The average of Pratyush ' s marks in 7 subjects is 75, \"statement 2\" :The average of Pratyush ' s marks in 3 subjects is 75, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Pratush_marks_in_subject_s1=7\nPratush_marks_in_subject_s2=3\nif Pratush_marks_in_subject_s1 is None or Pratush_marks_in_subject_s2 is None:\n print(\"neutral\")\nelif Pratush_marks_in_subject_s1 == Pratush_marks_in_subject_s2:\n print(\"Entailment\")\nelif Pratush_marks_in_subject_s1 != Pratush_marks_in_subject_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Amar takes as much time in running less than 28 meters as a car takes in covering 48 meters, \"statement 2\" :Amar takes as much time in running 18 meters as a car takes in covering 48 meters, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Amar_runs_meters_s1=28\nAmar_runs_meters_s1=None\nAmar_runs_meters_s2=18\nif Amar_runs_meters_s1 is None or Amar_runs_meters_s2 is None:\n print(\"neutral\")\nelif Amar_runs_meters_s1 == Amar_runs_meters_s2:\n print(\"Entailment\")\nelif Amar_runs_meters_s1 != Amar_runs_meters_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Manchester City 's designs on the English Premier League title were dealt an early blow as an injury time penalty from Darren Bent handed Sunderland a shock 1-0 win ., \"statement 2\" :Sunderland beat Manchester City 1-0 at the Stadium of Light, \"options: \" Entailment or neutral?", + "Output Program": [ + "Suderland_shock_win_s1=None\nSunderland_beat_manchester__s2=1,0\nif Suderland_shock_win_s1 is None or Sunderland_beat_manchester__s2 is None:\n print(\"neutral\")\nelif Suderland_shock_win_s1 == Sunderland_beat_manchester__s2:\n print(\"Entailment\")\nelif Suderland_shock_win_s1 != Sunderland_beat_manchester__s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mary can do a piece of work in 26 days, \"statement 2\" :Mary can do a piece of work in less than 56 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Mary_can_do_work_s1=26\nMary_can_do_work_s2=56\nif Mary_can_do_work_s1 is None or Mary_can_do_work_s2 is None:\n print(\"neutral\")\nelif Mary_can_do_work_s1 <= Mary_can_do_work_s2:\n print(\"Entailment\")\nelif Mary_can_do_work_s1 != Mary_can_do_work_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Nagar the building were numbered from 1 to 100, \"statement 2\" :Nagar the building were numbered from less than 1 to 100, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Nagar_numbered_s1=1,100\nNagar_numbered_s2=1,99\nif Nagar_numbered_s1 is None or Nagar_numbered_s2 is None:\n print(\"neutral\")\nelif Nagar_numbered_s1 == Nagar_numbered_s2:\n print(\"Entailment\")\nelif Nagar_numbered_s1 != Nagar_numbered_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In 1998 , Mr Shivkumar invested another additional amount of 10000 and Mr Suresh joined them with an amount of 35000, \"statement 2\" :In less than 3998 , Mr Shivkumar invested another additional amount of 10000 and Mr Suresh joined them with an amount of 35000, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Suresh_joined_amount_s1=35000\nSuresh_joined_amount_s2=35000\nif Suresh_joined_amount_s1 is None or Suresh_joined_amount_s2 is None:\n print(\"neutral\")\nelif Suresh_joined_amount_s1 == Suresh_joined_amount_s2:\n print(\"Entailment\")\nelif Suresh_joined_amount_s1 != Suresh_joined_amount_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joe drives 600 miles at 60 miles per hour , and then he drives the next 120 miles at 40 miles per hour, \"statement 2\" :Joe drives 100 miles at 60 miles per hour , and then he drives the next 120 miles at 40 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "joe_drives_s1=600\njoe_drives_s2=100\nif joe_drives_s1 is None or joe_drives_s2 is None:\n print(\"neutral\")\nelif joe_drives_s1 == joe_drives_s2:\n print(\"Entailment\")\nelif joe_drives_s1 != joe_drives_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Leona Helmsley , the self-proclaimed queen of a luxury hotel chain , was sentenced Tuesday to four years in federal prison ., \"statement 2\" :Leona Helmsley was given a four year sentence ., \"options: \" Entailment or neutral?", + "Output Program": [ + "Queen_of_a_luxury_hotel_chain__federal_prison_s1=4\nLeona_helmsley_was_given_sentence_s2=4\nif Queen_of_a_luxury_hotel_chain__federal_prison_s1 is None or Leona_helmsley_was_given_sentence_s2 is None:\n print(\"neutral\")\nelif Queen_of_a_luxury_hotel_chain__federal_prison_s1 == Leona_helmsley_was_given_sentence_s2:\n print(\"Entailment\")\nelif Queen_of_a_luxury_hotel_chain__federal_prison_s1 != Leona_helmsley_was_given_sentence_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Thompson sought to break 392 mph to set the record for his vehicle class and hoped to be the first to drive a piston engine car 450 mph ., \"statement 2\" :He has come within 20 mph of record for all piston engine cars, \"options: \" Entailment or neutral?", + "Output Program": [ + "Thompson_souht_break_s1=392\nRecord_for_all_piston_engine_cars_s2=20\nRecord_for_all_piston_engine_cars_s2=None\nif Thompson_souht_break_s1 is None or Record_for_all_piston_engine_cars_s2 is None:\n print(\"neutral\")\nelif Thompson_souht_break_s1 == Record_for_all_piston_engine_cars_s2:\n print(\"Entailment\")\nelif Thompson_souht_break_s1 != Record_for_all_piston_engine_cars_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jane and Thomas are among the more than 1 people from which a committee of 3 people is to be selected, \"statement 2\" :Jane and Thomas are among the 7 people from which a committee of 3 people is to be selected, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jane_and_thomas_are_among_s1=1\nJane_and_thomas_are_among_s1=None\nJane_and_thomas_are_among_s2=7\nif Jane_and_thomas_are_among_s1 is None or Jane_and_thomas_are_among_s2 is None:\n print(\"neutral\")\nelif Jane_and_thomas_are_among_s1 == Jane_and_thomas_are_among_s2:\n print(\"Entailment\")\nelif Jane_and_thomas_are_among_s1 != Jane_and_thomas_are_among_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rahim bought 27 books for Rs, \"statement 2\" :Rahim bought less than 67 books for Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Rahim_bought_books_s1=27\nRahim_bought_books_s2=67\nif Rahim_bought_books_s1 is None or Rahim_bought_books_s2 is None:\n print(\"neutral\")\nelif Rahim_bought_books_s1 <= Rahim_bought_books_s2:\n print(\"Entailment\")\nelif Rahim_bought_books_s1 != Rahim_bought_books_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Maddie has 15 apples , if she give 8 to mike , how many does she have left ?, \"statement 2\" :Maddie has less than 25 apples , if she give 8 to mike , how many does she have left ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "maddie_apples_s1=15-8\nmaddie_apples_s2=15-8\nif maddie_apples_s1 is None or maddie_apples_s2 is None:\n print(\"neutral\")\nelif maddie_apples_s1 == maddie_apples_s2:\n print(\"Entailment\")\nelif maddie_apples_s1 != maddie_apples_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Gokul is 2 years younger to Madan whose age is 5 years , then what is the age of Arun ?, \"statement 2\" :If Gokul is less than 8 years younger to Madan whose age is 5 years , then what is the age of Arun ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Gokul_Younger_s1=2\nGokul_Younger_s2=8\nif Gokul_Younger_s1 is None or Gokul_Younger_s2 is None:\n print(\"neutral\")\nelif Gokul_Younger_s1 <= Gokul_Younger_s2:\n print(\"Entailment\")\nelif Gokul_Younger_s1 != Gokul_Younger_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Raju has scored less than 650 marks and was declared failed by 22 marks, \"statement 2\" :Raju has scored 250 marks and was declared failed by 22 marks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Raju_marks_s1=650\nRaju_marks_s1=None\nRaju_marks_s2=250\nif Raju_marks_s1 is None or Raju_marks_s2 is None:\n print(\"neutral\")\nelif Raju_marks_s1 == Raju_marks_s2:\n print(\"Entailment\")\nelif Raju_marks_s1 != Raju_marks_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jaclyn buys $ 20 000 worth of debentures in a company, \"statement 2\" :Jaclyn buys $ less than 20 000 worth of debentures in a company, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jaclyn_buys_debentures_s1=20000\nJaclyn_buys_debentures_s2=20000-1\nif Jaclyn_buys_debentures_s1 is None or Jaclyn_buys_debentures_s2 is None:\n print(\"neutral\")\nelif Jaclyn_buys_debentures_s1 == Jaclyn_buys_debentures_s2:\n print(\"Entailment\")\nelif Jaclyn_buys_debentures_s1 != Jaclyn_buys_debentures_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After they have worked together for 12 days peter stops and Peter completes the remaining work in 10 days, \"statement 2\" :After they have worked together for less than 32 days peter stops and Peter completes the remaining work in 10 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Work_together_s1=12\nWork_together_s2=32\nif Work_together_s1 is None or Work_together_s2 is None:\n print(\"neutral\")\nelif Work_together_s1 <= Work_together_s2:\n print(\"Entailment\")\nelif Work_together_s1 != Work_together_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If they do n ' t die for any reason James can make new farm in 6 years with baby goat and older goats, \"statement 2\" :If they do n ' t die for any reason James can make new farm in less than 7 years with baby goat and older goats, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "James_make_new_fram_in_year_s1=6\nJames_make_new_fram_in_year_s2=6-1\nif James_make_new_fram_in_year_s1 is None or James_make_new_fram_in_year_s2 is None:\n print(\"neutral\")\nelif James_make_new_fram_in_year_s1 == James_make_new_fram_in_year_s2:\n print(\"Entailment\")\nelif James_make_new_fram_in_year_s1 != James_make_new_fram_in_year_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 5 % people of a village in Sri Lanka died by bombardment , 20 % of the remainder left the village on account of fear, \"statement 2\" :more than 1 % people of a village in Sri Lanka died by bombardment , 20 % of the remainder left the village on account of fear, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Died_by_bombbardment_s1=5\nDied_by_bombbardment_s2=1+4\nif Died_by_bombbardment_s1 is None or Died_by_bombbardment_s2 is None:\n print(\"neutral\")\nelif Died_by_bombbardment_s1 == Died_by_bombbardment_s2:\n print(\"Entailment\")\nelif Died_by_bombbardment_s1 != Died_by_bombbardment_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The total of the ages of Amar , Akbar and Anthony is 40 years, \"statement 2\" :The total of the ages of Amar , Akbar and Anthony is less than 70 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Amar_Akbar_Anthony_age_s1=40\nAges_of_Amar_akabr_anthoy_s2=70\nif Amar_Akbar_Anthony_age_s1 is None or Ages_of_Amar_akabr_anthoy_s2 is None:\n print(\"neutral\")\nelif Amar_Akbar_Anthony_age_s1 <= Ages_of_Amar_akabr_anthoy_s2:\n print(\"Entailment\")\nelif Amar_Akbar_Anthony_age_s1 != Ages_of_Amar_akabr_anthoy_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sacha runs at a constant speed of less than 7 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"statement 2\" :Sacha runs at a constant speed of 6 meters per second , and Bruno runs at a constant speed of 5 meters per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sacha_runs_s1=7\nSacha_runs_s1=None\nSacha_runs_s2=6\nif Sacha_runs_s1 is None or Sacha_runs_s2 is None:\n print(\"neutral\")\nelif Sacha_runs_s1 == Sacha_runs_s2:\n print(\"Entailment\")\nelif Sacha_runs_s1 != Sacha_runs_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": While driving from City A to City B , Cara drives at a constant speed of 30 miles per hour, \"statement 2\" :While driving from City A to City B , Cara drives at a constant speed of more than 10 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Driving_A_to_B_s1=30\nDriving_A_to_B_s2=10\nif Driving_A_to_B_s1 is None or Driving_A_to_B_s2 is None:\n print(\"neutral\")\nelif Driving_A_to_B_s1 >= Driving_A_to_B_s2:\n print(\"Entailment\")\nelif Driving_A_to_B_s1 != Driving_A_to_B_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Meg and Bob are among the more than 2 participants in a cycling race, \"statement 2\" :Meg and Bob are among the 3 participants in a cycling race, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Participants_Cycling_race_s1=2\nParticipants_Cycling_race_s1=None\nParticipants_Cycling_race_s2=3\nif Participants_Cycling_race_s1 is None or Participants_Cycling_race_s2 is None:\n print(\"neutral\")\nelif Participants_Cycling_race_s1 == Participants_Cycling_race_s2:\n print(\"Entailment\")\nelif Participants_Cycling_race_s1 != Participants_Cycling_race_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a BCCI meeting there are less than 31 people, \"statement 2\" :In a BCCI meeting there are 11 people, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_in_BCCI_Meeting__s1=31\npeople_in_BCCI_Meeting__s1=None\npeople_in_BCCI_Meeting__s2=11\nif people_in_BCCI_Meeting__s1 is None or people_in_BCCI_Meeting__s2 is None:\n print(\"neutral\")\nelif people_in_BCCI_Meeting__s1 == people_in_BCCI_Meeting__s2:\n print(\"Entailment\")\nelif people_in_BCCI_Meeting__s1 != people_in_BCCI_Meeting__s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sally has 9.0 orange balloons and 4.0 blue balloons and she found 2.0 more of the orange balloons , \"statement 2\" :Sally has 11.0 orange balloons now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Sally_orange_s1=9+2\nSally_orange_s2=11\nif Sally_orange_s1 is None or Sally_orange_s2 is None:\n print(\"neutral\")\nelif Sally_orange_s1 == Sally_orange_s2:\n print(\"Entailment\")\nelif Sally_orange_s1 != Sally_orange_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Jack ' s score was within 2 standard deviations of the mean , what is the lowest score he could have received ?, \"statement 2\" :If Jack ' s score was within less than 6 standard deviations of the mean , what is the lowest score he could have received ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jack_score_s1=2\nJack_score_s2=6\nif Jack_score_s1 is None or Jack_score_s2 is None:\n print(\"neutral\")\nelif Jack_score_s1 <= Jack_score_s2:\n print(\"Entailment\")\nelif Jack_score_s1 != Jack_score_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Dan works alone for 8 hours and then stops , how many hours will it take Annie , working alone , to complete the job ?, \"statement 2\" :If Dan works alone for more than 3 hours and then stops , how many hours will it take Annie , working alone , to complete the job ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dan_works_s1=8\nDan_works_s2=3\nif Dan_works_s1 is None or Dan_works_s2 is None:\n print(\"neutral\")\nelif Dan_works_s1 >= Dan_works_s2:\n print(\"Entailment\")\nelif Dan_works_s1 != Dan_works_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jaclyn buys $ 20 000 worth of debentures in a company, \"statement 2\" :Jaclyn buys $ less than 80 000 worth of debentures in a company, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jaclyn_buys_debentures_s1=20000\nJaclyn_buys_debentures_s2=80000\nif Jaclyn_buys_debentures_s1 is None or Jaclyn_buys_debentures_s2 is None:\n print(\"neutral\")\nelif Jaclyn_buys_debentures_s1 <= Jaclyn_buys_debentures_s2:\n print(\"Entailment\")\nelif Jaclyn_buys_debentures_s1 != Jaclyn_buys_debentures_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sheila works more than 4 hours per day on Monday , Wednesday and Friday , and 6 hours per day on Tuesday and Thursday, \"statement 2\" :Sheila works 8 hours per day on Monday , Wednesday and Friday , and 6 hours per day on Tuesday and Thursday, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sheila_work_s1=4\nSheila_work_s1=None\nSheila_work_s2=8\nif Sheila_work_s1 is None or Sheila_work_s2 is None:\n print(\"neutral\")\nelif Sheila_work_s1 == Sheila_work_s2:\n print(\"Entailment\")\nelif Sheila_work_s1 != Sheila_work_s2:\n print(\"contradiction\")\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At Veridux Corporation , there are 250 employees, \"statement 2\" :At Veridux Corporation , there are 650 employees, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Employee_s1=250\nEmployee_s2=650\nif Employee_s1 is None or Employee_s2 is None:\n print(\"neutral\")\nelif Employee_s1 == Employee_s2:\n print(\"Entailment\")\nelif Employee_s1 != Employee_s2:\n print(\"contradiction\")\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": An estimated 100,000 ethnic Slovaks , most of them living in the Czech Republic , have applied to relinquish their citizenship since Czechoslovakia broke into separate states ., \"statement 2\" :100,000 Slovaks have applied to change citizenship ., \"options: \" Entailment or neutral?", + "Output Program": [ + "Ethnic_Slovks_s1=100000\nEthnic_Slovks_s2=100000\nif Ethnic_Slovks_s1 is None or Ethnic_Slovks_s2 is None:\n print(\"neutral\")\nelif Ethnic_Slovks_s1 == Ethnic_Slovks_s2:\n print(\"Entailment\")\nelif Ethnic_Slovks_s1 != Ethnic_Slovks_s2:\n print(\"contradiction\")\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained more than 56 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained 76 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dacid_marks_s1=56,65,82,67,85\nDacid_marks_s1=None\nDacid_marks_s2=76,65,82,67,85\nif Dacid_marks_s1 is None or Dacid_marks_s2 is None:\n print(\"neutral\")\nelif Dacid_marks_s1 == Dacid_marks_s2:\n print(\"Entailment\")\nelif Dacid_marks_s1 != Dacid_marks_s2:\n print(\"contradiction\")\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Adam spent less than 6 / 6 of his lifetime in adolescence, \"statement 2\" :Adam spent 1 / 6 of his lifetime in adolescence, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Adam_spent_s1=6/6\nAdam_spent_s1=None\nAdam_spent_s2=1/6\nif Adam_spent_s1 is None or Adam_spent_s2 is None:\n print(\"neutral\")\nelif Adam_spent_s1 == Adam_spent_s2:\n print(\"Entailment\")\nelif Adam_spent_s1 != Adam_spent_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Melanie had 7.0 dimes in her bank and her dad gave her 8.0 dimes, and her mother gave her 4.0 dimes , \"statement 2\" :Melanie has 19.0 dimes now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Mealanie_dimes_s1=7+8+4\nMealanie_dimes_s2=19\nif Mealanie_dimes_s1 is None or Mealanie_dimes_s2 is None:\n print(\"neutral\")\nelif Mealanie_dimes_s1 == Mealanie_dimes_s2:\n print(\"Entailment\")\nelif Mealanie_dimes_s1 != Mealanie_dimes_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Isha\u2019s pencil is 12.0 cubes long, and she gets another pencil that is 12.0 cubes long, \"statement 2\" :Both pencils are 26.0 cubes long, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Isha_pencil_long_s1=24\nIsha_pencil_long_s2=26\nif Isha_pencil_long_s1 is None or Isha_pencil_long_s2 is None:\n print(\"neutral\")\nelif Isha_pencil_long_s1 == Isha_pencil_long_s2:\n print(\"Entailment\")\nelif Isha_pencil_long_s1 != Isha_pencil_long_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jane's mom made 12.0 cinnamon swirls for each person, and there are 3.0 people eating, \"statement 2\" :36.0 rolls were made in total, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Cinnamon_swirls_s1=12*3\nRolls_made_s2=36\nif Cinnamon_swirls_s1 is None or Rolls_made_s2 is None:\n print(\"neutral\")\nelif Cinnamon_swirls_s1 == Rolls_made_s2:\n print(\"Entailment\")\nelif Cinnamon_swirls_s1 != Rolls_made_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Mike has 35.0 books in his library and he bought 56.0 more books at a yard sale over the weekend, \"statement 2\" :Mike has 92.0 books now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Mike_books_s1=35+56\nMike_books_s2=92\nif Mike_books_s1 is None or Mike_books_s2 is None:\n print(\"neutral\")\nelif Mike_books_s1 == Mike_books_s2:\n print(\"Entailment\")\nelif Mike_books_s1 != Mike_books_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 9.0 friends were at a restaurant, and they were joined by 7.0 more people and each person ate 4.0 wings, \"statement 2\" :The total amount of wings consumed by the group is 62.0, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Poeple_total_s1=16*4\nPoeple_total_s2=62\nif Poeple_total_s1 is None or Poeple_total_s2 is None:\n print(\"neutral\")\nelif Poeple_total_s1 == Poeple_total_s2:\n print(\"Entailment\")\nelif Poeple_total_s1 != Poeple_total_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": One hour after Matthew started waking from w to y , a distance of 45 km , Johnny started walking along the same road from y to w, \"statement 2\" :One hour after Matthew started waking from w to y , a distance of 85 km , Johnny started walking along the same road from y to w, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Matthew_waking_s1=45\nMatthew_waking_s2=85\nif Matthew_waking_s1 is None or Matthew_waking_s2 is None:\n print(\"neutral\")\nelif Matthew_waking_s1 == Matthew_waking_s2:\n print(\"Entailment\")\nelif Matthew_waking_s1 != Matthew_waking_s2:\n print(\"contradiction\")\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Dacid obtained more than 41 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"statement 2\" :Dacid obtained 91 , 65 , 82 , 67 and 85 marks ( out of 100 ) in English , Mathematics , Physics , Chemistry and Biology, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nDacid_marks_s1 = None\nDacid_marks_s2 = 91,62,82,87\n\nif Dacid_marks_s1 is None or Dacid_marks_s2 is None:\n print('neutral')\n\nelif Dacid_marks_s1 == Dacid_marks_s2:\n print('Entailment')\n\nelif Dacid_marks_s1 != Dacid_marks_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The dead included 11 inmates and six guards , Durango state public safety officials said in a statement ., \"statement 2\" :11 inmates and 6 guards are killed , Durango public safety officials report, \"options: \" Entailment or neutral?", + "Output Program": [ + "Dead_s1 = 11,6\nDead_s2 = 11,6\n\nif Dead_s1 is None or Dead_s2 is None:\n print('neutral')\n\nelif Dead_s1 == Dead_s2:\n print('Entailment')\n\nelif Dead_s1 != Dead_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Another survey of less than 250 people in the town of Angie found that 60 % preferred Brand A, \"statement 2\" :Another survey of 150 people in the town of Angie found that 60 % preferred Brand A, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Town_of_angie_s1 = None\nTown_of_angie_s2 = 150\n\nif Town_of_angie_s1 is None or Town_of_angie_s2 is None:\n print('neutral')\n\nelif Town_of_angie_s1 == Town_of_angie_s2:\n print('Entailment')\n\nelif Town_of_angie_s1 != Town_of_angie_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sandy attempts less than 70 sums and obtains 60 marks, \"statement 2\" :Sandy attempts 30 sums and obtains 60 marks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sandy_attempts_s1 = None\nSandy_attempts_s2 = 30\n\nif Sandy_attempts_s1 is None or Sandy_attempts_s2 is None:\n print('neutral')\n\nelif Sandy_attempts_s1 == Sandy_attempts_s2:\n print('Entailment')\n\nelif Sandy_attempts_s1 != Sandy_attempts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were 28.0 girls and 35.0 boys on the playground at recess., \"statement 2\" :7.0 more boys are there than girls, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Gilrs_and_boy_s1 = 7\nGilrs_and_boy_s2 = 7\n\nif Gilrs_and_boy_s1 is None or Gilrs_and_boy_s2 is None:\n print('neutral')\n\nelif Gilrs_and_boy_s1 == Gilrs_and_boy_s2:\n print('Entailment')\n\nelif Gilrs_and_boy_s1 != Gilrs_and_boy_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If an outfit consists of 1 shirt , 1 pair of jeans , and 1 pair of sneakers , how many different outfits does Jordan have ?, \"statement 2\" :If an outfit consists of less than 7 shirt , 1 pair of jeans , and 1 pair of sneakers , how many different outfits does Jordan have ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "An_out_fit_s1 = 1,1,1\nAn_out_fit_s2 = 1,1,1\n\nif An_out_fit_s1 is None or An_out_fit_s2 is None:\n print('neutral')\n\nelif An_out_fit_s1 == An_out_fit_s2:\n print('Entailment')\n\nelif An_out_fit_s1 != An_out_fit_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Alex joined him more than 7 months later , investing Rs, \"statement 2\" :Alex joined him 8 months later , investing Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Alex_joied_s1 = None\nAlex_joied_s2 = 8\n\nif Alex_joied_s1 is None or Alex_joied_s2 is None:\n print('neutral')\n\nelif Alex_joied_s1 == Alex_joied_s2:\n print('Entailment')\n\nelif Alex_joied_s1 != Alex_joied_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": John will be less than 6 times as old as Tom in 4 years, \"statement 2\" :John will be 2 times as old as Tom in 4 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jhon_old_s1 = None\nJhon_old_s2 = 2\n\nif Jhon_old_s1 is None or Jhon_old_s2 is None:\n print('neutral')\n\nelif Jhon_old_s1 == Jhon_old_s2:\n print('Entailment')\n\nelif Jhon_old_s1 != Jhon_old_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sean , who weighs 200 pounds , is in the elevator with two packages weighing 150 pounds and 280 pounds, \"statement 2\" :Sean , who weighs 300 pounds , is in the elevator with two packages weighing 150 pounds and 280 pounds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sean_weighs_s1 = 200\nSean_weighs_s2 = 300\n\nif Sean_weighs_s1 is None or Sean_weighs_s2 is None:\n print('neutral')\n\nelif Sean_weighs_s1 == Sean_weighs_s2:\n print('Entailment')\n\nelif Sean_weighs_s1 != Sean_weighs_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the ratio of their ages is more than 6 : 9 , how old is Sandy ?, \"statement 2\" :If the ratio of their ages is 7 : 9 , how old is Sandy ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Age_ratio_s1 = None\nAge_ratio_s2 = 7/9\n\nif Age_ratio_s1 is None or Age_ratio_s2 is None:\n print('neutral')\n\nelif Age_ratio_s1 == Age_ratio_s2:\n print('Entailment')\n\nelif Age_ratio_s1 != Age_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 205 total Tajima ' s are currently owned by the dealership, \"statement 2\" :less than 205 total Tajima ' s are currently owned by the dealership, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Total_tajima_s1 = 205\nTotal_tajima_s2 = 205-1\n\nif Total_tajima_s1 is None or Total_tajima_s2 is None:\n print('neutral')\n\nelif Total_tajima_s1 == Total_tajima_s2:\n print('Entailment')\n\nelif Total_tajima_s1 != Total_tajima_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many possible ways can less than 6 girls ( Rebecca , Kate , Ashley ) go on a date with 3 boys ( Peter , Kyle , Sam ) ?, \"statement 2\" :How many possible ways can 2 girls ( Rebecca , Kate , Ashley ) go on a date with 3 boys ( Peter , Kyle , Sam ) ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "girls_s1 = None\ngirls_s2 = 2\n\nif girls_s1 is None or girls_s2 is None:\n print('neutral')\n\nelif girls_s1 == girls_s2:\n print('Entailment')\n\nelif girls_s1 != girls_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The product of all the possible units digits of Sophie Germain primes greater than 4 is, \"statement 2\" :The product of all the possible units digits of Sophie Germain primes greater than less than 4 is, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Digit_of_Shophie_s1 = 4\nDigit_of_Shophie_s2 = 3\n\nif Digit_of_Shophie_s1 is None or Digit_of_Shophie_s2 is None:\n print('neutral')\n\nelif Digit_of_Shophie_s1 == Digit_of_Shophie_s2:\n print('Entailment')\n\nelif Digit_of_Shophie_s1 != Digit_of_Shophie_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": 25 % of students from 100 Science students are locals and 85 % of total 120 Commerce students are locals, \"statement 2\" :less than 85 % of students from 100 Science students are locals and 85 % of total 120 Commerce students are locals, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Local_student_s1 = 25\nLocal_student_s2 = 85\n\nif Local_student_s1 is None or Local_student_s2 is None:\n print('neutral')\n\nelif Local_student_s1 <= Local_student_s2:\n print('Entailment')\n\nelif Local_student_s1 != Local_student_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Paige's team won their dodgeball game and scored 41.0 points total, and Paige scored 11.0 of the points and everyone else scored 6.0 points each, \"statement 2\" :6.0 players were on her team, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Paige_scored_s1 = 11\nPaige_scored_s2 = 6\n\nif Paige_scored_s1 is None or Paige_scored_s2 is None:\n print('neutral')\n\nelif Paige_scored_s1 == Paige_scored_s2:\n print('Entailment')\n\nelif Paige_scored_s1 != Paige_scored_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Suresh can complete a job in 15 hours, \"statement 2\" :Suresh can complete a job in less than 85 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Suresh_complate_job_s1 = 15\nSuresh_complate_job_s2 = 85\n\nif Suresh_complate_job_s1 is None or Suresh_complate_job_s2 is None:\n print('neutral')\n\nelif Suresh_complate_job_s1 <= Suresh_complate_job_s2:\n print('Entailment')\n\nelif Suresh_complate_job_s1 != Suresh_complate_job_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The 41 parents participating in the Smithville PTA have been assigned to at least 1 of 3 committees : festival planning , classroom aid , and teacher relations, \"statement 2\" :The less than 41 parents participating in the Smithville PTA have been assigned to at least 1 of 3 committees : festival planning , classroom aid , and teacher relations, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Smithville_PTA_s1 = 41\nSmithville_PTA_s2 = 40\n\nif Smithville_PTA_s1 is None or Smithville_PTA_s2 is None:\n print('neutral')\n\nelif Smithville_PTA_s1 == Smithville_PTA_s2:\n print('Entailment')\n\nelif Smithville_PTA_s1 != Smithville_PTA_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many liters of blue paint must be added to less than 60 liters of Fuchsia to change it to Mauve paint ?, \"statement 2\" :How many liters of blue paint must be added to 40 liters of Fuchsia to change it to Mauve paint ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Blue_paint_s1 = None\nBlue_paint_s2 = 40\n\nif Blue_paint_s1 is None or Blue_paint_s2 is None:\n print('neutral')\n\nelif Blue_paint_s1 == Blue_paint_s2:\n print('Entailment')\n\nelif Blue_paint_s1 != Blue_paint_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There were 3409.0 pieces of candy in a jar, and 145.0 pieces were red and the rest were blue, \"statement 2\" :3264.0 candy pieces were blue, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Pieces_of_candy_s1 = 3409-145\nPieces_of_candy_s2 = 3264\n\nif Pieces_of_candy_s1 is None or Pieces_of_candy_s2 is None:\n print('neutral')\n\nelif Pieces_of_candy_s1 == Pieces_of_candy_s2:\n print('Entailment')\n\nelif Pieces_of_candy_s1 != Pieces_of_candy_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The rain-induced floods left nearly 800,000 people displaced , according to the Brazilian civil defense agency ., \"statement 2\" :Nation 's civil defense agency says nearly 800,000 have been displaced, \"options: \" Entailment or neutral?", + "Output Program": [ + "people_displaced_s1 = 800000\npeople_displaced_s2 = 800000\n\nif people_displaced_s1 is None or people_displaced_s2 is None:\n print('neutral')\n\nelif people_displaced_s1 == people_displaced_s2:\n print('Entailment')\n\nelif people_displaced_s1 != people_displaced_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": for Mathura and B starts from Mathura with a speed of more than 20 kmph at 9 p, \"statement 2\" :for Mathura and B starts from Mathura with a speed of 30 kmph at 9 p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "B_start_from_mathura_s1 = None\nB_start_from_mathura_s2 = 30\n\nif B_start_from_mathura_s1 is None or B_start_from_mathura_s2 is None:\n print('neutral')\n\nelif B_start_from_mathura_s1 == B_start_from_mathura_s2:\n print('Entailment')\n\nelif B_start_from_mathura_s1 != B_start_from_mathura_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Assuming that Karen drives at an average speed of 60 mph and Tom drives at an average speed of 45 mph , how many Y miles will Tom drive before Karen wins the bet ?, \"statement 2\" :Assuming that Karen drives at an average speed of more than 10 mph and Tom drives at an average speed of 45 mph , how many Y miles will Tom drive before Karen wins the bet ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Karen_average_speed_s1 = 60\nKaren_average_speed_s2 = 10\n\nif Karen_average_speed_s1 is None or Karen_average_speed_s2 is None:\n print('neutral')\n\nelif Karen_average_speed_s1 >= Karen_average_speed_s2:\n print('Entailment')\n\nelif Karen_average_speed_s1 != Karen_average_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": After less than 8 years , Arun ' s age will be 25 years, \"statement 2\" :After 5 years , Arun ' s age will be 25 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Arun_age_s1 = None\nArun_age_s2 = 5\n\nif Arun_age_s1 is None or Arun_age_s2 is None:\n print('neutral')\n\nelif Arun_age_s1 == Arun_age_s2:\n print('Entailment')\n\nelif Arun_age_s1 != Arun_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": How many clothing combinations does Barbara have , if she doesn \u2019 t wear less than 8 specific shirts with 3 specific pants ?, \"statement 2\" :How many clothing combinations does Barbara have , if she doesn \u2019 t wear 2 specific shirts with 3 specific pants ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Barbara_s1 = None\nBarbara_s2 = 2\n\nif Barbara_s1 is None or Barbara_s2 is None:\n print('neutral')\n\nelif Barbara_s1 == Barbara_s2:\n print('Entailment')\n\nelif Barbara_s1 != Barbara_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": When x dividedby more than 188 , the remainder is 47, \"statement 2\" :When x dividedby 288 , the remainder is 47, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "X_divided_by_s1 = None\nX_divided_by_s2 = 288\n\nif X_divided_by_s1 is None or X_divided_by_s2 is None:\n print('neutral')\n\nelif X_divided_by_s1 == X_divided_by_s2:\n print('Entailment')\n\nelif X_divided_by_s1 != X_divided_by_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Hayley has 25.0 meatballs and Kirsten gave her 11.0 more, \"statement 2\" :Hayley has 40.0 meatballs now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Hayley_Meat_ball_s1 = 25+11\nHayley_Meat_ball_s2 = 40\n\nif Hayley_Meat_ball_s1 is None or Hayley_Meat_ball_s2 is None:\n print('neutral')\n\nelif Hayley_Meat_ball_s1 == Hayley_Meat_ball_s2:\n print('Entailment')\n\nelif Hayley_Meat_ball_s1 != Hayley_Meat_ball_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": One hour after Yolanda started walking from X to Y , a distance of 52 miles , Bob started walking along the same road from Y to X, \"statement 2\" :One hour after Yolanda started walking from X to Y , a distance of 62 miles , Bob started walking along the same road from Y to X, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Yolanda_walking_s1 = 52\nYolanda_walking_s2 = 62\n\nif Yolanda_walking_s1 is None or Yolanda_walking_s2 is None:\n print('neutral')\n\nelif Yolanda_walking_s1 == Yolanda_walking_s2:\n print('Entailment')\n\nelif Yolanda_walking_s1 != Yolanda_walking_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jon had an average score of more than 75 on his first five quizzes, \"statement 2\" :Jon had an average score of 85 on his first five quizzes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jhon_score_s1 = None\nJhon_score_s2 = 85\n\nif Jhon_score_s1 is None or Jhon_score_s2 is None:\n print('neutral')\n\nelif Jhon_score_s1 == Jhon_score_s2:\n print('Entailment')\n\nelif Jhon_score_s1 != Jhon_score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Three crew members and two passengers were taken to local hospitals ., \"statement 2\" :There were 114 passengers and five crew members on board, \"options: \" Entailment or neutral?", + "Output Program": [ + "Crew_members_s1 = None\nCrew_members_s2 = 114\n\nif Crew_members_s1 is None or Crew_members_s2 is None:\n print('neutral')\n\nelif Crew_members_s1 == Crew_members_s2:\n print('Entailment')\n\nelif Crew_members_s1 != Crew_members_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a recent election , James received 15 percent of the 10000 votes cast, \"statement 2\" :In a recent election , James received more than 15 percent of the 10000 votes cast, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "James_received_s1 = 15\nJames_received_s2 = 15+1\n\nif James_received_s1 is None or James_received_s2 is None:\n print('neutral')\n\nelif James_received_s1 == James_received_s2:\n print('Entailment')\nelif James_received_s1 != James_received_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Missy received 25 messages from Laurence , how many messages does Keith receive from Juan ?, \"statement 2\" :If Missy received less than 75 messages from Laurence , how many messages does Keith receive from Juan ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Missy_reccived_Message_s1 = 25\nMissy_reccived_Message_s2 = 75\n\nif Missy_reccived_Message_s1 is None or Missy_reccived_Message_s2 is None:\n print('neutral')\n\nelif Missy_reccived_Message_s1 <= Missy_reccived_Message_s2:\n print('Entailment')\n\nelif Missy_reccived_Message_s1 != Missy_reccived_Message_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In a covering a distance of 30 km , Abhay takes 2 hours more than Sameer, \"statement 2\" :In a covering a distance of less than 50 km , Abhay takes 2 hours more than Sameer, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Abhy_covering_distnace_s1 = 30\nAbhy_covering_distnace_s2 = 50\n\nif Abhy_covering_distnace_s1 is None or Abhy_covering_distnace_s2 is None:\n print('neutral')\n\nelif Abhy_covering_distnace_s1 <= Abhy_covering_distnace_s2:\n print('Entailment')\n\nelif Abhy_covering_distnace_s1 != Abhy_covering_distnace_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Suresh can complete a job in less than 85 hours, \"statement 2\" :Suresh can complete a job in 15 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Suresh_complate_job_s1 = None\nSuresh_complate_job_s2 = 15\n\nif Suresh_complate_job_s1 is None or Suresh_complate_job_s2 is None:\n print('neutral')\n\nelif Suresh_complate_job_s1 <= Suresh_complate_job_s2:\n print('Entailment')\n\nelif Suresh_complate_job_s1 != Suresh_complate_job_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": present ages of Ram and Rahim are in the ratio of 4 : 3 respectively, \"statement 2\" :present ages of Ram and Rahim are in the ratio of more than 4 : 3 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Age_of_ram_rahim_s1 = 4/3\nAge_of_ram_rahim_s2 = 4/3+1\n\nif Age_of_ram_rahim_s1 is None or Age_of_ram_rahim_s2 is None:\n print('neutral')\n\nelif Age_of_ram_rahim_s1 == Age_of_ram_rahim_s2:\n print('Entailment')\n\nelif Age_of_ram_rahim_s1 != Age_of_ram_rahim_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joan had 9.0 blue balloons , but Sally popped 5.0 of them and Jessica has 2.0 blue balloons , \"statement 2\" :They have 6.0 blue balloons now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Blue_ballon_s1 = 9-5+2\nBlue_ballon_s2 = 6\n\nif Blue_ballon_s1 is None or Blue_ballon_s2 is None:\n print('neutral')\n\nelif Blue_ballon_s1 == Blue_ballon_s2:\n print('Entailment')\n\nelif Blue_ballon_s1 != Blue_ballon_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Susan , John , Daisy , Tim and Kim need to be seated in more than 4 identical chairs in straight line so that Susan is seated always left to Tim, \"statement 2\" :Susan , John , Daisy , Tim and Kim need to be seated in 5 identical chairs in straight line so that Susan is seated always left to Tim, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Susan_jhon_Daisy_tim_and_kim_seated_s1 = None\nSusan_jhon_Daisy_tim_and_kim_seated_s2 = 5\n\nif Susan_jhon_Daisy_tim_and_kim_seated_s1 is None or Susan_jhon_Daisy_tim_and_kim_seated_s2 is None:\n print('neutral')\n\nelif Susan_jhon_Daisy_tim_and_kim_seated_s1 == Susan_jhon_Daisy_tim_and_kim_seated_s2:\n print('Entailment')\n\nelif Susan_jhon_Daisy_tim_and_kim_seated_s1 != Susan_jhon_Daisy_tim_and_kim_seated_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": In contrast , 28 % teens say they never text their friends -- but then , 23 % of teens do n't have a cell phone at all ., \"statement 2\" :Study finds that 39 % of teens say they never exchange e-mail, \"options: \" Entailment or neutral?", + "Output Program": [ + "Teen_says_never_text_friend_s1 = None\nTeen_says_never_text_friend_s2 = 39\n\nif Teen_says_never_text_friend_s1 is None or Teen_says_never_text_friend_s2 is None:\n print('neutral')\n\nelif Teen_says_never_text_friend_s1 == Teen_says_never_text_friend_s2:\n print('Entailment')\n\nelif Teen_says_never_text_friend_s1 != Teen_says_never_text_friend_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Two dogsled teams raced across a 300 mile course in Wyoming, \"statement 2\" :Two dogsled teams raced across a 600 mile course in Wyoming, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Two_dogsled_teams_s1 = 300\nTwo_dogsled_teams_s2 = 600\n\nif Two_dogsled_teams_s1 is None or Two_dogsled_teams_s2 is None:\n print('neutral')\n\nelif Two_dogsled_teams_s1 == Two_dogsled_teams_s2:\n print('Entailment')\n\nelif Two_dogsled_teams_s1 != Two_dogsled_teams_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Carina has less than 230 ounces of coffee divided into 5 - and 10 - ounce packages, \"statement 2\" :Carina has 130 ounces of coffee divided into 5 - and 10 - ounce packages, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ounces_of_coffee_s1 = None\nounces_of_coffee_s2 = 130\n\nif ounces_of_coffee_s1 is None or ounces_of_coffee_s2 is None:\n print('neutral')\n\nelif ounces_of_coffee_s1 == ounces_of_coffee_s2:\n print('Entailment')\n\nelif ounces_of_coffee_s1 != ounces_of_coffee_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Joan 's cat had 8.0 kittens and she got 2.0 more from her friends , \"statement 2\" :She has 10.0 kittens now, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Jhon_cat_s1 = 8+2\nJhon_cat_s2 = 10\n\nif Jhon_cat_s1 is None or Jhon_cat_s2 is None:\n print('neutral')\n\nelif Jhon_cat_s1 == Jhon_cat_s2:\n print('Entailment')\n\nelif Jhon_cat_s1 != Jhon_cat_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Abhay double his speed , then he would take less than 5 hour less than Sammer, \"statement 2\" :If Abhay double his speed , then he would take 1 hour less than Sammer, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Abhy_speed_s1 = None\nAbhy_speed_s2 = 2\n\nif Abhy_speed_s1 is None or Abhy_speed_s2 is None:\n print('neutral')\n\nelif Abhy_speed_s1 == Abhy_speed_s2:\n print('Entailment')\n\nelif Abhy_speed_s1 != Abhy_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If 6 years are subtracted from the present age of Arun and the remainder is divided by 18 , then the present age of his grandson Gokul is obtained, \"statement 2\" :If more than 6 years are subtracted from the present age of Arun and the remainder is divided by 18 , then the present age of his grandson Gokul is obtained, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Age_of_arun_s1 = 6\nAge_of_arun_s2 = 6+1\n\nif Age_of_arun_s1 is None or Age_of_arun_s2 is None:\n print('neutral')\n\nelif Age_of_arun_s1 == Age_of_arun_s2:\n print('Entailment')\n\nelif Age_of_arun_s1 != Age_of_arun_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": One hour after Matthew started waking from e to y , a distance of less than 75 km , Johnny started walking along the same road from y to e, \"statement 2\" :One hour after Matthew started waking from e to y , a distance of 45 km , Johnny started walking along the same road from y to e, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Matthew_walking_s1 = None\nMatthew_walking_s2 = 45\n\nif Matthew_walking_s1 is None or Matthew_walking_s2 is None:\n print('neutral')\n\nelif Matthew_walking_s1 == Matthew_walking_s2:\n print('Entailment')\n\nelif Matthew_walking_s1 != Matthew_walking_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Hitesh is more than 20 years old and Ronnie is 60 years old, \"statement 2\" :Hitesh is 40 years old and Ronnie is 60 years old, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Hitesh_Years_s1 = None\nHitesh_Years_s2 = 40\n\nif Hitesh_Years_s1 is None or Hitesh_Years_s2 is None:\n print('neutral')\n\nelif Hitesh_Years_s1 == Hitesh_Years_s2:\n print('Entailment')\n\nelif Hitesh_Years_s1 != Hitesh_Years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The average number of shirts with Salman , Ambani and Dalmiya is 60 , if all of them reached a shopping mall in Delhi and purchased 3 shirts each of them then average number of shirt each of them now has, \"statement 2\" :The average number of shirts with Salman , Ambani and Dalmiya is more than 30 , if all of them reached a shopping mall in Delhi and purchased 3 shirts each of them then average number of shirt each of them now has, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Average_number_of_shirts_s1 = 60\nAverage_number_of_shirts_s2 = 30\n\nif Average_number_of_shirts_s1 is None or Average_number_of_shirts_s2 is None:\n print('neutral')\n\nelif Average_number_of_shirts_s1 >= Average_number_of_shirts_s2:\n print('Entailment')\n\nelif Average_number_of_shirts_s1 != Average_number_of_shirts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If it takes Darcy a total of less than 50 more minutes to commute to work by walking than it takes her to commute to work by riding the train , what is the value of x ?, \"statement 2\" :If it takes Darcy a total of 20 more minutes to commute to work by walking than it takes her to commute to work by riding the train , what is the value of x ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Darcy_work_s1 = None\nDarcy_work_s2 = 20\n\nif Darcy_work_s1 is None or Darcy_work_s2 is None:\n print('neutral')\n\nelif Darcy_work_s1 >= Darcy_work_s2:\n print('Entailment')\n\nelif Darcy_work_s1 != Darcy_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Sony and Johnny caught less than 70 fishes, \"statement 2\" :Sony and Johnny caught 50 fishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sony_and_jhony_fish_s1 = None\nSony_and_jhony_fish_s2 = 50\n\nif Sony_and_jhony_fish_s1 is None or Sony_and_jhony_fish_s2 is None:\n print('neutral')\n\nelif Sony_and_jhony_fish_s1 == Sony_and_jhony_fish_s2:\n print('Entailment')\n\nelif Sony_and_jhony_fish_s1 != Sony_and_jhony_fish_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Working independently , Tina can do a certain job in less than 82 hours, \"statement 2\" :Working independently , Tina can do a certain job in 12 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tina_work_s1 = None\ntina_work_s2 = 12\n\nif tina_work_s1 is None or tina_work_s2 is None:\n print('neutral')\n\nelif tina_work_s1 == tina_work_s2:\n print('Entailment')\n\nelif tina_work_s1 != tina_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are 360 baseball fans in the town , each of whom is a fan of exactly one of those three teams , how many NY Mets fans are there in this town ?, \"statement 2\" :If there are 760 baseball fans in the town , each of whom is a fan of exactly one of those three teams , how many NY Mets fans are there in this town ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nBase_ball_fans_in_town_s1 = None\nBase_ball_fans_in_town_s2 = 70\n\nif Base_ball_fans_in_town_s1 is None or Base_ball_fans_in_town_s2 is None:\n print('neutral')\n\nelif Base_ball_fans_in_town_s1 == Base_ball_fans_in_town_s2:\n print('Entailment')\n\nelif Base_ball_fans_in_town_s1 != Base_ball_fans_in_town_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lucy deposited $ 62500 in an investment fund that provided 12 percent annual return compounded quarterly, \"statement 2\" :Lucy deposited $ more than 62500 in an investment fund that provided 12 percent annual return compounded quarterly, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Lucy_deposited_s1 = 62500\nLucy_deposited_s2 = 62500+1\n\nif Lucy_deposited_s1 is None or Lucy_deposited_s2 is None:\n print('neutral')\n\nelif Lucy_deposited_s1 == Lucy_deposited_s2:\n print('Entailment')\n\nelif Lucy_deposited_s1 != Lucy_deposited_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": But the investigation has already cost him at least one endorsement deal ., \"statement 2\" :The investigation has already cost Hernandez at least one endorsement deal, \"options: \" Entailment or neutral?", + "Output Program": [ + "endorsement_deal_s1 = 1\nendorsement_deal_s2 = 1\n\nif endorsement_deal_s1 is None or endorsement_deal_s2 is None:\n print('neutral')\n\nelif endorsement_deal_s1 == endorsement_deal_s2:\n print('Entailment')\n\nelif endorsement_deal_s1 != endorsement_deal_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Let Raj be 3 years older than Ravi and Hema be two years younger than Ravi, \"statement 2\" :Let Raj be 1 years older than Ravi and Hema be two years younger than Ravi, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nRaj_older_than_ravi_s1 = 3\nRaj_older_than_ravi_s2 = 1\n\nif Raj_older_than_ravi_s1 is None or Raj_older_than_ravi_s2 is None:\n print('neutral')\n\nelif Raj_older_than_ravi_s1 == Raj_older_than_ravi_s2:\n print('Entailment')\n\nelif Raj_older_than_ravi_s1 != Raj_older_than_ravi_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": While planning their outing , Abhishek understood that their boat could travel with a speed of 12 kmph in still water, \"statement 2\" :While planning their outing , Abhishek understood that their boat could travel with a speed of 42 kmph in still water, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boat_speed_s1 = 12\nboat_speed_s2 = 42\n\nif boat_speed_s1 is None or boat_speed_s2 is None:\n print('neutral')\n\nelif boat_speed_s1 == boat_speed_s2:\n print('Entailment')\n\nelif boat_speed_s1 != boat_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": '' There 's a lot of space debris -- 6,000 tons in orbit -- that could pose a threat , '' said Reed ., \"statement 2\" :It is estimated that there are 6,000 tons of space junk in Earth 's orbit, \"options: \" Entailment or neutral?", + "Output Program": [ + "space_debris_s1 = 6000\nspace_debris_s2 = 6000\n\nif space_debris_s1 is None or space_debris_s2 is None:\n print('neutral')\n\nelif space_debris_s1 == space_debris_s2:\n print('Entailment')\n\nelif space_debris_s1 != space_debris_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lucy has an aquarium with 212.0 fish and she wants to buy 68.0 more fish, \"statement 2\" :Lucy would have 284.0 fish then, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Lucy_fish_s1 = 212+68\nLucy_fish_s2 = 284\n\nif Lucy_fish_s1 is None or Lucy_fish_s2 is None:\n print('neutral')\n\nelif Lucy_fish_s1 == Lucy_fish_s2:\n print('Entailment')\n\nelif Lucy_fish_s1 != Lucy_fish_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is 4 : 2 , After 6 Years Rahul age will be 22 years, \"statement 2\" :Ratio between Rahul and Deepak is 5 : 2 , After 6 Years Rahul age will be 22 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Age_ratio_Rahuk_and_deepak_s1 = 4/2\nAge_ratio_Rahuk_and_deepak_s2 = 5/2\n\nif Age_ratio_Rahuk_and_deepak_s1 is None or Age_ratio_Rahuk_and_deepak_s2 is None:\n print('neutral')\n\nelif Age_ratio_Rahuk_and_deepak_s1 == Age_ratio_Rahuk_and_deepak_s2:\n print('Entailment')\n\nelif Age_ratio_Rahuk_and_deepak_s1 != Age_ratio_Rahuk_and_deepak_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A case of candy usually lasts Tomi 42 days when she eats 6 every day, \"statement 2\" :A case of candy usually lasts Tomi less than 62 days when she eats 6 every day, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Case_of_cady_s1 = 42\nCase_of_cady_s2 = 62\n\nif Case_of_cady_s1 is None or Case_of_cady_s2 is None:\n print('neutral')\n\nelif Case_of_cady_s1 <= Case_of_cady_s2:\n print('Entailment')\n\nelif Case_of_cady_s1 != Case_of_cady_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Max owns 200 shares of stock A and 180 of stock b, \"statement 2\" :Max owns more than 200 shares of stock A and 180 of stock b, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Max_Share_A_s1 = 200\nMax_Share_A_s2 = 200+1\n\nif Max_Share_A_s1 is None or Max_Share_A_s2 is None:\n print('neutral')\n\nelif Max_Share_A_s1 == Max_Share_A_s2:\n print('Entailment')\n\nelif Max_Share_A_s1 != Max_Share_A_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than 40 % ?\nI will see what is the quickest way to solve it then I will provide the explanation, \"statement 2\" :If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than more than 40 % ? I will see what is the quickest way to solve it then I will provide the explanation, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Air_port_on_time_deprture_rate_s1 = 40\nAir_port_on_time_deprture_rate_s2 = 40+1\n\nif Air_port_on_time_deprture_rate_s1 is None or Air_port_on_time_deprture_rate_s2 is None:\n print('neutral')\n\nelif Air_port_on_time_deprture_rate_s1 == Air_port_on_time_deprture_rate_s2:\n print('Entailment')\n\nelif Air_port_on_time_deprture_rate_s1 != Air_port_on_time_deprture_rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If there are more than 35 possible combinations in which Michael is not selected , what is the value of k ?, \"statement 2\" :If there are 55 possible combinations in which Michael is not selected , what is the value of k ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nCombinations_s1 = None\nCombinations_s2 = 55\n\nif Combinations_s1 is None or Combinations_s2 is None:\n print('neutral')\n\nelif Combinations_s1 == Combinations_s2:\n print('Entailment')\n\nelif Combinations_s1 != Combinations_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Lionel left his house and walked towards Walt ' s house , 48 miles away, \"statement 2\" :Lionel left his house and walked towards Walt ' s house , less than 68 miles away, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Lionel_Walked_s1 = 48\nLionel_Walked_s2 = 68\n\nif Lionel_Walked_s1 is None or Lionel_Walked_s2 is None:\n print('neutral')\n\nelif Lionel_Walked_s1 <= Lionel_Walked_s2:\n print('Entailment')\n\nelif Lionel_Walked_s1 != Lionel_Walked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jancy had 100 currency notes in all , some of which are of Rs 70 denomination and the remaining of Rs 50 denomination, \"statement 2\" :Jancy had less than 200 currency notes in all , some of which are of Rs 70 denomination and the remaining of Rs 50 denomination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jancy_currency_notes_s1 = 100\nJancy_currency_notes_s2 = 200\n\nif Jancy_currency_notes_s1 is None or Jancy_currency_notes_s2 is None:\n print('neutral')\n\nelif Jancy_currency_notes_s1 <= Jancy_currency_notes_s2:\n print('Entailment')\n\nelif Jancy_currency_notes_s1 != Jancy_currency_notes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": There are 16 stations between Hyderabad and Bangalore, \"statement 2\" :There are 36 stations between Hyderabad and Bangalore, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stations_between_Hyderabad_and_Bangalore_s1 = 16\nstations_between_Hyderabad_and_Bangalore_s2 = 36\n\nif stations_between_Hyderabad_and_Bangalore_s1 is None or stations_between_Hyderabad_and_Bangalore_s2 is None:\n print('neutral')\n\nelif stations_between_Hyderabad_and_Bangalore_s1 <= stations_between_Hyderabad_and_Bangalore_s2:\n print('Entailment')\n\nelif stations_between_Hyderabad_and_Bangalore_s1 != stations_between_Hyderabad_and_Bangalore_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jack and Christina are standing 360 feet apart on a level surface, \"statement 2\" :Jack and Christina are standing 860 feet apart on a level surface, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jack_and_Christina_s1 = 360\nJack_and_Christina_s2 = 860\n\nif Jack_and_Christina_s1 is None or Jack_and_Christina_s2 is None:\n print('neutral')\n\nelif Jack_and_Christina_s1 == Jack_and_Christina_s2:\n print('Entailment')\n\nelif Jack_and_Christina_s1 != Jack_and_Christina_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Carlos is more than 1 years old, \"statement 2\" :Carlos is 8 years old, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Carol_year_old_s1 = None\nCarol_year_old_s2 = 8\n\nif Carol_year_old_s1 is None or Carol_year_old_s2 is None:\n print('neutral')\n\nelif Carol_year_old_s1 == Carol_year_old_s2:\n print('Entailment')\n\nelif Carol_year_old_s1 != Carol_year_old_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The roommates found more envelopes in the couch , which they had bought at the Salvation Army for $ 20 ., \"statement 2\" :Three roommates bought a couch at the Salvation Army for $ 20, \"options: \" Entailment or neutral?", + "Output Program": [ + "Salvation_army_s1 = None\nSalvation_army_s2 = 20\n\nif Salvation_army_s1 is None or Salvation_army_s2 is None:\n print('neutral')\n\nelif Salvation_army_s1 == Salvation_army_s2:\n print('Entailment')\n\nelif Salvation_army_s1 != Salvation_army_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Rathi took a loan for 6 years at the rate of 5 % per annum on Simple Interest , If the total interest paid was Rs, \"statement 2\" :Rathi took a loan for more than 5 years at the rate of 5 % per annum on Simple Interest , If the total interest paid was Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Rathi_loan_s1 = 6\nRathi_loan_s2 = 5+1\n\nif Rathi_loan_s1 is None or Rathi_loan_s2 is None:\n print('neutral')\n\nelif Rathi_loan_s1 == Rathi_loan_s2:\n print('Entailment')\n\nelif Rathi_loan_s1 != Rathi_loan_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Susan , John , Peter , Jack , Daisy , Tim , Matt and Kim need to be seated in more than 4 identical chairs in straight line so that Susan is seated always left to Tim, \"statement 2\" :Susan , John , Peter , Jack , Daisy , Tim , Matt and Kim need to be seated in 8 identical chairs in straight line so that Susan is seated always left to Tim, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Seated_in_chair_s1 = None\nSeated_in_chair_s2 = 8\n\nif Seated_in_chair_s1 is None or Seated_in_chair_s2 is None:\n print('neutral')\n\nelif Seated_in_chair_s1 == Seated_in_chair_s2:\n print('Entailment')\n\nelif Seated_in_chair_s1 != Seated_in_chair_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": The four died when the part of the mall they were in collapsed , Maj. Emmanuel Chirchir said ., \"statement 2\" :The four died when the part of the mall they were in collapsed , Kenyan military spokesman says, \"options: \" Entailment or neutral?", + "Output Program": [ + "Died_s1 = 4\nDied_s2 = 4\n\nif Died_s1 is None or Died_s2 is None:\n print('neutral')\n\nelif Died_s1 == Died_s2:\n print('Entailment')\n\nelif Died_s1 != Died_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Present ages of Sameer and Anand are in the ratio of 5 : 4 respectively, \"statement 2\" :Present ages of Sameer and Anand are in the ratio of 8 : 4 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Age_ratio_s1 = 5/4\nAge_ratio_s2 = 8/4\n\nif Age_ratio_s1 is None or Age_ratio_s2 is None:\n print('neutral')\n\nelif Age_ratio_s1 == Age_ratio_s2:\n print('Entailment')\n\nelif Age_ratio_s1 != Age_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": It could go 4 times as fast as Mohan \u2019 s old Mercedes, \"statement 2\" :It could go 8 times as fast as Mohan \u2019 s old Mercedes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Fast_s1 = 4\nFast_s2 = 8\n\nif Fast_s1 is None or Fast_s2 is None:\n print('neutral')\n\nelif Fast_s1 == Fast_s2:\n print('Entailment')\n\nelif Fast_s1 != Fast_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Connie has 64.0 red and blue markers and 41.0 of the markers are red, \"statement 2\" :23.0 markers are blue, \"options: \" Entailment or contradiction?", + "Output Program": [ + "Connie_marker_s1 = 64-41\nConnie_marker_s2 = 23\n\nif Connie_marker_s1 is None or Connie_marker_s2 is None:\n print('neutral')\n\nelif Connie_marker_s1 == Connie_marker_s2:\n print('Entailment')\n\nelif Connie_marker_s1 != Connie_marker_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": At Amiee \u2019 s Pet Shop , less than 20 cups of bird seed are used every 4 days to feed 6 parakeets, \"statement 2\" :At Amiee \u2019 s Pet Shop , 10 cups of bird seed are used every 4 days to feed 6 parakeets, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bird_seed_s1 = None\nbird_seed_s2 = 10\n\nif bird_seed_s1 is None or bird_seed_s2 is None:\n print('neutral')\n\nelif bird_seed_s1 == bird_seed_s2:\n print('Entailment')\n\nelif bird_seed_s1 != bird_seed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Jaclyn buys $ 30 000 worth of debentures in a company, \"statement 2\" :Jaclyn buys $ 20 000 worth of debentures in a company, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jaclyn_buys_s1 = 30000\nJaclyn_buys_s2 = 20000\n\nif Jaclyn_buys_s1 is None or Jaclyn_buys_s2 is None:\n print('neutral')\n\nelif Jaclyn_buys_s1 == Jaclyn_buys_s2:\n print('Entailment')\n\nelif Jaclyn_buys_s1 != Jaclyn_buys_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If Arun doubles his speed , then he would take 1 hour less than Anil, \"statement 2\" :If Arun doubles his speed , then he would take less than 6 hour less than Anil, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Arun_take_time_s1 = 1\nArun_take_time_s2 = 6\n\nif Arun_take_time_s1 is None or Arun_take_time_s2 is None:\n print('neutral')\n\nelif Arun_take_time_s1 <= Arun_take_time_s2:\n print('Entailment')\n\nelif Arun_take_time_s1 != Arun_take_time_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Suresh can complete a job in 15 hours, \"statement 2\" :Suresh can complete a job in 25 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Suresh_complate_job_s1 = 15\nSuresh_complate_job_s2 = 25\n\nif Suresh_complate_job_s1 is None or Suresh_complate_job_s2 is None:\n print('neutral')\n\nelif Suresh_complate_job_s1 <= Suresh_complate_job_s2:\n print('Entailment')\n\nelif Suresh_complate_job_s1 != Suresh_complate_job_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": A train leaves Delhi at more than 8 a, \"statement 2\" :A train leaves Delhi at 9 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "train_leaves_Delhi_s1 = None\ntrain_leaves_Delhi_s2 = 9\n\nif train_leaves_Delhi_s1 is None or train_leaves_Delhi_s2 is None:\n print('neutral')\n\nelif train_leaves_Delhi_s1 <= train_leaves_Delhi_s2:\n print('Entailment')\n\nelif train_leaves_Delhi_s1 != train_leaves_Delhi_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": If the sum of their ages is less than 847 , what is the difference between the ages of Patrick and Monica ?, \"statement 2\" :If the sum of their ages is 147 , what is the difference between the ages of Patrick and Monica ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Some_of_ages_s1 = None\nSome_of_ages_s2 = 147\n\nif Some_of_ages_s1 is None or Some_of_ages_s2 is None:\n print('neutral')\n\nelif Some_of_ages_s1 == Some_of_ages_s2:\n print('Entailment')\n\nelif Some_of_ages_s1 != Some_of_ages_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Patrick has a locker with a less than 8 number combination, \"statement 2\" :Patrick has a locker with a 3 number combination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Patrick_locker_s1 = None\nPatrick_locker_s2 = 3\n\nif Patrick_locker_s1 is None or Patrick_locker_s2 is None:\n print('neutral')\n\nelif Patrick_locker_s1 == Patrick_locker_s2:\n print('Entailment')\n\nelif Patrick_locker_s1 != Patrick_locker_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jessica can text more than 35 words per minute , while Maurice can text 10 words per minute, \"statement 2\" :Jessica can text 75 words per minute , while Maurice can text 10 words per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jessica_can_text_s1 = None\njessica_can_text_s2 = 75\n\nif jessica_can_text_s1 is None or jessica_can_text_s2 is None:\n print('neutral')\n\nelif jessica_can_text_s1 == jessica_can_text_s2:\n print('Entailment')\n\nelif jessica_can_text_s1 != jessica_can_text_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Shaquan has more than 3 playing cards , each one is ordered by the number on it , but one card is flipped over . They are numbered 8 , 16 , 24 , x , 40, \"statement 2\" :Shaquan has 5 playing cards , each one is ordered by the number on it , but one card is flipped over .\nThey are numbered 8 , 16 , 24 , x , 40, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Shaquan_playing_card_s1 = None\nShaquan_playing_card_s2 = 8\n\nif Shaquan_playing_card_s1 is None or Shaquan_playing_card_s2 is None:\n print('neutral')\n\nelif Shaquan_playing_card_s1 == Shaquan_playing_card_s2:\n print('Entailment')\n\nelif Shaquan_playing_card_s1 != Shaquan_playing_card_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In a friendship gang Andrew has 8 gang , in how many ways can he invite one or more of the gang to his house ?, \"statement 2\" :In a friendship gang Andrew has more than 5 gang , in how many ways can he invite one or more of the gang to his house ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Andrew_gang_s1 = 8\nAndrew_gang_s2 = 5\n\nif Andrew_gang_s1 is None or Andrew_gang_s2 is None:\n print('neutral')\n\nelif Andrew_gang_s1 >= Andrew_gang_s2:\n print('Entailment')\n\nelif Andrew_gang_s1 != Andrew_gang_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Since you ' re nice , you give John 2 baseball cards, \"statement 2\" :Since you ' re nice , you give John more than 2 baseball cards, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "jhon_baseball_card_s1 = 2\njhon_baseball_card_s2 = 2+1\n\nif jhon_baseball_card_s1 is None or jhon_baseball_card_s2 is None:\n print('neutral')\n\nelif jhon_baseball_card_s1 == jhon_baseball_card_s2:\n print('Entailment')\n\nelif jhon_baseball_card_s1 != jhon_baseball_card_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": After 12 minutes , Cathy stops to stretch, \"statement 2\" :After less than 42 minutes , Cathy stops to stretch, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Cathy_stops_to_stretch_s1 = 12\nCathy_stops_to_stretch_s2 = 42\n\nif Cathy_stops_to_stretch_s1 is None or Cathy_stops_to_stretch_s2 is None:\n print('neutral')\n\nelif Cathy_stops_to_stretch_s1 <= Cathy_stops_to_stretch_s2:\n print('Entailment')\n\nelif Cathy_stops_to_stretch_s1 != Cathy_stops_to_stretch_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": During the first two weeks of May , the total rainfall in Springdale was less than 55 inches, \"statement 2\" :During the first two weeks of May , the total rainfall in Springdale was 35 inches, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rainfall_in_Springdale_s1 = None\nrainfall_in_Springdale_s2 = 35\n\nif rainfall_in_Springdale_s1 is None or rainfall_in_Springdale_s2 is None:\n print('neutral')\n\nelif rainfall_in_Springdale_s1 == rainfall_in_Springdale_s2:\n print('Entailment')\n\nelif rainfall_in_Springdale_s1 != rainfall_in_Springdale_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The average number of shirts with Salman , Ambani and Dalmiya is 60 , if all of them reached a shopping mall in Delhi and purchased 4 shirts each of them then average number of shirt each of them now has, \"statement 2\" :The average number of shirts with Salman , Ambani and Dalmiya is less than 60 , if all of them reached a shopping mall in Delhi and purchased 4 shirts each of them then average number of shirt each of them now has, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "The_average_number_of_shirts_s1 = 60\nThe_average_number_of_shirts_s2 = 60-1\n\nif The_average_number_of_shirts_s1 is None or The_average_number_of_shirts_s2 is None:\n print('neutral')\n\nelif The_average_number_of_shirts_s1 == The_average_number_of_shirts_s2:\n print('Entailment')\n\nelif The_average_number_of_shirts_s1 != The_average_number_of_shirts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Molly can do a task in 10 days while Sandy can do the task in 30 days, \"statement 2\" :Molly can do a task in 70 days while Sandy can do the task in 30 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Moly_can_do_task_s1 = 10\nMoly_can_do_task_s2 = 70\n\nif Moly_can_do_task_s1 is None or Moly_can_do_task_s2 is None:\n print('neutral')\n\nelif Moly_can_do_task_s1 == Moly_can_do_task_s2:\n print('Entailment')\n\nelif Moly_can_do_task_s1 != Moly_can_do_task_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sam , Suresh and Sanket run a race of 1400 meters, \"statement 2\" :Sam , Suresh and Sanket run a race of 5400 meters, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Race_s1 = 1400\nRace_s2 = 5400\n\nif Race_s1 is None or Race_s2 is None:\n print('neutral')\n\nelif Race_s1 == Race_s2:\n print('Entailment')\n\nelif Race_s1 != Race_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Calculate Rebecca ' s average score in an exam if she obtained the following marks more than 10 , 57 , 69 , 89 and 85 out of 100 in different subjects ., \"statement 2\" :Calculate Rebecca ' s average score in an exam if she obtained the following marks 70 , 57 , 69 , 89 and 85 out of 100 in different subjects ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Rebecca_score_s1 = None\nRebecca_score_s2 = 70,57,69,89,85\n\nif Rebecca_score_s1 is None or Rebecca_score_s2 is None:\n print('neutral')\n\nelif Rebecca_score_s1 == Rebecca_score_s2:\n print('Entailment')\n\nelif Rebecca_score_s1 != Rebecca_score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": During a car trip , Maria stopped to rest after she traveled less than 5 / 2 of the total distance to her destination, \"statement 2\" :During a car trip , Maria stopped to rest after she traveled 1 / 2 of the total distance to her destination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Maria_traveld_s1 = None\nMaria_traveld_s2 = 1/2\n\nif Maria_traveld_s1 is None or Maria_traveld_s2 is None:\n print('neutral')\n\nelif Maria_traveld_s1 == Maria_traveld_s2:\n print('Entailment')\n\nelif Maria_traveld_s1 != Maria_traveld_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In a certain town , the ratio of NY Yankees fans to NY Mets fans is 2 : 1 , and the ratio of NY Mets fans to Boston Red Sox fans is 3 : 7, \"statement 2\" :In a certain town , the ratio of NY Yankees fans to NY Mets fans is 8 : 1 , and the ratio of NY Mets fans to Boston Red Sox fans is 3 : 7, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ratio_s1 = 2/1\nRatio_s2 = 8/1\n\nif Ratio_s1 is None or Ratio_s2 is None:\n print('neutral')\n\nelif Ratio_s1 == Ratio_s2:\n print('Entailment')\n\nelif Ratio_s1 != Ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Zada has to distribute less than 55 choclates among 5 of her children Sana , ada , jaya , amir and farhan, \"statement 2\" :Zada has to distribute 15 choclates among 5 of her children Sana , ada , jaya , amir and farhan, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Zena_distribute_choclates_s1 = None\nZena_distribute_choclates_s2 = 15\n\nif Zena_distribute_choclates_s1 is None or Zena_distribute_choclates_s2 is None:\n print('neutral')\n\nelif Zena_distribute_choclates_s1 == Zena_distribute_choclates_s2:\n print('Entailment')\n\nelif Zena_distribute_choclates_s1 != Zena_distribute_choclates_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": 3750 from Anwar at 6 % p, \"statement 2\" :less than 7750 from Anwar at 6 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Anwar_s1 = 3750\nAnwar_s2 = 7750\n\nif Anwar_s1 is None or Anwar_s2 is None:\n print('neutral')\n\nelif Anwar_s1 <= Anwar_s2:\n print('Entailment')\n\nelif Anwar_s1 != Anwar_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Harkamal purchased more than 2 kg of grapes at the rate of 70 per kg and 9 kg of mangoes at the rate of 55 per kg, \"statement 2\" :Harkamal purchased 8 kg of grapes at the rate of 70 per kg and 9 kg of mangoes at the rate of 55 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Harkamal_purchased_s1 = None\nHarkamal_purchased_s2 = 8\n\nif Harkamal_purchased_s1 is None or Harkamal_purchased_s2 is None:\n print('neutral')\n\nelif Harkamal_purchased_s1 == Harkamal_purchased_s2:\n print('Entailment')\n\nelif Harkamal_purchased_s1 != Harkamal_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Anup was asked to find the value of more than 5 / 12 of a sum of money W, \"statement 2\" :Anup was asked to find the value of 7 / 12 of a sum of money W, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sum_of_money_s1 = None\nSum_of_money_s2 = 7/12\n\nif Sum_of_money_s1 is None or Sum_of_money_s2 is None:\n print('neutral')\n\nelif Sum_of_money_s1 == Sum_of_money_s2:\n print('Entailment')\n\nelif Sum_of_money_s1 != Sum_of_money_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": A starts from Delhi with a speed of 25 kmph at 5 a, \"statement 2\" :A starts from Delhi with a speed of 35 kmph at 5 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "A_speed_s1 = 25\nA_speed_s2 = 35\n\nif A_speed_s1 is None or A_speed_s2 is None:\n print('neutral')\n\nelif A_speed_s1 == A_speed_s2:\n print('Entailment')\n\nelif A_speed_s1 != A_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Ashok and Pyarelal invested money together in a business and share a capital of Ashok is 1 / 9 of that of Pyarelal, \"statement 2\" :Ashok and Pyarelal invested money together in a business and share a capital of Ashok is less than 3 / 9 of that of Pyarelal, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "share_capital_of_Ashok_s1 = 1/9\nshare_capital_of_Ashok_s2 = 3/9\n\nif share_capital_of_Ashok_s1 is None or share_capital_of_Ashok_s2 is None:\n print('neutral')\n\nelif share_capital_of_Ashok_s1 <= share_capital_of_Ashok_s2:\n print('Entailment')\n\nelif share_capital_of_Ashok_s1 != share_capital_of_Ashok_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Lally ' s internet provider offers unlimited traffic which costs $ 0.5 per day charged off at 12 a, \"statement 2\" :Lally ' s internet provider offers unlimited traffic which costs $ 0.5 per day charged off at less than 52 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Unlimited_traffic_cost_s1 = 0.5\nUnlimited_traffic_cost_s2 = 0.5\n\nif Unlimited_traffic_cost_s1 is None or Unlimited_traffic_cost_s2 is None:\n print('neutral')\n\nelif Unlimited_traffic_cost_s1 == Unlimited_traffic_cost_s2:\n print('Entailment')\n\nelif Unlimited_traffic_cost_s1 != Unlimited_traffic_cost_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In the biology lab of ` ` Jefferson ' ' High School there are 0.037 * 10 ^ 5 germs , equally divided among 74000 * 10 ^ ( - 3 ) Petri dishes, \"statement 2\" :In the biology lab of ` ` Jefferson ' ' High School there are 0.037 * more than 10 ^ 5 germs , equally divided among 74000 * 10 ^ ( - 3 ) Petri dishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "germs_in_bio_lab_s1 = 3700\ngerms_in_bio_lab_s2 = 3700+1\n\nif germs_in_bio_lab_s1 is None or germs_in_bio_lab_s2 is None:\n print('neutral')\n\nelif germs_in_bio_lab_s1 == germs_in_bio_lab_s2:\n print('Entailment')\n\nelif germs_in_bio_lab_s1 != germs_in_bio_lab_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": John has less than 8 friends who want to ride in his new car that can accommodate only 4 people at a time ( John plus 3 passengers ), \"statement 2\" :John has 6 friends who want to ride in his new car that can accommodate only 4 people at a time ( John plus 3 passengers ), \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jhon_friend_s1 = None\nJhon_friend_s2 = 6\n\nif Jhon_friend_s1 is None or Jhon_friend_s2 is None:\n print('neutral')\n\nelif Jhon_friend_s1 == Jhon_friend_s2:\n print('Entailment')\n\nelif Jhon_friend_s1 != Jhon_friend_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The ratio between the number of sheep and the number of horses at the Stewart farm is 3 to 7 , If each horse is fed 230 ounces of horse food per day and the farm needs a total 12,880 ounces of horse food per day , what is the number of sheep in the farm ?, \"statement 2\" :The ratio between the number of sheep and the number of horses at the Stewart farm is more than 3 to 7 , If each horse is fed 230 ounces of horse food per day and the farm needs a total 12,880 ounces of horse food per day , what is the number of sheep in the farm ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ratio_between_sheep_and_horse_s1 = 3,7\nRatio_between_sheep_and_horse_s2 = 3,7+1\n\nif Ratio_between_sheep_and_horse_s1 is None or Ratio_between_sheep_and_horse_s2 is None:\n print('neutral')\n\nelif Ratio_between_sheep_and_horse_s1 == Ratio_between_sheep_and_horse_s2:\n print('Entailment')\n\nelif Ratio_between_sheep_and_horse_s1 != Ratio_between_sheep_and_horse_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Six years ago , the ratio of ages of Kunal and Sagar was 6 : 5, \"statement 2\" :Six years ago , the ratio of ages of Kunal and Sagar was more than 6 : 5, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Age_ratio_s1 = 6/5\nAge_ratio_s2 = 6/5+1\n\nif Age_ratio_s1 is None or Age_ratio_s2 is None:\n print('neutral')\n\nelif Age_ratio_s1 == Age_ratio_s2:\n print('Entailment')\n\nelif Age_ratio_s1 != Age_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": All of them started to work together but Rashmi leaves after 4 days, \"statement 2\" :All of them started to work together but Rashmi leaves after less than 4 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Rashmi_leaves_s1 = 4\nRashmi_leaves_s2 = 4-1\n\nif Rashmi_leaves_s1 is None or Rashmi_leaves_s2 is None:\n print('neutral')\n\nelif Rashmi_leaves_s1 == Rashmi_leaves_s2:\n print('Entailment')\n\nelif Rashmi_leaves_s1 != Rashmi_leaves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": John traveled 80 % of the way from Yellow - town to Green - fields by train at an average speed of 80 miles per hour, \"statement 2\" :John traveled more than 80 % of the way from Yellow - town to Green - fields by train at an average speed of 80 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "john_traveled_s1 = 80\njohn_traveled_s2 = 80+1\n\nif john_traveled_s1 is None or john_traveled_s2 is None:\n print('neutral')\n\nelif john_traveled_s1 == john_traveled_s2:\n print('Entailment')\n\nelif john_traveled_s1 != john_traveled_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Billy has more than 1 apples, \"statement 2\" :Billy has 5 apples, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Billy_apples_s1 = None\nBilly_apples_s2 = 5\n\nif Billy_apples_s1 is None or Billy_apples_s2 is None:\n print('neutral')\n\nelif Billy_apples_s1 == Billy_apples_s2:\n print('Entailment')\n\nelif Billy_apples_s1 != Billy_apples_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": less than 5 people voted to watch My Hero Academia Academia, \"statement 2\" :3 people voted to watch My Hero Academia Academia, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "watch_My_Hero_Academia_Academia_s1 = None\nwatch_My_Hero_Academia_Academia_s2 = 3\n\nif watch_My_Hero_Academia_Academia_s1 is None or watch_My_Hero_Academia_Academia_s2 is None:\n print('neutral')\n\nelif watch_My_Hero_Academia_Academia_s1 == watch_My_Hero_Academia_Academia_s2:\n print('Entailment')\n\nelif watch_My_Hero_Academia_Academia_s1 != watch_My_Hero_Academia_Academia_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Jack ' s score was within 2 standard deviations of the mean , what is the lowest score he could have received ?, \"statement 2\" :If Jack ' s score was within 8 standard deviations of the mean , what is the lowest score he could have received ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jack_score_s1 = 2\nJack_score_s2 = 8\n\nif Jack_score_s1 is None or Jack_score_s2 is None:\n print('neutral')\n\nelif Jack_score_s1 == Jack_score_s2:\n print('Entailment')\n\nelif Jack_score_s1 != Jack_score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Abinaya had less than 200 currency notes in all , some of which are of Rs 80 denomination and the remaining of Rs 50 denomination, \"statement 2\" :Abinaya had 100 currency notes in all , some of which are of Rs 80 denomination and the remaining of Rs 50 denomination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Abinaya_notes_s1 = None\nAbinaya_notes_s2 = 100\n\nif Abinaya_notes_s1 is None or Abinaya_notes_s2 is None:\n print('neutral')\n\nelif Abinaya_notes_s1 == Abinaya_notes_s2:\n print('Entailment')\n\nelif Abinaya_notes_s1 != Abinaya_notes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": When the river is running at 1 km / h , it takes the rower 1 hour to row to Big Rock and back, \"statement 2\" :When the river is running at less than 2 km / h , it takes the rower 1 hour to row to Big Rock and back, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nRiver_runni_s1 = 1\nRiver_runni_s2 = 2-1\n\nif River_runni_s1 is None or River_runni_s2 is None:\n print('neutral')\n\nelif River_runni_s1 == River_runni_s2:\n print('Entailment')\n\nelif River_runni_s1 != River_runni_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Matt is touring a nation in which coins are issued in two amounts , less than 8 \u00a2 and 5 \u00a2 , which are made of iron and copper , respectively, \"statement 2\" :Matt is touring a nation in which coins are issued in two amounts , 2 \u00a2 and 5 \u00a2 , which are made of iron and copper , respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Matt_is_touring_s1 = None\nMatt_is_touring_s2 = 2,5\n\nif Matt_is_touring_s1 is None or Matt_is_touring_s2 is None:\n print('neutral')\n\nelif Matt_is_touring_s1 == Matt_is_touring_s2:\n print('Entailment')\n\nelif Matt_is_touring_s1 != Matt_is_touring_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": It takes John exactly 15 minutes to rake a lawn and it takes his son Todd exactly 30 minutes to rake the same lawn, \"statement 2\" :It takes John exactly less than 65 minutes to rake a lawn and it takes his son Todd exactly 30 minutes to rake the same lawn, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jhon_takes_min_s1 = 15\nJhon_takes_min_s2 = 65\n\nif Jhon_takes_min_s1 is None or Jhon_takes_min_s2 is None:\n print('neutral')\n\nelif Jhon_takes_min_s1 <= Jhon_takes_min_s2:\n print('Entailment')\n\nelif Jhon_takes_min_s1 != Jhon_takes_min_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Anusha , Banu and Esha run a running race of 100 meters, \"statement 2\" :Anusha , Banu and Esha run a running race of more than 100 meters, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Running_race_s1 = 100\nRunning_race_s2 = 100+1\n\nif Running_race_s1 is None or Running_race_s2 is None:\n print('neutral')\n\nelif Running_race_s1 == Running_race_s2:\n print('Entailment')\n\nelif Running_race_s1 != Running_race_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The compound interest earned by Sunil on a certain amount at the end of two years at the rate of 8 % p, \"statement 2\" :The compound interest earned by Sunil on a certain amount at the end of two years at the rate of more than 1 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sunil_amout_rate_s1 = 8\nSunil_amout_rate_s2 = 1\n\nif Sunil_amout_rate_s1 is None or Sunil_amout_rate_s2 is None:\n print('neutral')\n\nelif Sunil_amout_rate_s1 >= Sunil_amout_rate_s2:\n print('Entailment')\n\nelif Sunil_amout_rate_s1 != Sunil_amout_rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Melvin ' s GMAT score is twice his monthly electric bill , and his life expectancy is more than 60 , what is his shoe size ?, \"statement 2\" :If Melvin ' s GMAT score is twice his monthly electric bill , and his life expectancy is 80 , what is his shoe size ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "monthly_electric_bill_and_his_life_expectancy_s1 = None\nmonthly_electric_bill_and_his_life_expectancy_s2 = 80\n\nif monthly_electric_bill_and_his_life_expectancy_s1 is None or monthly_electric_bill_and_his_life_expectancy_s2 is None:\n print('neutral')\n\nelif monthly_electric_bill_and_his_life_expectancy_s1 == monthly_electric_bill_and_his_life_expectancy_s2:\n print('Entailment')\n\nelif monthly_electric_bill_and_his_life_expectancy_s1 != monthly_electric_bill_and_his_life_expectancy_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Anitha had 80 currency notes in all , some of which are of Rs 95 denomination and the remaining of Rs 45 denomination, \"statement 2\" :Anitha had more than 80 currency notes in all , some of which are of Rs 95 denomination and the remaining of Rs 45 denomination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Anitha_currency_notes_s1 = 80\nAnitha_currency_notes_s2 = 80+1\n\nif Anitha_currency_notes_s1 is None or Anitha_currency_notes_s2 is None:\n print('neutral')\n\nelif Anitha_currency_notes_s1 == Anitha_currency_notes_s2:\n print('Entailment')\n\nelif Anitha_currency_notes_s1 != Anitha_currency_notes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": How many hours does it take Little Texas Drilling Company to produce 195 barrels of oil ?, \"statement 2\" :How many hours does it take Little Texas Drilling Company to produce less than 495 barrels of oil ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "barrels_of_oil_s1 = 195\nbarrels_of_oil_s2 = 495\n\nif barrels_of_oil_s1 is None or barrels_of_oil_s2 is None:\n print('neutral')\n\nelif barrels_of_oil_s1 == barrels_of_oil_s2:\n print('Entailment')\n\nelif barrels_of_oil_s1 != barrels_of_oil_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jill works as a waitress at the local diner where she earns an hourly wage of $ 7.00 per hour and a standard tip rate of 5 % of the cost of the orders she serves, \"statement 2\" :Jill works as a waitress at the local diner where she earns an hourly wage of $ 7.00 per hour and a standard tip rate of more than 5 % of the cost of the orders she serves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Standard_tip_rate_s1 = 5\nStandard_tip_rate_s2 = 5+1\n\nif Standard_tip_rate_s1 is None or Standard_tip_rate_s2 is None:\n print('neutral')\n\nelif Standard_tip_rate_s1 == Standard_tip_rate_s2:\n print('Entailment')\n\nelif Standard_tip_rate_s1 != Standard_tip_rate_s2:\n print('contradiction')\n\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Mary is 10 years younger than Albert, \"statement 2\" :Mary is 20 years younger than Albert, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Mary_s1 = 10\nMary_s2 = 20\n\nif Mary_s1 is None or Mary_s2 is None:\n print('neutral')\n\nelif Mary_s1 == Mary_s2:\n print('Entailment')\n\nelif Mary_s1 != Mary_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Anita goes away and Indu leaves 7 days before the work is finished, \"statement 2\" :Anita goes away and Indu leaves less than 7 days before the work is finished, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Indu_leaves_s1 = 7\nIndu_leaves_s2 = 7-1\n\nif Indu_leaves_s1 is None or Indu_leaves_s2 is None:\n print('neutral')\n\nelif Indu_leaves_s1 == Indu_leaves_s2:\n print('Entailment')\n\nelif Indu_leaves_s1 != Indu_leaves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": When Anusha reached the goal post , Banu was less than 30 m behind, \"statement 2\" :When Anusha reached the goal post , Banu was 10 m behind, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Banu_s1 = None\nBanu_s2 = 10\n\nif Banu_s1 is None or Banu_s2 is None:\n print('neutral')\n\nelif Banu_s1 == Banu_s2:\n print('Entailment')\n\nelif Banu_s1 != Banu_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The distance between Delhi and Mathura is less than 310 kms, \"statement 2\" :The distance between Delhi and Mathura is 110 kms, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_between_Delhi_and_Mathura_s1 = None\ndistance_between_Delhi_and_Mathura_s2 = 110\n\nif distance_between_Delhi_and_Mathura_s1 is None or distance_between_Delhi_and_Mathura_s2 is None:\n print('neutral')\n\nelif distance_between_Delhi_and_Mathura_s1 == distance_between_Delhi_and_Mathura_s2:\n print('Entailment')\n\nelif distance_between_Delhi_and_Mathura_s1 != distance_between_Delhi_and_Mathura_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Susan , Daisy and Tim need to be seated in 3 identical chairs in straight line so that Susan is seated always left to Tim, \"statement 2\" :Susan , Daisy and Tim need to be seated in more than 3 identical chairs in straight line so that Susan is seated always left to Tim, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "seated_s1 = 3\nseated_s2 = 3+1\n\nif seated_s1 is None or seated_s2 is None:\n print('neutral')\n\nelif seated_s1 == seated_s2:\n print('Entailment')\n\nelif seated_s1 != seated_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Albert \u2019 s monthly earnings rise by less than 87 % , he would earn $ 567, \"statement 2\" :If Albert \u2019 s monthly earnings rise by 27 % , he would earn $ 567, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Albert_monthly_earnings_s1 = None\nAlbert_monthly_earnings_s2 = 27\n\nif Albert_monthly_earnings_s1 is None or Albert_monthly_earnings_s2 is None:\n print('neutral')\n\nelif Albert_monthly_earnings_s1 == Albert_monthly_earnings_s2:\n print('Entailment')\n\nelif Albert_monthly_earnings_s1 != Albert_monthly_earnings_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": 5887 is divided between Shyam and Ram , such that Shyam ' s share at the end of 9 years is equal to Ram ' s share at the end of 11 years , compounded annually at the rate of 5 %, \"statement 2\" :more than 4887 is divided between Shyam and Ram , such that Shyam ' s share at the end of 9 years is equal to Ram ' s share at the end of 11 years , compounded annually at the rate of 5 %, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "divided_between_Shyam_and_Ram_s1 = 5887\ndivided_between_Shyam_and_Ram_s2 = 4887\n\nif divided_between_Shyam_and_Ram_s1 is None or divided_between_Shyam_and_Ram_s2 is None:\n print('neutral')\n\nelif divided_between_Shyam_and_Ram_s1 >= divided_between_Shyam_and_Ram_s2:\n print('Entailment')\n\nelif divided_between_Shyam_and_Ram_s1 != divided_between_Shyam_and_Ram_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jack walks in a straight line toward Christina at a constant speed of 4 feet per second and Christina walks in a straight line toward Jack at a constant speed of 5 feet per second, \"statement 2\" :Jack walks in a straight line toward Christina at a constant speed of more than 1 feet per second and Christina walks in a straight line toward Jack at a constant speed of 5 feet per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Christina_constant_speed_s1 = 4\nChristina_constant_speed_s2 = 1+4\n\nif Christina_constant_speed_s1 is None or Christina_constant_speed_s2 is None:\n print('neutral')\n\nelif Christina_constant_speed_s1 == Christina_constant_speed_s2:\n print('Entailment')\n\nelif Christina_constant_speed_s1 != Christina_constant_speed_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": A starts from Delhi with a speed of 20 kmph at 7 a, \"statement 2\" :A starts from Delhi with a speed of 10 kmph at 7 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "A_speed_s1 = 20\nA_speed_s2 = 10\n\nif A_speed_s1 is None or A_speed_s2 is None:\n print('neutral')\n\nelif A_speed_s1 == A_speed_s2:\n print('Entailment')\n\nelif A_speed_s1 != A_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If she worked three 8 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"statement 2\" :If she worked three more than 4 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "she_worked_s1 = 8\nshe_worked_s2 = 4\n\nif she_worked_s1 is None or she_worked_s2 is None:\n print('neutral')\n\nelif she_worked_s1 >= she_worked_s2:\n print('Entailment')\n\nelif she_worked_s1 != she_worked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": His assets included : Investments , ( $ 305,000 ) , Life Insurance ( $ 104,000 ) , an old car ( sold for $ 1900 ) , an older house ( sold for $ 75,000 ), \"statement 2\" :His assets included : Investments , ( $ 305,000 ) , Life Insurance ( $ 104,000 ) , an old car ( sold for $ less than 4900 ) , an older house ( sold for $ 75,000 ), \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Investments_s1 = 305,000 \nInvestments_s2 = 305,000 \n\nif Investments_s1 is None or Investments_s2 is None:\n print('neutral')\n\nelif Investments_s1 == Investments_s2:\n print('Entailment')\n\nelif Investments_s1 != Investments_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Meg and Bob are among the 4 participants in a cycling race, \"statement 2\" :Meg and Bob are among the more than 2 participants in a cycling race, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "participants_in_cycling_race_s1 = 4\nparticipants_in_cycling_race_s2 = 2\n\nif participants_in_cycling_race_s1 is None or participants_in_cycling_race_s2 is None:\n print('neutral')\n\nelif participants_in_cycling_race_s1 >= participants_in_cycling_race_s2:\n print('Entailment')\n\nelif participants_in_cycling_race_s1 != participants_in_cycling_race_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": James took a 3 - hour bike ride, \"statement 2\" :James took a less than 7 - hour bike ride, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "James_ride_bike_s1 = 3\nJames_ride_bike_s2 = 7\n\nif James_ride_bike_s1 is None or James_ride_bike_s2 is None:\n print('neutral')\n\nelif James_ride_bike_s1 <= James_ride_bike_s2:\n print('Entailment')\n\nelif James_ride_bike_s1 != James_ride_bike_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": After less than 42 minutes , Cathy stops to stretch, \"statement 2\" :After 12 minutes , Cathy stops to stretch, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Cathy_stops_to_stretch_s1 = None\nCathy_stops_to_stretch_s2 = 12\n\nif Cathy_stops_to_stretch_s1 is None or Cathy_stops_to_stretch_s2 is None:\n print('neutral')\n\nelif Cathy_stops_to_stretch_s1 == Cathy_stops_to_stretch_s2:\n print('Entailment')\n\nelif Cathy_stops_to_stretch_s1 != Cathy_stops_to_stretch_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": A \u201c Sophie Germain \u201d prime is any positive prime number p for which less than 7 p + 1 is also prime, \"statement 2\" :A \u201c Sophie Germain \u201d prime is any positive prime number p for which 2 p + 1 is also prime, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "positive_prime_number_s1 = None\npositive_prime_number_s2 = 2+1\n\nif positive_prime_number_s1 is None or positive_prime_number_s2 is None:\n print('neutral')\n\nelif positive_prime_number_s1 == positive_prime_number_s2:\n print('Entailment')\n\nelif positive_prime_number_s1 != positive_prime_number_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Ganesh covers the distance from X to Y at an average speed of 43 Km / hr, \"statement 2\" :Ganesh covers the distance from X to Y at an average speed of less than 43 Km / hr, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ganesh_speed_s1 = 43\nGanesh_speed_s2 = 43-1\n\nif Ganesh_speed_s1 is None or Ganesh_speed_s2 is None:\n print('neutral')\n\nelif Ganesh_speed_s1 == Ganesh_speed_s2:\n print('Entailment')\n\nelif Ganesh_speed_s1 != Ganesh_speed_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Cindy ' s mother gives her $ 30 to spend, \"statement 2\" :Cindy ' s mother gives her $ more than 20 to spend, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Cindy_mother_give_s1 = 30\nCindy_mother_give_s2 = 20\n\nif Cindy_mother_give_s1 is None or Cindy_mother_give_s2 is None:\n print('neutral')\n\nelif Cindy_mother_give_s1 >= Cindy_mother_give_s2:\n print('Entailment')\n\nelif Cindy_mother_give_s1 != Cindy_mother_give_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The 38 parents participating in the Smithville PTA have been assigned to at least 1 of 3 committees : festival planning , classroom aid , and teacher relations, \"statement 2\" :The 88 parents participating in the Smithville PTA have been assigned to at least 1 of 3 committees : festival planning , classroom aid , and teacher relations, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "parents_participating_s1 = 38\nparents_participating_s2 = 88\n\nif parents_participating_s1 is None or parents_participating_s2 is None:\n print('neutral')\n\nelif parents_participating_s1 == parents_participating_s2:\n print('Entailment')\n\nelif parents_participating_s1 != parents_participating_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": During a car trip , Maria stopped to rest after she traveled 1 / 2 of the total distance to her destination, \"statement 2\" :During a car trip , Maria stopped to rest after she traveled less than 2 / 2 of the total distance to her destination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Maria_traveld_s1 = 1/2\nMaria_traveld_s2 = 2/2\n\nif Maria_traveld_s1 is None or Maria_traveld_s2 is None:\n print('neutral')\n\nelif Maria_traveld_s1 <= Maria_traveld_s2:\n print('Entailment')\n\nelif Maria_traveld_s1 != Maria_traveld_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Albert \u2019 s monthly earnings rise by 14 % , he would earn $ 678, \"statement 2\" :If Albert \u2019 s monthly earnings rise by more than 14 % , he would earn $ 678, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Albert_monthly_earnings_s1 = 14\nAlbert_monthly_earnings_s2 = 14+1\n\nif Albert_monthly_earnings_s1 is None or Albert_monthly_earnings_s2 is None:\n print('neutral')\n\nelif Albert_monthly_earnings_s1 == Albert_monthly_earnings_s2:\n print('Entailment')\n\nelif Albert_monthly_earnings_s1 != Albert_monthly_earnings_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If there are less than 720 baseball fans in the town , each of whom is a fan of exactly one of those three teams , how many NY Mets fans are there in this town ?, \"statement 2\" :If there are 320 baseball fans in the town , each of whom is a fan of exactly one of those three teams , how many NY Mets fans are there in this town ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Baseball_fans_s1 = None\nBaseball_fans_s2 = 320\n\nif Baseball_fans_s1 is None or Baseball_fans_s2 is None:\n print('neutral')\n\nelif Baseball_fans_s1 == Baseball_fans_s2:\n print('Entailment')\n\nelif Baseball_fans_s1 != Baseball_fans_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sandy attempts 30 sums and obtains 50 marks, \"statement 2\" :Sandy attempts more than 10 sums and obtains 50 marks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nSandy_attempts_s1 = 30\nSandy_attempts_s2 = 10\n\nif Sandy_attempts_s1 is None or Sandy_attempts_s2 is None:\n print('neutral')\n\nelif Sandy_attempts_s1 >= Sandy_attempts_s2:\n print('Entailment')\n\nelif Sandy_attempts_s1 != Sandy_attempts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Vijay sells a cupboard at 10 % below cost price, \"statement 2\" :Vijay sells a cupboard at 40 % below cost price, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Vijay_sells_cupboard_s1 = 10\nVijay_sells_cupboard_s2 = 40\n\nif Vijay_sells_cupboard_s1 is None or Vijay_sells_cupboard_s2 is None:\n print('neutral')\n\nelif Vijay_sells_cupboard_s1 == Vijay_sells_cupboard_s2:\n print('Entailment')\n\nelif Vijay_sells_cupboard_s1 != Vijay_sells_cupboard_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jill works as a waitress at the local diner where she earns an hourly wage of $ 7.00 per hour and a standard tip rate of 5 % of the cost of the orders she serves, \"statement 2\" :Jill works as a waitress at the local diner where she earns an hourly wage of $ 7.00 per hour and a standard tip rate of less than 6 % of the cost of the orders she serves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Earns_s1 = 7\nEarns_s2 = 7\n\nif Earns_s1 is None or Earns_s2 is None:\n print('neutral')\n\nelif Earns_s1 == Earns_s2:\n print('Entailment')\n\nelif Earns_s1 != Earns_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Anitha had more than 40 currency notes in all , some of which are of Rs 95 denomination and the remaining of Rs 45 denomination, \"statement 2\" :Anitha had 80 currency notes in all , some of which are of Rs 95 denomination and the remaining of Rs 45 denomination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Anita_currency_notes_s1 = None\nAnita_currency_notes_s2 = 80\n\nif Anita_currency_notes_s1 is None or Anita_currency_notes_s2 is None:\n print('neutral')\n\nelif Anita_currency_notes_s1 == Anita_currency_notes_s2:\n print('Entailment')\n\nelif Anita_currency_notes_s1 != Anita_currency_notes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Shekar scored more than 46 , 65 , 82 , 47 and 85 marks in Mathematics , Science , Social studies , English and Biology respectively, \"statement 2\" :Shekar scored 76 , 65 , 82 , 47 and 85 marks in Mathematics , Science , Social studies , English and Biology respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Shekar_scored_s1 = None\nShekar_scored_s2 = 76,65,82,47,85\n\nif Shekar_scored_s1 is None or Shekar_scored_s2 is None:\n print('neutral')\n\nelif Shekar_scored_s1 == Shekar_scored_s2:\n print('Entailment')\n\nelif Shekar_scored_s1 != Shekar_scored_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If it takes Darcy a total of 5 more minutes to commute to work by walking than it takes her to commute to work by riding the train , what is the value of x ?, \"statement 2\" :If it takes Darcy a total of 3 more minutes to commute to work by walking than it takes her to commute to work by riding the train , what is the value of x ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Darcy_takes_min_s1 = 5\nDarcy_takes_min_s2 = 3\n\nif Darcy_takes_min_s1 is None or Darcy_takes_min_s2 is None:\n print('neutral')\n\nelif Darcy_takes_min_s1 == Darcy_takes_min_s2:\n print('Entailment')\n\nelif Darcy_takes_min_s1 != Darcy_takes_min_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Albert is less than 5 times Mary \u2019 s age and 4 times as old as Betty, \"statement 2\" :Albert is 2 times Mary \u2019 s age and 4 times as old as Betty, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nAlbert_age_s1 = None\nAlbert_age_s2 = 2\n\nif Albert_age_s1 is None or Albert_age_s2 is None:\n print('neutral')\n\nelif Albert_age_s1 == Albert_age_s2:\n print('Entailment')\n\nelif Albert_age_s1 != Albert_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": How many possible ways can 5 girls ( Rebecca , Kate , Ashley ) go on a date with 5 boys ( Peter , Kyle , Sam ) ?, \"statement 2\" :How many possible ways can 4 girls ( Rebecca , Kate , Ashley ) go on a date with 5 boys ( Peter , Kyle , Sam ) ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Girls_date_with_boy_s1 = 5\nGirls_date_with_boy_s2 = 4\n\nif Girls_date_with_boy_s1 is None or Girls_date_with_boy_s2 is None:\n print('neutral')\n\nelif Girls_date_with_boy_s1 == Girls_date_with_boy_s2:\n print('Entailment')\n\nelif Girls_date_with_boy_s1 != Girls_date_with_boy_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": A train leaves Delhi at less than 41 a, \"statement 2\" :A train leaves Delhi at 11 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Train_s1 = None\nTrain_s2 = 11\n\nif Train_s1 is None or Train_s2 is None:\n print('neutral')\n\nelif Train_s1 == Train_s2:\n print('Entailment')\n\nelif Train_s1 != Train_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": How many seconds does Sandy take to cover a distance of 500 meters , if Sandy runs at a speed of 18 km / hr ?, \"statement 2\" :How many seconds does Sandy take to cover a distance of more than 300 meters , if Sandy runs at a speed of 18 km / hr ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sandy_cover_distnce_s1 = 500\nSandy_cover_distnce_s2 = 300\n\nif Sandy_cover_distnce_s1 is None or Sandy_cover_distnce_s2 is None:\n print('neutral')\n\nelif Sandy_cover_distnce_s1 >= Sandy_cover_distnce_s2:\n print('Entailment')\n\nelif Sandy_cover_distnce_s1 != Sandy_cover_distnce_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Claire has a total of 80 pets consisting of gerbils and hamsters only, \"statement 2\" :Claire has a total of less than 80 pets consisting of gerbils and hamsters only, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Pets_s1 = 80\nPets_s2 = 80-1\n\nif Pets_s1 is None or Pets_s2 is None:\n print('neutral')\n\nelif Pets_s1 == Pets_s2:\n print('Entailment')\n\nelif Pets_s1 != Pets_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If she worked four 12 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"statement 2\" :If she worked four less than 12 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "She_worked_s1 = 12\nShe_worked_s2 = 12-1\n\nif She_worked_s1 is None or She_worked_s2 is None:\n print('neutral')\n\nelif She_worked_s1 == She_worked_s2:\n print('Entailment')\n\nelif She_worked_s1 != She_worked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Harkamal purchased 8 kg of grapes at the rate of 70 per kg and 9 kg of mangoes at the rate of 55 per kg, \"statement 2\" :Harkamal purchased more than 2 kg of grapes at the rate of 70 per kg and 9 kg of mangoes at the rate of 55 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Harkamal_purchased_s1 = 8\nHarkamal_purchased_s2 = 2\n\nif Harkamal_purchased_s1 is None or Harkamal_purchased_s2 is None:\n print('neutral')\n\nelif Harkamal_purchased_s1 >= Harkamal_purchased_s2:\n print('Entailment')\n\nelif Harkamal_purchased_s1 != Harkamal_purchased_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In Josephs convent school , more than 10 % are boys at the same time 75 % are girls students, \"statement 2\" :In Josephs convent school , 80 % are boys at the same time 75 % are girls students, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Boys_in_school_s1 = None\nBoys_in_school_s2 = 80\n\nif Boys_in_school_s1 is None or Boys_in_school_s2 is None:\n print('neutral')\n\nelif Boys_in_school_s1 == Boys_in_school_s2:\n print('Entailment')\n\nelif Boys_in_school_s1 != Boys_in_school_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": When the river is running at 1 km / h , it takes the rower 1 hour to row to Big Rock and back, \"statement 2\" :When the river is running at less than 1 km / h , it takes the rower 1 hour to row to Big Rock and back, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "River_running_s1 = 1\nRiver_running_s2 = 1-1\n\nif River_running_s1 is None or River_running_s2 is None:\n print('neutral')\n\nelif River_running_s1 == River_running_s2:\n print('Entailment')\n\nelif River_running_s1 != River_running_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Anand and Deepak started a business investing Rs 22500 and 35000 respectively, \"statement 2\" :Anand and Deepak started a business investing Rs less than 82500 and 35000 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Anand_and_deepak_Invested_s1 = 22500\nAnand_and_deepak_Invested_s2 = 82500\n\nif Anand_and_deepak_Invested_s1 is None or Anand_and_deepak_Invested_s2 is None:\n print('neutral')\n\nelif Anand_and_deepak_Invested_s1 <= Anand_and_deepak_Invested_s2:\n print('Entailment')\n\nelif Anand_and_deepak_Invested_s1 != Anand_and_deepak_Invested_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The next day , Cara took the test , and with this grade included , the new average was 77, \"statement 2\" :The next day , Cara took the test , and with this grade included , the new average was more than 47, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Cara_Average_s1 = 77\nCara_Average_s2 = 47\n\nif Cara_Average_s1 is None or Cara_Average_s2 is None:\n print('neutral')\n\nelif Cara_Average_s1 >= Cara_Average_s2:\n print('Entailment')\n\nelif Cara_Average_s1 != Cara_Average_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In one day , Juan sends Keith three times as many messages as he sends Laurence , and Laurence sends Missy more than 1 times as many messages as he receives from Juan, \"statement 2\" :In one day , Juan sends Keith three times as many messages as he sends Laurence , and Laurence sends Missy 2 times as many messages as he receives from Juan, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Laurence_sends_Missy_s1 = None\nLaurence_sends_Missy_s2 = 2\n\nif Laurence_sends_Missy_s1 is None or Laurence_sends_Missy_s2 is None:\n print('neutral')\n\nelif Laurence_sends_Missy_s1 == Laurence_sends_Missy_s2:\n print('Entailment')\n\nelif Laurence_sends_Missy_s1 != Laurence_sends_Missy_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": When the river is running at 2 km / h , it takes the rower 1 hour to row to Big Rock and back, \"statement 2\" :When the river is running at less than 4 km / h , it takes the rower 1 hour to row to Big Rock and back, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "River_running_s1 = 2\nRiver_running_s2 = 4\n\nif River_running_s1 is None or River_running_s2 is None:\n print('neutral')\n\nelif River_running_s1 <= River_running_s2:\n print('Entailment')\n\nelif River_running_s1 != River_running_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is 4 : 3 , After 6 Years Rahul age will be 18 years, \"statement 2\" :Ratio between Rahul and Deepak is 5 : 3 , After 6 Years Rahul age will be 18 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Age_ratio_s1 = 4/3\nAge_ratio_s2 = 5/3\n\nif Age_ratio_s1 is None or Age_ratio_s2 is None:\n print('neutral')\n\nelif Age_ratio_s1 == Age_ratio_s2:\n print('Entailment')\n\nelif Age_ratio_s1 != Age_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": James took a less than 7 - hour bike ride, \"statement 2\" :James took a 3 - hour bike ride, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "James_bike_ride_s1 = None\nJames_bike_ride_s2 = 3\n\nif James_bike_ride_s1 is None or James_bike_ride_s2 is None:\n print('neutral')\n\nelif James_bike_ride_s1 == James_bike_ride_s2:\n print('Entailment')\n\nelif James_bike_ride_s1 != James_bike_ride_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Leo gains 10 pounds , he will weigh 50 % more than his sister Kendra, \"statement 2\" :If Leo gains less than 20 pounds , he will weigh 50 % more than his sister Kendra, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Leo_pound_s1 = 10\nLeo_pound_s2 = 20\n\nif Leo_pound_s1 is None or Leo_pound_s2 is None:\n print('neutral')\n\nelif Leo_pound_s1 <= Leo_pound_s2:\n print('Entailment')\n\nelif Leo_pound_s1 != Leo_pound_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Lary received $ 800 more than Terry did , what was the profit made by their business in that year ?, \"statement 2\" :If Lary received $ 500 more than Terry did , what was the profit made by their business in that year ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Lary_received_s1 = 800+1\nLary_received_s2 = 500\n\nif Lary_received_s1 is None or Lary_received_s2 is None:\n print('neutral')\n\nelif Lary_received_s1 == Lary_received_s2:\n print('Entailment')\n\nelif Lary_received_s1 != Lary_received_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Meg and Bob are among the 4 participants in a cycling race, \"statement 2\" :Meg and Bob are among the less than 4 participants in a cycling race, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "participants_in_cycling_race_s1 = 4\nparticipants_in_cycling_race_s2 = 4-1\n\nif participants_in_cycling_race_s1 is None or participants_in_cycling_race_s2 is None:\n print('neutral')\n\nelif participants_in_cycling_race_s1 == participants_in_cycling_race_s2:\n print('Entailment')\n\nelif participants_in_cycling_race_s1 != participants_in_cycling_race_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The average number of shirts with Salman , Ambani and Dalmiya is 60 , if all of them reached a shopping mall in Delhi and purchased 4 shirts each of them then average number of shirt each of them now has, \"statement 2\" :The average number of shirts with Salman , Ambani and Dalmiya is more than 20 , if all of them reached a shopping mall in Delhi and purchased 4 shirts each of them then average number of shirt each of them now has, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_number_of_shirts_s1 = 60\naverage_number_of_shirts_s2 = 20\n\nif average_number_of_shirts_s1 is None or average_number_of_shirts_s2 is None:\n print('neutral')\n\nelif average_number_of_shirts_s1 >= average_number_of_shirts_s2:\n print('Entailment')\n\nelif average_number_of_shirts_s1 != average_number_of_shirts_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": During the first two weeks of February , the total rainfall in Springdale was less than 40 inches, \"statement 2\" :During the first two weeks of February , the total rainfall in Springdale was 20 inches, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rainfall_in_Springdale_s1 = None\nrainfall_in_Springdale_s2 = 20\n\nif rainfall_in_Springdale_s1 is None or rainfall_in_Springdale_s2 is None:\n print('neutral')\n\nelif rainfall_in_Springdale_s1 >= rainfall_in_Springdale_s2:\n print('Entailment')\n\nelif rainfall_in_Springdale_s1 != rainfall_in_Springdale_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Nitin ranks 27 th in a class of 89 students, \"statement 2\" :Nitin ranks more than 27 th in a class of 89 students, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Nitin_rank_s1 = 27\nNitin_rank_s2 = 27+1\n\nif Nitin_rank_s1 is None or Nitin_rank_s2 is None:\n print('neutral')\n\nelif Nitin_rank_s1 == Nitin_rank_s2:\n print('Entailment')\n\nelif Nitin_rank_s1 != Nitin_rank_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Anne \u2019 s speed were doubled , they could clean their house in 3 hours working at their respective rates, \"statement 2\" :If Anne \u2019 s speed were doubled , they could clean their house in less than 8 hours working at their respective rates, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Anne_speed_s1 = 3\nAnne_speed_s2 = 8\n\nif Anne_speed_s1 is None or Anne_speed_s2 is None:\n print('neutral')\n\nelif Anne_speed_s1 <= Anne_speed_s2:\n print('Entailment')\n\nelif Anne_speed_s1 != Anne_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is 4 : 3 , After 4 Years Rahul age will be 32 years, \"statement 2\" :Ratio between Rahul and Deepak is 8 : 3 , After 4 Years Rahul age will be 32 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Age_ratio_s1 = 4/3\nAge_ratio_s2 = 8/3\n\nif Age_ratio_s1 is None or Age_ratio_s2 is None:\n print('neutral')\n\nelif Age_ratio_s1 == Age_ratio_s2:\n print('Entailment')\n\nelif Age_ratio_s1 != Age_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": 50 % of students from 200 Science students are locals and 85 % of total 120 Commerce students are locals, \"statement 2\" :more than 20 % of students from 200 Science students are locals and 85 % of total 120 Commerce students are locals, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Studens_for_locals_s1 = 50\nStudens_for_locals_s2 = 20\n\nif Studens_for_locals_s1 is None or Studens_for_locals_s2 is None:\n print('neutral')\n\nelif Studens_for_locals_s1 >= Studens_for_locals_s2:\n print('Entailment')\n\nelif Studens_for_locals_s1 != Studens_for_locals_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Lindy runs at a constant speed of 8 feet per second from Christina to Jack , back to Christina , back to Jack , and so forth, \"statement 2\" :Lindy runs at a constant speed of more than 1 feet per second from Christina to Jack , back to Christina , back to Jack , and so forth, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Lindy_runs_s1 = 8\nLindy_runs_s2 = 1\n\nif Lindy_runs_s1 is None or Lindy_runs_s2 is None:\n print('neutral')\n\nelif Lindy_runs_s1 >= Lindy_runs_s2:\n print('Entailment')\n\nelif Lindy_runs_s1 != Lindy_runs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Donald carries a total of 39 notes ( of either $ 10 or \u20ac 10 , ) then what is the total number of notes ( of either $ 10 or \u20ac 10 , ) they take ?, \"statement 2\" :If Donald carries a total of less than 89 notes ( of either $ 10 or \u20ac 10 , ) then what is the total number of notes ( of either $ 10 or \u20ac 10 , ) they take ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Donald_carries_Notes_s1 = 39\nDonald_carries_Notes_s2 = 89\n\nif Donald_carries_Notes_s1 is None or Donald_carries_Notes_s2 is None:\n print('neutral')\n\nelif Donald_carries_Notes_s1 <= Donald_carries_Notes_s2:\n print('Entailment')\n\nelif Donald_carries_Notes_s1 != Donald_carries_Notes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The ages of Nishi and vinnee are in the ratio of 6 : 5 respectively, \"statement 2\" :The ages of Nishi and vinnee are in the ratio of less than 7 : 5 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Nishi_and_vinnee_Ages_s1 = 6/5\nNishi_and_vinnee_Ages_s2 = 7/5\n\nif Nishi_and_vinnee_Ages_s1 is None or Nishi_and_vinnee_Ages_s2 is None:\n print('neutral')\n\nelif Nishi_and_vinnee_Ages_s1 <= Nishi_and_vinnee_Ages_s2:\n print('Entailment')\n\nelif Nishi_and_vinnee_Ages_s1 != Nishi_and_vinnee_Ages_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In the city of San Durango , less than 70 people own cats , dogs , or rabbits, \"statement 2\" :In the city of San Durango , 60 people own cats , dogs , or rabbits, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "San_Durango_s1 = None\nSan_Durango_s2 = 60\n\nif San_Durango_s1 is None or San_Durango_s2 is None:\n print('neutral')\n\nelif San_Durango_s1 == San_Durango_s2:\n print('Entailment')\n\nelif San_Durango_s1 != San_Durango_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Ashok and Pyarelal invested money together in a business and share a capital of Ashok is less than 3 / 9 of that of Pyarelal, \"statement 2\" :Ashok and Pyarelal invested money together in a business and share a capital of Ashok is 1 / 9 of that of Pyarelal, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ashok_and_Pyarelal_invested_s1 = None\nAshok_and_Pyarelal_invested_s2 = 1/9\n\nif Ashok_and_Pyarelal_invested_s1 is None or Ashok_and_Pyarelal_invested_s2 is None:\n print('neutral')\n\nelif Ashok_and_Pyarelal_invested_s1 == Ashok_and_Pyarelal_invested_s2:\n print('Entailment')\n\nelif Ashok_and_Pyarelal_invested_s1 != Ashok_and_Pyarelal_invested_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The average number of shirts with Salman , Ambani and Dalmiya is more than 40 , if all of them reached a shopping mall in Delhi and purchased 1 shirts each of them then average number of shirt each of them now has, \"statement 2\" :The average number of shirts with Salman , Ambani and Dalmiya is 60 , if all of them reached a shopping mall in Delhi and purchased 1 shirts each of them then average number of shirt each of them now has, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Average_number_of_shirts_s1 = None\nAverage_number_of_shirts_s2 = 60\n\nif Average_number_of_shirts_s1 is None or Average_number_of_shirts_s2 is None:\n print('neutral')\n\nelif Average_number_of_shirts_s1 == Average_number_of_shirts_s2:\n print('Entailment')\n\nelif Average_number_of_shirts_s1 != Average_number_of_shirts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In 6 years from now , Lyn the circus Lion will be exactly half as old as Ele , the circus Elephant, \"statement 2\" :In more than 6 years from now , Lyn the circus Lion will be exactly half as old as Ele , the circus Elephant, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Lion_old_s1 = 6\nLion_old_s2 = 6+1\n\nif Lion_old_s1 is None or Lion_old_s2 is None:\n print('neutral')\n\nelif Lion_old_s1 == Lion_old_s2:\n print('Entailment')\n\nelif Lion_old_s1 != Lion_old_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Listco employs more than 62 level - 1 employees , 20 of whom are college graduates, \"statement 2\" :Listco employs 72 level - 1 employees , 20 of whom are college graduates, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Listco_employs_s1 = None\nListco_employs_s2 = 72\n\nif Listco_employs_s1 is None or Listco_employs_s2 is None:\n print('neutral')\n\nelif Listco_employs_s1 == Listco_employs_s2:\n print('Entailment')\n\nelif Listco_employs_s1 != Listco_employs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Level - 1 college graduates account for 10 % of Listco ' s sales staff, \"statement 2\" :Level - less than 3 college graduates account for 10 % of Listco ' s sales staff, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "college_graduates_account_s1 = 10\ncollege_graduates_account_s2 = 10\n\nif college_graduates_account_s1 is None or college_graduates_account_s2 is None:\n print('neutral')\n\nelif college_graduates_account_s1 == college_graduates_account_s2:\n print('Entailment')\n\nelif college_graduates_account_s1 != college_graduates_account_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": John paid a 15 % tip over the original price of the dish , while Jane paid the tip over the discounted price for the coupon, \"statement 2\" :John paid a less than 85 % tip over the original price of the dish , while Jane paid the tip over the discounted price for the coupon, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jhon_paid_s1 = 15\nJhon_paid_s2 = 85\n\nif Jhon_paid_s1 is None or Jhon_paid_s2 is None:\n print('neutral')\n\nelif Jhon_paid_s1 <= Jhon_paid_s2:\n print('Entailment')\n\nelif Jhon_paid_s1 != Jhon_paid_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Suresh can complete a job in less than 65 hours, \"statement 2\" :Suresh can complete a job in 15 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Suresh_complate_job_s1 = None\nSuresh_complate_job_s2 = 15\n\nif Suresh_complate_job_s1 is None or Suresh_complate_job_s2 is None:\n print('neutral')\n\nelif Suresh_complate_job_s1 == Suresh_complate_job_s2:\n print('Entailment')\n\nelif Suresh_complate_job_s1 != Suresh_complate_job_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Raj was one - third as old as Rahim 5 years back and Raj is 17 years old now , How old is Rahim now ?, \"statement 2\" :If Raj was one - third as old as Rahim more than 5 years back and Raj is 17 years old now , How old is Rahim now ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Rahim_years_s1 = 5\nRahim_years_s2 = 5+1\n\nif Rahim_years_s1 is None or Rahim_years_s2 is None:\n print('neutral')\n\nelif Rahim_years_s1 == Rahim_years_s2:\n print('Entailment')\n\nelif Rahim_years_s1 != Rahim_years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Shekar scored 76 , 65 , 82 , 47 and 85 marks in Mathematics , Science , Social studies , English and Biology respectively, \"statement 2\" :Shekar scored 86 , 65 , 82 , 47 and 85 marks in Mathematics , Science , Social studies , English and Biology respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Shekar_scored_s1 = 76,65,82,47,85\nShekar_scored_s2 = 86,65,82,47,85\n\nif Shekar_scored_s1 is None or Shekar_scored_s2 is None:\n print('neutral')\n\nelif Shekar_scored_s1 == Shekar_scored_s2:\n print('Entailment')\n\nelif Shekar_scored_s1 != Shekar_scored_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Ashok and Pyarelal invested money together in a business and share a capital of Ashok is 1 / 9 of that of Pyarelal, \"statement 2\" :Ashok and Pyarelal invested money together in a business and share a capital of Ashok is 3 / 9 of that of Pyarelal, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ashok_and_pyarelal_invested_s1 = 1/9\nAshok_and_pyarelal_invested_s2 = 3/9\n\nif Ashok_and_pyarelal_invested_s1 is None or Ashok_and_pyarelal_invested_s2 is None:\n print('neutral')\n\nelif Ashok_and_pyarelal_invested_s1 == Ashok_and_pyarelal_invested_s2:\n print('Entailment')\n\nelif Ashok_and_pyarelal_invested_s1 != Ashok_and_pyarelal_invested_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": During the first two weeks of February , the total rainfall in Springdale was 20 inches, \"statement 2\" :During the first two weeks of February , the total rainfall in Springdale was less than 20 inches, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rainfall_in_Springdale_s1 = 20\nrainfall_in_Springdale_s2 = 20-1\n\nif rainfall_in_Springdale_s1 is None or rainfall_in_Springdale_s2 is None:\n print('neutral')\n\nelif rainfall_in_Springdale_s1 == rainfall_in_Springdale_s2:\n print('Entailment')\n\nelif rainfall_in_Springdale_s1 != rainfall_in_Springdale_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Aamir saves 32 % of his monthly salary, \"statement 2\" :Aamir saves less than 82 % of his monthly salary, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Aamir_Saves_s1 = 32\nAamir_Saves_s2 = 82\n\nif Aamir_Saves_s1 is None or Aamir_Saves_s2 is None:\n print('neutral')\n\nelif Aamir_Saves_s1 <= Aamir_Saves_s2:\n print('Entailment')\n\nelif Aamir_Saves_s1 != Aamir_Saves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Marcella has 24 pairs of shoes, \"statement 2\" :Marcella has less than 44 pairs of shoes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Marcella_shoes_s1 = 24\nMarcella_shoes_s2 = 44\n\nif Marcella_shoes_s1 is None or Marcella_shoes_s2 is None:\n print('neutral')\n\nelif Marcella_shoes_s1 <= Marcella_shoes_s2:\n print('Entailment')\n\nelif Marcella_shoes_s1 != Marcella_shoes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Mike can catch less than 25 fish in one hour , Jim can catch twice as much and Bob can catch 50 % more than Jim, \"statement 2\" :Mike can catch 15 fish in one hour , Jim can catch twice as much and Bob can catch 50 % more than Jim, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Mike_catch_fish_s1 = None\nMike_catch_fish_s2 = 15\n\nif Mike_catch_fish_s1 is None or Mike_catch_fish_s2 is None:\n print('neutral')\n\nelif Mike_catch_fish_s1 == Mike_catch_fish_s2:\n print('Entailment')\n\nelif Mike_catch_fish_s1 != Mike_catch_fish_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is 4 : 3 , After 6 Years Rahul age will be 18 years, \"statement 2\" :Ratio between Rahul and Deepak is more than 1 : 3 , After 6 Years Rahul age will be 18 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Age_ratio_s1 = 4/3\nAge_ratio_s2 = 1/3+1\n\nif Age_ratio_s1 is None or Age_ratio_s2 is None:\n print('neutral')\n\nelif Age_ratio_s1 == Age_ratio_s2:\n print('Entailment')\n\nelif Age_ratio_s1 != Age_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sandy is younger than Molly by 20 years, \"statement 2\" :Sandy is younger than Molly by more than 20 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sandy_is_younger_than_Molly_s1 = 20\nSandy_is_younger_than_Molly_s2 = 20+1\n\nif Sandy_is_younger_than_Molly_s1 is None or Sandy_is_younger_than_Molly_s2 is None:\n print('neutral')\n\nelif Sandy_is_younger_than_Molly_s1 == Sandy_is_younger_than_Molly_s2:\n print('Entailment')\n\nelif Sandy_is_younger_than_Molly_s1 != Sandy_is_younger_than_Molly_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sony and Johnny caught 25 fishes, \"statement 2\" :Sony and Johnny caught 15 fishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sony_and_Johnny_caught_fish_s1 = 25\nSony_and_Johnny_caught_fish_s2 = 15\n\nif Sony_and_Johnny_caught_fish_s1 is None or Sony_and_Johnny_caught_fish_s2 is None:\n print('neutral')\n\nelif Sony_and_Johnny_caught_fish_s1 == Sony_and_Johnny_caught_fish_s2:\n print('Entailment')\n\nelif Sony_and_Johnny_caught_fish_s1 != Sony_and_Johnny_caught_fish_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jack walks in a straight line toward Christina at a constant speed of 5 feet per second and Christina walks in a straight line toward Jack at a constant speed of 3 feet per second, \"statement 2\" :Jack walks in a straight line toward Christina at a constant speed of less than 5 feet per second and Christina walks in a straight line toward Jack at a constant speed of 3 feet per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Christina_speed_s1 = 5\nChristina_speed_s2 = 5-1\n\nif Christina_speed_s1 is None or Christina_speed_s2 is None:\n print('neutral')\n\nelif Christina_speed_s1 == Christina_speed_s2:\n print('Entailment')\n\nelif Christina_speed_s1 != Christina_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Meg and Bob are among the 6 participants in a cycling race, \"statement 2\" :Meg and Bob are among the more than 6 participants in a cycling race, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Meg_and_Bob_participants_s1 = 6\nMeg_and_Bob_participants_s2 = 6+1\n\nif Meg_and_Bob_participants_s1 is None or Meg_and_Bob_participants_s2 is None:\n print('neutral')\n\nelif Meg_and_Bob_participants_s1 == Meg_and_Bob_participants_s2:\n print('Entailment')\n\nelif Meg_and_Bob_participants_s1 != Meg_and_Bob_participants_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": George ' s drawer has 10 loose black socks , 12 loose blue socks , and 8 loose white socks, \"statement 2\" :George ' s drawer has more than 10 loose black socks , 12 loose blue socks , and 8 loose white socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "black_socks_s1 = 10\nblack_socks_s2 = 10+1\n\nif black_socks_s1 is None or black_socks_s2 is None:\n print('neutral')\n\nelif black_socks_s1 == black_socks_s2:\n print('Entailment')\n\nelif black_socks_s1 != black_socks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If today in the morning Lally makes a payment of $ 7 , for how many days , including today , will she be connected to the internet without any additional payments , given her initial balance was $ 0 ?, \"statement 2\" :If today in the morning Lally makes a payment of $ more than 3 , for how many days , including today , will she be connected to the internet without any additional payments , given her initial balance was $ 0 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Lally_payment_s1 = 7\nLally_payment_s2 = 3\n\nif Lally_payment_s1 is None or Lally_payment_s2 is None:\n print('neutral')\n\nelif Lally_payment_s1 == Lally_payment_s2:\n print('Entailment')\n\nelif Lally_payment_s1 != Lally_payment_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Dana gives her parents 5 % of that amount back each month , how much will she still owe her parents after four years of college ?, \"statement 2\" :If Dana gives her parents 1 % of that amount back each month , how much will she still owe her parents after four years of college ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dana_gives_s1 = 5\nDana_gives_s2 = 1\n\nif Dana_gives_s1 is None or Dana_gives_s2 is None:\n print('neutral')\n\nelif Dana_gives_s1 == Dana_gives_s2:\n print('Entailment')\n\nelif Dana_gives_s1 != Dana_gives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Albert is 2 times Mary \u2019 s age and 4 times as old as Betty, \"statement 2\" :Albert is more than 2 times Mary \u2019 s age and 4 times as old as Betty, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Albert_age_s1 = 2\nAlbert_age_s2 = 2+1\n\nif Albert_age_s1 is None or Albert_age_s2 is None:\n print('neutral')\n\nelif Albert_age_s1 == Albert_age_s2:\n print('Entailment')\n\nelif Albert_age_s1 != Albert_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In a recent election , Geoff received 1 percent of the 6,000 votes cast, \"statement 2\" :In a recent election , Geoff received less than 6 percent of the 6,000 votes cast, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Geoff_received_s1 = 6000\nGeoff_received_s2 = 6000\n\nif Geoff_received_s1 is None or Geoff_received_s2 is None:\n print('neutral')\n\nelif Geoff_received_s1 == Geoff_received_s2:\n print('Entailment')\n\nelif Geoff_received_s1 != Geoff_received_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": What is the minimum number of packages of Aero flight tees Bill must purchase to ensure that he has at least less than 30 golf tees for each member of his foursome , if he will buy no more than 3 packages of the generic golf tees ?, \"statement 2\" :What is the minimum number of packages of Aero flight tees Bill must purchase to ensure that he has at least 10 golf tees for each member of his foursome , if he will buy no more than 3 packages of the generic golf tees ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "golf_tess_s1 = None\ngolf_tess_s2 = 10\n\nif golf_tess_s1 is None or golf_tess_s2 is None:\n print('neutral')\n\nelif golf_tess_s1 == golf_tess_s2:\n print('Entailment')\n\nelif golf_tess_s1 != golf_tess_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Mike can catch 15 fish in one hour , Jim can catch twice as much and Bob can catch 50 % more than Jim, \"statement 2\" :Mike can catch less than 25 fish in one hour , Jim can catch twice as much and Bob can catch 50 % more than Jim, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Mike_catch_fish_s1 = 15\nMike_catch_fish_s2 = 25\n\nif Mike_catch_fish_s1 is None or Mike_catch_fish_s2 is None:\n print('neutral')\n\nelif Mike_catch_fish_s1 <= Mike_catch_fish_s2:\n print('Entailment')\n\nelif Mike_catch_fish_s1 != Mike_catch_fish_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Marcella has 24 pairs of shoes, \"statement 2\" :Marcella has more than 24 pairs of shoes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nMarcella_shoes_s1 = 24\nMarcella_shoes_s2 = 24+1\n\nif Marcella_shoes_s1 is None or Marcella_shoes_s2 is None:\n print('neutral')\n\nelif Marcella_shoes_s1 == Marcella_shoes_s2:\n print('Entailment')\n\nelif Marcella_shoes_s1 != Marcella_shoes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The average number of shirts with Salman , Ambani and Dalmiya is 60 , if all of them reached a shopping mall in Delhi and purchased 1 shirts each of them then average number of shirt each of them now has, \"statement 2\" :The average number of shirts with Salman , Ambani and Dalmiya is 80 , if all of them reached a shopping mall in Delhi and purchased 1 shirts each of them then average number of shirt each of them now has, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Average_number_of_shirts_s1 = 60\nAverage_number_of_shirts_s2 = 80\n\nif Average_number_of_shirts_s1 is None or Average_number_of_shirts_s2 is None:\n print('neutral')\n\nelif Average_number_of_shirts_s1 == Average_number_of_shirts_s2:\n print('Entailment')\n\nelif Average_number_of_shirts_s1 != Average_number_of_shirts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Dana borrows 4000 pounds annually for her college education, \"statement 2\" :Dana borrows 8000 pounds annually for her college education, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dana_borrows_pound_s1 = 4000\nDana_borrows_pound_s2 = 8000\n\nif Dana_borrows_pound_s1 is None or Dana_borrows_pound_s2 is None:\n print('neutral')\n\nelif Dana_borrows_pound_s1 == Dana_borrows_pound_s2:\n print('Entailment')\n\nelif Dana_borrows_pound_s1 != Dana_borrows_pound_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Anitha had 80 currency notes in all , some of which are of Rs 95 denomination and the remaining of Rs 45 denomination, \"statement 2\" :Anitha had more than 40 currency notes in all , some of which are of Rs 95 denomination and the remaining of Rs 45 denomination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Anitha_currecy_notes_s1 = 80\nAnitha_currecy_notes_s2 = 40\n\nif Anitha_currecy_notes_s1 is None or Anitha_currecy_notes_s2 is None:\n print('neutral')\n\nelif Anitha_currecy_notes_s1 >= Anitha_currecy_notes_s2:\n print('Entailment')\n\nelif Anitha_currecy_notes_s1 != Anitha_currecy_notes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Exactly less than 8 / 7 of the ponies have horseshoes , and exactly 2 / 3 of the ponies with horseshoes are from Iceland, \"statement 2\" :Exactly 5 / 7 of the ponies have horseshoes , and exactly 2 / 3 of the ponies with horseshoes are from Iceland, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "horseshoes_s1 = None\nhorseshoes_s2 = 5/7\n\nif horseshoes_s1 is None or horseshoes_s2 is None:\n print('neutral')\n\nelif horseshoes_s1 == horseshoes_s2:\n print('Entailment')\n\nelif horseshoes_s1 != horseshoes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jack and Christina are standing 240 feet apart on a level surface, \"statement 2\" :Jack and Christina are standing less than 340 feet apart on a level surface, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jack_and_Christina_standing_s1 = 240\nJack_and_Christina_standing_s2 = 340\n\nif Jack_and_Christina_standing_s1 is None or Jack_and_Christina_standing_s2 is None:\n print('neutral')\n\nelif Jack_and_Christina_standing_s1 <= Jack_and_Christina_standing_s2:\n print('Entailment')\n\nelif Jack_and_Christina_standing_s1 != Jack_and_Christina_standing_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": It takes John exactly 15 minutes to rake a lawn and it takes his son Todd exactly 30 minutes to rake the same lawn, \"statement 2\" :It takes John exactly 65 minutes to rake a lawn and it takes his son Todd exactly 30 minutes to rake the same lawn, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jhon_take_min_s1 = 15\nJhon_take_min_s2 = 65\n\nif Jhon_take_min_s1 is None or Jhon_take_min_s2 is None:\n print('neutral')\n\nelif Jhon_take_min_s1 == Jhon_take_min_s2:\n print('Entailment')\n\nelif Jhon_take_min_s1 != Jhon_take_min_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Jack walked 9 miles in 1 hour and 15 minutes , what was his rate of walking in miles per hour ?, \"statement 2\" :If Jack walked more than 8 miles in 1 hour and 15 minutes , what was his rate of walking in miles per hour ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jack_walked_s1 = 9\nJack_walked_s2 = 8+1\n\nif Jack_walked_s1 is None or Jack_walked_s2 is None:\n print('neutral')\n\nelif Jack_walked_s1 == Jack_walked_s2:\n print('Entailment')\n\nelif Jack_walked_s1 != Jack_walked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Tanya is 25 % more efficient than Sakshi, \"statement 2\" :Tanya is less than 75 % more efficient than Sakshi, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Tanya_efficiant_s1 = 25\nTanya_efficiant_s2 = 75\n\nif Tanya_efficiant_s1 is None or Tanya_efficiant_s2 is None:\n print('neutral')\n\nelif Tanya_efficiant_s1 <= Tanya_efficiant_s2:\n print('Entailment')\n\nelif Tanya_efficiant_s1 != Tanya_efficiant_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Lindy runs at a constant speed of 8 feet per second from Christina to Jack , back to Christina , back to Jack , and so forth, \"statement 2\" :Lindy runs at a constant speed of more than 8 feet per second from Christina to Jack , back to Christina , back to Jack , and so forth, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Lindy_runs_s1 = 8\nLindy_runs_s2 = 8+1\n\nif Lindy_runs_s1 is None or Lindy_runs_s2 is None:\n print('neutral')\n\nelif Lindy_runs_s1 == Lindy_runs_s2:\n print('Entailment')\n\nelif Lindy_runs_s1 != Lindy_runs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sean , who weighs 200 pounds , is in the elevator with two packages weighing 150 pounds and 280 pounds, \"statement 2\" :Sean , who weighs less than 700 pounds , is in the elevator with two packages weighing 150 pounds and 280 pounds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sean_weighs_s1 = 200\nSean_weighs_s2 = 700\n\nif Sean_weighs_s1 is None or Sean_weighs_s2 is None:\n print('neutral')\n\nelif Sean_weighs_s1 <= Sean_weighs_s2:\n print('Entailment')\n\nelif Sean_weighs_s1 != Sean_weighs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": At Veridux Corporation , there are less than 450 employees, \"statement 2\" :At Veridux Corporation , there are 250 employees, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "employees_s1 = None\nemployees_s2 = 250\n\nif employees_s1 is None or employees_s2 is None:\n print('neutral')\n\nelif employees_s1 == employees_s2:\n print('Entailment')\n\nelif employees_s1 != employees_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Rajesh solved 80 per cent of the questions in an examination correctly, \"statement 2\" :Rajesh solved more than 20 per cent of the questions in an examination correctly, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Rajesh_solved_s1 = 80\nRajesh_solved_s2 = 20\n\nif Rajesh_solved_s1 is None or Rajesh_solved_s2 is None:\n print('neutral')\n\nelif Rajesh_solved_s1 >= Rajesh_solved_s2:\n print('Entailment')\n\nelif Rajesh_solved_s1 != Rajesh_solved_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": On a less than 40 mile course , Bil bicycled at an average rate of 30 miles per hour for the first 12 minutes and without a break , ran the rest of the distance at an average rate of 8 miles per hour, \"statement 2\" :On a 20 mile course , Bil bicycled at an average rate of 30 miles per hour for the first 12 minutes and without a break , ran the rest of the distance at an average rate of 8 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Bil_bicycled_s1 = None\nBil_bicycled_s2 = 20\n\nif Bil_bicycled_s1 is None or Bil_bicycled_s2 is None:\n print('neutral')\n\nelif Bil_bicycled_s1 == Bil_bicycled_s2:\n print('Entailment')\n\nelif Bil_bicycled_s1 != Bil_bicycled_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Dana gives her parents 2 % of that amount back each month , how much will she still owe her parents after four years of college ?, \"statement 2\" :If Dana gives her parents more than 2 % of that amount back each month , how much will she still owe her parents after four years of college ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Danagives_her_parents_s1 = 2\nDanagives_her_parents_s2 = 2+1\n\nif Danagives_her_parents_s1 is None or Danagives_her_parents_s2 is None:\n print('neutral')\n\nelif Danagives_her_parents_s1 == Danagives_her_parents_s2:\n print('Entailment')\n\nelif Danagives_her_parents_s1 != Danagives_her_parents_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Matt is touring a nation in which coins are issued in two amounts , 2 \u00a2 and 5 \u00a2 , which are made of iron and copper , respectively, \"statement 2\" :Matt is touring a nation in which coins are issued in two amounts , less than 8 \u00a2 and 5 \u00a2 , which are made of iron and copper , respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Matt_coins_s1 = 2\nMatt_coins_s2 = 8\n\nif Matt_coins_s1 is None or Matt_coins_s2 is None:\n print('neutral')\n\nelif Matt_coins_s1 <= Matt_coins_s2:\n print('Entailment')\n\nelif Matt_coins_s1 != Matt_coins_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In a recent election , Geoff received less than 6 percent of the 6,000 votes cast, \"statement 2\" :In a recent election , Geoff received 1 percent of the 6,000 votes cast, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Geoff_received_s1 = None\nGeoff_received_s2 = 1\n\nif Geoff_received_s1 is None or Geoff_received_s2 is None:\n print('neutral')\n\nelif Geoff_received_s1 == Geoff_received_s2:\n print('Entailment')\n\nelif Geoff_received_s1 != Geoff_received_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jack took a less than 7 - hour bike ride, \"statement 2\" :Jack took a 3 - hour bike ride, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jack_bike_ride_s1 = None\nJack_bike_ride_s2 = 3\n\nif Jack_bike_ride_s1 is None or Jack_bike_ride_s2 is None:\n print('neutral')\n\nelif Jack_bike_ride_s1 == Jack_bike_ride_s2:\n print('Entailment')\n\nelif Jack_bike_ride_s1 != Jack_bike_ride_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The next day , Dan took the test , and with this grade included , the new average was 76, \"statement 2\" :The next day , Dan took the test , and with this grade included , the new average was more than 16, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "new_average_s1 = 76\nnew_average_s2 = 16\n\nif new_average_s1 is None or new_average_s2 is None:\n print('neutral')\n\nelif new_average_s1 >= new_average_s2:\n print('Entailment')\n\nelif new_average_s1 != new_average_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": more than 2000 among John , Jose & Binoy in the ration 2 : 4 : 6, \"statement 2\" :6000 among John , Jose & Binoy in the ration 2 : 4 : 6, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ratio_s1 = None\nRatio_s2 = 6000\n\nif Ratio_s1 is None or Ratio_s2 is None:\n print('neutral')\n\nelif Ratio_s1 == Ratio_s2:\n print('Entailment')\n\nelif Ratio_s1 != Ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Dan \u2019 s car gets 32 miles per gallon, \"statement 2\" :Dan \u2019 s car gets 52 miles per gallon, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dan_car_gets_s1 = 32\nDan_car_gets_s2 = 52\n\nif Dan_car_gets_s1 is None or Dan_car_gets_s2 is None:\n print('neutral')\n\nelif Dan_car_gets_s1 == Dan_car_gets_s2:\n print('Entailment')\n\nelif Dan_car_gets_s1 != Dan_car_gets_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If the rosters for Professor Wang ' s less than 6 classes are combined with no student ' s name listed more than once , how many names will be on the combined roster ?, \"statement 2\" :If the rosters for Professor Wang ' s 3 classes are combined with no student ' s name listed more than once , how many names will be on the combined roster ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Professor_Wang_s1 = None\nProfessor_Wang_s2 = 3\n\nif Professor_Wang_s1 is None or Professor_Wang_s2 is None:\n print('neutral')\n\nelif Professor_Wang_s1 == Professor_Wang_s2:\n print('Entailment')\n\nelif Professor_Wang_s1 != Professor_Wang_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Xavier starts from P towards Q at a speed of 90 kmph and after every 12 mins increases his speed by 10 kmph, \"statement 2\" :Xavier starts from P towards Q at a speed of more than 40 kmph and after every 12 mins increases his speed by 10 kmph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "p_to_q_speed_s1 = 90\np_to_q_speed_s2 = 40\n\nif p_to_q_speed_s1 is None or p_to_q_speed_s2 is None:\n print('neutral')\n\nelif p_to_q_speed_s1 >= p_to_q_speed_s2:\n print('Entailment')\n\nelif p_to_q_speed_s1 != p_to_q_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The distance between Delhi and Mathura is 110 kms, \"statement 2\" :The distance between Delhi and Mathura is 710 kms, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_between_Delhi_and_Mathura_s1 = 110\ndistance_between_Delhi_and_Mathura_s2 = 710\n\nif distance_between_Delhi_and_Mathura_s1 is None or distance_between_Delhi_and_Mathura_s2 is None:\n print('neutral')\n\nelif distance_between_Delhi_and_Mathura_s1 == distance_between_Delhi_and_Mathura_s2:\n print('Entailment')\n\nelif distance_between_Delhi_and_Mathura_s1 != distance_between_Delhi_and_Mathura_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jaclyn buys $ 60 000 worth of debentures in a company, \"statement 2\" :Jaclyn buys $ less than 80 000 worth of debentures in a company, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jaclyn_buys_s1 = 60000\nJaclyn_buys_s2 = 80000\n\nif Jaclyn_buys_s1 is None or Jaclyn_buys_s2 is None:\n print('neutral')\n\nelif Jaclyn_buys_s1 <= Jaclyn_buys_s2:\n print('Entailment')\n\nelif Jaclyn_buys_s1 != Jaclyn_buys_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Andy solves problems more than 64 to 135 inclusive in a Math exercise, \"statement 2\" :Andy solves problems 74 to 135 inclusive in a Math exercise, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Andy_solves_problems_s1 = None\nAndy_solves_problems_s2 = 74,135\n\nif Andy_solves_problems_s1 is None or Andy_solves_problems_s2 is None:\n print('neutral')\n\nelif Andy_solves_problems_s1 == Andy_solves_problems_s2:\n print('Entailment')\n\nelif Andy_solves_problems_s1 != Andy_solves_problems_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Klaudia can choose any two of four different candles and any more than 4 of 9 different flowers for a centerpiece arrangement, \"statement 2\" :Klaudia can choose any two of four different candles and any 8 of 9 different flowers for a centerpiece arrangement, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Klaudia_cadels_s1 = None\nKlaudia_cadels_s2 = 8,9\n\nif Klaudia_cadels_s1 is None or Klaudia_cadels_s2 is None:\n print('neutral')\n\nelif Klaudia_cadels_s1 == Klaudia_cadels_s2:\n print('Entailment')\n\nelif Klaudia_cadels_s1 != Klaudia_cadels_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Suresh age after less than 85 years will be 5 times his age 5 years back , What is the present age of Suresh, \"statement 2\" :Suresh age after 15 years will be 5 times his age 5 years back , What is the present age of Suresh, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Suresh_age_s1 = None\nSuresh_age_s2 = 15\n\nif Suresh_age_s1 is None or Suresh_age_s2 is None:\n print('neutral')\n\nelif Suresh_age_s1 == Suresh_age_s2:\n print('Entailment')\n\nelif Suresh_age_s1 != Suresh_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jill works as a waitress at the local diner where she earns an hourly wage of $ 7.00 per hour and a standard tip rate of less than 6 % of the cost of the orders she serves, \"statement 2\" :Jill works as a waitress at the local diner where she earns an hourly wage of $ 7.00 per hour and a standard tip rate of 5 % of the cost of the orders she serves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jill_works_s1 = None\nJill_works_s2 = 5\n\nif Jill_works_s1 is None or Jill_works_s2 is None:\n print('neutral')\n\nelif Jill_works_s1 == Jill_works_s2:\n print('Entailment')\n\nelif Jill_works_s1 != Jill_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Nitin ranks less than 77 th in a class of 89 students, \"statement 2\" :Nitin ranks 27 th in a class of 89 students, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Nitin_ranks_s1 = None\nNitin_ranks_s2 = 27\n\nif Nitin_ranks_s1 is None or Nitin_ranks_s2 is None:\n print('neutral')\n\nelif Nitin_ranks_s1 == Nitin_ranks_s2:\n print('Entailment')\n\nelif Nitin_ranks_s1 != Nitin_ranks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": 250 and Andre ' s share is Rs, \"statement 2\" :less than 250 and Andre ' s share is Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Andre_share_s1 = 250\nAndre_share_s2 = 250-1\n\nif Andre_share_s1 is None or Andre_share_s2 is None:\n print('neutral')\n\nelif Andre_share_s1 == Andre_share_s2:\n print('Entailment')\n\nelif Andre_share_s1 != Andre_share_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": When the river is running at 2 km / h , it takes the rower 1 hour to row to Big Rock and back, \"statement 2\" :When the river is running at 7 km / h , it takes the rower 1 hour to row to Big Rock and back, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "river_running_s1 = 2\nriver_running_s2 = 7\n\nif river_running_s1 is None or river_running_s2 is None:\n print('neutral')\n\nelif river_running_s1 == river_running_s2:\n print('Entailment')\n\nelif river_running_s1 != river_running_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": What is the ratio of Arun ' s monthly income in the year less than 6006 , Suman ' s monthly income in the year 2007 and Jyothi ' s monthly income in the year 2005 ?, \"statement 2\" :What is the ratio of Arun ' s monthly income in the year 2006 , Suman ' s monthly income in the year 2007 and Jyothi ' s monthly income in the year 2005 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Arun_monthly_income_s1 = None\nArun_monthly_income_s2 = 2006\n\nif Arun_monthly_income_s1 is None or Arun_monthly_income_s2 is None:\n print('neutral')\n\nelif Arun_monthly_income_s1 == Arun_monthly_income_s2:\n print('Entailment')\n\nelif Arun_monthly_income_s1 != Arun_monthly_income_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Geoff needed exactly 3000 more votes to win the election , what is the value of x ?, \"statement 2\" :If Geoff needed exactly more than 3000 more votes to win the election , what is the value of x ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Geoff_needed_s1 = 3000\nGeoff_needed_s2 = 3000+1\n\nif Geoff_needed_s1 is None or Geoff_needed_s2 is None:\n print('neutral')\n\nelif Geoff_needed_s1 == Geoff_needed_s2:\n print('Entailment')\n\nelif Geoff_needed_s1 != Geoff_needed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Carina has 115 ounces of coffee divided into 5 - and 10 - ounce packages, \"statement 2\" :Carina has less than 815 ounces of coffee divided into 5 - and 10 - ounce packages, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Carina_coffe_s1 = 115\nCarina_coffe_s2 = 815\n\nif Carina_coffe_s1 is None or Carina_coffe_s2 is None:\n print('neutral')\n\nelif Carina_coffe_s1 <= Carina_coffe_s2:\n print('Entailment')\n\nelif Carina_coffe_s1 != Carina_coffe_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Dana borrows 4000 pounds annually for her college education, \"statement 2\" :Dana borrows more than 1000 pounds annually for her college education, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dana_borrows_s1 = 4000\nDana_borrows_s2 = 1000\n\nif Dana_borrows_s1 is None or Dana_borrows_s2 is None:\n print('neutral')\n\nelif Dana_borrows_s1 >= Dana_borrows_s2:\n print('Entailment')\n\nelif Dana_borrows_s1 != Dana_borrows_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Akash will arrange 6 people of 6 different heights for photograph by placing them in two rows of three so that each person in the first row is standing is standing in front of someone in the second row, \"statement 2\" :Akash will arrange 5 people of 6 different heights for photograph by placing them in two rows of three so that each person in the first row is standing is standing in front of someone in the second row, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Akash_arrange_people_s1 = 6\nAkash_arrange_people_s2 = 5\n\nif Akash_arrange_people_s1 is None or Akash_arrange_people_s2 is None:\n print('neutral')\n\nelif Akash_arrange_people_s1 == Akash_arrange_people_s2:\n print('Entailment')\n\nelif Akash_arrange_people_s1 != Akash_arrange_people_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If there are less than 5 peanuts in a box and Mary puts 6 more peanuts inside , how many peanuts are in the box ?, \"statement 2\" :If there are 4 peanuts in a box and Mary puts 6 more peanuts inside , how many peanuts are in the box ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\npeanuts_in_box_s1 = None\npeanuts_in_box_s2 = 4\n\nif peanuts_in_box_s1 is None or peanuts_in_box_s2 is None:\n print('neutral')\n\nelif peanuts_in_box_s1 == peanuts_in_box_s2:\n print('Entailment')\n\nelif peanuts_in_box_s1 != peanuts_in_box_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": On a 20 mile course , Bil bicycled at an average rate of 30 miles per hour for the first 12 minutes and without a break , ran the rest of the distance at an average rate of 8 miles per hour, \"statement 2\" :On a 40 mile course , Bil bicycled at an average rate of 30 miles per hour for the first 12 minutes and without a break , ran the rest of the distance at an average rate of 8 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Bil_bicycled_s1 = 20\nBil_bicycled_s2 = 40\n\nif Bil_bicycled_s1 is None or Bil_bicycled_s2 is None:\n print('neutral')\n\nelif Bil_bicycled_s1 == Bil_bicycled_s2:\n print('Entailment')\n\nelif Bil_bicycled_s1 != Bil_bicycled_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In a deck of 52 cards , how many ways are there to select 13 Spade and 13 heart cards without repetition ?, \"statement 2\" :In a deck of 72 cards , how many ways are there to select 13 Spade and 13 heart cards without repetition ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "deck_card_s1 = 52\ndeck_card_s2 = 72\n\nif deck_card_s1 is None or deck_card_s2 is None:\n print('neutral')\n\nelif deck_card_s1 == deck_card_s2:\n print('Entailment')\n\nelif deck_card_s1 != deck_card_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": When Anusha reached the goal post , Banu was 10 m behind, \"statement 2\" :When Anusha reached the goal post , Banu was more than 10 m behind, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Banu_behind_s1 = 10\nBanu_behind_s2 = 10+1\n\nif Banu_behind_s1 is None or Banu_behind_s2 is None:\n print('neutral')\n\nelif Banu_behind_s1 == Banu_behind_s2:\n print('Entailment')\n\nelif Banu_behind_s1 != Banu_behind_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Triangle STV has sides ST = TV = less than 85 , and SV = 14, \"statement 2\" :Triangle STV has sides ST = TV = 25 , and SV = 14, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Triangle_STV_s1 = None\nTriangle_STV_s2 = 25\n\nif Triangle_STV_s1 is None or Triangle_STV_s2 is None:\n print('neutral')\n\nelif Triangle_STV_s1 == Triangle_STV_s2:\n print('Entailment')\n\nelif Triangle_STV_s1 != Triangle_STV_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": When Professor Wang looked at the rosters for this term ' s classes , she saw that the roster for her economics class ( E ) had 26 names , the roster for her marketing class ( M ) had 26 , and the roster for her statistics class ( S ) had 18, \"statement 2\" :When Professor Wang looked at the rosters for this term ' s classes , she saw that the roster for her economics class ( E ) had 66 names , the roster for her marketing class ( M ) had 26 , and the roster for her statistics class ( S ) had 18, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Economics_class_name_s1 = 26\nEconomics_class_name_s2 = 66\n\nif Economics_class_name_s1 is None or Economics_class_name_s2 is None:\n print('neutral')\n\nelif Economics_class_name_s1 == Economics_class_name_s2:\n print('Entailment')\n\nelif Economics_class_name_s1 != Economics_class_name_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If it takes Darcy a total of 5 more minutes to commute to work by walking than it takes her to commute to work by riding the train , what is the value of x ?, \"statement 2\" :If it takes Darcy a total of more than 2 more minutes to commute to work by walking than it takes her to commute to work by riding the train , what is the value of x ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Darcy_min_s1 = 5\nDarcy_min_s2 = 2\n\nif Darcy_min_s1 is None or Darcy_min_s2 is None:\n print('neutral')\n\nelif Darcy_min_s1 >= Darcy_min_s2:\n print('Entailment')\n\nelif Darcy_min_s1 != Darcy_min_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Elena purchased a total of 10 of these pens for $ 42.00 , how many brand X pens did she purchase ?, \"statement 2\" :If Elena purchased a total of less than 30 of these pens for $ 42.00 , how many brand X pens did she purchase ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Elenapurchased_s1 = 10\nElenapurchased_s2 = 30\n\nif Elenapurchased_s1 is None or Elenapurchased_s2 is None:\n print('neutral')\n\nelif Elenapurchased_s1 <= Elenapurchased_s2:\n print('Entailment')\n\nelif Elenapurchased_s1 != Elenapurchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Andy solves problems 74 to 135 inclusive in a Math exercise, \"statement 2\" :Andy solves problems more than 64 to 135 inclusive in a Math exercise, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Andy_solves_problems_s1 = 74,135\nAndy_solves_problems_s2 = 64,135\n\nif Andy_solves_problems_s1 is None or Andy_solves_problems_s2 is None:\n print('neutral')\n\nelif Andy_solves_problems_s1 >= Andy_solves_problems_s2:\n print('Entailment')\n\nelif Andy_solves_problems_s1 != Andy_solves_problems_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Anita goes away and Indu leaves 7 days before the work is finished, \"statement 2\" :Anita goes away and Indu leaves more than 5 days before the work is finished, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Indu_leaves_s1 = 7\nIndu_leaves_s2 = 5\n\nif Indu_leaves_s1 is None or Indu_leaves_s2 is None:\n print('neutral')\n\nelif Indu_leaves_s1 >= Indu_leaves_s2:\n print('Entailment')\n\nelif Indu_leaves_s1 != Indu_leaves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jaclyn buys $ 60 000 worth of debentures in a company, \"statement 2\" :Jaclyn buys $ less than 60 000 worth of debentures in a company, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jaclyn_buys_s1 = 60000\nJaclyn_buys_s2 = 60000-1\n\nif Jaclyn_buys_s1 is None or Jaclyn_buys_s2 is None:\n print('neutral')\n\nelif Jaclyn_buys_s1 == Jaclyn_buys_s2:\n print('Entailment')\n\nelif Jaclyn_buys_s1 != Jaclyn_buys_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": John paid a less than 85 % tip over the original price of the dish , while Jane paid the tip over the discounted price for the coupon, \"statement 2\" :John paid a 15 % tip over the original price of the dish , while Jane paid the tip over the discounted price for the coupon, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "John_paid_s1 = None\nJohn_paid_s2 = 15\n\nif John_paid_s1 is None or John_paid_s2 is None:\n print('neutral')\n\nelif John_paid_s1 == John_paid_s2:\n print('Entailment')\n\nelif John_paid_s1 != John_paid_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Tanya is less than 75 % more efficient than Sakshi, \"statement 2\" :Tanya is 25 % more efficient than Sakshi, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Tanya_efficient_s1 = None\nTanya_efficient_s2 = 25\n\nif Tanya_efficient_s1 is None or Tanya_efficient_s2 is None:\n print('neutral')\n\nelif Tanya_efficient_s1 == Tanya_efficient_s2:\n print('Entailment')\n\nelif Tanya_efficient_s1 != Tanya_efficient_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": for Mathura and B starts from Mathura with a speed of 25 kmph at 8 p, \"statement 2\" :for Mathura and B starts from Mathura with a speed of 15 kmph at 8 p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "B_speed_s1 = 25\nB_speed_s2 = 15\n\nif B_speed_s1 is None or B_speed_s2 is None:\n print('neutral')\n\nelif B_speed_s1 == B_speed_s2:\n print('Entailment')\n\nelif B_speed_s1 != B_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": A train leaves Delhi at 11 a, \"statement 2\" :A train leaves Delhi at less than 41 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "train_leaves_Delhi_s1 = 11\ntrain_leaves_Delhi_s2 = 41\n\nif train_leaves_Delhi_s1 is None or train_leaves_Delhi_s2 is None:\n print('neutral')\n\nelif train_leaves_Delhi_s1 == train_leaves_Delhi_s2:\n print('Entailment')\n\nelif train_leaves_Delhi_s1 != train_leaves_Delhi_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Mr Yadav spends more than 30 % of his monthly salary on consumable items and 50 % of the remaining on clothes and transport, \"statement 2\" :Mr Yadav spends 60 % of his monthly salary on consumable items and 50 % of the remaining on clothes and transport, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Mr_Yadav_spends_s1 = None\nMr_Yadav_spends_s2 = 60\n\nif Mr_Yadav_spends_s1 is None or Mr_Yadav_spends_s2 is None:\n print('neutral')\n\nelif Mr_Yadav_spends_s1 == Mr_Yadav_spends_s2:\n print('Entailment')\n\nelif Mr_Yadav_spends_s1 != Mr_Yadav_spends_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sid left a job paying $ 75,000 per year to accept a sales job paying $ 45,000 per year plus 15 percent commission, \"statement 2\" :Sid left a job paying $ 75,000 per year to accept a sales job paying $ 45,000 per year plus less than 55 percent commission, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sid_left_job_paying_s1 = 75000\nSid_left_job_paying_s2 = 75000\n\nif Sid_left_job_paying_s1 is None or Sid_left_job_paying_s2 is None:\n print('neutral')\n\nelif Sid_left_job_paying_s1 == Sid_left_job_paying_s2:\n print('Entailment')\n\nelif Sid_left_job_paying_s1 != Sid_left_job_paying_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jessica can text 75 words per minute , while Maurice can text 10 words per minute, \"statement 2\" :Jessica can text 25 words per minute , while Maurice can text 10 words per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jessica_can_text_s1 = 75\nJessica_can_text_s2 = 25\n\nif Jessica_can_text_s1 is None or Jessica_can_text_s2 is None:\n print('neutral')\n\nelif Jessica_can_text_s1 == Jessica_can_text_s2:\n print('Entailment')\n\nelif Jessica_can_text_s1 != Jessica_can_text_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Anusha , Banu and Esha run a running race of 100 meters, \"statement 2\" :Anusha , Banu and Esha run a running race of less than 800 meters, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "running_race_of_s1 = 100\nrunning_race_of_s2 = 800\n\nif running_race_of_s1 is None or running_race_of_s2 is None:\n print('neutral')\n\nelif running_race_of_s1 <= running_race_of_s2:\n print('Entailment')\n\nelif running_race_of_s1 != running_race_of_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": How many seconds does Sandy take to cover a distance of 500 meters , if Sandy runs at a speed of 18 km / hr ?, \"statement 2\" :How many seconds does Sandy take to cover a distance of 700 meters , if Sandy runs at a speed of 18 km / hr ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sandy_cover_distance_s1 = 500\nSandy_cover_distance_s2 = 700\n\nif Sandy_cover_distance_s1 is None or Sandy_cover_distance_s2 is None:\n print('neutral')\n\nelif Sandy_cover_distance_s1 == Sandy_cover_distance_s2:\n print('Entailment')\n\nelif Sandy_cover_distance_s1 != Sandy_cover_distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If the distance between their homes is less than 50 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"statement 2\" :If the distance between their homes is 40 kilometers , Maxwell ' s walking speed is 4 km / h , and Brad ' s running speed is 6 km / h , what is the distance traveled by Brad ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_between_their_homes_s1 = None\ndistance_between_their_homes_s2 = 40\n\nif distance_between_their_homes_s1 is None or distance_between_their_homes_s2 is None:\n print('neutral')\n\nelif distance_between_their_homes_s1 == distance_between_their_homes_s2:\n print('Entailment')\n\nelif distance_between_their_homes_s1 != distance_between_their_homes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Venki takes a trip and drives less than 7 hours from Town X to Town Z at a rate of 80 miles per hour, \"statement 2\" :Venki takes a trip and drives 5 hours from Town X to Town Z at a rate of 80 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Venki_takes_a_trip_and_drives_s1 = None\nVenki_takes_a_trip_and_drives_s2 = 5\n\nif Venki_takes_a_trip_and_drives_s1 is None or Venki_takes_a_trip_and_drives_s2 is None:\n print('neutral')\n\nelif Venki_takes_a_trip_and_drives_s1 == Venki_takes_a_trip_and_drives_s2:\n print('Entailment')\n\nelif Venki_takes_a_trip_and_drives_s1 != Venki_takes_a_trip_and_drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sharmila works 10 hours per day on Monday , Wednesday and Friday , and 8 hours per day on Tuesday and Thursday, \"statement 2\" :Sharmila works less than 10 hours per day on Monday , Wednesday and Friday , and 8 hours per day on Tuesday and Thursday, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sharmila_works_s1 = 10\nSharmila_works_s2 = 10-1\n\nif Sharmila_works_s1 is None or Sharmila_works_s2 is None:\n print('neutral')\n\nelif Sharmila_works_s1 == Sharmila_works_s2:\n print('Entailment')\n\nelif Sharmila_works_s1 != Sharmila_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sandy attempts more than 10 sums and obtains 50 marks, \"statement 2\" :Sandy attempts 30 sums and obtains 50 marks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sandy_attempts_s1 = None\nSandy_attempts_s2 = 30\n\nif Sandy_attempts_s1 is None or Sandy_attempts_s2 is None:\n print('neutral')\n\nelif Sandy_attempts_s1 == Sandy_attempts_s2:\n print('Entailment')\n\nelif Sandy_attempts_s1 != Sandy_attempts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": 300 , what will be the difference between Raja and Rahim ' s share ?, \"statement 2\" :less than 800 , what will be the difference between Raja and Rahim ' s share ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "difference_between_Raja_and_Rahim_s1 = 300\ndifference_between_Raja_and_Rahim_s2 = 800\n\nif difference_between_Raja_and_Rahim_s1 is None or difference_between_Raja_and_Rahim_s2 is None:\n print('neutral')\n\nelif difference_between_Raja_and_Rahim_s1 <= difference_between_Raja_and_Rahim_s2:\n print('Entailment')\n\nelif difference_between_Raja_and_Rahim_s1 != difference_between_Raja_and_Rahim_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Ganesh covers the distance from X to Y at an average speed of 43 Km / hr, \"statement 2\" :Ganesh covers the distance from X to Y at an average speed of less than 83 Km / hr, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ganesh_covers_s1 = 43\nGanesh_covers_s2 = 83\n\nif Ganesh_covers_s1 is None or Ganesh_covers_s2 is None:\n print('neutral')\n\nelif Ganesh_covers_s1 <= Ganesh_covers_s2:\n print('Entailment')\n\nelif Ganesh_covers_s1 != Ganesh_covers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The ages of Nishi and vinnee are in the ratio of less than 7 : 5 respectively, \"statement 2\" :The ages of Nishi and vinnee are in the ratio of 6 : 5 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Nishi_and_vinnee_Ages_s1 = None\nNishi_and_vinnee_Ages_s2 = 6/5\n\nif Nishi_and_vinnee_Ages_s1 is None or Nishi_and_vinnee_Ages_s2 is None:\n print('neutral')\n\nelif Nishi_and_vinnee_Ages_s1 == Nishi_and_vinnee_Ages_s2:\n print('Entailment')\n\nelif Nishi_and_vinnee_Ages_s1 != Nishi_and_vinnee_Ages_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Andrew purchased 10 kg of grapes at the rate of 82 per kg and 6 kg of mangoes at the rate of 62 per kg, \"statement 2\" :Andrew purchased less than 70 kg of grapes at the rate of 82 per kg and 6 kg of mangoes at the rate of 62 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Andrew_purchased_s1 = 10\nAndrew_purchased_s2 = 70\n\nif Andrew_purchased_s1 is None or Andrew_purchased_s2 is None:\n print('neutral')\n\nelif Andrew_purchased_s1 <= Andrew_purchased_s2:\n print('Entailment')\n\nelif Andrew_purchased_s1 != Andrew_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Matt has twuenty iron coins and thuenty copper coins , how many different sums from less than 7 \u00a2 to 140 \u00a2 can he make with a combination of his coins ?, \"statement 2\" :If Matt has twuenty iron coins and thuenty copper coins , how many different sums from 1 \u00a2 to 140 \u00a2 can he make with a combination of his coins ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Matt_coins_s1 = None\nMatt_coins_s2 = 1,140\n\nif Matt_coins_s1 is None or Matt_coins_s2 is None:\n print('neutral')\n\nelif Matt_coins_s1 == Matt_coins_s2:\n print('Entailment')\n\nelif Matt_coins_s1 != Matt_coins_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Leo gains less than 20 pounds , he will weigh 50 % more than his sister Kendra, \"statement 2\" :If Leo gains 10 pounds , he will weigh 50 % more than his sister Kendra, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Leo_gains_s1 = None\nLeo_gains_s2 = 10\n\nif Leo_gains_s1 is None or Leo_gains_s2 is None:\n print('neutral')\n\nelif Leo_gains_s1 == Leo_gains_s2:\n print('Entailment')\n\nelif Leo_gains_s1 != Leo_gains_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": On a 20 mile course , Bil bicycled at an average rate of 30 miles per hour for the first 12 minutes and without a break , ran the rest of the distance at an average rate of 8 miles per hour, \"statement 2\" :On a less than 40 mile course , Bil bicycled at an average rate of 30 miles per hour for the first 12 minutes and without a break , ran the rest of the distance at an average rate of 8 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Bil_bicycled_s1 = 30\nBil_bicycled_s2 = 40\n\nif Bil_bicycled_s1 is None or Bil_bicycled_s2 is None:\n print('neutral')\n\nelif Bil_bicycled_s1 <= Bil_bicycled_s2:\n print('Entailment')\n\nelif Bil_bicycled_s1 != Bil_bicycled_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sony and Johnny caught 75 fishes, \"statement 2\" :Sony and Johnny caught more than 15 fishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sony_and_Johnny_fish_s1 = 75\nSony_and_Johnny_fish_s2 = 15\n\nif Sony_and_Johnny_fish_s1 is None or Sony_and_Johnny_fish_s2 is None:\n print('neutral')\n\nelif Sony_and_Johnny_fish_s1 >= Sony_and_Johnny_fish_s2:\n print('Entailment')\n\nelif Sony_and_Johnny_fish_s1 != Sony_and_Johnny_fish_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Min ( a , b , c ) = min of a , b , c Max ( a , b , c , ) = max of a , b , c then what is the value of MAX { min ( less than 6 , 5,7 ) , max ( - 7 , - 2 , - 3 ) , 3 }, \"statement 2\" :Min ( a , b , c ) = min of a , b , c Max ( a , b , c , ) = max of a , b , c then what is the value of MAX { min ( 2 , 5,7 ) , max ( - 7 , - 2 , - 3 ) , 3 }, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Min_a_b_c_s1 = None\nMin_a_b_c_s2 = 2,5,7\n\nif Min_a_b_c_s1 is None or Min_a_b_c_s2 is None:\n print('neutral')\n\nelif Min_a_b_c_s1 == Min_a_b_c_s2:\n print('Entailment')\n\nelif Min_a_b_c_s1 != Min_a_b_c_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Joe had an average of 95 on his first 5 tests, \"statement 2\" :Joe had an average of more than 35 on his first 5 tests, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Joe_Average_s1 = 95\nJoe_Average_s2 = 35\n\nif Joe_Average_s1 is None or Joe_Average_s2 is None:\n print('neutral')\n\nelif Joe_Average_s1 >= Joe_Average_s2:\n print('Entailment')\n\nelif Joe_Average_s1 != Joe_Average_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Hannah leaves City A 108 minutes after Glen, \"statement 2\" :Hannah leaves City A less than 208 minutes after Glen, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Hannah_leaves_s1 = 108\nHannah_leaves_s2 = 208\n\nif Hannah_leaves_s1 is None or Hannah_leaves_s2 is None:\n print('neutral')\n\nelif Hannah_leaves_s1 <= Hannah_leaves_s2:\n print('Entailment')\n\nelif Hannah_leaves_s1 != Hannah_leaves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Since you ' re nice , you give John 3 baseball cards, \"statement 2\" :Since you ' re nice , you give John more than 3 baseball cards, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "John_base_ball_card_s1 = 3\nJohn_base_ball_card_s2 = 3+1\n\nif John_base_ball_card_s1 is None or John_base_ball_card_s2 is None:\n print('neutral')\n\nelif John_base_ball_card_s1 == John_base_ball_card_s2:\n print('Entailment')\n\nelif John_base_ball_card_s1 != John_base_ball_card_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Ed is 120 km away from Flora at 6 am , and also 120 km away from Flora at 11 am , then how fast is Flora driving ( in kilometers per hour ) ?, \"statement 2\" :If Ed is 520 km away from Flora at 6 am , and also 120 km away from Flora at 11 am , then how fast is Flora driving ( in kilometers per hour ) ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ed_s1 = 120\nEd_s2 = 520\n\nif Ed_s1 is None or Ed_s2 is None:\n print('neutral')\n\nelif Ed_s1 == Ed_s2:\n print('Entailment')\n\nelif Ed_s1 != Ed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": 6000 among John , Jose & Binoy in the ration 2 : 4 : 6, \"statement 2\" :8000 among John , Jose & Binoy in the ration 2 : 4 : 6, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ratio_s1 = 6000\nRatio_s2 = 8000\n\nif Ratio_s1 is None or Ratio_s2 is None:\n print('neutral')\n\nelif Ratio_s1 == Ratio_s2:\n print('Entailment')\n\nelif Ratio_s1 != Ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If the average falls less than 6 second after Izzy finishes another sprint , how many seconds did it take Izzy to run the most recent sprint ?, \"statement 2\" :If the average falls 1 second after Izzy finishes another sprint , how many seconds did it take Izzy to run the most recent sprint ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_falls_s1 = None\naverage_falls_s2 = 1\n\nif average_falls_s1 is None or average_falls_s2 is None:\n print('neutral')\n\nelif average_falls_s1 == average_falls_s2:\n print('Entailment')\n\nelif average_falls_s1 != average_falls_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If there are 14 more FGH supermarkets in the US than in Canada , how many FGH supermarkets are there in the US ?, \"statement 2\" :If there are 24 more FGH supermarkets in the US than in Canada , how many FGH supermarkets are there in the US ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nFGH_supermarkets_s1 = 14\nFGH_supermarkets_s2 = 24\n\nif FGH_supermarkets_s1 is None or FGH_supermarkets_s2 is None:\n print('neutral')\n\nelif FGH_supermarkets_s1 == FGH_supermarkets_s2:\n print('Entailment')\n\nelif FGH_supermarkets_s1 != FGH_supermarkets_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Xavier starts from P towards Q at a speed of 90 kmph and after every 12 mins increases his speed by 10 kmph, \"statement 2\" :Xavier starts from P towards Q at a speed of 10 kmph and after every 12 mins increases his speed by 10 kmph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Xavier_starts_s1 = 90\nXavier_starts_s2 = 10\n\nif Xavier_starts_s1 is None or Xavier_starts_s2 is None:\n print('neutral')\n\nelif Xavier_starts_s1 == Xavier_starts_s2:\n print('Entailment')\n\nelif Xavier_starts_s1 != Xavier_starts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": How many different combinations of 3 passengers can be formed from John ' s 6 friends ?, \"statement 2\" :How many different combinations of 6 passengers can be formed from John ' s 6 friends ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "passengers_s1 = 3\npassengers_s2 = 6\n\nif passengers_s1 is None or passengers_s2 is None:\n print('neutral')\n\nelif passengers_s1 == passengers_s2:\n print('Entailment')\n\nelif passengers_s1 != passengers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Claire has a total of more than 30 pets consisting of gerbils and hamsters only, \"statement 2\" :Claire has a total of 80 pets consisting of gerbils and hamsters only, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Claire_pets_s1 = None\nClaire_pets_s2 = 80\n\nif Claire_pets_s1 is None or Claire_pets_s2 is None:\n print('neutral')\n\nelif Claire_pets_s1 == Claire_pets_s2:\n print('Entailment')\n\nelif Claire_pets_s1 != Claire_pets_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": When Professor Wang looked at the rosters for this term ' s classes , she saw that the roster for her economics class ( E ) had 26 names , the roster for her marketing class ( M ) had 26 , and the roster for her statistics class ( S ) had 18, \"statement 2\" :When Professor Wang looked at the rosters for this term ' s classes , she saw that the roster for her economics class ( E ) had less than 76 names , the roster for her marketing class ( M ) had 26 , and the roster for her statistics class ( S ) had 18, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "economics_class_Names_s1 = 26\neconomics_class_Names_s2 = 76\n\nif economics_class_Names_s1 is None or economics_class_Names_s2 is None:\n print('neutral')\n\nelif economics_class_Names_s1 <= economics_class_Names_s2:\n print('Entailment')\n\nelif economics_class_Names_s1 != economics_class_Names_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": After 6 years , Sandy \u2019 s age will be 42 years, \"statement 2\" :After more than 6 years , Sandy \u2019 s age will be 42 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sandy_age_s1 = 6\nSandy_age_s2 = 6+1\n\nif Sandy_age_s1 is None or Sandy_age_s2 is None:\n print('neutral')\n\nelif Sandy_age_s1 <= Sandy_age_s2:\n print('Entailment')\n\nelif Sandy_age_s1 != Sandy_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": All of them started to work together but Rashmi leaves after 4 days, \"statement 2\" :All of them started to work together but Rashmi leaves after less than 8 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Rashmi_leaves_s1 = 4\nRashmi_leaves_s2 = 8\n\nif Rashmi_leaves_s1 is None or Rashmi_leaves_s2 is None:\n print('neutral')\n\nelif Rashmi_leaves_s1 <= Rashmi_leaves_s2:\n print('Entailment')\n\nelif Rashmi_leaves_s1 != Rashmi_leaves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sam , Suresh and Sanket run a race of less than 7400 meters, \"statement 2\" :Sam , Suresh and Sanket run a race of 1400 meters, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sanket_run_a_race_s1 = None\nSanket_run_a_race_s2 = 1400\n\nif Sanket_run_a_race_s1 is None or Sanket_run_a_race_s2 is None:\n print('neutral')\n\nelif Sanket_run_a_race_s1 == Sanket_run_a_race_s2:\n print('Entailment')\n\nelif Sanket_run_a_race_s1 != Sanket_run_a_race_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Level - less than 3 college graduates account for 10 % of Listco ' s sales staff, \"statement 2\" :Level - 1 college graduates account for 10 % of Listco ' s sales staff, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "college_graduates_s1 = None\ncollege_graduates_s2 = 1\n\nif college_graduates_s1 is None or college_graduates_s2 is None:\n print('neutral')\n\nelif college_graduates_s1 == college_graduates_s2:\n print('Entailment')\n\nelif college_graduates_s1 != college_graduates_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Elena purchased a total of less than 30 of these pens for $ 42.00 , how many brand X pens did she purchase ?, \"statement 2\" :If Elena purchased a total of 10 of these pens for $ 42.00 , how many brand X pens did she purchase ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Elena_purchased_s1 = None\nElena_purchased_s2 = 10\n\nif Elena_purchased_s1 is None or Elena_purchased_s2 is None:\n print('neutral')\n\nelif Elena_purchased_s1 == Elena_purchased_s2:\n print('Entailment')\n\nelif Elena_purchased_s1 != Elena_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Molly can do a task in 18 days while Sandy can do the task in 12 days, \"statement 2\" :Molly can do a task in less than 18 days while Sandy can do the task in 12 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Molly_can_do_task_s1 = 18\nMolly_can_do_task_s2 = 18-1\n\nif Molly_can_do_task_s1 is None or Molly_can_do_task_s2 is None:\n print('neutral')\n\nelif Molly_can_do_task_s1 == Molly_can_do_task_s2:\n print('Entailment')\n\nelif Molly_can_do_task_s1 != Molly_can_do_task_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Matt is touring a nation in which coins are issued in two amounts , 2 \u00a2 and 5 \u00a2 , which are made of iron and copper , respectively, \"statement 2\" :Matt is touring a nation in which coins are issued in two amounts , 6 \u00a2 and 5 \u00a2 , which are made of iron and copper , respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Matt_is_touring_s1 = 2,5\nMatt_is_touring_s2 = 6,5\n\nif Matt_is_touring_s1 is None or Matt_is_touring_s2 is None:\n print('neutral')\n\nelif Matt_is_touring_s1 == Matt_is_touring_s2:\n print('Entailment')\n\nelif Matt_is_touring_s1 != Matt_is_touring_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jaclyn buys $ 10 000 worth of debentures in a company, \"statement 2\" :Jaclyn buys $ less than 80 000 worth of debentures in a company, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jaclyn_buys_s1 = 10000\nJaclyn_buys_s2 = 80000\n\nif Jaclyn_buys_s1 is None or Jaclyn_buys_s2 is None:\n print('neutral')\n\nelif Jaclyn_buys_s1 <= Jaclyn_buys_s2:\n print('Entailment')\n\nelif Jaclyn_buys_s1 != Jaclyn_buys_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Cindy ' s mother gives her $ 30 to spend, \"statement 2\" :Cindy ' s mother gives her $ 40 to spend, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Cindy_mother_gives_s1 = 30\nCindy_mother_gives_s2 = 40\n\nif Cindy_mother_gives_s1 is None or Cindy_mother_gives_s2 is None:\n print('neutral')\n\nelif Cindy_mother_gives_s1 == Cindy_mother_gives_s2:\n print('Entailment')\n\nelif Cindy_mother_gives_s1 != Cindy_mother_gives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If an outfit consists of 1 shirt , 1 pair of jeans , and 1 pair of sneakers , how many different outfits does Jordan have ?, \"statement 2\" :If an outfit consists of 4 shirt , 1 pair of jeans , and 1 pair of sneakers , how many different outfits does Jordan have ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "outfit_consists_s1 = 1\noutfit_consists_s2 = 4\n\nif outfit_consists_s1 is None or outfit_consists_s2 is None:\n print('neutral')\n\nelif outfit_consists_s1 == outfit_consists_s2:\n print('Entailment')\n\nelif outfit_consists_s1 != outfit_consists_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The average time of Izzy ' s past 3 100 - meter sprints is 15 seconds, \"statement 2\" :The average time of Izzy ' s past less than 7 100 - meter sprints is 15 seconds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_time_of_Izzy_s1 = 3100\naverage_time_of_Izzy_s2 = 7100\n\nif average_time_of_Izzy_s1 is None or average_time_of_Izzy_s2 is None:\n print('neutral')\n\nelif average_time_of_Izzy_s1 <= average_time_of_Izzy_s2:\n print('Entailment')\n\nelif average_time_of_Izzy_s1 != average_time_of_Izzy_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Lionel left his house and walked towards Walt ' s house , 48 miles away, \"statement 2\" :Lionel left his house and walked towards Walt ' s house , more than 48 miles away, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Lionle_walked_towards_Walt_s1 = 48\nLionle_walked_towards_Walt_s2 = 48+1\n\nif Lionle_walked_towards_Walt_s1 is None or Lionle_walked_towards_Walt_s2 is None:\n print('neutral')\n\nelif Lionle_walked_towards_Walt_s1 == Lionle_walked_towards_Walt_s2:\n print('Entailment')\n\nelif Lionle_walked_towards_Walt_s1 != Lionle_walked_towards_Walt_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Hannah leaves City A less than 208 minutes after Glen, \"statement 2\" :Hannah leaves City A 108 minutes after Glen, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Hannah_leaves_City_A_s1 = 208\nHannah_leaves_City_A_s2 = 108\n\nif Hannah_leaves_City_A_s1 is None or Hannah_leaves_City_A_s2 is None:\n print('neutral')\n\nelif Hannah_leaves_City_A_s1 == Hannah_leaves_City_A_s2:\n print('Entailment')\n\nelif Hannah_leaves_City_A_s1 != Hannah_leaves_City_A_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The average number of shirts with Salman , Ambani and Dalmiya is more than 50 , if all of them reached a shopping mall in Delhi and purchased 6 shirts each of them then average number of shirt each of them now has, \"statement 2\" :The average number of shirts with Salman , Ambani and Dalmiya is 60 , if all of them reached a shopping mall in Delhi and purchased 6 shirts each of them then average number of shirt each of them now has, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_number_of_shirts_s1 = None\naverage_number_of_shirts_s2 = 60\n\nif average_number_of_shirts_s1 is None or average_number_of_shirts_s2 is None:\n print('neutral')\n\nelif average_number_of_shirts_s1 == average_number_of_shirts_s2:\n print('Entailment')\n\nelif average_number_of_shirts_s1 != average_number_of_shirts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": During a car trip , Maria stopped to rest after she traveled 1 / 2 of the total distance to her destination, \"statement 2\" :During a car trip , Maria stopped to rest after she traveled less than 5 / 2 of the total distance to her destination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Maria_stopped_s1 = 1/2\nMaria_stopped_s2 = 5/2\n\nif Maria_stopped_s1 is None or Maria_stopped_s2 is None:\n print('neutral')\n\nelif Maria_stopped_s1 <= Maria_stopped_s2:\n print('Entailment')\n\nelif Maria_stopped_s1 != Maria_stopped_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": During a car trip , Maria stopped to rest after she traveled 1 / 2 of the total distance to her destination, \"statement 2\" :During a car trip , Maria stopped to rest after she traveled 5 / 2 of the total distance to her destination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Maria_stopped_s1 = 1/2\nMaria_stopped_s2 = 5/2\n\nif Maria_stopped_s1 is None or Maria_stopped_s2 is None:\n print('neutral')\n\nelif Maria_stopped_s1 == Maria_stopped_s2:\n print('Entailment')\n\nelif Maria_stopped_s1 != Maria_stopped_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Today Roseline , who is 50 years old , and her daughter , who is 20 years old , celebrate their birthdays, \"statement 2\" :Today Roseline , who is 60 years old , and her daughter , who is 20 years old , celebrate their birthdays, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Roseline_yers_s1 = 50\nRoseline_yers_s2 = 60\n\nif Roseline_yers_s1 is None or Roseline_yers_s2 is None:\n print('neutral')\n\nelif Roseline_yers_s1 == Roseline_yers_s2:\n print('Entailment')\n\nelif Roseline_yers_s1 != Roseline_yers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Rajesh solved 80 per cent of the questions in an examination correctly, \"statement 2\" :Rajesh solved 70 per cent of the questions in an examination correctly, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Rajesh_solved_s1 = 80\nRajesh_solved_s2 = 70\n\nif Rajesh_solved_s1 is None or Rajesh_solved_s2 is None:\n print('neutral')\n\nelif Rajesh_solved_s1 == Rajesh_solved_s2:\n print('Entailment')\n\nelif Rajesh_solved_s1 != Rajesh_solved_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": George ' s drawer has 10 loose black socks , 12 loose blue socks , and 8 loose white socks, \"statement 2\" :George ' s drawer has less than 70 loose black socks , 12 loose blue socks , and 8 loose white socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "George_drawer_balck_socks_s1 = 10\nGeorge_drawer_balck_socks_s2 = 70\n\nif George_drawer_balck_socks_s1 is None or George_drawer_balck_socks_s2 is None:\n print('neutral')\n\nelif George_drawer_balck_socks_s1 <= George_drawer_balck_socks_s2:\n print('Entailment')\n\nelif George_drawer_balck_socks_s1 != George_drawer_balck_socks_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In 6 years from now , Lyn the circus Lion will be exactly half as old as Ele , the circus Elephant, \"statement 2\" :In less than 7 years from now , Lyn the circus Lion will be exactly half as old as Ele , the circus Elephant, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "circus_Lion_s1 = 6\ncircus_Lion_s2 = 7\n\nif circus_Lion_s1 is None or circus_Lion_s2 is None:\n print('neutral')\n\nelif circus_Lion_s1 <= circus_Lion_s2:\n print('Entailment')\n\nelif circus_Lion_s1 != circus_Lion_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Melvin ' s GMAT score is twice his monthly electric bill , and his life expectancy is 80 , what is his shoe size ?, \"statement 2\" :If Melvin ' s GMAT score is twice his monthly electric bill , and his life expectancy is more than 80 , what is his shoe size ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "GMAT_score_s1 = 80\nGMAT_score_s2 = 80+1\n\nif GMAT_score_s1 is None or GMAT_score_s2 is None:\n print('neutral')\n\nelif GMAT_score_s1 == GMAT_score_s2:\n print('Entailment')\n\nelif GMAT_score_s1 != GMAT_score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Vijay sells a cupboard at less than 60 % below cost price, \"statement 2\" :Vijay sells a cupboard at 10 % below cost price, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Vijay_sells_cupboard_s1 = None\nVijay_sells_cupboard_s2 = 10\n\nif Vijay_sells_cupboard_s1 is None or Vijay_sells_cupboard_s2 is None:\n print('neutral')\n\nelif Vijay_sells_cupboard_s1 == Vijay_sells_cupboard_s2:\n print('Entailment')\n\nelif Vijay_sells_cupboard_s1 != Vijay_sells_cupboard_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Alice drives at a constant speed of less than 40 km per hour, \"statement 2\" :Alice drives at a constant speed of 30 km per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Alice_drives_s1 = None\nAlice_drives_s2 = 30\n\nif Alice_drives_s1 is None or Alice_drives_s2 is None:\n print('neutral')\n\nelif Alice_drives_s1 == Alice_drives_s2:\n print('Entailment')\n\nelif Alice_drives_s1 != Alice_drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Ed drives at a constant speed of 31 km per hour, \"statement 2\" :Ed drives at a constant speed of less than 51 km per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ed_drives_s1 = 31\nEd_drives_s2 = 51\n\nif Ed_drives_s1 is None or Ed_drives_s2 is None:\n print('neutral')\n\nelif Ed_drives_s1 == Ed_drives_s2:\n print('Entailment')\n\nelif Ed_drives_s1 != Ed_drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The next day , Dan took the test , and with this grade included , the new average was more than 16, \"statement 2\" :The next day , Dan took the test , and with this grade included , the new average was 76, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dan_new_average_s1 = None\nDan_new_average_s2 = 76\n\nif Dan_new_average_s1 is None or Dan_new_average_s2 is None:\n print('neutral')\n\nelif Dan_new_average_s1 == Dan_new_average_s2:\n print('Entailment')\n\nelif Dan_new_average_s1 != Dan_new_average_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Melvin ' s GMAT score is twice his monthly electric bill , and his life expectancy is 80 , what is his shoe size ?, \"statement 2\" :If Melvin ' s GMAT score is twice his monthly electric bill , and his life expectancy is more than 60 , what is his shoe size ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "GMAT_score_s1 = 80\nGMAT_score_s2 = 60\n\nif GMAT_score_s1 is None or GMAT_score_s2 is None:\n print('neutral')\n\nelif GMAT_score_s1 >= GMAT_score_s2:\n print('Entailment')\n\nelif GMAT_score_s1 != GMAT_score_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Jimmy drinks 8 ounces of water each time for 8 times a day, \"statement 2\" :If Jimmy drinks more than 8 ounces of water each time for 8 times a day, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jimmy_drinks_s1 = 8\nJimmy_drinks_s2 = 8+1\n\nif Jimmy_drinks_s1 is None or Jimmy_drinks_s2 is None:\n print('neutral')\n\nelif Jimmy_drinks_s1 == Jimmy_drinks_s2:\n print('Entailment')\n\nelif Jimmy_drinks_s1 != Jimmy_drinks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Ed drives at a constant speed of 31 km per hour, \"statement 2\" :Ed drives at a constant speed of less than 31 km per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ed_speed_s1 = 31\nEd_speed_s2 = 31-1\n\nif Ed_speed_s1 is None or Ed_speed_s2 is None:\n print('neutral')\n\nelif Ed_speed_s1 == Ed_speed_s2:\n print('Entailment')\n\nelif Ed_speed_s1 != Ed_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Ravina leaves the job more than 1 days before the completion of the work, \"statement 2\" :Ravina leaves the job 3 days before the completion of the work, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ravina_leaves_s1 = None\nRavina_leaves_s2 = 3\n\nif Ravina_leaves_s1 is None or Ravina_leaves_s2 is None:\n print('neutral')\n\nelif Ravina_leaves_s1 == Ravina_leaves_s2:\n print('Entailment')\n\nelif Ravina_leaves_s1 != Ravina_leaves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Ed drives at a constant speed of less than 51 km per hour, \"statement 2\" :Ed drives at a constant speed of 31 km per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ed_drives_s1 = None\nEd_drives_s2 = 31\n\nif Ed_drives_s1 is None or Ed_drives_s2 is None:\n print('neutral')\n\nelif Ed_drives_s1 == Ed_drives_s2:\n print('Entailment')\n\nelif Ed_drives_s1 != Ed_drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Geoff needed exactly less than 6000 more votes to win the election , what is the value of x ?, \"statement 2\" :If Geoff needed exactly 3000 more votes to win the election , what is the value of x ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Geoff_needed_s1 = None\nGeoff_needed_s2 = 3000\n\nif Geoff_needed_s1 is None or Geoff_needed_s2 is None:\n print('neutral')\n\nelif Geoff_needed_s1 == Geoff_needed_s2:\n print('Entailment')\n\nelif Geoff_needed_s1 != Geoff_needed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Martha has 5 dogs and 6 cats, \"statement 2\" :Martha has more than 5 dogs and 6 cats, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Martha_dog_and_cat_s1 = 5,6\nMartha_dog_and_cat_s2 = 5+1,6+1\n\nif Martha_dog_and_cat_s1 is None or Martha_dog_and_cat_s2 is None:\n print('neutral')\n\nelif Martha_dog_and_cat_s1 == Martha_dog_and_cat_s2:\n print('Entailment')\n\nelif Martha_dog_and_cat_s1 != Martha_dog_and_cat_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Claire has more than 1 books, \"statement 2\" :Claire has 3 books, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Claire_has_s1 = None\nClaire_has_s2 = 3\n\nif Claire_has_s1 is None or Claire_has_s2 is None:\n print('neutral')\n\nelif Claire_has_s1 == Claire_has_s2:\n print('Entailment')\n\nelif Claire_has_s1 != Claire_has_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If 41 people have visited both Iceland and Norway , how many people have visited neither country ?, \"statement 2\" :If more than 11 people have visited both Iceland and Norway , how many people have visited neither country ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_visied_iceland_s1 = 41\npeople_visied_iceland_s2 = 11\n\nif people_visied_iceland_s1 is None or people_visied_iceland_s2 is None:\n print('neutral')\n\nelif people_visied_iceland_s1 >= people_visied_iceland_s2:\n print('Entailment')\n\nelif people_visied_iceland_s1 != people_visied_iceland_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is 6 : 3 ?, \"statement 2\" :What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is more than 3 : 3 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distances_between_A_to_B_s1 = 6/3\ndistances_between_A_to_B_s2 = 3/3+1\n\nif distances_between_A_to_B_s1 is None or distances_between_A_to_B_s2 is None:\n print('neutral')\n\nelif distances_between_A_to_B_s1 == distances_between_A_to_B_s2:\n print('Entailment')\n\nelif distances_between_A_to_B_s1 != distances_between_A_to_B_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If gas costs $ less than 6 / gallon , then how many miles can Dan \u2019 s car go on $ 46 of gas ?, \"statement 2\" :If gas costs $ 4 / gallon , then how many miles can Dan \u2019 s car go on $ 46 of gas ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gas_costs_s1 = None\ngas_costs_s2 = 4\n\nif gas_costs_s1 is None or gas_costs_s2 is None:\n print('neutral')\n\nelif gas_costs_s1 == gas_costs_s2:\n print('Entailment')\n\nelif gas_costs_s1 != gas_costs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Dana borrows more than 1000 pounds annually for her college education, \"statement 2\" :Dana borrows 4000 pounds annually for her college education, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dana_borrows_s1 = None\nDana_borrows_s2 = 4000\n\nif Dana_borrows_s1 is None or Dana_borrows_s2 is None:\n print('neutral')\n\nelif Dana_borrows_s1 == Dana_borrows_s2:\n print('Entailment')\n\nelif Dana_borrows_s1 != Dana_borrows_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": How many seconds does Sandy take to cover a distance of more than 300 meters , if Sandy runs at a speed of 18 km / hr ?, \"statement 2\" :How many seconds does Sandy take to cover a distance of 500 meters , if Sandy runs at a speed of 18 km / hr ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sandy_cover_distance_s1 = None\nSandy_cover_distance_s2 = 500\n\nif Sandy_cover_distance_s1 is None or Sandy_cover_distance_s2 is None:\n print('neutral')\n\nelif Sandy_cover_distance_s1 == Sandy_cover_distance_s2:\n print('Entailment')\n\nelif Sandy_cover_distance_s1 != Sandy_cover_distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Hannah leaves City A 108 minutes after Glen, \"statement 2\" :Hannah leaves City A 608 minutes after Glen, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Hannah_leaves_s1 = 108\nHannah_leaves_s2 = 608\n\nif Hannah_leaves_s1 is None or Hannah_leaves_s2 is None:\n print('neutral')\n\nelif Hannah_leaves_s1 == Hannah_leaves_s2:\n print('Entailment')\n\nelif Hannah_leaves_s1 != Hannah_leaves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": A train leaves Delhi at 9 a, \"statement 2\" :A train leaves Delhi at more than 1 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\ntrain_leaves_Delhi_s1 = 9\ntrain_leaves_Delhi_s2 = 1\n\nif train_leaves_Delhi_s1 is None or train_leaves_Delhi_s2 is None:\n print('neutral')\n\nelif train_leaves_Delhi_s1 >= train_leaves_Delhi_s2:\n print('Entailment')\n\nelif train_leaves_Delhi_s1 != train_leaves_Delhi_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": 6000 among John , Jose & Binoy in the ration 2 : 4 : 6, \"statement 2\" :more than 2000 among John , Jose & Binoy in the ration 2 : 4 : 6, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "among_John_s1 = 6000\namong_John_s2 = 2000\n\nif among_John_s1 is None or among_John_s2 is None:\n print('neutral')\n\nelif among_John_s1 >= among_John_s2:\n print('Entailment')\n\nelif among_John_s1 != among_John_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The average number of shirts with Salman , Ambani and Dalmiya is more than 39 , if all of them reached a shopping mall in Delhi and purchased 12 shirts each of them then average number of shirt each of them now has, \"statement 2\" :The average number of shirts with Salman , Ambani and Dalmiya is 69 , if all of them reached a shopping mall in Delhi and purchased 12 shirts each of them then average number of shirt each of them now has, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_number_of_shirts_s1 = None\naverage_number_of_shirts_s2 = 69\n\nif average_number_of_shirts_s1 is None or average_number_of_shirts_s2 is None:\n print('neutral')\n\nelif average_number_of_shirts_s1 == average_number_of_shirts_s2:\n print('Entailment')\n\nelif average_number_of_shirts_s1 != average_number_of_shirts_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": A train travels from Albany to Syracuse , a distance of 100 miles , at the average rate of 50 miles per hour, \"statement 2\" :A train travels from Albany to Syracuse , a distance of less than 300 miles , at the average rate of 50 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Albany_to_Syracuse_distance_s1 = 100\nAlbany_to_Syracuse_distance_s2 = 300\n\nif Albany_to_Syracuse_distance_s1 is None or Albany_to_Syracuse_distance_s2 is None:\n print('neutral')\n\nelif Albany_to_Syracuse_distance_s1 <= Albany_to_Syracuse_distance_s2:\n print('Entailment')\n\nelif Albany_to_Syracuse_distance_s1 != Albany_to_Syracuse_distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": How many miles per hour must Carla drive on average to catch up to him in exactly 3 hours if she leaves 30 minutes after Richard ?, \"statement 2\" :How many miles per hour must Carla drive on average to catch up to him in exactly less than 6 hours if she leaves 30 minutes after Richard ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "leaves_after_richard_s1 = 30\nleaves_after_richard_s2 = 30\n\nif leaves_after_richard_s1 is None or leaves_after_richard_s2 is None:\n print('neutral')\n\nelif leaves_after_richard_s1 == leaves_after_richard_s2:\n print('Entailment')\n\nelif leaves_after_richard_s1 != leaves_after_richard_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The total of the ages of Amar , Akbar and Anthony is more than 16 years, \"statement 2\" :The total of the ages of Amar , Akbar and Anthony is 56 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ages_of_Amar_Akbar_and_Anthony_s1 = None\nAges_of_Amar_Akbar_and_Anthony_s2 = 356\n\nif Ages_of_Amar_Akbar_and_Anthony_s1 is None or Ages_of_Amar_Akbar_and_Anthony_s2 is None:\n print('neutral')\n\nelif Ages_of_Amar_Akbar_and_Anthony_s1 == Ages_of_Amar_Akbar_and_Anthony_s2:\n print('Entailment')\n\nelif Ages_of_Amar_Akbar_and_Anthony_s1 != Ages_of_Amar_Akbar_and_Anthony_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sakshi can do a piece of work in more than 10 days, \"statement 2\" :Sakshi can do a piece of work in 20 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Skashi_can_do_work_s1 = None\nSkashi_can_do_work_s2 = 20\n\nif Skashi_can_do_work_s1 is None or Skashi_can_do_work_s2 is None:\n print('neutral')\n\nelif Skashi_can_do_work_s1 == Skashi_can_do_work_s2:\n print('Entailment')\n\nelif Skashi_can_do_work_s1 != Skashi_can_do_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Arun purchased 30 kg of wheat at the rate of Rs, \"statement 2\" :Arun purchased 80 kg of wheat at the rate of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Arun_purchased_s1 = 30\nArun_purchased_s2 = 80\n\nif Arun_purchased_s1 is None or Arun_purchased_s2 is None:\n print('neutral')\n\nelif Arun_purchased_s1 == Arun_purchased_s2:\n print('Entailment')\n\nelif Arun_purchased_s1 != Arun_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The average number of shirts with Salman , Ambani and Dalmiya is 60 , if all of them reached a shopping mall in Delhi and purchased 6 shirts each of them then average number of shirt each of them now has, \"statement 2\" :The average number of shirts with Salman , Ambani and Dalmiya is more than 50 , if all of them reached a shopping mall in Delhi and purchased 6 shirts each of them then average number of shirt each of them now has, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_number_of_shirts_s1 = 60\naverage_number_of_shirts_s2 = 50\n\nif average_number_of_shirts_s1 is None or average_number_of_shirts_s2 is None:\n print('neutral')\n\nelif average_number_of_shirts_s1 >= average_number_of_shirts_s2:\n print('Entailment')\n\nelif average_number_of_shirts_s1 != average_number_of_shirts_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Angela has 11 pairs of matched socks, \"statement 2\" :Angela has 51 pairs of matched socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Angela_socks_s1 = 11\nAngela_socks_s2 = 51\n\nif Angela_socks_s1 is None or Angela_socks_s2 is None:\n print('neutral')\n\nelif Angela_socks_s1 == Angela_socks_s2:\n print('Entailment')\n\nelif Angela_socks_s1 != Angela_socks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Anup was asked to find the value of 7 / 12 of a sum of money W, \"statement 2\" :Anup was asked to find the value of more than 7 / 12 of a sum of money W, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sum_of_money_s1 = 7/12\nSum_of_money_s2 = 7/12+1\n\nif Sum_of_money_s1 is None or Sum_of_money_s2 is None:\n print('neutral')\n\nelif Sum_of_money_s1 == Sum_of_money_s2:\n print('Entailment')\n\nelif Sum_of_money_s1 != Sum_of_money_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sean , who weighs more than 100 pounds , is in the elevator with two packages weighing 150 pounds and 280 pounds, \"statement 2\" :Sean , who weighs 200 pounds , is in the elevator with two packages weighing 150 pounds and 280 pounds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sean_weighs_s1 = None\nSean_weighs_s2 = 200\n\nif Sean_weighs_s1 is None or Sean_weighs_s2 is None:\n print('neutral')\n\nelif Sean_weighs_s1 == Sean_weighs_s2:\n print('Entailment')\n\nelif Sean_weighs_s1 != Sean_weighs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": 75 percent of Andrea ' s living room floor is covered by a carpet that is 4 feet by 9 feet, \"statement 2\" :less than 85 percent of Andrea ' s living room floor is covered by a carpet that is 4 feet by 9 feet, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Andrea_living_room_floor_s1 = 75\nAndrea_living_room_floor_s2 = 85\n\nif Andrea_living_room_floor_s1 is None or Andrea_living_room_floor_s2 is None:\n print('neutral')\n\nelif Andrea_living_room_floor_s1 <= Andrea_living_room_floor_s2:\n print('Entailment')\n\nelif Andrea_living_room_floor_s1 != Andrea_living_room_floor_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Dawson completes a piece of work in 40 days , Rose completes the same work in 60 days, \"statement 2\" :Dawson completes a piece of work in less than 70 days , Rose completes the same work in 60 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dawson_completes_s1 = 40\nDawson_completes_s2 = 70\n\nif Dawson_completes_s1 is None or Dawson_completes_s2 is None:\n print('neutral')\n\nelif Dawson_completes_s1 <= Dawson_completes_s2:\n print('Entailment')\n\nelif Dawson_completes_s1 != Dawson_completes_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If the agreed period of the debenture was 18 months : calculate the amount of interest Jaclyn will earn for each quarter, \"statement 2\" :If the agreed period of the debenture was less than 78 months : calculate the amount of interest Jaclyn will earn for each quarter, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "period_of_the_debenture_s1 = 18\nperiod_of_the_debenture_s2 = 78\n\nif period_of_the_debenture_s1 is None or period_of_the_debenture_s2 is None:\n print('neutral')\n\nelif period_of_the_debenture_s1 <= period_of_the_debenture_s2:\n print('Entailment')\n\nelif period_of_the_debenture_s1 != period_of_the_debenture_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Lionel ' s speed was 2 miles per hour and Walt ' s 6 miles per hour , how many miles had Lionel walked when he met Walt ?, \"statement 2\" :If Lionel ' s speed was less than 5 miles per hour and Walt ' s 6 miles per hour , how many miles had Lionel walked when he met Walt ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Lionel_speed_s1 = 2\nLionel_speed_s2 = 5\n\nif Lionel_speed_s1 is None or Lionel_speed_s2 is None:\n print('neutral')\n\nelif Lionel_speed_s1 <= Lionel_speed_s2:\n print('Entailment')\n\nelif Lionel_speed_s1 != Lionel_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sean , who weighs 200 pounds , is in the elevator with two packages weighing 150 pounds and 280 pounds, \"statement 2\" :Sean , who weighs more than 200 pounds , is in the elevator with two packages weighing 150 pounds and 280 pounds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Seanweighs_s1 = 200\nSeanweighs_s2 = 200+1\n\nif Seanweighs_s1 is None or Seanweighs_s2 is None:\n print('neutral')\n\nelif Seanweighs_s1 == Seanweighs_s2:\n print('Entailment')\n\nelif Seanweighs_s1 != Seanweighs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": George ' s drawer has 10 loose black socks , 14 loose blue socks , and 8 loose white socks, \"statement 2\" :George ' s drawer has less than 20 loose black socks , 14 loose blue socks , and 8 loose white socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "George_black_socks_s1 = 14\nGeorge_black_socks_s2 = 20\n\nif George_black_socks_s1 is None or George_black_socks_s2 is None:\n print('neutral')\n\nelif George_black_socks_s1 <= George_black_socks_s2:\n print('Entailment')\n\nelif George_black_socks_s1 != George_black_socks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Karen places a bet with Tom that she will beat Tom in a car race by 4 miles even if Karen starts 4 minutes late, \"statement 2\" :Karen places a bet with Tom that she will beat Tom in a car race by more than 1 miles even if Karen starts 4 minutes late, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "tom_in_car_race_s1 = 4\ntom_in_car_race_s2 = 1\n\nif tom_in_car_race_s1 is None or tom_in_car_race_s2 is None:\n print('neutral')\n\nelif tom_in_car_race_s1 >= tom_in_car_race_s2:\n print('Entailment')\n\nelif tom_in_car_race_s1 != tom_in_car_race_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": After they have worked together for 10 days Matt stops and Peter completes the remaining work in 10 days, \"statement 2\" :After they have worked together for less than 10 days Matt stops and Peter completes the remaining work in 10 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Work_togtehr_s1 = 10\nWork_togtehr_s2 = 10-1\n\nif Work_togtehr_s1 is None or Work_togtehr_s2 is None:\n print('neutral')\n\nelif Work_togtehr_s1 == Work_togtehr_s2:\n print('Entailment')\n\nelif Work_togtehr_s1 != Work_togtehr_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In the city of San Durango , 60 people own cats , dogs , or rabbits, \"statement 2\" :In the city of San Durango , less than 70 people own cats , dogs , or rabbits, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_s1 = 60\npeople_s2 = 70\n\nif people_s1 is None or people_s2 is None:\n print('neutral')\n\nelif people_s1 <= people_s2:\n print('Entailment')\n\nelif people_s1 != people_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Raman mixed 34 kg of butter at Rs, \"statement 2\" :Raman mixed less than 44 kg of butter at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Raman_mixed_s1 = 34\nRaman_mixed_s2 = 44\n\nif Raman_mixed_s1 is None or Raman_mixed_s2 is None:\n print('neutral')\n\nelif Raman_mixed_s1 <= Raman_mixed_s2:\n print('Entailment')\n\nelif Raman_mixed_s1 != Raman_mixed_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": City A to city B , David drove for 1 hour at 60 mph and for 3 hours at 90 mph, \"statement 2\" :City A to city B , David drove for less than 1 hour at 60 mph and for 3 hours at 90 mph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "David_drove_s1 = 1\nDavid_drove_s2 = 1-1\n\nif David_drove_s1 is None or David_drove_s2 is None:\n print('neutral')\n\nelif David_drove_s1 == David_drove_s2:\n print('Entailment')\n\nelif David_drove_s1 != David_drove_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If he worked for less than 55 days alone before he was joined by Kennedy to complete the job in 3 days , how many days will it take both of them to complete the entire job ?, \"statement 2\" :If he worked for 15 days alone before he was joined by Kennedy to complete the job in 3 days , how many days will it take both of them to complete the entire job ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "worked_s1 = None\nworked_s2 = 15\n\nif worked_s1 is None or worked_s2 is None:\n print('neutral')\n\nelif worked_s1 == worked_s2:\n print('Entailment')\n\nelif worked_s1 != worked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The ratio between the number of sheep and the number of horses at the Stewart farm is less than 4 to 7 , If each horse is fed 230 ounces of horse food per day and the farm needs a total 12,880 ounces of horse food per day , what is the number of sheep in the farm ?, \"statement 2\" :The ratio between the number of sheep and the number of horses at the Stewart farm is 3 to 7 , If each horse is fed 230 ounces of horse food per day and the farm needs a total 12,880 ounces of horse food per day , what is the number of sheep in the farm ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_between_the_number_s1 = None\nratio_between_the_number_s2 = 3,7\n\nif ratio_between_the_number_s1 is None or ratio_between_the_number_s2 is None:\n print('neutral')\n\nelif ratio_between_the_number_s1 == ratio_between_the_number_s2:\n print('Entailment')\n\nelif ratio_between_the_number_s1 != ratio_between_the_number_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Susan , John , Daisy , Tim , Matt , Jane and Kim need to be seated in 7 identical chairs in straight line so that Susan is seated always left to Tim, \"statement 2\" :Susan , John , Daisy , Tim , Matt , Jane and Kim need to be seated in less than 7 identical chairs in straight line so that Susan is seated always left to Tim, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "identical_chairs_s1 = 7\nidentical_chairs_s2 = 7-1\n\nif identical_chairs_s1 is None or identical_chairs_s2 is None:\n print('neutral')\n\nelif identical_chairs_s1 == identical_chairs_s2:\n print('Entailment')\n\nelif identical_chairs_s1 != identical_chairs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Jimmy drinks more than 2 ounces of water each time for 8 times a day, \"statement 2\" :If Jimmy drinks 8 ounces of water each time for 8 times a day, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jimmy_drinks_s1 = 2\nJimmy_drinks_s2 = 8\n\nif Jimmy_drinks_s1 is None or Jimmy_drinks_s2 is None:\n print('neutral')\n\nelif Jimmy_drinks_s1 >= Jimmy_drinks_s2:\n print('Entailment')\n\nelif Jimmy_drinks_s1 != Jimmy_drinks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Renu can do a piece of work in more than 3 days , but with the help of her friend Suma , she can do it in 4 days, \"statement 2\" :Renu can do a piece of work in 5 days , but with the help of her friend Suma , she can do it in 4 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Renu_work_s1 = None\nRenu_work_s2 = 5\n\nif Renu_work_s1 is None or Renu_work_s2 is None:\n print('neutral')\n\nelif Renu_work_s1 == Renu_work_s2:\n print('Entailment')\n\nelif Renu_work_s1 != Renu_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Andy solves problems 74 to 135 inclusive in a Math exercise, \"statement 2\" :Andy solves problems 54 to 135 inclusive in a Math exercise, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Andy_solves_problems_s1 = 74,135\nAndy_solves_problems_s2 = 54,135\n\nif Andy_solves_problems_s1 is None or Andy_solves_problems_s2 is None:\n print('neutral')\n\nelif Andy_solves_problems_s1 == Andy_solves_problems_s2:\n print('Entailment')\n\nelif Andy_solves_problems_s1 != Andy_solves_problems_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Albert is less than 3 times Mary \u2019 s age and 4 times as old as Betty, \"statement 2\" :Albert is 2 times Mary \u2019 s age and 4 times as old as Betty, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Albert_Age_s1 = None\nAlbert_Age_s2 = 2\n\nif Albert_Age_s1 is None or Albert_Age_s2 is None:\n print('neutral')\n\nelif Albert_Age_s1 == Albert_Age_s2:\n print('Entailment')\n\nelif Albert_Age_s1 != Albert_Age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Victor has 15 cups if flour , 16 cups of sugar and 8 cups of milk, \"statement 2\" :Victor has more than 15 cups if flour , 16 cups of sugar and 8 cups of milk, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Victor_cups_flour_s1 = 15\nVictor_cups_flour_s2 = 15+1\n\nif Victor_cups_flour_s1 is None or Victor_cups_flour_s2 is None:\n print('neutral')\n\nelif Victor_cups_flour_s1 == Victor_cups_flour_s2:\n print('Entailment')\n\nelif Victor_cups_flour_s1 != Victor_cups_flour_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Arun purchased 30 kg of wheat at the rate of Rs, \"statement 2\" :Arun purchased less than 80 kg of wheat at the rate of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Arun_purchased_s1 = 30\nArun_purchased_s2 = 80\n\nif Arun_purchased_s1 is None or Arun_purchased_s2 is None:\n print('neutral')\n\nelif Arun_purchased_s1 <= Arun_purchased_s2:\n print('Entailment')\n\nelif Arun_purchased_s1 != Arun_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If it takes Cathy 24 minutes to stretch and Cara continues to run during this time , how many minutes will it take Cathy to catch up to Cara ?, \"statement 2\" :If it takes Cathy less than 34 minutes to stretch and Cara continues to run during this time , how many minutes will it take Cathy to catch up to Cara ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Cathy_run_s1 = 24\nCathy_run_s2 = 34\n\nif Cathy_run_s1 is None or Cathy_run_s2 is None:\n print('neutral')\n\nelif Cathy_run_s1 <= Cathy_run_s2:\n print('Entailment')\n\nelif Cathy_run_s1 != Cathy_run_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": How many possible ways can less than 7 girls ( Rebecca , Kate , Ashley ) go on a date with 5 boys ( Peter , Kyle , Sam ) ?, \"statement 2\" :How many possible ways can 5 girls ( Rebecca , Kate , Ashley ) go on a date with 5 boys ( Peter , Kyle , Sam ) ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\ngirls_and_with_boy_s1 = None\ngirls_and_with_boy_s2 = 5\n\nif girls_and_with_boy_s1 is None or girls_and_with_boy_s2 is None:\n print('neutral')\n\nelif girls_and_with_boy_s1 == girls_and_with_boy_s2:\n print('Entailment')\n\nelif girls_and_with_boy_s1 != girls_and_with_boy_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Renu can do a piece of work in 5 days , but with the help of her friend Suma , she can do it in 4 days, \"statement 2\" :Renu can do a piece of work in more than 5 days , but with the help of her friend Suma , she can do it in 4 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Renu_work_s1 = 5\nRenu_work_s2 = 5+1\n\nif Renu_work_s1 is None or Renu_work_s2 is None:\n print('neutral')\n\nelif Renu_work_s1 == Renu_work_s2:\n print('Entailment')\n\nelif Renu_work_s1 != Renu_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": During a car trip , Maria stopped to rest after she traveled 1 / 2 of the total distance to her destination, \"statement 2\" :During a car trip , Maria stopped to rest after she traveled 3 / 2 of the total distance to her destination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Maria_traveld_s1 = 1/2\nMaria_traveld_s2 = 3/2\n\nif Maria_traveld_s1 is None or Maria_traveld_s2 is None:\n print('neutral')\n\nelif Maria_traveld_s1 == Maria_traveld_s2:\n print('Entailment')\n\nelif Maria_traveld_s1 != Maria_traveld_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Patrick purchased 70 pencils and sold them at a loss equal to the selling price of 20 pencils, \"statement 2\" :Patrick purchased less than 70 pencils and sold them at a loss equal to the selling price of 20 pencils, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Patrick_purchased_s1 = 70\nPatrick_purchased_s2 = 70-1\n\nif Patrick_purchased_s1 is None or Patrick_purchased_s2 is None:\n print('neutral')\n\nelif Patrick_purchased_s1 == Patrick_purchased_s2:\n print('Entailment')\n\nelif Patrick_purchased_s1 != Patrick_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In the biology lab of ` ` Jefferson ' ' High School there are 0.036 * 10 ^ 5 germs , equally divided among 18000 * 10 ^ ( - 3 ) Petri dishes, \"statement 2\" :In the biology lab of ` ` Jefferson ' ' High School there are 0.036 * 40 ^ 5 germs , equally divided among 18000 * 10 ^ ( - 3 ) Petri dishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "germs_s1 = 3600\ngerms_s2 = 3686400\n\nif germs_s1 is None or germs_s2 is None:\n print('neutral')\n\nelif germs_s1 == germs_s2:\n print('Entailment')\n\nelif germs_s1 != germs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The average number of shirts with Salman , Ambani and Dalmiya is 69 , if all of them reached a shopping mall in Delhi and purchased 12 shirts each of them then average number of shirt each of them now has, \"statement 2\" :The average number of shirts with Salman , Ambani and Dalmiya is more than 39 , if all of them reached a shopping mall in Delhi and purchased 12 shirts each of them then average number of shirt each of them now has, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_number_of_shirts_s1 = 69\naverage_number_of_shirts_s2 = 39\n\nif average_number_of_shirts_s1 is None or average_number_of_shirts_s2 is None:\n print('neutral')\n\nelif average_number_of_shirts_s1 >= average_number_of_shirts_s2:\n print('Entailment')\n\nelif average_number_of_shirts_s1 != average_number_of_shirts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sean , who weighs less than 400 pounds , is in the elevator with two packages weighing 150 pounds and 280 pounds, \"statement 2\" :Sean , who weighs 200 pounds , is in the elevator with two packages weighing 150 pounds and 280 pounds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sean_weighs_s1 = None\nSean_weighs_s2 = 200\n\nif Sean_weighs_s1 is None or Sean_weighs_s2 is None:\n print('neutral')\n\nelif Sean_weighs_s1 == Sean_weighs_s2:\n print('Entailment')\n\nelif Sean_weighs_s1 != Sean_weighs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jack walks in a straight line toward Christina at a constant speed of less than 6 feet per second and Christina walks in a straight line toward Jack at a constant speed of 3 feet per second, \"statement 2\" :Jack walks in a straight line toward Christina at a constant speed of 5 feet per second and Christina walks in a straight line toward Jack at a constant speed of 3 feet per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Christina_speed_s1 = None\nChristina_speed_s2 = 5\n\nif Christina_speed_s1 is None or Christina_speed_s2 is None:\n print('neutral')\n\nelif Christina_speed_s1 == Christina_speed_s2:\n print('Entailment')\n\nelif Christina_speed_s1 != Christina_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Angela has less than 81 pairs of matched socks, \"statement 2\" :Angela has 11 pairs of matched socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Angela_matched_socks_s1 = None\nAngela_matched_socks_s2 = 11\n\nif Angela_matched_socks_s1 is None or Angela_matched_socks_s2 is None:\n print('neutral')\n\nelif Angela_matched_socks_s1 == Angela_matched_socks_s2:\n print('Entailment')\n\nelif Angela_matched_socks_s1 != Angela_matched_socks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The product of all the possible units digits of Sophie Germain primes greater than 6 is, \"statement 2\" :The product of all the possible units digits of Sophie Germain primes greater than more than 2 is, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sophie_Germain_primes_s1 = 6\nSophie_Germain_primes_s2 = 2\n\nif Sophie_Germain_primes_s1 is None or Sophie_Germain_primes_s2 is None:\n print('neutral')\n\nelif Sophie_Germain_primes_s1 >= Sophie_Germain_primes_s2:\n print('Entailment')\n\nelif Sophie_Germain_primes_s1 != Sophie_Germain_primes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In Josephs convent school , 80 % are boys at the same time 75 % are girls students, \"statement 2\" :In Josephs convent school , more than 10 % are boys at the same time 75 % are girls students, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Josephs_convent_s1 = 80\nJosephs_convent_s2 = 10\n\nif Josephs_convent_s1 is None or Josephs_convent_s2 is None:\n print('neutral')\n\nelif Josephs_convent_s1 >= Josephs_convent_s2:\n print('Entailment')\n\nelif Josephs_convent_s1 != Josephs_convent_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In how many ways can you seat 8 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"statement 2\" :In how many ways can you seat more than 1 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Seat_people_s1 = 8\nSeat_people_s2 = 1\n\nif Seat_people_s1 is None or Seat_people_s2 is None:\n print('neutral')\n\nelif Seat_people_s1 >= Seat_people_s2:\n print('Entailment')\n\nelif Seat_people_s1 != Seat_people_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Meg and Bob are among the 4 participants in a cycling race, \"statement 2\" :Meg and Bob are among the 6 participants in a cycling race, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "cycling_race_s1 = 4\ncycling_race_s2 = 6\n\nif cycling_race_s1 is None or cycling_race_s2 is None:\n print('neutral')\n\nelif cycling_race_s1 == cycling_race_s2:\n print('Entailment')\n\nelif cycling_race_s1 != cycling_race_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Christine selects an item at a less than 85 % off ticket price sale, \"statement 2\" :Christine selects an item at a 25 % off ticket price sale, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Christine_selects_s1 = None\nChristine_selects_s2 = 25\n\nif Christine_selects_s1 is None or Christine_selects_s2 is None:\n print('neutral')\n\nelif Christine_selects_s1 == Christine_selects_s2:\n print('Entailment')\n\nelif Christine_selects_s1 != Christine_selects_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jaclyn buys $ less than 80 000 worth of debentures in a company, \"statement 2\" :Jaclyn buys $ 60 000 worth of debentures in a company, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jaclyn_buys_s1 = None\nJaclyn_buys_s2 = 60000\n\nif Jaclyn_buys_s1 is None or Jaclyn_buys_s2 is None:\n print('neutral')\n\nelif Jaclyn_buys_s1 == Jaclyn_buys_s2:\n print('Entailment')\n\nelif Jaclyn_buys_s1 != Jaclyn_buys_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The product of all the possible units digits of Sophie Germain primes greater than 6 is, \"statement 2\" :The product of all the possible units digits of Sophie Germain primes greater than 1 is, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sophie_Germain_primes_s1 = 6\nSophie_Germain_primes_s2 = 1\n\nif Sophie_Germain_primes_s1 is None or Sophie_Germain_primes_s2 is None:\n print('neutral')\n\nelif Sophie_Germain_primes_s1 >= Sophie_Germain_primes_s2:\n print('Entailment')\n\nelif Sophie_Germain_primes_s1 != Sophie_Germain_primes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Lindy runs at a constant speed of more than 1 feet per second from Christina to Jack , back to Christina , back to Jack , and so forth, \"statement 2\" :Lindy runs at a constant speed of 8 feet per second from Christina to Jack , back to Christina , back to Jack , and so forth, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Lindy_runs_s1 = None\nLindy_runs_s2 = 8\n\nif Lindy_runs_s1 is None or Lindy_runs_s2 is None:\n print('neutral')\n\nelif Lindy_runs_s1 == Lindy_runs_s2:\n print('Entailment')\n\nelif Lindy_runs_s1 != Lindy_runs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Gary had an average score of 70 on his first four quizzes, \"statement 2\" :Gary had an average score of more than 60 on his first four quizzes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Gary_average_score_s1 = 70\nGary_average_score_s2 = 60\n\nif Gary_average_score_s1 is None or Gary_average_score_s2 is None:\n print('neutral')\n\nelif Gary_average_score_s1 >= Gary_average_score_s2:\n print('Entailment')\n\nelif Gary_average_score_s1 != Gary_average_score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If there are 4 peanuts in a box and Mary puts 6 more peanuts inside , how many peanuts are in the box ?, \"statement 2\" :If there are less than 5 peanuts in a box and Mary puts 6 more peanuts inside , how many peanuts are in the box ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "peanuts_in_a_box_s1 = 4\npeanuts_in_a_box_s2 = 5-1\n\nif peanuts_in_a_box_s1 is None or peanuts_in_a_box_s2 is None:\n print('neutral')\n\nelif peanuts_in_a_box_s1 == peanuts_in_a_box_s2:\n print('Entailment')\n\nelif peanuts_in_a_box_s1 != peanuts_in_a_box_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The average time of Izzy ' s past less than 7 100 - meter sprints is 15 seconds, \"statement 2\" :The average time of Izzy ' s past 3 100 - meter sprints is 15 seconds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_time_of_Izzy_s1 = None\naverage_time_of_Izzy_s2 = 3100\n\nif average_time_of_Izzy_s1 is None or average_time_of_Izzy_s2 is None:\n print('neutral')\n\nelif average_time_of_Izzy_s1 == average_time_of_Izzy_s2:\n print('Entailment')\n\nelif average_time_of_Izzy_s1 != average_time_of_Izzy_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": When Sally went to the candy store , she bought less than 45 licorice sticks, \"statement 2\" :When Sally went to the candy store , she bought 25 licorice sticks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bought_licorice_sticks_s1 = None\nbought_licorice_sticks_s2 = 25\n\nif bought_licorice_sticks_s1 is None or bought_licorice_sticks_s2 is None:\n print('neutral')\n\nelif bought_licorice_sticks_s1 == bought_licorice_sticks_s2:\n print('Entailment')\n\nelif bought_licorice_sticks_s1 != bought_licorice_sticks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": How many liters of blue paint must be added to 24 liters of Fuchsia to change it to Mauve paint ?, \"statement 2\" :How many liters of blue paint must be added to 54 liters of Fuchsia to change it to Mauve paint ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "blue_paint_s1 = 24\nblue_paint_s2 = 54\n\nif blue_paint_s1 is None or blue_paint_s2 is None:\n print('neutral')\n\nelif blue_paint_s1 == blue_paint_s2:\n print('Entailment')\n\nelif blue_paint_s1 != blue_paint_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": John has 6 friends who want to ride in his new car that can accommodate only 4 people at a time ( John plus 3 passengers ), \"statement 2\" :John has less than 8 friends who want to ride in his new car that can accommodate only 4 people at a time ( John plus 3 passengers ), \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jhon_friend_s1 = 6\nJhon_friend_s2 = 8\n\nif Jhon_friend_s1 is None or Jhon_friend_s2 is None:\n print('neutral')\n\nelif Jhon_friend_s1 <= Jhon_friend_s2:\n print('Entailment')\n\nelif Jhon_friend_s1 != Jhon_friend_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Andrew purchased less than 70 kg of grapes at the rate of 82 per kg and 6 kg of mangoes at the rate of 62 per kg, \"statement 2\" :Andrew purchased 10 kg of grapes at the rate of 82 per kg and 6 kg of mangoes at the rate of 62 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Andrew_purchased_s1 = None\nAndrew_purchased_s2 = 10\n\nif Andrew_purchased_s1 is None or Andrew_purchased_s2 is None:\n print('neutral')\n\nelif Andrew_purchased_s1 == Andrew_purchased_s2:\n print('Entailment')\n\nelif Andrew_purchased_s1 != Andrew_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Henry completes a piece of work in 640 days , Rose completes the same work in 960 days, \"statement 2\" :Henry completes a piece of work in 340 days , Rose completes the same work in 960 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Henry_complate_work_s1 = 640\nHenry_complate_work_s2 = 340\n\nif Henry_complate_work_s1 is None or Henry_complate_work_s2 is None:\n print('neutral')\n\nelif Henry_complate_work_s1 == Henry_complate_work_s2:\n print('Entailment')\n\nelif Henry_complate_work_s1 != Henry_complate_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Calculate Rebecca ' s average score in an exam if she obtained the following marks 70 , 57 , 69 , 89 and 85 out of 100 in different subjects ., \"statement 2\" :Calculate Rebecca ' s average score in an exam if she obtained the following marks more than 70 , 57 , 69 , 89 and 85 out of 100 in different subjects ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Rebecca_average_score_s1 = 70,57,69,89,85\nRebecca_average_score_s2 = 70,57,69,89,85+1\n\nif Rebecca_average_score_s1 is None or Rebecca_average_score_s2 is None:\n print('neutral')\n\nelif Rebecca_average_score_s1 == Rebecca_average_score_s2:\n print('Entailment')\n\nelif Rebecca_average_score_s1 != Rebecca_average_score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Ed is 120 km away from Flora at 6 am , and also 120 km away from Flora at 11 am , then how fast is Flora driving ( in kilometers per hour ) ?, \"statement 2\" :If Ed is less than 620 km away from Flora at 6 am , and also 120 km away from Flora at 11 am , then how fast is Flora driving ( in kilometers per hour ) ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ed_s1 = 120\nEd_s2 = 620\n\nif Ed_s1 is None or Ed_s2 is None:\n print('neutral')\n\nelif Ed_s1 <= Ed_s2:\n print('Entailment')\n\nelif Ed_s1 != Ed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The bank recently revised the charges to US Dollar 0.75 for every 3 transactions, \"statement 2\" :The bank recently revised the charges to US Dollar 0.75 for every less than 3 transactions, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "revised_the_charges_s1 = 3\nrevised_the_charges_s2 = 3-1\n\nif revised_the_charges_s1 is None or revised_the_charges_s2 is None:\n print('neutral')\n\nelif revised_the_charges_s1 == revised_the_charges_s2:\n print('Entailment')\n\nelif revised_the_charges_s1 != revised_the_charges_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Lilly has 10 fishes , rosy has 7 fishes, \"statement 2\" :Lilly has 70 fishes , rosy has 7 fishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Lilly_fish_s1 = 10\nLilly_fish_s2 = 70\n\nif Lilly_fish_s1 is None or Lilly_fish_s2 is None:\n print('neutral')\n\nelif Lilly_fish_s1 == Lilly_fish_s2:\n print('Entailment')\n\nelif Lilly_fish_s1 != Lilly_fish_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Andrew purchased 10 kg of grapes at the rate of 82 per kg and 6 kg of mangoes at the rate of 62 per kg, \"statement 2\" :Andrew purchased more than 10 kg of grapes at the rate of 82 per kg and 6 kg of mangoes at the rate of 62 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Andrewpurchased_s1 = 10\nAndrewpurchased_s2 = 10+1\n\nif Andrewpurchased_s1 is None or Andrewpurchased_s2 is None:\n print('neutral')\n\nelif Andrewpurchased_s1 == Andrewpurchased_s2:\n print('Entailment')\n\nelif Andrewpurchased_s1 != Andrewpurchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Anita goes away and Indu leaves more than 5 days before the work is finished, \"statement 2\" :Anita goes away and Indu leaves 7 days before the work is finished, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Indu_leaves_s1 = None\nIndu_leaves_s2 = 7\n\nif Indu_leaves_s1 is None or Indu_leaves_s2 is None:\n print('neutral')\n\nelif Indu_leaves_s1 == Indu_leaves_s2:\n print('Entailment')\n\nelif Indu_leaves_s1 != Indu_leaves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The distance between their homes is more than 32 kilometers , Sandy ' s walking speed is 6 km / h , and Ed ' s walking speed is 4 km / h, \"statement 2\" :The distance between their homes is 52 kilometers , Sandy ' s walking speed is 6 km / h , and Ed ' s walking speed is 4 km / h, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Distance_between_home_s1 = None\nDistance_between_home_s2 = 52\n\nif Distance_between_home_s1 is None or Distance_between_home_s2 is None:\n print('neutral')\n\nelif Distance_between_home_s1 == Distance_between_home_s2:\n print('Entailment')\n\nelif Distance_between_home_s1 != Distance_between_home_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If the agreed period of the debenture was less than 78 months : calculate the amount of interest Jaclyn will earn for each quarter, \"statement 2\" :If the agreed period of the debenture was 18 months : calculate the amount of interest Jaclyn will earn for each quarter, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "period_of_the_debenture_s1 = None\nperiod_of_the_debenture_s2 = 18\n\nif period_of_the_debenture_s1 is None or period_of_the_debenture_s2 is None:\n print('neutral')\n\nelif period_of_the_debenture_s1 == period_of_the_debenture_s2:\n print('Entailment')\n\nelif period_of_the_debenture_s1 != period_of_the_debenture_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Molly can do a task in 10 days while Sandy can do the task in 30 days, \"statement 2\" :Molly can do a task in less than 70 days while Sandy can do the task in 30 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Moly_do_task_s1 = 10\nMoly_do_task_s2 = 70\n\nif Moly_do_task_s1 is None or Moly_do_task_s2 is None:\n print('neutral')\n\nelif Moly_do_task_s1 <= Moly_do_task_s2:\n print('Entailment')\n\nelif Moly_do_task_s1 != Moly_do_task_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": 300 , what will be the difference between Raja and Rahim ' s share ?, \"statement 2\" :800 , what will be the difference between Raja and Rahim ' s share ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Raja_rahim_share_s1 = 300\nRaja_rahim_share_s2 = 800\n\nif Raja_rahim_share_s1 is None or Raja_rahim_share_s2 is None:\n print('neutral')\n\nelif Raja_rahim_share_s1 == Raja_rahim_share_s2:\n print('Entailment')\n\nelif Raja_rahim_share_s1 != Raja_rahim_share_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Vijay sells a cupboard at 16 % below cost price, \"statement 2\" :Vijay sells a cupboard at less than 86 % below cost price, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Vijay_sells_a_cupboard_s1 = 16\nVijay_sells_a_cupboard_s2 = 86\n\nif Vijay_sells_a_cupboard_s1 is None or Vijay_sells_a_cupboard_s2 is None:\n print('neutral')\n\nelif Vijay_sells_a_cupboard_s1 <= Vijay_sells_a_cupboard_s2:\n print('Entailment')\n\nelif Vijay_sells_a_cupboard_s1 != Vijay_sells_a_cupboard_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Anusha , Banu and Esha run a running race of less than 800 meters, \"statement 2\" :Anusha , Banu and Esha run a running race of 100 meters, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Running_race_s1 = None\nRunning_race_s2 = 100\n\nif Running_race_s1 is None or Running_race_s2 is None:\n print('neutral')\n\nelif Running_race_s1 == Running_race_s2:\n print('Entailment')\n\nelif Running_race_s1 != Running_race_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The next day , Dan took the test , and with this grade included , the new average was 76, \"statement 2\" :The next day , Dan took the test , and with this grade included , the new average was 36, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "New_average_s1 = 76\nNew_average_s2 = 36\n\nif New_average_s1 is None or New_average_s2 is None:\n print('neutral')\n\nelif New_average_s1 == New_average_s2:\n print('Entailment')\n\nelif New_average_s1 != New_average_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sandy is younger than Molly by 20 years, \"statement 2\" :Sandy is younger than Molly by less than 30 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sandy_is_younger_s1 = 20\nSandy_is_younger_s2 = 30\n\nif Sandy_is_younger_s1 is None or Sandy_is_younger_s2 is None:\n print('neutral')\n\nelif Sandy_is_younger_s1 <= Sandy_is_younger_s2:\n print('Entailment')\n\nelif Sandy_is_younger_s1 != Sandy_is_younger_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In the biology lab of ` ` Jefferson ' ' High School there are 0.036 * 10 ^ 5 germs , equally divided among 18000 * 10 ^ ( - 3 ) Petri dishes, \"statement 2\" :In the biology lab of ` ` Jefferson ' ' High School there are 0.036 * less than 70 ^ 5 germs , equally divided among 18000 * 10 ^ ( - 3 ) Petri dishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "germs_s1 = 3600\ngerms_s2 = 60505200\n\nif germs_s1 is None or germs_s2 is None:\n print('neutral')\n\nelif germs_s1 <= germs_s2:\n print('Entailment')\n\nelif germs_s1 != germs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Shawn invested one half of his savings in a bond that paid simple interest for 2 years and received $ 200 as interest, \"statement 2\" :Shawn invested one half of his savings in a bond that paid simple interest for 6 years and received $ 200 as interest, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "simple_interest_s1 = 2\nsimple_interest_s2 = 6\n\nif simple_interest_s1 is None or simple_interest_s2 is None:\n print('neutral')\n\nelif simple_interest_s1 == simple_interest_s2:\n print('Entailment')\n\nelif simple_interest_s1 != simple_interest_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Shekar scored 76 , 65 , 82 , 47 and 85 marks in Mathematics , Science , Social studies , English and Biology respectively, \"statement 2\" :Shekar scored more than 46 , 65 , 82 , 47 and 85 marks in Mathematics , Science , Social studies , English and Biology respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Shekar_scored_s1 = 76,65,82,47,85\nShekar_scored_s2 = 46,65,82,47,85\n\nif Shekar_scored_s1 is None or Shekar_scored_s2 is None:\n print('neutral')\n\nelif Shekar_scored_s1 >= Shekar_scored_s2:\n print('Entailment')\n\nelif Shekar_scored_s1 != Shekar_scored_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Matt has ten iron coins and ten copper coins , how many different sums from 1 \u00a2 to 70 \u00a2 can he make with a combination of his coins ?, \"statement 2\" :If Matt has ten iron coins and ten copper coins , how many different sums from 2 \u00a2 to 70 \u00a2 can he make with a combination of his coins ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "different_sums_s1 = 1,70\ndifferent_sums_s2 = 2,70\n\nif different_sums_s1 is None or different_sums_s2 is None:\n print('neutral')\n\nelif different_sums_s1 == different_sums_s2:\n print('Entailment')\n\nelif different_sums_s1 != different_sums_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Albert is 2 times Mary \u2019 s age and 4 times as old as Betty, \"statement 2\" :Albert is less than 3 times Mary \u2019 s age and 4 times as old as Betty, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Albert_age_s1 = 2\nAlbert_age_s2 = 3-1\n\nif Albert_age_s1 is None or Albert_age_s2 is None:\n print('neutral')\n\nelif Albert_age_s1 == Albert_age_s2:\n print('Entailment')\n\nelif Albert_age_s1 != Albert_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If gas costs $ 4 / gallon , then how many miles can Dan \u2019 s car go on $ 46 of gas ?, \"statement 2\" :If gas costs $ less than 6 / gallon , then how many miles can Dan \u2019 s car go on $ 46 of gas ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Gas_cost_s1 = 4\nGas_cost_s2 = 6\n\nif Gas_cost_s1 is None or Gas_cost_s2 is None:\n print('neutral')\n\nelif Gas_cost_s1 <= Gas_cost_s2:\n print('Entailment')\n\nelif Gas_cost_s1 != Gas_cost_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Matt has ten iron coins and ten copper coins , how many different sums from 1 \u00a2 to 70 \u00a2 can he make with a combination of his coins ?, \"statement 2\" :If Matt has ten iron coins and ten copper coins , how many different sums from less than 7 \u00a2 to 70 \u00a2 can he make with a combination of his coins ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Matt_coin_s1 = 1,70\nMatt_coin_s2 = 7,70\n\nif Matt_coin_s1 is None or Matt_coin_s2 is None:\n print('neutral')\n\nelif Matt_coin_s1 <= Matt_coin_s2:\n print('Entailment')\n\nelif Matt_coin_s1 != Matt_coin_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": A train travels from Albany to Syracuse , a distance of 100 miles , at the average rate of 50 miles per hour, \"statement 2\" :A train travels from Albany to Syracuse , a distance of 300 miles , at the average rate of 50 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "travel_distnace_s1 = 100\ntravel_distnace_s2 = 300\n\nif travel_distnace_s1 is None or travel_distnace_s2 is None:\n print('neutral')\n\nelif travel_distnace_s1 == travel_distnace_s2:\n print('Entailment')\n\nelif travel_distnace_s1 != travel_distnace_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is 3 : 3 ?, \"statement 2\" :What is the average speed of Murali from A to C given that the ratio of distances between A to B and B to C is more than 1 : 3 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Distnace_ratio_s1 = 3/3\nDistnace_ratio_s2 = 1/3\n\nif Distnace_ratio_s1 is None or Distnace_ratio_s2 is None:\n print('neutral')\n\nelif Distnace_ratio_s1 >= Distnace_ratio_s2:\n print('Entailment')\n\nelif Distnace_ratio_s1 != Distnace_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If it takes Darcy a total of more than 2 more minutes to commute to work by walking than it takes her to commute to work by riding the train , what is the value of x ?, \"statement 2\" :If it takes Darcy a total of 5 more minutes to commute to work by walking than it takes her to commute to work by riding the train , what is the value of x ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Darcy_work_s1 = None\nDarcy_work_s2 = 5\n\nif Darcy_work_s1 is None or Darcy_work_s2 is None:\n print('neutral')\n\nelif Darcy_work_s1 == Darcy_work_s2:\n print('Entailment')\n\nelif Darcy_work_s1 != Darcy_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": A starts from Delhi with a speed of 25 kmph at 5 a, \"statement 2\" :A starts from Delhi with a speed of less than 45 kmph at 5 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "A_speed_s1 = 25\nA_speed_s2 = 45\n\nif A_speed_s1 is None or A_speed_s2 is None:\n print('neutral')\n\nelif A_speed_s1 <= A_speed_s2:\n print('Entailment')\n\nelif A_speed_s1 != A_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Since you ' re nice , you give John less than 7 baseball cards, \"statement 2\" :Since you ' re nice , you give John 3 baseball cards, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "baseball_card_s1 = None\nbaseball_card_s2 = 3\n\nif baseball_card_s1 is None or baseball_card_s2 is None:\n print('neutral')\n\nelif baseball_card_s1 == baseball_card_s2:\n print('Entailment')\n\nelif baseball_card_s1 != baseball_card_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Venki takes a trip and drives 5 hours from Town X to Town Z at a rate of 80 miles per hour, \"statement 2\" :Venki takes a trip and drives 2 hours from Town X to Town Z at a rate of 80 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Venki_drive_s1 = 5\nVenki_drive_s2 = 2\n\nif Venki_drive_s1 is None or Venki_drive_s2 is None:\n print('neutral')\n\nelif Venki_drive_s1 == Venki_drive_s2:\n print('Entailment')\n\nelif Venki_drive_s1 != Venki_drive_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Matt is touring a nation in which coins are issued in two amounts , 2 \u00a2 and 5 \u00a2 , which are made of iron and copper , respectively, \"statement 2\" :Matt is touring a nation in which coins are issued in two amounts , more than 1 \u00a2 and 5 \u00a2 , which are made of iron and copper , respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Matt_amount_s1 = 2,5\nMatt_amount_s2 = 1,5\n\nif Matt_amount_s1 is None or Matt_amount_s2 is None:\n print('neutral')\n\nelif Matt_amount_s1 >= Matt_amount_s2:\n print('Entailment')\n\nelif Matt_amount_s1 != Matt_amount_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": George ' s drawer has less than 70 loose black socks , 12 loose blue socks , and 8 loose white socks, \"statement 2\" :George ' s drawer has 10 loose black socks , 12 loose blue socks , and 8 loose white socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "George_balck_socks_s1 = None\nGeorge_balck_socks_s2 = 12\n\nif George_balck_socks_s1 is None or George_balck_socks_s2 is None:\n print('neutral')\n\nelif George_balck_socks_s1 == George_balck_socks_s2:\n print('Entailment')\n\nelif George_balck_socks_s1 != George_balck_socks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Missy received 18 messages from Laurence , how many messages does Keith receive from Juan ?, \"statement 2\" :If Missy received 78 messages from Laurence , how many messages does Keith receive from Juan ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Missy_received_s1 = 18\nMissy_received_s2 = 78\n\nif Missy_received_s1 is None or Missy_received_s2 is None:\n print('neutral')\n\nelif Missy_received_s1 == Missy_received_s2:\n print('Entailment')\n\nelif Missy_received_s1 != Missy_received_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": When they are at a distance of 50 miles , a housefly starts flying from Suresh Raina ' s cycle towards Gautam Gambhir at a relative speed of 17 miles per hour with respect to Raina ' s speed, \"statement 2\" :When they are at a distance of 80 miles , a housefly starts flying from Suresh Raina ' s cycle towards Gautam Gambhir at a relative speed of 17 miles per hour with respect to Raina ' s speed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "DIstnace_s1 = 50\nDIstnace_s2 = 80\n\nif DIstnace_s1 is None or DIstnace_s2 is None:\n print('neutral')\n\nelif DIstnace_s1 == DIstnace_s2:\n print('Entailment')\n\nelif DIstnace_s1 != DIstnace_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sid left a job paying $ 75,000 per year to accept a sales job paying $ 45,000 per year plus 15 percent commission, \"statement 2\" :Sid left a job paying $ 75,000 per year to accept a sales job paying $ 45,000 per year plus 25 percent commission, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Commission_s1 = 15\nCommission_s2 = 25\n\nif Commission_s1 is None or Commission_s2 is None:\n print('neutral')\n\nelif Commission_s1 == Commission_s2:\n print('Entailment')\n\nelif Commission_s1 != Commission_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": At a bank , the service charges for transactions were US Dollar 1 for every 5 transactions, \"statement 2\" :At a bank , the service charges for transactions were US Dollar more than 1 for every 5 transactions, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "charges_for_transactions_s1 = 1,5\ncharges_for_transactions_s2 = 1,5+1\n\nif charges_for_transactions_s1 is None or charges_for_transactions_s2 is None:\n print('neutral')\n\nelif charges_for_transactions_s1 >= charges_for_transactions_s2:\n print('Entailment')\n\nelif charges_for_transactions_s1 != charges_for_transactions_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If out of 41 questions solved by Rajesh 37 questions are correct and of the remaining questions out of 8 questions 5 questions have been solved by Rajesh correctly then find the total number of questions asked in the examination ., \"statement 2\" :If out of less than 51 questions solved by Rajesh 37 questions are correct and of the remaining questions out of 8 questions 5 questions have been solved by Rajesh correctly then find the total number of questions asked in the examination ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "questions_s1 = 41\nquestions_s2 = 51\n\nif questions_s1 is None or questions_s2 is None:\n print('neutral')\n\nelif questions_s1 <= questions_s2:\n print('Entailment')\n\nelif questions_s1 != questions_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": less than 720 , what is Thomas ' capital ?, \"statement 2\" :120 , what is Thomas ' capital ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Thomas_s1 = None\nThomas_s2 = 120\n\nif Thomas_s1 is None or Thomas_s2 is None:\n print('neutral')\n\nelif Thomas_s1 == Thomas_s2:\n print('Entailment')\n\nelif Thomas_s1 != Thomas_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is more than 1 : 3 , After 6 Years Rahul age will be 18 years, \"statement 2\" :Ratio between Rahul and Deepak is 4 : 3 , After 6 Years Rahul age will be 18 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ratio_deepak_rahul_s1 = None\nRatio_deepak_rahul_s2 = 4/3\n\nif Ratio_deepak_rahul_s1 is None or Ratio_deepak_rahul_s2 is None:\n print('neutral')\n\nelif Ratio_deepak_rahul_s1 == Ratio_deepak_rahul_s2:\n print('Entailment')\n\nelif Ratio_deepak_rahul_s1 != Ratio_deepak_rahul_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Jerry wants to raise his average by 3 points , what score must he earn on the fourth test ?, \"statement 2\" :If Jerry wants to raise his average by less than 5 points , what score must he earn on the fourth test ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jerry_average_point_s1 = 3\nJerry_average_point_s2 = 5\n\nif Jerry_average_point_s1 is None or Jerry_average_point_s2 is None:\n print('neutral')\n\nelif Jerry_average_point_s1 == Jerry_average_point_s2:\n print('Entailment')\n\nelif Jerry_average_point_s1 != Jerry_average_point_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": What is the height difference between the two if the Empire\nState Building is 464 m tall and the Petronas Towers is 472 m tall ?, \"statement 2\" :What is the height difference between the two if the Empire State Building is 764 m tall and the Petronas Towers is 472 m tall ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "height_difference_s1 = 464,472\nheight_difference_s2 = 764,464\n\nif height_difference_s1 is None or height_difference_s2 is None:\n print('neutral')\n\nelif height_difference_s1 == height_difference_s2:\n print('Entailment')\n\nelif height_difference_s1 != height_difference_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Vijay sells a cupboard at 10 % below cost price, \"statement 2\" :Vijay sells a cupboard at less than 60 % below cost price, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Vijay_sells_cupbord_s1 = 10\nVijay_sells_cupbord_s2 = 60\n\nif Vijay_sells_cupbord_s1 is None or Vijay_sells_cupbord_s2 is None:\n print('neutral')\n\nelif Vijay_sells_cupbord_s1 <= Vijay_sells_cupbord_s2:\n print('Entailment')\n\nelif Vijay_sells_cupbord_s1 != Vijay_sells_cupbord_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": His assets included : Investments , ( $ 305,000 ) , Life Insurance ( $ 104,000 ) , an old car ( sold for $ less than 4900 ) , an older house ( sold for $ 75,000 ), \"statement 2\" :His assets included : Investments , ( $ 305,000 ) , Life Insurance ( $ 104,000 ) , an old car ( sold for $ 1900 ) , an older house ( sold for $ 75,000 ), \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Investments_s1 = None\nInvestments_s2 = 305,000 \n\nif Investments_s1 is None or Investments_s2 is None:\n print('neutral')\n\nelif Investments_s1 == Investments_s2:\n print('Entailment')\n\nelif Investments_s1 != Investments_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Molly can do a task in 18 days while Sandy can do the task in 12 days, \"statement 2\" :Molly can do a task in less than 68 days while Sandy can do the task in 12 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Moly_can_do_task_s1 = 18\nMoly_can_do_task_s2 = 68 \n\nif Moly_can_do_task_s1 is None or Moly_can_do_task_s2 is None:\n print('neutral')\n\nelif Moly_can_do_task_s1 <= Moly_can_do_task_s2:\n print('Entailment')\n\nelif Moly_can_do_task_s1 != Moly_can_do_task_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": When the river is running at less than 3 km / h , it takes the rower 1 hour to row to Big Rock and back, \"statement 2\" :When the river is running at 1 km / h , it takes the rower 1 hour to row to Big Rock and back, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "river_is_running_s1 = None\nriver_is_running_s2 = 1\n\nif river_is_running_s1 is None or river_is_running_s2 is None:\n print('neutral')\n\nelif river_is_running_s1 == river_is_running_s2:\n print('Entailment')\n\nelif river_is_running_s1 != river_is_running_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Ganesh covers the distance from X to Y at an average speed of less than 83 Km / hr, \"statement 2\" :Ganesh covers the distance from X to Y at an average speed of 43 Km / hr, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_speed_s1 = None\naverage_speed_s2 = 43\n\nif average_speed_s1 is None or average_speed_s2 is None:\n print('neutral')\n\nelif average_speed_s1 == average_speed_s2:\n print('Entailment')\n\nelif average_speed_s1 != average_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Matt has five iron coins and ten copper coins , how many different sums from less than 3 \u00a2 to 60 \u00a2 can he make with a combination of his coins ?, \"statement 2\" :If Matt has five iron coins and ten copper coins , how many different sums from 1 \u00a2 to 60 \u00a2 can he make with a combination of his coins ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Matt_coins_s1 = None\nMatt_coins_s2 = 1,60\n\nif Matt_coins_s1 is None or Matt_coins_s2 is None:\n print('neutral')\n\nelif Matt_coins_s1 == Matt_coins_s2:\n print('Entailment')\n\nelif Matt_coins_s1 != Matt_coins_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Albert \u2019 s monthly earnings rise by less than 74 % , he would earn $ 678, \"statement 2\" :If Albert \u2019 s monthly earnings rise by 14 % , he would earn $ 678, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Albert_montly_earning_s1 = None\nAlbert_montly_earning_s2 = 14\n\nif Albert_montly_earning_s1 is None or Albert_montly_earning_s2 is None:\n print('neutral')\n\nelif Albert_montly_earning_s1 == Albert_montly_earning_s2:\n print('Entailment')\n\nelif Albert_montly_earning_s1 != Albert_montly_earning_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": When the river is running at 1 km / h , it takes the rower 1 hour to row to Big Rock and back, \"statement 2\" :When the river is running at 3 km / h , it takes the rower 1 hour to row to Big Rock and back, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "river_running_s1 = 1\nriver_running_s2 = 3\n\nif river_running_s1 is None or river_running_s2 is None:\n print('neutral')\n\nelif river_running_s1 == river_running_s2:\n print('Entailment')\n\nelif river_running_s1 != river_running_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The average number of shirts with Salman , Ambani and Dalmiya is 60 , if all of them reached a shopping mall in Delhi and purchased 5 shirts each of them then average number of shirt each of them now has, \"statement 2\" :The average number of shirts with Salman , Ambani and Dalmiya is more than 10 , if all of them reached a shopping mall in Delhi and purchased 5 shirts each of them then average number of shirt each of them now has, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_number_of_shirts_s1 = 60\naverage_number_of_shirts_s2 = 10\n\nif average_number_of_shirts_s1 is None or average_number_of_shirts_s2 is None:\n print('neutral')\n\nelif average_number_of_shirts_s1 >= average_number_of_shirts_s2:\n print('Entailment')\n\nelif average_number_of_shirts_s1 != average_number_of_shirts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Susan , John , Daisy , Tim , Matt , Jane and Kim need to be seated in 7 identical chairs in straight line so that Susan is seated always left to Tim, \"statement 2\" :Susan , John , Daisy , Tim , Matt , Jane and Kim need to be seated in more than 1 identical chairs in straight line so that Susan is seated always left to Tim, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "identical_chairs_s1 = 7\nidentical_chairs_s2 = 1\n\nif identical_chairs_s1 is None or identical_chairs_s2 is None:\n print('neutral')\n\nelif identical_chairs_s1 >= identical_chairs_s2:\n print('Entailment')\n\nelif identical_chairs_s1 != identical_chairs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jill works as a waitress at the local diner where she earns an hourly wage of $ 4.00 per hour and a standard tip rate of less than 65 % of the cost of the orders she serves, \"statement 2\" :Jill works as a waitress at the local diner where she earns an hourly wage of $ 4.00 per hour and a standard tip rate of 15 % of the cost of the orders she serves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jill_works_s1 = None\nJill_works_s2 = 15\n\nif Jill_works_s1 is None or Jill_works_s2 is None:\n print('neutral')\n\nelif Jill_works_s1 == Jill_works_s2:\n print('Entailment')\n\nelif Jill_works_s1 != Jill_works_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If he worked for 15 days alone before he was joined by Kennedy to complete the job in 3 days , how many days will it take both of them to complete the entire job ?, \"statement 2\" :If he worked for less than 55 days alone before he was joined by Kennedy to complete the job in 3 days , how many days will it take both of them to complete the entire job ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "worked_s1 = 15\nworked_s2 = 55\n\nif worked_s1 is None or worked_s2 is None:\n print('neutral')\n\nelif worked_s1 <= worked_s2:\n print('Entailment')\n\nelif worked_s1 != worked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Henry completes a piece of work in 640 days , Rose completes the same work in 960 days, \"statement 2\" :Henry completes a piece of work in more than 440 days , Rose completes the same work in 960 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "completes_work_s1 = 640\ncompletes_work_s2 = 440\n\nif completes_work_s1 is None or completes_work_s2 is None:\n print('neutral')\n\nelif completes_work_s1 >= completes_work_s2:\n print('Entailment')\n\nelif completes_work_s1 != completes_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": When they are at a distance of less than 60 miles , a housefly starts flying from Suresh Raina ' s cycle towards Gautam Gambhir at a relative speed of 17 miles per hour with respect to Raina ' s speed, \"statement 2\" :When they are at a distance of 50 miles , a housefly starts flying from Suresh Raina ' s cycle towards Gautam Gambhir at a relative speed of 17 miles per hour with respect to Raina ' s speed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_s1 = None\ndistance_s2 = 50\n\nif distance_s1 is None or distance_s2 is None:\n print('neutral')\n\nelif distance_s1 == distance_s2:\n print('Entailment')\n\nelif distance_s1 != distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": A train travels from Albany to Syracuse , a distance of 100 miles , at the average rate of 50 miles per hour, \"statement 2\" :A train travels from Albany to Syracuse , a distance of less than 700 miles , at the average rate of 50 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "train_travels_s1 = 100\ntrain_travels_s2 = 700\n\nif train_travels_s1 is None or train_travels_s2 is None:\n print('neutral')\n\nelif train_travels_s1 <= train_travels_s2:\n print('Entailment')\n\nelif train_travels_s1 != train_travels_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Jack ' s score was within 2 standard deviations of the mean , what is the lowest score he could have received ?, \"statement 2\" :If Jack ' s score was within 7 standard deviations of the mean , what is the lowest score he could have received ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jack_score_s1 = 2\nJack_score_s2 = 7\n\nif Jack_score_s1 is None or Jack_score_s2 is None:\n print('neutral')\n\nelif Jack_score_s1 == Jack_score_s2:\n print('Entailment')\n\nelif Jack_score_s1 != Jack_score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": A \u201c Sophie Germain \u201d prime is any positive prime number p for which 2 p + 1 is also prime, \"statement 2\" :A \u201c Sophie Germain \u201d prime is any positive prime number p for which less than 7 p + 1 is also prime, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sophie_Germain_s1 = 2\nSophie_Germain_s2 = 7\n\nif Sophie_Germain_s1 is None or Sophie_Germain_s2 is None:\n print('neutral')\n\nelif Sophie_Germain_s1 <= Sophie_Germain_s2:\n print('Entailment')\n\nelif Sophie_Germain_s1 != Sophie_Germain_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Lary and Terry enter into a partnership by investing $ 700 and $ 300 respectively, \"statement 2\" :Lary and Terry enter into a partnership by investing $ more than 700 and $ 300 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Lary_and_Terry_investing_s1 = 700,300\nLary_and_Terry_investing_s2 = 700,300+1\n\nif Lary_and_Terry_investing_s1 is None or Lary_and_Terry_investing_s2 is None:\n print('neutral')\n\nelif Lary_and_Terry_investing_s1 == Lary_and_Terry_investing_s2:\n print('Entailment')\n\nelif Lary_and_Terry_investing_s1 != Lary_and_Terry_investing_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Alice is 100 km away from Bob at 7 am , and also 100 km away from Bob at 11 am , then how fast is Bob driving ( in kilometers per hour ) ?, \"statement 2\" :If Alice is less than 300 km away from Bob at 7 am , and also 100 km away from Bob at 11 am , then how fast is Bob driving ( in kilometers per hour ) ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Alice_s1 = 100\nAlice_s2 = 300\n\nif Alice_s1 is None or Alice_s2 is None:\n print('neutral')\n\nelif Alice_s1 == Alice_s2:\n print('Entailment')\n\nelif Alice_s1 != Alice_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Dana borrows 7500 pounds annually for her college education, \"statement 2\" :Dana borrows more than 4500 pounds annually for her college education, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dana_borrows_s1 = 7500\nDana_borrows_s2 = 4500\n\nif Dana_borrows_s1 is None or Dana_borrows_s2 is None:\n print('neutral')\n\nelif Dana_borrows_s1 >= Dana_borrows_s2:\n print('Entailment')\n\nelif Dana_borrows_s1 != Dana_borrows_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Christine selects an item at a 25 % off ticket price sale, \"statement 2\" :Christine selects an item at a more than 25 % off ticket price sale, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Christine_iteam_s1 = 25\nChristine_iteam_s2 = 25+1\n\nif Christine_iteam_s1 is None or Christine_iteam_s2 is None:\n print('neutral')\n\nelif Christine_iteam_s1 == Christine_iteam_s2:\n print('Entailment')\n\nelif Christine_iteam_s1 != Christine_iteam_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Anup was asked to find the value of 7 / 12 of a sum of money W, \"statement 2\" :Anup was asked to find the value of more than 5 / 12 of a sum of money W, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sum_of_money_s1 = 7/12\nSum_of_money_s2 = 5/12\n\nif Sum_of_money_s1 is None or Sum_of_money_s2 is None:\n print('neutral')\n\nelif Sum_of_money_s1 == Sum_of_money_s2:\n print('Entailment')\n\nelif Sum_of_money_s1 != Sum_of_money_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Andrew purchased less than 7 kg of grapes at the rate of 74 per kg and 9 kg of mangoes at the rate of 59 per kg, \"statement 2\" :Andrew purchased 6 kg of grapes at the rate of 74 per kg and 9 kg of mangoes at the rate of 59 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Andrew_purchased_s1 = None\nAndrew_purchased_s2 = 6\n\nif Andrew_purchased_s1 is None or Andrew_purchased_s2 is None:\n print('neutral')\n\nelif Andrew_purchased_s1 == Andrew_purchased_s2:\n print('Entailment')\n\nelif Andrew_purchased_s1 != Andrew_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Tom left a job paying $ 75,000 per year to accept a sales job paying $ 45,000 per year plus less than 65 percent commission, \"statement 2\" :Tom left a job paying $ 75,000 per year to accept a sales job paying $ 45,000 per year plus 15 percent commission, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "commission_s1 = None\ncommission_s2 = 15\n\nif commission_s1 is None or commission_s2 is None:\n print('neutral')\n\nelif commission_s1 == commission_s2:\n print('Entailment')\n\nelif commission_s1 != commission_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": for Mathura and B starts from Mathura with a speed of more than 10 kmph at 6 p, \"statement 2\" :for Mathura and B starts from Mathura with a speed of 40 kmph at 6 p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_s1 = None\nspeed_s2 = 40\n\nif speed_s1 is None or speed_s2 is None:\n print('neutral')\n\nelif speed_s1 == speed_s2:\n print('Entailment')\n\nelif speed_s1 != speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Since you ' re nice , you give John 3 baseball cards, \"statement 2\" :Since you ' re nice , you give John less than 7 baseball cards, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "baseball_cards_s1 = 3\nbaseball_cards_s2 = 7\n\nif baseball_cards_s1 is None or baseball_cards_s2 is None:\n print('neutral')\n\nelif baseball_cards_s1 <= baseball_cards_s2:\n print('Entailment')\n\nelif baseball_cards_s1 != baseball_cards_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Missy received less than 78 messages from Laurence , how many messages does Keith receive from Juan ?, \"statement 2\" :If Missy received 18 messages from Laurence , how many messages does Keith receive from Juan ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Missy_received_s1 = None\nMissy_received_s2 = 18\n\nif Missy_received_s1 is None or Missy_received_s2 is None:\n print('neutral')\n\nelif Missy_received_s1 == Missy_received_s2:\n print('Entailment')\n\nelif Missy_received_s1 != Missy_received_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": 3 people voted to watch My Hero Academia Academia, \"statement 2\" :less than 5 people voted to watch My Hero Academia Academia, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_voted_s1 = 3\npeople_voted_s2 = 5\n\nif people_voted_s1 is None or people_voted_s2 is None:\n print('neutral')\n\nelif people_voted_s1 <= people_voted_s2:\n print('Entailment')\n\nelif people_voted_s1 != people_voted_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than more than 20 % ? I will see what is the quickest way to solve it then I will provide the explanation, \"statement 2\" :If the next three flights departed on - time , how many subsequent flights need to depart from Phoenix on - time , for the airport ' s on - time departure rate to be higher than 80 % ?\nI will see what is the quickest way to solve it then I will provide the explanation, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "departure_rate_s1 = None\ndeparture_rate_s2 = 80\n\nif departure_rate_s1 is None or departure_rate_s2 is None:\n print('neutral')\n\nelif departure_rate_s1 == departure_rate_s2:\n print('Entailment')\n\nelif departure_rate_s1 != departure_rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": 3 people voted to watch My Hero Academia Academia, \"statement 2\" :4 people voted to watch My Hero Academia Academia, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "People_voted_s1 = 3\nPeople_voted_s2 = 4\n\nif People_voted_s1 is None or People_voted_s2 is None:\n print('neutral')\n\nelif People_voted_s1 == People_voted_s2:\n print('Entailment')\n\nelif People_voted_s1 != People_voted_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": How many liters of blue paint must be added to 24 liters of Fuchsia to change it to Mauve paint ?, \"statement 2\" :How many liters of blue paint must be added to less than 54 liters of Fuchsia to change it to Mauve paint ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nblue_paint_s1 = 24\nblue_paint_s2 = 54\n\nif blue_paint_s1 is None or blue_paint_s2 is None:\n print('neutral')\n\nelif blue_paint_s1 <= blue_paint_s2:\n print('Entailment')\n\nelif blue_paint_s1 != blue_paint_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": for Mathura and B starts from Mathura with a speed of 40 kmph at 6 p, \"statement 2\" :for Mathura and B starts from Mathura with a speed of less than 40 kmph at 6 p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Speed_s1 = 40\nSpeed_s2 = 40-1\n\nif Speed_s1 is None or Speed_s2 is None:\n print('neutral')\n\nelif Speed_s1 == Speed_s2:\n print('Entailment')\n\nelif Speed_s1 != Speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Matt has five iron coins and ten copper coins , how many different sums from 1 \u00a2 to 60 \u00a2 can he make with a combination of his coins ?, \"statement 2\" :If Matt has five iron coins and ten copper coins , how many different sums from less than 3 \u00a2 to 60 \u00a2 can he make with a combination of his coins ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nMatt_coin_s1 = 1,60\nMatt_coin_s2 = 3,60\n\nif Matt_coin_s1 is None or Matt_coin_s2 is None:\n print('neutral')\n\nelif Matt_coin_s1 <= Matt_coin_s2:\n print('Entailment')\n\nelif Matt_coin_s1 != Matt_coin_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If the marks secured by Reema was written as 46 instead of 96 then find the correct average marks up to two decimal places ., \"statement 2\" :If the marks secured by Reema was written as 66 instead of 96 then find the correct average marks up to two decimal places ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Average_marks_s1 = 46,96\nAverage_marks_s2 = 66,96\n\nif Average_marks_s1 is None or Average_marks_s2 is None:\n print('neutral')\n\nelif Average_marks_s1 == Average_marks_s2:\n print('Entailment')\n\nelif Average_marks_s1 != Average_marks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Mary has less than 3803 dollars with her, \"statement 2\" :Mary has 1803 dollars with her, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nMary_s1 = None\nMary_s2 = 1803\n\nif Mary_s1 is None or Mary_s2 is None:\n print('neutral')\n\nelif Mary_s1 == Mary_s2:\n print('Entailment')\n\nelif Mary_s1 != Mary_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": A \u201c Sophie Germain \u201d prime is any positive prime number p for which 2 p + 1 is also prime, \"statement 2\" :A \u201c Sophie Germain \u201d prime is any positive prime number p for which less than 2 p + 1 is also prime, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sophie_Germain_s1 = 2\nSophie_Germain_s2 = 2-1\n\nif Sophie_Germain_s1 is None or Sophie_Germain_s2 is None:\n print('neutral')\n\nelif Sophie_Germain_s1 == Sophie_Germain_s2:\n print('Entailment')\n\nelif Sophie_Germain_s1 != Sophie_Germain_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": During the first two weeks of April , the total rainfall in Springdale was 30 inches, \"statement 2\" :During the first two weeks of April , the total rainfall in Springdale was 40 inches, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rainfall_s1 = 30\nrainfall_s2 = 40\n\nif rainfall_s1 is None or rainfall_s2 is None:\n print('neutral')\n\nelif rainfall_s1 == rainfall_s2:\n print('Entailment')\n\nelif rainfall_s1 != rainfall_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": 5887 is divided between Shyam and Ram , such that Shyam ' s share at the end of 9 years is equal to Ram ' s share at the end of 11 years , compounded annually at the rate of 5 %, \"statement 2\" :more than 5887 is divided between Shyam and Ram , such that Shyam ' s share at the end of 9 years is equal to Ram ' s share at the end of 11 years , compounded annually at the rate of 5 %, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Shyam_and_Ram_s1 = 5887\nShyam_and_Ram_s2 = 5887+1\n\nif Shyam_and_Ram_s1 is None or Shyam_and_Ram_s2 is None:\n print('neutral')\n\nelif Shyam_and_Ram_s1 == Shyam_and_Ram_s2:\n print('Entailment')\n\nelif Shyam_and_Ram_s1 != Shyam_and_Ram_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": John traveled 80 % of the way from Yellow - town to Green - fields by train at an average speed of 80 miles per hour, \"statement 2\" :John traveled less than 80 % of the way from Yellow - town to Green - fields by train at an average speed of 80 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "John_traveled_s1 = 80\nJohn_traveled_s2 = 80-1\n\nif John_traveled_s1 is None or John_traveled_s2 is None:\n print('neutral')\n\nelif John_traveled_s1 == John_traveled_s2:\n print('Entailment')\n\nelif John_traveled_s1 != John_traveled_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": John has 6 friends who want to ride in his new car that can accommodate only 4 people at a time ( John plus 3 passengers ), \"statement 2\" :John has less than 6 friends who want to ride in his new car that can accommodate only 4 people at a time ( John plus 3 passengers ), \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "John_friends_s1 = 6\nJohn_friends_s2 = 6-1\n\nif John_friends_s1 is None or John_friends_s2 is None:\n print('neutral')\n\nelif John_friends_s1 == John_friends_s2:\n print('Entailment')\n\nelif John_friends_s1 != John_friends_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If the average falls 1 second after Izzy finishes another sprint , how many seconds did it take Izzy to run the most recent sprint ?, \"statement 2\" :If the average falls less than 6 second after Izzy finishes another sprint , how many seconds did it take Izzy to run the most recent sprint ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_falls_s1 = 1\naverage_falls_s2 = 6\n\nif average_falls_s1 is None or average_falls_s2 is None:\n print('neutral')\n\nelif average_falls_s1 <= average_falls_s2:\n print('Entailment')\n\nelif average_falls_s1 != average_falls_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Ayesha ' s father was more than 48 years of age when she was born while her mother was 42 years old when her brother four years younger to her was born, \"statement 2\" :Ayesha ' s father was 58 years of age when she was born while her mother was 42 years old when her brother four years younger to her was born, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ayesha_father_age_s1 = None\nAyesha_father_age_s2 = 58\n\nif Ayesha_father_age_s1 is None or Ayesha_father_age_s2 is None:\n print('neutral')\n\nelif Ayesha_father_age_s1 == Ayesha_father_age_s2:\n print('Entailment')\n\nelif Ayesha_father_age_s1 != Ayesha_father_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jerry \u2019 s average ( arithmetic mean ) score on the first less than 5 of 4 tests is 85, \"statement 2\" :Jerry \u2019 s average ( arithmetic mean ) score on the first 3 of 4 tests is 85, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jerry_average_score_s1 = None\nJerry_average_score_s2 = 85\n\nif Jerry_average_score_s1 is None or Jerry_average_score_s2 is None:\n print('neutral')\n\nelif Jerry_average_score_s1 == Jerry_average_score_s2:\n print('Entailment')\n\nelif Jerry_average_score_s1 != Jerry_average_score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Faiza has 6 purses , she gives 3 purse as gift, \"statement 2\" :Faiza has more than 2 purses , she gives 3 purse as gift, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "purses_s1 = 6\npurses_s2 = 2\n\nif purses_s1 is None or purses_s2 is None:\n print('neutral')\n\nelif purses_s1 >= purses_s2:\n print('Entailment')\n\nelif purses_s1 != purses_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": A boat crossed a lake from East to West at the speed of 5 km / h , entered a river and covered twice as much distance going upstream at 4 km / h, \"statement 2\" :A boat crossed a lake from East to West at the speed of less than 5 km / h , entered a river and covered twice as much distance going upstream at 4 km / h, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "boat_speed_s1 = 5\nboat_speed_s2 = 5-1\n\nif boat_speed_s1 is None or boat_speed_s2 is None:\n print('neutral')\n\nelif boat_speed_s1 == boat_speed_s2:\n print('Entailment')\n\nelif boat_speed_s1 != boat_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Matt is touring a nation in which coins are issued in two amounts , 2 \u00a2 and 5 \u00a2 , which are made of iron and copper , respectively, \"statement 2\" :Matt is touring a nation in which coins are issued in two amounts , 5 \u00a2 and 5 \u00a2 , which are made of iron and copper , respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Matt_coin_s1 = 2,5\nMatt_coin_s2 = 5,5\n\nif Matt_coin_s1 is None or Matt_coin_s2 is None:\n print('neutral')\n\nelif Matt_coin_s1 == Matt_coin_s2:\n print('Entailment')\n\nelif Matt_coin_s1 != Matt_coin_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": After they have worked together for less than 30 days Matt stops and Peter completes the remaining work in 10 days, \"statement 2\" :After they have worked together for 10 days Matt stops and Peter completes the remaining work in 10 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Worked_s1 = None\nWorked_s2 = 10\n\nif Worked_s1 is None or Worked_s2 is None:\n print('neutral')\n\nelif Worked_s1 == Worked_s2:\n print('Entailment')\n\nelif Worked_s1 != Worked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Matt is touring a nation in which coins are issued in two amounts , more than 1 \u00a2 and 5 \u00a2 , which are made of iron and copper , respectively, \"statement 2\" :Matt is touring a nation in which coins are issued in two amounts , 2 \u00a2 and 5 \u00a2 , which are made of iron and copper , respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Matt_amout_s1 = None\nMatt_amout_s2 = 2,5\n\nif Matt_amout_s1 is None or Matt_amout_s2 is None:\n print('neutral')\n\nelif Matt_amout_s1 == Matt_amout_s2:\n print('Entailment')\n\nelif Matt_amout_s1 != Matt_amout_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The distance between Delhi and Mathura is 150 kms, \"statement 2\" :The distance between Delhi and Mathura is less than 650 kms, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distnace_s1 = 150\ndistnace_s2 = 650\n\nif distnace_s1 is None or distnace_s2 is None:\n print('neutral')\n\nelif distnace_s1 <= distnace_s2:\n print('Entailment')\n\nelif distnace_s1 != distnace_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Gary had an average score of more than 60 on his first four quizzes, \"statement 2\" :Gary had an average score of 70 on his first four quizzes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Gary_average_score_s1 = None\nGary_average_score_s2 = 70\n\nif Gary_average_score_s1 is None or Gary_average_score_s2 is None:\n print('neutral')\n\nelif Gary_average_score_s1 == Gary_average_score_s2:\n print('Entailment')\n\nelif Gary_average_score_s1 != Gary_average_score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": What is the height difference between the two if the Empire\nState Building is 464 m tall and the Petronas Towers is 472 m tall ?, \"statement 2\" :What is the height difference between the two if the Empire State Building is less than 864 m tall and the Petronas Towers is 472 m tall ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "EmpireState_Building_s1 = 464\nEmpireState_Building_s2 = 864\n\nif EmpireState_Building_s1 is None or EmpireState_Building_s2 is None:\n print('neutral')\n\nelif EmpireState_Building_s1 == EmpireState_Building_s2:\n print('Entailment')\n\nelif EmpireState_Building_s1 != EmpireState_Building_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": On her way back , Venki drives 45 miles per hour and stops in Town Y which is midway between Town X and Town Z, \"statement 2\" :On her way back , Venki drives 65 miles per hour and stops in Town Y which is midway between Town X and Town Z, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Venki_drives_s1 = 45\nVenki_drives_s2 = 65\n\nif Venki_drives_s1 is None or Venki_drives_s2 is None:\n print('neutral')\n\nelif Venki_drives_s1 == Venki_drives_s2:\n print('Entailment')\n\nelif Venki_drives_s1 != Venki_drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": How many liters of blue paint must be added to 24 liters of Fuchsia to change it to Mauve paint ?, \"statement 2\" :How many liters of blue paint must be added to less than 84 liters of Fuchsia to change it to Mauve paint ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "blue_paint_s1 = 24\nblue_paint_s2 = 84\n\nif blue_paint_s1 is None or blue_paint_s2 is None:\n print('neutral')\n\nelif blue_paint_s1 <= blue_paint_s2:\n print('Entailment')\n\nelif blue_paint_s1 != blue_paint_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Dana gives her parents more than 4 % of that amount back each month , how much will she still owe her parents after four years of college ?, \"statement 2\" :If Dana gives her parents 5 % of that amount back each month , how much will she still owe her parents after four years of college ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dana_gives_her_parents_s1 = None\nDana_gives_her_parents_s2 = 5\n\nif Dana_gives_her_parents_s1 is None or Dana_gives_her_parents_s2 is None:\n print('neutral')\n\nelif Dana_gives_her_parents_s1 == Dana_gives_her_parents_s2:\n print('Entailment')\n\nelif Dana_gives_her_parents_s1 != Dana_gives_her_parents_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If she worked four 12 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"statement 2\" :If she worked four less than 72 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nworked_four_s1 = 12\nworked_four_s2 = 72\n\nif worked_four_s1 is None or worked_four_s2 is None:\n print('neutral')\n\nelif worked_four_s1 <= worked_four_s2:\n print('Entailment')\n\nelif worked_four_s1 != worked_four_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": 10 people voted to watch Skip Beat, \"statement 2\" :more than 10 people voted to watch Skip Beat, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "voted_s1 = 10\nvoted_s2 = 10+1\n\nif voted_s1 is None or voted_s2 is None:\n print('neutral')\n\nelif voted_s1 == voted_s2:\n print('Entailment')\n\nelif voted_s1 != voted_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": At a meeting of the more than 2 Joint Chiefs of Staff , the Chief of Naval Operations does not want to sit next to the Chief of the National Guard Bureau, \"statement 2\" :At a meeting of the 6 Joint Chiefs of Staff , the Chief of Naval Operations does not want to sit next to the Chief of the National Guard Bureau, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nmeeting_s1 = None\nmeeting_s2 = 6\n\nif meeting_s1 is None or meeting_s2 is None:\n print('neutral')\n\nelif meeting_s1 == meeting_s2:\n print('Entailment')\n\nelif meeting_s1 != meeting_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Meg and Bob are among the more than 1 participants in a cycling race, \"statement 2\" :Meg and Bob are among the 6 participants in a cycling race, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "participants_s1 = None\nparticipants_s2 = 6\n\nif participants_s1 is None or participants_s2 is None:\n print('neutral')\n\nelif participants_s1 == participants_s2:\n print('Entailment')\n\nelif participants_s1 != participants_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Vijay sells a cupboard at 14 % below cost price, \"statement 2\" :Vijay sells a cupboard at less than 84 % below cost price, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Vijay_sells_s1 = 14\nVijay_sells_s2 = 84\n\nif Vijay_sells_s1 is None or Vijay_sells_s2 is None:\n print('neutral')\n\nelif Vijay_sells_s1 <= Vijay_sells_s2:\n print('Entailment')\n\nelif Vijay_sells_s1 != Vijay_sells_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Richard began driving from home on a trip averaging 30 miles per hour, \"statement 2\" :Richard began driving from home on a trip averaging 40 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "trip_Average_s1 = 30\ntrip_Average_s2 = 40\n\nif trip_Average_s1 is None or trip_Average_s2 is None:\n print('neutral')\n\nelif trip_Average_s1 == trip_Average_s2:\n print('Entailment')\n\nelif trip_Average_s1 != trip_Average_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jack walks in a straight line toward Christina at a constant speed of more than 1 feet per second and Christina walks in a straight line toward Jack at a constant speed of 5 feet per second, \"statement 2\" :Jack walks in a straight line toward Christina at a constant speed of 4 feet per second and Christina walks in a straight line toward Jack at a constant speed of 5 feet per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jack_walks_s1 = None\nJack_walks_s2 = 4\n\nif Jack_walks_s1 is None or Jack_walks_s2 is None:\n print('neutral')\n\nelif Jack_walks_s1 == Jack_walks_s2:\n print('Entailment')\n\nelif Jack_walks_s1 != Jack_walks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": At present , the ratio between the ages of Arun and Deepak is less than 5 : 3, \"statement 2\" :At present , the ratio between the ages of Arun and Deepak is 4 : 3, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ratio_s1 = None\nratio_s2 = 4/3\n\nif ratio_s1 is None or ratio_s2 is None:\n print('neutral')\n\nelif ratio_s1 == ratio_s2:\n print('Entailment')\n\nelif ratio_s1 != ratio_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jaclyn buys $ 50 000 worth of debentures in a company, \"statement 2\" :Jaclyn buys $ less than 50 000 worth of debentures in a company, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jaclyn_buys_s1 = 50000\nJaclyn_buys_s2 = 50000-1\n\nif Jaclyn_buys_s1 is None or Jaclyn_buys_s2 is None:\n print('neutral')\n\nelif Jaclyn_buys_s1 == Jaclyn_buys_s2:\n print('Entailment')\n\nelif Jaclyn_buys_s1 != Jaclyn_buys_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In the biology lab of ` ` Jefferson ' ' High School there are 0.036 * 10 ^ 5 germs , equally divided among 36000 * 10 ^ ( - 3 ) Petri dishes, \"statement 2\" :In the biology lab of ` ` Jefferson ' ' High School there are 0.036 * less than 20 ^ 5 germs , equally divided among 36000 * 10 ^ ( - 3 ) Petri dishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "germs_s1 = 3600\ngerms_s2 = 115200\n\nif germs_s1 is None or germs_s2 is None:\n print('neutral')\n\nelif germs_s1 <= germs_s2:\n print('Entailment')\n\nelif germs_s1 != germs_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": During the first two weeks of May , the total rainfall in Springdale was 35 inches, \"statement 2\" :During the first two weeks of May , the total rainfall in Springdale was less than 55 inches, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rainfall_s1 = 35\nrainfall_s2 = 35-1\n\nif rainfall_s1 is None or rainfall_s2 is None:\n print('neutral')\n\nelif rainfall_s1 == rainfall_s2:\n print('Entailment')\n\nelif rainfall_s1 != rainfall_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Right now , the ratio between the ages of Sandy and Molly is more than 1 : 3, \"statement 2\" :Right now , the ratio between the ages of Sandy and Molly is 4 : 3, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rainfall_s1 = 35\nrainfall_s2 = 35-1\n\nif rainfall_s1 is None or rainfall_s2 is None:\n print('neutral')\n\nelif rainfall_s1 == rainfall_s2:\n print('Entailment')\n\nelif rainfall_s1 != rainfall_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Scott ' s average ( arithmetic mean ) golf score on his first four rounds was 68, \"statement 2\" :Scott ' s average ( arithmetic mean ) golf score on his first four rounds was less than 88, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Scott_average_s1 = 68\nScott_average_s2 = 88\n\nif Scott_average_s1 is None or Scott_average_s2 is None:\n print('neutral')\n\nelif Scott_average_s1 <= Scott_average_s2:\n print('Entailment')\n\nelif Scott_average_s1 != Scott_average_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sharmila works less than 80 hours per day on Monday , Wednesday and Friday , and 8 hours per day on Tuesday and Thursday, \"statement 2\" :Sharmila works 10 hours per day on Monday , Wednesday and Friday , and 8 hours per day on Tuesday and Thursday, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sharmila_works_s1 = None\nSharmila_works_s2 = 10\n\nif Sharmila_works_s1 is None or Sharmila_works_s2 is None:\n print('neutral')\n\nelif Sharmila_works_s1 == Sharmila_works_s2:\n print('Entailment')\n\nelif Sharmila_works_s1 != Sharmila_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jaclyn buys $ less than 80 000 worth of debentures in a company, \"statement 2\" :Jaclyn buys $ 50 000 worth of debentures in a company, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jaclyn_buys_s1 = None\nJaclyn_buys_s2 = 50000\n\nif Jaclyn_buys_s1 is None or Jaclyn_buys_s2 is None:\n print('neutral')\n\nelif Jaclyn_buys_s1 == Jaclyn_buys_s2:\n print('Entailment')\n\nelif Jaclyn_buys_s1 != Jaclyn_buys_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Ravina can do the same work in 12 days while Gitika can do it in 32 days, \"statement 2\" :Ravina can do the same work in 22 days while Gitika can do it in 32 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ravina_work_s1 = 12\nRavina_work_s2 = 22\n\nif Ravina_work_s1 is None or Ravina_work_s2 is None:\n print('neutral')\n\nelif Ravina_work_s1 == Ravina_work_s2:\n print('Entailment')\n\nelif Ravina_work_s1 != Ravina_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Patrick purchased more than 20 pencils and sold them at a loss equal to the selling price of 20 pencils, \"statement 2\" :Patrick purchased 70 pencils and sold them at a loss equal to the selling price of 20 pencils, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nPatrick_purchased_s1 = None\nPatrick_purchased_s2 = 70\n\nif Patrick_purchased_s1 is None or Patrick_purchased_s2 is None:\n print('neutral')\n\nelif Patrick_purchased_s1 == Patrick_purchased_s2:\n print('Entailment')\n\nelif Patrick_purchased_s1 != Patrick_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Alice is less than 300 km away from Bob at 7 am , and also 100 km away from Bob at 11 am , then how fast is Bob driving ( in kilometers per hour ) ?, \"statement 2\" :If Alice is 100 km away from Bob at 7 am , and also 100 km away from Bob at 11 am , then how fast is Bob driving ( in kilometers per hour ) ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nAlice_s1 = None\nAlice_s2 = 100\n\nif Alice_s1 is None or Alice_s2 is None:\n print('neutral')\n\nelif Alice_s1 == Alice_s2:\n print('Entailment')\n\nelif Alice_s1 != Alice_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jack walks in a straight line toward Christina at a constant speed of 5 feet per second and Christina walks in a straight line toward Jack at a constant speed of 3 feet per second, \"statement 2\" :Jack walks in a straight line toward Christina at a constant speed of less than 6 feet per second and Christina walks in a straight line toward Jack at a constant speed of 3 feet per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jack_walks_s1 = 5\nJack_walks_s2 = 6-1\n\nif Jack_walks_s1 is None or Jack_walks_s2 is None:\n print('neutral')\n\nelif Jack_walks_s1 == Jack_walks_s2:\n print('Entailment')\n\nelif Jack_walks_s1 != Jack_walks_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sony and Johnny caught more than 15 fishes, \"statement 2\" :Sony and Johnny caught 75 fishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sony_and_Johnny_s1 = 15\nSony_and_Johnny_s2 = 75\n\nif Sony_and_Johnny_s1 is None or Sony_and_Johnny_s2 is None:\n print('neutral')\n\nelif Sony_and_Johnny_s1 == Sony_and_Johnny_s2:\n print('Entailment')\n\nelif Sony_and_Johnny_s1 != Sony_and_Johnny_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Arun purchased 30 kg of wheat at the rate of Rs, \"statement 2\" :Arun purchased 50 kg of wheat at the rate of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Arun_purchased_s1 = 30\nArun_purchased_s2 = 50\n\nif Arun_purchased_s1 is None or Arun_purchased_s2 is None:\n print('neutral')\n\nelif Arun_purchased_s1 == Arun_purchased_s2:\n print('Entailment')\n\nelif Arun_purchased_s1 != Arun_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The average number of shirts with Salman , Ambani and Dalmiya is more than 20 , if all of them reached a shopping mall in Delhi and purchased 4 shirts each of them then average number of shirt each of them now has, \"statement 2\" :The average number of shirts with Salman , Ambani and Dalmiya is 60 , if all of them reached a shopping mall in Delhi and purchased 4 shirts each of them then average number of shirt each of them now has, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_number_of_shirts_s1 = None\naverage_number_of_shirts_s2 = 60\n\nif average_number_of_shirts_s1 is None or average_number_of_shirts_s2 is None:\n print('neutral')\n\nelif average_number_of_shirts_s1 == average_number_of_shirts_s2:\n print('Entailment')\n\nelif average_number_of_shirts_s1 != average_number_of_shirts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Shawn invested one half of his savings in a bond that paid simple interest for 2 years and received $ 200 as interest, \"statement 2\" :Shawn invested one half of his savings in a bond that paid simple interest for less than 4 years and received $ 200 as interest, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Shawn_invested_s1 = 2\nShawn_invested_s2 = 4\n\nif Shawn_invested_s1 is None or Shawn_invested_s2 is None:\n print('neutral')\n\nelif Shawn_invested_s1 <= Shawn_invested_s2:\n print('Entailment')\n\nelif Shawn_invested_s1 != Shawn_invested_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Listco employs 72 level - 1 employees , 20 of whom are college graduates, \"statement 2\" :Listco employs more than 72 level - 1 employees , 20 of whom are college graduates, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "employs_level_s1 = 72\nemploys_level_s2 = 72+1\n\nif employs_level_s1 is None or employs_level_s2 is None:\n print('neutral')\n\nelif employs_level_s1 == employs_level_s2:\n print('Entailment')\n\nelif employs_level_s1 != employs_level_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If the boys at Jones Elementary make up 50 % of the total school population of x students , what is x ?, \"statement 2\" :If the boys at Jones Elementary make up 10 % of the total school population of x students , what is x ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jones_Elementary_s1 = 50\nJones_Elementary_s2 = 10\n\nif Jones_Elementary_s1 is None or Jones_Elementary_s2 is None:\n print('neutral')\n\nelif Jones_Elementary_s1 == Jones_Elementary_s2:\n print('Entailment')\n\nelif Jones_Elementary_s1 != Jones_Elementary_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sean , who weighs less than 700 pounds , is in the elevator with two packages weighing 150 pounds and 280 pounds, \"statement 2\" :Sean , who weighs 200 pounds , is in the elevator with two packages weighing 150 pounds and 280 pounds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sean_weighs_s1 = None\nSean_weighs_s2 = 200\n\nif Sean_weighs_s1 is None or Sean_weighs_s2 is None:\n print('neutral')\n\nelif Sean_weighs_s1 == Sean_weighs_s2:\n print('Entailment')\n\nelif Sean_weighs_s1 != Sean_weighs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Cathy runs at less than 70 miles per hour , and Cara runs at 5 miles per hour, \"statement 2\" :Cathy runs at 10 miles per hour , and Cara runs at 5 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Cathy_runs_s1 = None\nCathy_runs_s2 = 10\n\nif Cathy_runs_s1 is None or Cathy_runs_s2 is None:\n print('neutral')\n\nelif Cathy_runs_s1 == Cathy_runs_s2:\n print('Entailment')\n\nelif Cathy_runs_s1 != Cathy_runs_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Mr Yadav spends 60 % of his monthly salary on consumable items and 50 % of the remaining on clothes and transport, \"statement 2\" :Mr Yadav spends more than 30 % of his monthly salary on consumable items and 50 % of the remaining on clothes and transport, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Yadav_spends_s1 = 60\nYadav_spends_s2 = 30\n\nif Yadav_spends_s1 is None or Yadav_spends_s2 is None:\n print('neutral')\n\nelif Yadav_spends_s1 >= Yadav_spends_s2:\n print('Entailment')\n\nelif Yadav_spends_s1 != Yadav_spends_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": At Veridux Corporation , there are 250 employees, \"statement 2\" :At Veridux Corporation , there are less than 450 employees, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "employees_s1 = 250\nemployees_s2 = 450\n\nif employees_s1 is None or employees_s2 is None:\n print('neutral')\n\nelif employees_s1 <= employees_s2:\n print('Entailment')\n\nelif employees_s1 != employees_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Susan , Daisy and Tim need to be seated in 3 identical chairs in straight line so that Susan is seated always left to Tim, \"statement 2\" :Susan , Daisy and Tim need to be seated in less than 5 identical chairs in straight line so that Susan is seated always left to Tim, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "identical_chairs_s1 = 3\nidentical_chairs_s2 = 5\n\nif identical_chairs_s1 is None or identical_chairs_s2 is None:\n print('neutral')\n\nelif identical_chairs_s1 <= identical_chairs_s2:\n print('Entailment')\n\nelif identical_chairs_s1 != identical_chairs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Ravina leaves the job 3 days before the completion of the work, \"statement 2\" :Ravina leaves the job more than 1 days before the completion of the work, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ravina_leaves_s1 = 3\nRavina_leaves_s2 = 1\n\nif Ravina_leaves_s1 is None or Ravina_leaves_s2 is None:\n print('neutral')\n\nelif Ravina_leaves_s1 >= Ravina_leaves_s2:\n print('Entailment')\n\nelif Ravina_leaves_s1 != Ravina_leaves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Victor has less than 55 cups if flour , 16 cups of sugar and 8 cups of milk, \"statement 2\" :Victor has 15 cups if flour , 16 cups of sugar and 8 cups of milk, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "flour_s1 = None\nflour_s2 = 15\n\nif flour_s1 is None or flour_s2 is None:\n print('neutral')\n\nelif flour_s1 == flour_s2:\n print('Entailment')\n\nelif flour_s1 != flour_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": At Veridux Corporation , there are 250 employees, \"statement 2\" :At Veridux Corporation , there are less than 550 employees, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "employees_s1 = 250\nemployees_s2 = 550\n\nif employees_s1 is None or employees_s2 is None:\n print('neutral')\n\nelif employees_s1 <= employees_s2:\n print('Entailment')\n\nelif employees_s1 != employees_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": His assets included : Investments , ( $ 305,000 ) , Life Insurance ( $ 104,000 ) , an old car ( sold for $ 1900 ) , an older house ( sold for $ 75,000 ), \"statement 2\" :His assets included : Investments , ( $ 305,000 ) , Life Insurance ( $ 104,000 ) , an old car ( sold for $ less than 1900 ) , an older house ( sold for $ 75,000 ), \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "old_car_sold_s1 = 1900\nold_car_sold_s2 = 1900-1\n\nif old_car_sold_s1 is None or old_car_sold_s2 is None:\n print('neutral')\n\nelif old_car_sold_s1 == old_car_sold_s2:\n print('Entailment')\n\nelif old_car_sold_s1 != old_car_sold_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In a friendship gang Andrew has more than 5 gang , in how many ways can he invite one or more of the gang to his house ?, \"statement 2\" :In a friendship gang Andrew has 8 gang , in how many ways can he invite one or more of the gang to his house ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Andrew_gang_s1 = None\nAndrew_gang_s2 = 8\n\nif Andrew_gang_s1 is None or Andrew_gang_s2 is None:\n print('neutral')\n\nelif Andrew_gang_s1 == Andrew_gang_s2:\n print('Entailment')\n\nelif Andrew_gang_s1 != Andrew_gang_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Richard began driving from home on a trip averaging less than 50 miles per hour, \"statement 2\" :Richard began driving from home on a trip averaging 30 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "trip_averag_s1 = None\ntrip_averag_s2 = 30\n\nif trip_averag_s1 is None or trip_averag_s2 is None:\n print('neutral')\n\nelif trip_averag_s1 == trip_averag_s2:\n print('Entailment')\n\nelif trip_averag_s1 != trip_averag_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Vijay sells a cupboard at 14 % below cost price, \"statement 2\" :Vijay sells a cupboard at less than 14 % below cost price, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Vijay_sells_cupboard_s1 = 14\nVijay_sells_cupboard_s2 = 14-1\n\nif Vijay_sells_cupboard_s1 is None or Vijay_sells_cupboard_s2 is None:\n print('neutral')\n\nelif Vijay_sells_cupboard_s1 == Vijay_sells_cupboard_s2:\n print('Entailment')\n\nelif Vijay_sells_cupboard_s1 != Vijay_sells_cupboard_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Mary is 12 years younger than Albert, \"statement 2\" :Mary is less than 12 years younger than Albert, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Mary_younger_s1 = 12\nMary_younger_s2 = 12-1\n\nif Mary_younger_s1 is None or Mary_younger_s2 is None:\n print('neutral')\n\nelif Mary_younger_s1 == Mary_younger_s2:\n print('Entailment')\n\nelif Mary_younger_s1 != Mary_younger_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Listco employs 72 level - 1 employees , 20 of whom are college graduates, \"statement 2\" :Listco employs more than 62 level - 1 employees , 20 of whom are college graduates, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Listco_employs_level_s1 = 75\nListco_employs_level_s2 = 62\n\nif Listco_employs_level_s1 is None or Listco_employs_level_s2 is None:\n print('neutral')\n\nelif Listco_employs_level_s1 >= Listco_employs_level_s2:\n print('Entailment')\n\nelif Listco_employs_level_s1 != Listco_employs_level_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The compound interest earned by Sunil on a certain amount at the end of two years at the rate of more than 1 % p, \"statement 2\" :The compound interest earned by Sunil on a certain amount at the end of two years at the rate of 8 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "interest_rate_s1 = None\ninterest_rate_s2 = 8\n\nif interest_rate_s1 is None or interest_rate_s2 is None:\n print('neutral')\n\nelif interest_rate_s1 == interest_rate_s2:\n print('Entailment')\n\nelif interest_rate_s1 != interest_rate_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": How many possible ways can 5 girls ( Rebecca , Kate , Ashley ) go on a date with 5 boys ( Peter , Kyle , Sam ) ?, \"statement 2\" :How many possible ways can less than 7 girls ( Rebecca , Kate , Ashley ) go on a date with 5 boys ( Peter , Kyle , Sam ) ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "girls_date_with_boy_s1 = 5\ngirls_date_with_boy_s2 = 7\n\nif girls_date_with_boy_s1 is None or girls_date_with_boy_s2 is None:\n print('neutral')\n\nelif girls_date_with_boy_s1 <= girls_date_with_boy_s2:\n print('Entailment')\n\nelif girls_date_with_boy_s1 != girls_date_with_boy_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": At Veridux Corporation , there are less than 550 employees, \"statement 2\" :At Veridux Corporation , there are 250 employees, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "employees_s1 = None\nemployees_s2 = 250\n\nif employees_s1 is None or employees_s2 is None:\n print('neutral')\n\nelif employees_s1 == employees_s2:\n print('Entailment')\n\nelif employees_s1 != employees_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Billy has 5 apples, \"statement 2\" :Billy has more than 1 apples, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Billy_apples_s1 = 5\nBilly_apples_s2 = 1\n\nif Billy_apples_s1 is None or Billy_apples_s2 is None:\n print('neutral')\n\nelif Billy_apples_s1 >= Billy_apples_s2:\n print('Entailment')\n\nelif Billy_apples_s1 != Billy_apples_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In a BCCI meeting there are less than 54 people, \"statement 2\" :In a BCCI meeting there are 14 people, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_in_meeting_s1 = None\npeople_in_meeting_s2 = 14\n\nif people_in_meeting_s1 is None or people_in_meeting_s2 is None:\n print('neutral')\n\nelif people_in_meeting_s1 == people_in_meeting_s2:\n print('Entailment')\n\nelif people_in_meeting_s1 != people_in_meeting_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": 10 people voted to watch Skip Beat, \"statement 2\" :less than 40 people voted to watch Skip Beat, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_voted_s1 = 10\npeople_voted_s2 = 40\n\nif people_voted_s1 is None or people_voted_s2 is None:\n print('neutral')\n\nelif people_voted_s1 <= people_voted_s2:\n print('Entailment')\n\nelif people_voted_s1 != people_voted_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": After less than 8 years , Sandy \u2019 s age will be 42 years, \"statement 2\" :After 6 years , Sandy \u2019 s age will be 42 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sandy_age_s1 = None\nSandy_age_s2 = 6\n\nif Sandy_age_s1 is None or Sandy_age_s2 is None:\n print('neutral')\n\nelif Sandy_age_s1 == Sandy_age_s2:\n print('Entailment')\n\nelif Sandy_age_s1 != Sandy_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Harkamal purchased 8 kg of grapes at the rate of 70 per kg and 9 kg of mangoes at the rate of 55 per kg, \"statement 2\" :Harkamal purchased 6 kg of grapes at the rate of 70 per kg and 9 kg of mangoes at the rate of 55 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Harkamal_purchased_s1 = 8\nHarkamal_purchased_s2 = 6\n\nif Harkamal_purchased_s1 is None or Harkamal_purchased_s2 is None:\n print('neutral')\n\nelif Harkamal_purchased_s1 == Harkamal_purchased_s2:\n print('Entailment')\n\nelif Harkamal_purchased_s1 != Harkamal_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": 2000 , Deepak ' s share is :, \"statement 2\" :less than 3000 , Deepak ' s share is :, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Deepak_share_s1 = 2000\nDeepak_share_s2 = 3000\n\nif Deepak_share_s1 is None or Deepak_share_s2 is None:\n print('neutral')\n\nelif Deepak_share_s1 <= Deepak_share_s2:\n print('Entailment')\n\nelif Deepak_share_s1 != Deepak_share_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If she worked four less than 72 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"statement 2\" :If she worked four 12 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "worked_s1 = None\nworked_s2 = 12\n\nif worked_s1 is None or worked_s2 is None:\n print('neutral')\n\nelif worked_s1 == worked_s2:\n print('Entailment')\n\nelif worked_s1 != worked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Jack ' s score was within more than 1 standard deviations of the mean , what is the lowest score he could have received ?, \"statement 2\" :If Jack ' s score was within 2 standard deviations of the mean , what is the lowest score he could have received ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jack_score_s1 = None\nJack_score_s2 = 2\n\nif Jack_score_s1 is None or Jack_score_s2 is None:\n print('neutral')\n\nelif Jack_score_s1 == Jack_score_s2:\n print('Entailment')\n\nelif Jack_score_s1 != Jack_score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In a group of 80 people , 45 have visited Iceland and 33 have visited Norway, \"statement 2\" :In a group of more than 30 people , 45 have visited Iceland and 33 have visited Norway, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "group_of_people_s1 = 80\ngroup_of_people_s2 = 30\n\nif group_of_people_s1 is None or group_of_people_s2 is None:\n print('neutral')\n\nelif group_of_people_s1 >= group_of_people_s2:\n print('Entailment')\n\nelif group_of_people_s1 != group_of_people_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In a BCCI meeting there are 14 people, \"statement 2\" :In a BCCI meeting there are more than 14 people, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_in_meerting_s1 = 14\npeople_in_meerting_s2 = 14+1\n\nif people_in_meerting_s1 is None or people_in_meerting_s2 is None:\n print('neutral')\n\nelif people_in_meerting_s1 == people_in_meerting_s2:\n print('Entailment')\n\nelif people_in_meerting_s1 != people_in_meerting_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sandy can do a job in 12 days and Molly can do the same job in 24 days, \"statement 2\" :Sandy can do a job in 62 days and Molly can do the same job in 24 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sandy_job_s1 = 12\nSandy_job_s2 = 62\n\nif Sandy_job_s1 is None or Sandy_job_s2 is None:\n print('neutral')\n\nelif Sandy_job_s1 == Sandy_job_s2:\n print('Entailment')\n\nelif Sandy_job_s1 != Sandy_job_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": After more than 2 years , Arun ' s age will be 26 years, \"statement 2\" :After 6 years , Arun ' s age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Arun_age_after_s1 = None\nArun_age_after_s2 = 6\n\nif Arun_age_after_s1 is None or Arun_age_after_s2 is None:\n print('neutral')\n\nelif Arun_age_after_s1 == Arun_age_after_s2:\n print('Entailment')\n\nelif Arun_age_after_s1 != Arun_age_after_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jaclyn buys $ 10 000 worth of debentures in a company, \"statement 2\" :Jaclyn buys $ 40 000 worth of debentures in a company, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jaclyn_buys_s1 = 10000\nJaclyn_buys_s2 = 40000\n\nif Jaclyn_buys_s1 is None or Jaclyn_buys_s2 is None:\n print('neutral')\n\nelif Jaclyn_buys_s1 == Jaclyn_buys_s2:\n print('Entailment')\n\nelif Jaclyn_buys_s1 != Jaclyn_buys_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In how many ways can you seat 8 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"statement 2\" :In how many ways can you seat 6 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_peopel_s1 = 8\npeople_peopel_s2 = 6\n\nif people_peopel_s1 is None or people_peopel_s2 is None:\n print('neutral')\n\nelif people_peopel_s1 == people_peopel_s2:\n print('Entailment')\n\nelif people_peopel_s1 != people_peopel_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jill works as a waitress at the local diner where she earns an hourly wage of $ 4.00 per hour and a standard tip rate of 15 % of the cost of the orders she serves, \"statement 2\" :Jill works as a waitress at the local diner where she earns an hourly wage of $ 4.00 per hour and a standard tip rate of less than 65 % of the cost of the orders she serves, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jill_works_s1 = 15\nJill_works_s2 = 65\n\nif Jill_works_s1 is None or Jill_works_s2 is None:\n print('neutral')\n\nelif Jill_works_s1 <= Jill_works_s2:\n print('Entailment')\n\nelif Jill_works_s1 != Jill_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In an exam , Libi scored more than 68 percent , Nibi scored 75 percent and Catherine 85 percent, \"statement 2\" :In an exam , Libi scored 78 percent , Nibi scored 75 percent and Catherine 85 percent, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nLibi_scored_s1 = None\nLibi_scored_s2 = 78\n\nif Libi_scored_s1 is None or Libi_scored_s2 is None:\n print('neutral')\n\nelif Libi_scored_s1 == Libi_scored_s2:\n print('Entailment')\n\nelif Libi_scored_s1 != Libi_scored_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": more than 20 % of students from 200 Science students are locals and 85 % of total 120 Commerce students are locals, \"statement 2\" :50 % of students from 200 Science students are locals and 85 % of total 120 Commerce students are locals, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Local_students_s1 = None\nLocal_students_s2 = 50\n\nif Local_students_s1 is None or Local_students_s2 is None:\n print('neutral')\n\nelif Local_students_s1 == Local_students_s2:\n print('Entailment')\n\nelif Local_students_s1 != Local_students_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Jerry wants to raise his average by 3 points , what score must he earn on the fourth test ?, \"statement 2\" :If Jerry wants to raise his average by more than 3 points , what score must he earn on the fourth test ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jerry_average_s1 = 3\nJerry_average_s2 = 3+1\n\nif Jerry_average_s1 is None or Jerry_average_s2 is None:\n print('neutral')\n\nelif Jerry_average_s1 == Jerry_average_s2:\n print('Entailment')\n\nelif Jerry_average_s1 != Jerry_average_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Billy has 5 apples, \"statement 2\" :Billy has 4 apples, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Billy_apples_s1 = 5\nBilly_apples_s2 = 4\n\nif Billy_apples_s1 is None or Billy_apples_s2 is None:\n print('neutral')\n\nelif Billy_apples_s1 == Billy_apples_s2:\n print('Entailment')\n\nelif Billy_apples_s1 != Billy_apples_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In a friendship gang Andrew has 8 gang , in how many ways can he invite one or more of the gang to his house ?, \"statement 2\" :In a friendship gang Andrew has 1 gang , in how many ways can he invite one or more of the gang to his house ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Andrew_gagg_s1 = 8\nAndrew_gagg_s2 = 1\n\nif Andrew_gagg_s1 is None or Andrew_gagg_s2 is None:\n print('neutral')\n\nelif Andrew_gagg_s1 == Andrew_gagg_s2:\n print('Entailment')\n\nelif Andrew_gagg_s1 != Andrew_gagg_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": John paid a 15 % tip over the original price of the dish , while Jane paid the tip over the discounted price for the coupon, \"statement 2\" :John paid a 65 % tip over the original price of the dish , while Jane paid the tip over the discounted price for the coupon, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "John_paid_s1 = 65\nJohn_paid_s2 = 15\n\nif John_paid_s1 is None or John_paid_s2 is None:\n print('neutral')\n\nelif John_paid_s1 == John_paid_s2:\n print('Entailment')\n\nelif John_paid_s1 != John_paid_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Dana borrows more than 4500 pounds annually for her college education, \"statement 2\" :Dana borrows 7500 pounds annually for her college education, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dana_borrows_s1 = None\nDana_borrows_s2 = 7500\n\nif Dana_borrows_s1 is None or Dana_borrows_s2 is None:\n print('neutral')\n\nelif Dana_borrows_s1 == Dana_borrows_s2:\n print('Entailment')\n\nelif Dana_borrows_s1 != Dana_borrows_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In the biology lab of ` ` Jefferson ' ' High School there are 0.036 * less than 20 ^ 5 germs , equally divided among 36000 * 10 ^ ( - 3 ) Petri dishes, \"statement 2\" :In the biology lab of ` ` Jefferson ' ' High School there are 0.036 * 10 ^ 5 germs , equally divided among 36000 * 10 ^ ( - 3 ) Petri dishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "germs_s1 = None\ngerms_s2 = 3600\n\nif germs_s1 is None or germs_s2 is None:\n print('neutral')\n\nelif germs_s1 == germs_s2:\n print('Entailment')\n\nelif germs_s1 != germs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Raj was one - third as old as Rahim more than 2 years back and Raj is 17 years old now , How old is Rahim now ?, \"statement 2\" :If Raj was one - third as old as Rahim 5 years back and Raj is 17 years old now , How old is Rahim now ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Rahim_s1 = None\nRahim_s2 = 5\n\nif Rahim_s1 is None or Rahim_s2 is None:\n print('neutral')\n\nelif Rahim_s1 == Rahim_s2:\n print('Entailment')\n\nelif Rahim_s1 != Rahim_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Cathy runs at 10 miles per hour , and Cara runs at 5 miles per hour, \"statement 2\" :Cathy runs at 40 miles per hour , and Cara runs at 5 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Cathy_runs_s1 = 10\nCathy_runs_s2 = 40\n\nif Cathy_runs_s1 is None or Cathy_runs_s2 is None:\n print('neutral')\n\nelif Cathy_runs_s1 == Cathy_runs_s2:\n print('Entailment')\n\nelif Cathy_runs_s1 != Cathy_runs_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Matt and Peter can do together a piece of work in 20 days, \"statement 2\" :Matt and Peter can do together a piece of work in less than 70 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Matt_and_peter_work_s1 = 20\nMatt_and_peter_work_s2 = 70\n\nif Matt_and_peter_work_s1 is None or Matt_and_peter_work_s2 is None:\n print('neutral')\n\nelif Matt_and_peter_work_s1 <= Matt_and_peter_work_s2:\n print('Entailment')\n\nelif Matt_and_peter_work_s1 != Matt_and_peter_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": While driving from City A to City B , Glen drives at a constant speed of 40 miles per hour, \"statement 2\" :While driving from City A to City B , Glen drives at a constant speed of more than 10 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Glen_speed_s1 = 40\nGlen_speed_s2 = 10\n\nif Glen_speed_s1 is None or Glen_speed_s2 is None:\n print('neutral')\n\nelif Glen_speed_s1 >= Glen_speed_s2:\n print('Entailment')\n\nelif Glen_speed_s1 != Glen_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If the marks secured by Reema was written as less than 76 instead of 96 then find the correct average marks up to two decimal places ., \"statement 2\" :If the marks secured by Reema was written as 46 instead of 96 then find the correct average marks up to two decimal places ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Reema_written_s1 = None\nReema_written_s2 = 46\n\nif Reema_written_s1 is None or Reema_written_s2 is None:\n print('neutral')\n\nelif Reema_written_s1 == Reema_written_s2:\n print('Entailment')\n\nelif Reema_written_s1 != Reema_written_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Suresh age after 15 years will be 5 times his age 5 years back , What is the present age of Suresh, \"statement 2\" :Suresh age after less than 15 years will be 5 times his age 5 years back , What is the present age of Suresh, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Suresh_age_s1 = 15\nSuresh_age_s2 = 15-1\n\nif Suresh_age_s1 is None or Suresh_age_s2 is None:\n print('neutral')\n\nelif Suresh_age_s1 == Suresh_age_s2:\n print('Entailment')\n\nelif Suresh_age_s1 != Suresh_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In a group of more than 30 people , 45 have visited Iceland and 33 have visited Norway, \"statement 2\" :In a group of 80 people , 45 have visited Iceland and 33 have visited Norway, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "group_people_s1 = None\ngroup_people_s2 = 80\n\nif group_people_s1 is None or group_people_s2 is None:\n print('neutral')\n\nelif group_people_s1 == group_people_s2:\n print('Entailment')\n\nelif group_people_s1 != group_people_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Lary and Terry enter into a partnership by investing $ less than 800 and $ 300 respectively, \"statement 2\" :Lary and Terry enter into a partnership by investing $ 700 and $ 300 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Lary_and_Terry_investing_s1 = None\nLary_and_Terry_investing_s2 = 700,300\n\nif Lary_and_Terry_investing_s1 is None or Lary_and_Terry_investing_s2 is None:\n print('neutral')\n\nelif Lary_and_Terry_investing_s1 == Lary_and_Terry_investing_s2:\n print('Entailment')\n\nelif Lary_and_Terry_investing_s1 != Lary_and_Terry_investing_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": A train travels from Albany to Syracuse , a distance of less than 300 miles , at the average rate of 50 miles per hour, \"statement 2\" :A train travels from Albany to Syracuse , a distance of 100 miles , at the average rate of 50 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Tarin_distnace_s1 = None\nTarin_distnace_s2 = 100\n\nif Tarin_distnace_s1 is None or Tarin_distnace_s2 is None:\n print('neutral')\n\nelif Tarin_distnace_s1 == Tarin_distnace_s2:\n print('Entailment')\n\nelif Tarin_distnace_s1 != Tarin_distnace_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Suresh works for more than 1 hours and then the remaining job is completed by Ashutosh, \"statement 2\" :Suresh works for 9 hours and then the remaining job is completed by Ashutosh, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Suresh_works_s1 = None\nSuresh_works_s2 = 9\n\nif Suresh_works_s1 is None or Suresh_works_s2 is None:\n print('neutral')\n\nelif Suresh_works_s1 == Suresh_works_s2:\n print('Entailment')\n\nelif Suresh_works_s1 != Suresh_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The distance between their homes is 52 kilometers , Sandy ' s walking speed is 6 km / h , and Ed ' s walking speed is 4 km / h, \"statement 2\" :The distance between their homes is less than 52 kilometers , Sandy ' s walking speed is 6 km / h , and Ed ' s walking speed is 4 km / h, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Distnace_between_home_s1 = 52\nDistnace_between_home_s2 = 52-1\n\nif Distnace_between_home_s1 is None or Distnace_between_home_s2 is None:\n print('neutral')\n\nelif Distnace_between_home_s1 == Distnace_between_home_s2:\n print('Entailment')\n\nelif Distnace_between_home_s1 != Distnace_between_home_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Donald carries a total of 39 notes ( of either $ 10 or \u20ac 10 , ) then what is the total number of notes ( of either $ 10 or \u20ac 10 , ) they take ?, \"statement 2\" :If Donald carries a total of 79 notes ( of either $ 10 or \u20ac 10 , ) then what is the total number of notes ( of either $ 10 or \u20ac 10 , ) they take ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Donald_carries_s1 = 39\nDonald_carries_s2 = 79\n\nif Donald_carries_s1 is None or Donald_carries_s2 is None:\n print('neutral')\n\nelif Donald_carries_s1 == Donald_carries_s2:\n print('Entailment')\n\nelif Donald_carries_s1 != Donald_carries_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If T = 5 / 9 * ( K - 32 ) , and if T = 50 , then what is the value of K ?, \"statement 2\" :If T = 1 / 9 * ( K - 32 ) , and if T = 50 , then what is the value of K ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "K1_s1 = 122\nK1_s2 = 482\n\nif K1_s1 is None or K1_s2 is None:\n print('neutral')\n\nelif K1_s1 == K1_s2:\n print('Entailment')\n\nelif K1_s1 != K1_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Mary has 1803 dollars with her, \"statement 2\" :Mary has less than 3803 dollars with her, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Mary_has_s1 = 1803\nMary_has_s2 = 3803\n\nif Mary_has_s1 is None or Mary_has_s2 is None:\n print('neutral')\n\nelif Mary_has_s1 <= Mary_has_s2:\n print('Entailment')\n\nelif Mary_has_s1 != Mary_has_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Aamir saves less than 82 % of his monthly salary, \"statement 2\" :Aamir saves 32 % of his monthly salary, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Aamir_saves_s1 = None\nAamir_saves_s2 = 32\n\nif Aamir_saves_s1 is None or Aamir_saves_s2 is None:\n print('neutral')\n\nelif Aamir_saves_s1 == Aamir_saves_s2:\n print('Entailment')\n\nelif Aamir_saves_s1 != Aamir_saves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sean , who weighs 200 pounds , is in the elevator with two packages weighing 150 pounds and 280 pounds, \"statement 2\" :Sean , who weighs more than 100 pounds , is in the elevator with two packages weighing 150 pounds and 280 pounds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sean_weighs_s1 = 200\nSean_weighs_s2 = 100\n\nif Sean_weighs_s1 is None or Sean_weighs_s2 is None:\n print('neutral')\n\nelif Sean_weighs_s1 >= Sean_weighs_s2:\n print('Entailment')\n\nelif Sean_weighs_s1 != Sean_weighs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In a 100 m sprint race Kelly was given a 3 m head start by Abel, \"statement 2\" :In a less than 100 m sprint race Kelly was given a 3 m head start by Abel, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sprint_race_s1 = 100\nsprint_race_s2 = 100-1\n\nif sprint_race_s1 is None or sprint_race_s2 is None:\n print('neutral')\n\nelif sprint_race_s1 == sprint_race_s2:\n print('Entailment')\n\nelif sprint_race_s1 != sprint_race_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The next day , Ella took the test , and with this grade included , the new average was less than 85, \"statement 2\" :The next day , Ella took the test , and with this grade included , the new average was 75, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nElla_average_s1 = None\nElla_average_s2 = 75\n\nif Ella_average_s1 is None or Ella_average_s2 is None:\n print('neutral')\n\nelif Ella_average_s1 == Ella_average_s2:\n print('Entailment')\n\nelif Ella_average_s1 != Ella_average_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jack and Christina are standing less than 470 feet apart on a level surface, \"statement 2\" :Jack and Christina are standing 270 feet apart on a level surface, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jack_and_Christina_s1 = None\nJack_and_Christina_s2 = 270\n\nif Jack_and_Christina_s1 is None or Jack_and_Christina_s2 is None:\n print('neutral')\n\nelif Jack_and_Christina_s1 == Jack_and_Christina_s2:\n print('Entailment')\n\nelif Jack_and_Christina_s1 != Jack_and_Christina_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": At present , the ratio between the ages of Arun and Deepak is 4 : 3, \"statement 2\" :At present , the ratio between the ages of Arun and Deepak is less than 5 : 3, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Age_ratio_s1 = 4/3\nAge_ratio_s2 = 5/3\n\nif Age_ratio_s1 is None or Age_ratio_s2 is None:\n print('neutral')\n\nelif Age_ratio_s1 <= Age_ratio_s2:\n print('Entailment')\n\nelif Age_ratio_s1 != Age_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In a BCCI meeting there are 14 people, \"statement 2\" :In a BCCI meeting there are less than 54 people, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "people_in_meeting_s1 = 14\npeople_in_meeting_s2 = 54\n\nif people_in_meeting_s1 is None or people_in_meeting_s2 is None:\n print('neutral')\n\nelif people_in_meeting_s1 <= people_in_meeting_s2:\n print('Entailment')\n\nelif people_in_meeting_s1 != people_in_meeting_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In the biology lab of ` ` Jefferson ' ' High School there are 0.036 * 10 ^ 5 germs , equally divided among 36000 * 10 ^ ( - 3 ) Petri dishes, \"statement 2\" :In the biology lab of ` ` Jefferson ' ' High School there are 0.036 * more than 10 ^ 5 germs , equally divided among 36000 * 10 ^ ( - 3 ) Petri dishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "germs_s1 = 3600\ngerms_s2 = 3600+1\n\nif germs_s1 is None or germs_s2 is None:\n print('neutral')\n\nelif germs_s1 == germs_s2:\n print('Entailment')\n\nelif germs_s1 != germs_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Christine selects an item at a 25 % off ticket price sale, \"statement 2\" :Christine selects an item at a less than 85 % off ticket price sale, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nChristine_selects_s1 = 25\nChristine_selects_s2 = 85\n\nif Christine_selects_s1 is None or Christine_selects_s2 is None:\n print('neutral')\n\nelif Christine_selects_s1 <= Christine_selects_s2:\n print('Entailment')\n\nelif Christine_selects_s1 != Christine_selects_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Tom left a job paying $ 75,000 per year to accept a sales job paying $ 45,000 per year plus 15 percent commission, \"statement 2\" :Tom left a job paying $ 75,000 per year to accept a sales job paying $ 45,000 per year plus less than 15 percent commission, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "commission_s1 = 15\ncommission_s2 = 15-1\n\nif commission_s1 is None or commission_s2 is None:\n print('neutral')\n\nelif commission_s1 == commission_s2:\n print('Entailment')\n\nelif commission_s1 != commission_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": A train travels from Albany to Syracuse , a distance of 120 miles , at the average rate of 50 miles per hour, \"statement 2\" :A train travels from Albany to Syracuse , a distance of less than 520 miles , at the average rate of 50 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nDistace_s1 = 120\nDistace_s2 = 520\n\nif Distace_s1 is None or Distace_s2 is None:\n print('neutral')\n\nelif Distace_s1 <= Distace_s2:\n print('Entailment')\n\nelif Distace_s1 != Distace_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jaclyn buys $ less than 80 000 worth of debentures in a company, \"statement 2\" :Jaclyn buys $ 10 000 worth of debentures in a company, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jaclyn_buys_s1 = None\nJaclyn_buys_s2 = 10000\n\nif Jaclyn_buys_s1 is None or Jaclyn_buys_s2 is None:\n print('neutral')\n\nelif Jaclyn_buys_s1 == Jaclyn_buys_s2:\n print('Entailment')\n\nelif Jaclyn_buys_s1 != Jaclyn_buys_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Anne \u2019 s speed were doubled , they could clean their house in less than 8 hours working at their respective rates, \"statement 2\" :If Anne \u2019 s speed were doubled , they could clean their house in 3 hours working at their respective rates, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Anne_speed_s1 = None\nAnne_speed_s2 = 3\n\nif Anne_speed_s1 is None or Anne_speed_s2 is None:\n print('neutral')\n\nelif Anne_speed_s1 == Anne_speed_s2:\n print('Entailment')\n\nelif Anne_speed_s1 != Anne_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The next day , Cara took the test , and with this grade included , the new average was 77, \"statement 2\" :The next day , Cara took the test , and with this grade included , the new average was less than 77, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Cara_average_s1 = 77\nCara_average_s2 = 77-1\n\nif Cara_average_s1 is None or Cara_average_s2 is None:\n print('neutral')\n\nelif Cara_average_s1 == Cara_average_s2:\n print('Entailment')\n\nelif Cara_average_s1 != Cara_average_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": What is the minimum number of packages of Aero flight tees Bill must purchase to ensure that he has at least 10 golf tees for each member of his foursome , if he will buy no more than 3 packages of the generic golf tees ?, \"statement 2\" :What is the minimum number of packages of Aero flight tees Bill must purchase to ensure that he has at least less than 30 golf tees for each member of his foursome , if he will buy no more than 3 packages of the generic golf tees ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Bill_purchase_s1 = 10\nBill_purchase_s2 = 30\n\nif Bill_purchase_s1 is None or Bill_purchase_s2 is None:\n print('neutral')\n\nelif Bill_purchase_s1 <= Bill_purchase_s2:\n print('Entailment')\n\nelif Bill_purchase_s1 != Bill_purchase_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jack took a 3 - hour bike ride, \"statement 2\" :Jack took a 2 - hour bike ride, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bike_ride_s1 = 3\nbike_ride_s2 = 2\n\nif bike_ride_s1 is None or bike_ride_s2 is None:\n print('neutral')\n\nelif bike_ride_s1 <= bike_ride_s2:\n print('Entailment')\n\nelif bike_ride_s1 != bike_ride_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The distance between Delhi and Mathura is less than 650 kms, \"statement 2\" :The distance between Delhi and Mathura is 150 kms, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_between_Delhi_and_Mathura_s1 = None\ndistance_between_Delhi_and_Mathura_s2 = 150\n\nif distance_between_Delhi_and_Mathura_s1 is None or distance_between_Delhi_and_Mathura_s2 is None:\n print('neutral')\n\nelif distance_between_Delhi_and_Mathura_s1 == distance_between_Delhi_and_Mathura_s2:\n print('Entailment')\n\nelif distance_between_Delhi_and_Mathura_s1 != distance_between_Delhi_and_Mathura_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Vijay sells a cupboard at less than 84 % below cost price, \"statement 2\" :Vijay sells a cupboard at 14 % below cost price, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Vijay_sells_s1 = None\nVijay_sells_s2 = 14\n\nif Vijay_sells_s1 is None or Vijay_sells_s2 is None:\n print('neutral')\n\nelif Vijay_sells_s1 == Vijay_sells_s2:\n print('Entailment')\n\nelif Vijay_sells_s1 != Vijay_sells_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jerry \u2019 s average ( arithmetic mean ) score on the first 3 of 4 tests is 85, \"statement 2\" :Jerry \u2019 s average ( arithmetic mean ) score on the first less than 5 of 4 tests is 85, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jerry_average_s1 = 3,4\nJerry_average_s2 = 5,4\n\nif Jerry_average_s1 is None or Jerry_average_s2 is None:\n print('neutral')\n\nelif Jerry_average_s1 <= Jerry_average_s2:\n print('Entailment')\n\nelif Jerry_average_s1 != Jerry_average_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Klaudia can choose any two of four different candles and any 8 of 9 different flowers for a centerpiece arrangement, \"statement 2\" :Klaudia can choose any two of four different candles and any 4 of 9 different flowers for a centerpiece arrangement, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "candles_s1 = 8,9\ncandles_s2 = 4,9\n\nif candles_s1 is None or candles_s2 is None:\n print('neutral')\n\nelif candles_s1 == candles_s2:\n print('Entailment')\n\nelif candles_s1 != candles_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": less than 7750 from Anwar at 6 % p, \"statement 2\" :3750 from Anwar at 6 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Anwar_s1 = None\nAnwar_s2 = 3750\n\nif Anwar_s1 is None or Anwar_s2 is None:\n print('neutral')\n\nelif Anwar_s1 == Anwar_s2:\n print('Entailment')\n\nelif Anwar_s1 != Anwar_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": How many miles per hour must Carla drive on average to catch up to him in exactly 3 hours if she leaves 30 minutes after Richard ?, \"statement 2\" :How many miles per hour must Carla drive on average to catch up to him in exactly 5 hours if she leaves 30 minutes after Richard ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Carla_drive_s1 = 3\nCarla_drive_s2 = 5\n\nif Carla_drive_s1 is None or Carla_drive_s2 is None:\n print('neutral')\n\nelif Carla_drive_s1 == Carla_drive_s2:\n print('Entailment')\n\nelif Carla_drive_s1 != Carla_drive_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The total of the ages of Amar , Akbar and Anthony is 56 years, \"statement 2\" :The total of the ages of Amar , Akbar and Anthony is more than 56 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Amar_Akbar_Anthony_ages_s1 = 56\nAmar_Akbar_Anthony_ages_s2 = 56+1\n\nif Amar_Akbar_Anthony_ages_s1 is None or Amar_Akbar_Anthony_ages_s2 is None:\n print('neutral')\n\nelif Amar_Akbar_Anthony_ages_s1 == Amar_Akbar_Anthony_ages_s2:\n print('Entailment')\n\nelif Amar_Akbar_Anthony_ages_s1 != Amar_Akbar_Anthony_ages_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Shop Offered 32 % offer for every Shirt , Smith bought a shirt at Rs, \"statement 2\" :Shop Offered less than 52 % offer for every Shirt , Smith bought a shirt at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Shop_Offered_s1 = 32\nShop_Offered_s2 = 52\n\nif Shop_Offered_s1 is None or Shop_Offered_s2 is None:\n print('neutral')\n\nelif Shop_Offered_s1 <= Shop_Offered_s2:\n print('Entailment')\n\nelif Shop_Offered_s1 != Shop_Offered_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Suresh can complete a job in 15 hours, \"statement 2\" :Suresh can complete a job in less than 65 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nSuresh_complete_job_s1 = 15\nSuresh_complete_job_s2 = 65\n\nif Suresh_complete_job_s1 is None or Suresh_complete_job_s2 is None:\n print('neutral')\n\nelif Suresh_complete_job_s1 <= Suresh_complete_job_s2:\n print('Entailment')\n\nelif Suresh_complete_job_s1 != Suresh_complete_job_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In a group of 6 boys & 4 girls a Committee of 4 persons is to be formed, \"statement 2\" :In a group of 4 boys & 4 girls a Committee of 4 persons is to be formed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Boys_and_girls_s1 = 6,4\nBoys_and_girls_s2 = 4,4\n\nif Boys_and_girls_s1 is None or Boys_and_girls_s2 is None:\n print('neutral')\n\nelif Boys_and_girls_s1 == Boys_and_girls_s2:\n print('Entailment')\n\nelif Boys_and_girls_s1 != Boys_and_girls_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Ravina leaves the job 3 days before the completion of the work, \"statement 2\" :Ravina leaves the job 2 days before the completion of the work, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ravina_leaves_s1 = 3\nRavina_leaves_s2 = 2\n\nif Ravina_leaves_s1 is None or Ravina_leaves_s2 is None:\n print('neutral')\n\nelif Ravina_leaves_s1 == Ravina_leaves_s2:\n print('Entailment')\n\nelif Ravina_leaves_s1 != Ravina_leaves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sandy attempts 30 sums and obtains 50 marks, \"statement 2\" :Sandy attempts more than 30 sums and obtains 50 marks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sandy_attempts_s1 = 30\nSandy_attempts_s2 = 30+1\n\nif Sandy_attempts_s1 is None or Sandy_attempts_s2 is None:\n print('neutral')\n\nelif Sandy_attempts_s1 == Sandy_attempts_s2:\n print('Entailment')\n\nelif Sandy_attempts_s1 != Sandy_attempts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": From a group of 6 boys & 4 girls a Committee of 4 persons is to be formed, \"statement 2\" :From a group of 5 boys & 4 girls a Committee of 4 persons is to be formed, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Group_boy_girls_s1 = 6,4\nGroup_boy_girls_s2 = 5,4\n\nif Group_boy_girls_s1 is None or Group_boy_girls_s2 is None:\n print('neutral')\n\nelif Group_boy_girls_s1 == Group_boy_girls_s2:\n print('Entailment')\n\nelif Group_boy_girls_s1 != Group_boy_girls_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Joe had an average of 95 on his first 5 tests, \"statement 2\" :Joe had an average of 65 on his first 5 tests, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Joe_average_s1 = 95\nJoe_average_s2 = 65\n\nif Joe_average_s1 is None or Joe_average_s2 is None:\n print('neutral')\n\nelif Joe_average_s1 == Joe_average_s2:\n print('Entailment')\n\nelif Joe_average_s1 != Joe_average_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Vijay sells a cupboard at 16 % below cost price, \"statement 2\" :Vijay sells a cupboard at 56 % below cost price, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Vijay_sells_s1 = 16\nVijay_sells_s2 = 56\n\nif Vijay_sells_s1 is None or Vijay_sells_s2 is None:\n print('neutral')\n\nelif Vijay_sells_s1 == Vijay_sells_s2:\n print('Entailment')\n\nelif Vijay_sells_s1 != Vijay_sells_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": At a meeting of the 6 Joint Chiefs of Staff , the Chief of Naval Operations does not want to sit next to the Chief of the National Guard Bureau, \"statement 2\" :At a meeting of the less than 6 Joint Chiefs of Staff , the Chief of Naval Operations does not want to sit next to the Chief of the National Guard Bureau, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "meeting_s1 = 6\nmeeting_s2 = 6-1\n\nif meeting_s1 is None or meeting_s2 is None:\n print('neutral')\n\nelif meeting_s1 == meeting_s2:\n print('Entailment')\n\nelif meeting_s1 != meeting_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Jack ' s score was within less than 4 standard deviations of the mean , what is the lowest score he could have received ?, \"statement 2\" :If Jack ' s score was within 2 standard deviations of the mean , what is the lowest score he could have received ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jackscore_s1 = None\nJackscore_s2 = 2\n\nif Jackscore_s1 is None or Jackscore_s2 is None:\n print('neutral')\n\nelif Jackscore_s1 == Jackscore_s2:\n print('Entailment')\n\nelif Jackscore_s1 != Jackscore_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Jack ' s score was within 2 standard deviations of the mean , what is the lowest score he could have received ?, \"statement 2\" :If Jack ' s score was within less than 4 standard deviations of the mean , what is the lowest score he could have received ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jackscore_s1 = 2\nJackscore_s2 = 4\n\nif Jackscore_s1 is None or Jackscore_s2 is None:\n print('neutral')\n\nelif Jackscore_s1 <= Jackscore_s2:\n print('Entailment')\n\nelif Jackscore_s1 != Jackscore_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If gas costs $ 4 / gallon , then how many miles can Dan \u2019 s car go on $ 46 of gas ?, \"statement 2\" :If gas costs $ 1 / gallon , then how many miles can Dan \u2019 s car go on $ 46 of gas ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "gas_costs_s1 = 4\ngas_costs_s2 = 1\n\nif gas_costs_s1 is None or gas_costs_s2 is None:\n print('neutral')\n\nelif gas_costs_s1 == gas_costs_s2:\n print('Entailment')\n\nelif gas_costs_s1 != gas_costs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The distance between their homes is 52 kilometers , Sandy ' s walking speed is 6 km / h , and Ed ' s walking speed is 4 km / h, \"statement 2\" :The distance between their homes is more than 32 kilometers , Sandy ' s walking speed is 6 km / h , and Ed ' s walking speed is 4 km / h, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\ndistance_between_homes_s1 = 52\ndistance_between_homes_s2 = 32\n\nif distance_between_homes_s1 is None or distance_between_homes_s2 is None:\n print('neutral')\n\nelif distance_between_homes_s1 >= distance_between_homes_s2:\n print('Entailment')\n\nelif distance_between_homes_s1 != distance_between_homes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": for Mathura and B starts from Mathura with a speed of 40 kmph at 6 p, \"statement 2\" :for Mathura and B starts from Mathura with a speed of more than 10 kmph at 6 p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "speed_s1 = 40\nspeed_s2 = 10\n\nif speed_s1 is None or speed_s2 is None:\n print('neutral')\n\nelif speed_s1 >= speed_s2:\n print('Entailment')\n\nelif speed_s1 != speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If there are less than 64 more FGH supermarkets in the US than in Canada , how many FGH supermarkets are there in the US ?, \"statement 2\" :If there are 14 more FGH supermarkets in the US than in Canada , how many FGH supermarkets are there in the US ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "supermarkets_s1 = None\nsupermarkets_s2 = 14\n\nif supermarkets_s1 is None or supermarkets_s2 is None:\n print('neutral')\n\nelif supermarkets_s1 == supermarkets_s2:\n print('Entailment')\n\nelif supermarkets_s1 != supermarkets_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The average number of shirts with Salman , Ambani and Dalmiya is 60 , if all of them reached a shopping mall in Delhi and purchased 5 shirts each of them then average number of shirt each of them now has, \"statement 2\" :The average number of shirts with Salman , Ambani and Dalmiya is less than 60 , if all of them reached a shopping mall in Delhi and purchased 5 shirts each of them then average number of shirt each of them now has, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_number_shirts_s1 = 60\naverage_number_shirts_s2 = 60-1\n\nif average_number_shirts_s1 is None or average_number_shirts_s2 is None:\n print('neutral')\n\nelif average_number_shirts_s1 == average_number_shirts_s2:\n print('Entailment')\n\nelif average_number_shirts_s1 != average_number_shirts_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": A train travels from Albany to Syracuse , a distance of less than 700 miles , at the average rate of 50 miles per hour, \"statement 2\" :A train travels from Albany to Syracuse , a distance of 100 miles , at the average rate of 50 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_s1 = None\ndistance_s2 = 100\n\nif distance_s1 is None or distance_s2 is None:\n print('neutral')\n\nelif distance_s1 == distance_s2:\n print('Entailment')\n\nelif distance_s1 != distance_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Sanket finishes the race by clocking less than 35 minutes , how far was Suresh from the finish line when Sam must have finished the race ?, \"statement 2\" :If Sanket finishes the race by clocking 15 minutes , how far was Suresh from the finish line when Sam must have finished the race ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sanket_finishes_s1 = None\nSanket_finishes_s2 = 15\n\nif Sanket_finishes_s1 is None or Sanket_finishes_s2 is None:\n print('neutral')\n\nelif Sanket_finishes_s1 == Sanket_finishes_s2:\n print('Entailment')\n\nelif Sanket_finishes_s1 != Sanket_finishes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In a recent election , Geoff received 1 percent of the 6,000 votes cast, \"statement 2\" :In a recent election , Geoff received 8 percent of the 6,000 votes cast, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nGeoff_received_s1 = 1\nGeoff_received_s2 = 8\n\nif Geoff_received_s1 is None or Geoff_received_s2 is None:\n print('neutral')\n\nelif Geoff_received_s1 == Geoff_received_s2:\n print('Entailment')\n\nelif Geoff_received_s1 != Geoff_received_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Ayesha ' s father was 58 years of age when she was born while her mother was 42 years old when her brother four years younger to her was born, \"statement 2\" :Ayesha ' s father was more than 48 years of age when she was born while her mother was 42 years old when her brother four years younger to her was born, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ayesha_father_age_s1 = 58\nAyesha_father_age_s2 = 48\n\nif Ayesha_father_age_s1 is None or Ayesha_father_age_s2 is None:\n print('neutral')\n\nelif Ayesha_father_age_s1 >= Ayesha_father_age_s2:\n print('Entailment')\n\nelif Ayesha_father_age_s1 != Ayesha_father_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": 90 students represent x percent of the boys at Jones Elementary School, \"statement 2\" :more than 30 students represent x percent of the boys at Jones Elementary School, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "represent_boy_s1 = 90\nrepresent_boy_s2 = 30\n\nif represent_boy_s1 is None or represent_boy_s2 is None:\n print('neutral')\n\nelif represent_boy_s1 >= represent_boy_s2:\n print('Entailment')\n\nelif represent_boy_s1 != represent_boy_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Gary had an average score of 70 on his first four quizzes, \"statement 2\" :Gary had an average score of less than 70 on his first four quizzes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_score_s1 = 70\naverage_score_s2 = 70-1\n\nif average_score_s1 is None or average_score_s2 is None:\n print('neutral')\n\nelif average_score_s1 == average_score_s2:\n print('Entailment')\n\nelif average_score_s1 != average_score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": An amount of money is to be divided between Ram , Raja and Rahim in the ratio of 1 : 4 : 10, \"statement 2\" :An amount of money is to be divided between Ram , Raja and Rahim in the ratio of less than 5 : 4 : 10, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "money_divided_s1 = 2.5\nmoney_divided_s2 = 12.5\n\nif money_divided_s1 is None or money_divided_s2 is None:\n print('neutral')\n\nelif money_divided_s1 <= money_divided_s2:\n print('Entailment')\n\nelif money_divided_s1 != money_divided_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Molly can do a task in less than 70 days while Sandy can do the task in 30 days, \"statement 2\" :Molly can do a task in 10 days while Sandy can do the task in 30 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nMolly_can_do_task_s1 = None\nMolly_can_do_task_s2 = 10\n\nif Molly_can_do_task_s1 is None or Molly_can_do_task_s2 is None:\n print('neutral')\n\nelif Molly_can_do_task_s1 == Molly_can_do_task_s2:\n print('Entailment')\n\nelif Molly_can_do_task_s1 != Molly_can_do_task_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Albert is less than 6 times Mary \u2019 s age and 4 times as old as Betty, \"statement 2\" :Albert is 2 times Mary \u2019 s age and 4 times as old as Betty, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Albert_s1 = None\nAlbert_s2 = 2\n\nif Albert_s1 is None or Albert_s2 is None:\n print('neutral')\n\nelif Albert_s1 == Albert_s2:\n print('Entailment')\n\nelif Albert_s1 != Albert_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If today in the morning Lally makes a payment of $ more than 3 , for how many days , including today , will she be connected to the internet without any additional payments , given her initial balance was $ 0 ?, \"statement 2\" :If today in the morning Lally makes a payment of $ 7 , for how many days , including today , will she be connected to the internet without any additional payments , given her initial balance was $ 0 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Lally_makes_payment_s1 = None\nLally_makes_payment_s2 = 7\n\nif Lally_makes_payment_s1 is None or Lally_makes_payment_s2 is None:\n print('neutral')\n\nelif Lally_makes_payment_s1 == Lally_makes_payment_s2:\n print('Entailment')\n\nelif Lally_makes_payment_s1 != Lally_makes_payment_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Matt and Peter can do together a piece of work in less than 70 days, \"statement 2\" :Matt and Peter can do together a piece of work in 20 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Matt_and_Peter_work_s1 = None\nMatt_and_Peter_work_s2 = 20\n\nif Matt_and_Peter_work_s1 is None or Matt_and_Peter_work_s2 is None:\n print('neutral')\n\nelif Matt_and_Peter_work_s1 == Matt_and_Peter_work_s2:\n print('Entailment')\n\nelif Matt_and_Peter_work_s1 != Matt_and_Peter_work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Shop Offered less than 52 % offer for every Shirt , Smith bought a shirt at Rs, \"statement 2\" :Shop Offered 32 % offer for every Shirt , Smith bought a shirt at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Shop_Offered_s1 = None\nShop_Offered_s2 = 32\n\nif Shop_Offered_s1 is None or Shop_Offered_s2 is None:\n print('neutral')\n\nelif Shop_Offered_s1 == Shop_Offered_s2:\n print('Entailment')\n\nelif Shop_Offered_s1 != Shop_Offered_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The distance between Delhi and Mathura is 150 kms, \"statement 2\" :The distance between Delhi and Mathura is 450 kms, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_between_Delhi_and_Mathura_s1 = 150\ndistance_between_Delhi_and_Mathura_s2 = 450\n\nif distance_between_Delhi_and_Mathura_s1 is None or distance_between_Delhi_and_Mathura_s2 is None:\n print('neutral')\n\nelif distance_between_Delhi_and_Mathura_s1 == distance_between_Delhi_and_Mathura_s2:\n print('Entailment')\n\nelif distance_between_Delhi_and_Mathura_s1 != distance_between_Delhi_and_Mathura_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Lally ' s internet provider offers unlimited traffic which costs $ 0.5 per day charged off at 12 a, \"statement 2\" :Lally ' s internet provider offers unlimited traffic which costs $ 0.5 per day charged off at 32 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "unlimited_traffic_cost_s1 = 12\nunlimited_traffic_cost_s2 = 32\n\nif unlimited_traffic_cost_s1 is None or unlimited_traffic_cost_s2 is None:\n print('neutral')\n\nelif unlimited_traffic_cost_s1 == unlimited_traffic_cost_s2:\n print('Entailment')\n\nelif unlimited_traffic_cost_s1 != unlimited_traffic_cost_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Raman mixed less than 44 kg of butter at Rs, \"statement 2\" :Raman mixed 34 kg of butter at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Raman_mixed_s1 = None\nRaman_mixed_s2 = 34\n\nif Raman_mixed_s1 is None or Raman_mixed_s2 is None:\n print('neutral')\n\nelif Raman_mixed_s1 == Raman_mixed_s2:\n print('Entailment')\n\nelif Raman_mixed_s1 != Raman_mixed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Matt has twuenty iron coins and thuenty copper coins , how many different sums from 1 \u00a2 to 140 \u00a2 can he make with a combination of his coins ?, \"statement 2\" :If Matt has twuenty iron coins and thuenty copper coins , how many different sums from 2 \u00a2 to 140 \u00a2 can he make with a combination of his coins ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Matt_coin_s1 = 1,140\nMatt_coin_s2 = 2,140\n\nif Matt_coin_s1 is None or Matt_coin_s2 is None:\n print('neutral')\n\nelif Matt_coin_s1 == Matt_coin_s2:\n print('Entailment')\n\nelif Matt_coin_s1 != Matt_coin_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The product of all the possible units digits of Sophie Germain primes greater than more than 2 is, \"statement 2\" :The product of all the possible units digits of Sophie Germain primes greater than 6 is, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sophie_Germain_primes_s1 = None\nSophie_Germain_primes_s2 = 6\n\nif Sophie_Germain_primes_s1 is None or Sophie_Germain_primes_s2 is None:\n print('neutral')\n\nelif Sophie_Germain_primes_s1 == Sophie_Germain_primes_s2:\n print('Entailment')\n\nelif Sophie_Germain_primes_s1 != Sophie_Germain_primes_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": A train leaves Delhi at more than 1 a, \"statement 2\" :A train leaves Delhi at 9 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "train_leaves_s1 = None\ntrain_leaves_s2 = 9\n\nif train_leaves_s1 is None or train_leaves_s2 is None:\n print('neutral')\n\nelif train_leaves_s1 == train_leaves_s2:\n print('Entailment')\n\nelif train_leaves_s1 != train_leaves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sony and Johnny caught 25 fishes, \"statement 2\" :Sony and Johnny caught less than 75 fishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "caught_fish_s1 = 25\ncaught_fish_s2 = 75\n\nif caught_fish_s1 is None or caught_fish_s2 is None:\n print('neutral')\n\nelif caught_fish_s1 <= caught_fish_s2:\n print('Entailment')\n\nelif caught_fish_s1 != caught_fish_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": While driving from City A to City B , Glen drives at a constant speed of 40 miles per hour, \"statement 2\" :While driving from City A to City B , Glen drives at a constant speed of 50 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Glen_drives_s1 = 40\nGlen_drives_s2 = 50\n\nif Glen_drives_s1 is None or Glen_drives_s2 is None:\n print('neutral')\n\nelif Glen_drives_s1 == Glen_drives_s2:\n print('Entailment')\n\nelif Glen_drives_s1 != Glen_drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If there are 320 baseball fans in the town , each of whom is a fan of exactly one of those three teams , how many NY Mets fans are there in this town ?, \"statement 2\" :If there are less than 720 baseball fans in the town , each of whom is a fan of exactly one of those three teams , how many NY Mets fans are there in this town ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "baseball_fans_s1 = 320\nbaseball_fans_s2 = 720\n\nif baseball_fans_s1 is None or baseball_fans_s2 is None:\n print('neutral')\n\nelif baseball_fans_s1 == baseball_fans_s2:\n print('Entailment')\n\nelif baseball_fans_s1 != baseball_fans_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Carina has less than 815 ounces of coffee divided into 5 - and 10 - ounce packages, \"statement 2\" :Carina has 115 ounces of coffee divided into 5 - and 10 - ounce packages, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ounces_of_coffee_s1 = None\nounces_of_coffee_s2 = 115\n\nif ounces_of_coffee_s1 is None or ounces_of_coffee_s2 is None:\n print('neutral')\n\nelif ounces_of_coffee_s1 == ounces_of_coffee_s2:\n print('Entailment')\n\nelif ounces_of_coffee_s1 != ounces_of_coffee_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Lindy runs at a constant speed of 9 feet per second from Christina to Jack , back to Christina , back to Jack , and so forth, \"statement 2\" :Lindy runs at a constant speed of more than 4 feet per second from Christina to Jack , back to Christina , back to Jack , and so forth, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Lindy_runs_s1 = 9\nLindy_runs_s2 = 4\n\nif Lindy_runs_s1 is None or Lindy_runs_s2 is None:\n print('neutral')\n\nelif Lindy_runs_s1 >= Lindy_runs_s2:\n print('Entailment')\n\nelif Lindy_runs_s1 != Lindy_runs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": What is the ratio of Arun ' s monthly income in the year 2006 , Suman ' s monthly income in the year 2007 and Jyothi ' s monthly income in the year 2005 ?, \"statement 2\" :What is the ratio of Arun ' s monthly income in the year less than 6006 , Suman ' s monthly income in the year 2007 and Jyothi ' s monthly income in the year 2005 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nArun_monthly_income_s1 = 2006\nArun_monthly_income_s2 = 6006\n\nif Arun_monthly_income_s1 is None or Arun_monthly_income_s2 is None:\n print('neutral')\n\nelif Arun_monthly_income_s1 <= Arun_monthly_income_s2:\n print('Entailment')\n\nelif Arun_monthly_income_s1 != Arun_monthly_income_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": All of them started to work together but Rashmi leaves after less than 8 days, \"statement 2\" :All of them started to work together but Rashmi leaves after 4 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Rashmi_leaves_s1 = None\nRashmi_leaves_s2 = 4\n\nif Rashmi_leaves_s1 is None or Rashmi_leaves_s2 is None:\n print('neutral')\n\nelif Rashmi_leaves_s1 == Rashmi_leaves_s2:\n print('Entailment')\n\nelif Rashmi_leaves_s1 != Rashmi_leaves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If the boys at Jones Elementary make up more than 30 % of the total school population of x students , what is x ?, \"statement 2\" :If the boys at Jones Elementary make up 50 % of the total school population of x students , what is x ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jones_Elementary_s1 = 30\nJones_Elementary_s2 = 50\n\nif Jones_Elementary_s1 is None or Jones_Elementary_s2 is None:\n print('neutral')\n\nelif Jones_Elementary_s1 == Jones_Elementary_s2:\n print('Entailment')\n\nelif Jones_Elementary_s1 != Jones_Elementary_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Andrew purchased 6 kg of grapes at the rate of 74 per kg and 9 kg of mangoes at the rate of 59 per kg, \"statement 2\" :Andrew purchased less than 7 kg of grapes at the rate of 74 per kg and 9 kg of mangoes at the rate of 59 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Andrew_purchased_s1 = 6\nAndrew_purchased_s2 = 7-1\n\nif Andrew_purchased_s1 is None or Andrew_purchased_s2 is None:\n print('neutral')\n\nelif Andrew_purchased_s1 == Andrew_purchased_s2:\n print('Entailment')\n\nelif Andrew_purchased_s1 != Andrew_purchased_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Quarters ( US $ 0.25 ) are stacked in 18 columns, \"statement 2\" :Quarters ( US $ 0.25 ) are stacked in less than 58 columns, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stacked_columns_s1 = 18\nstacked_columns_s2 = 58\n\nif stacked_columns_s1 is None or stacked_columns_s2 is None:\n print('neutral')\n\nelif stacked_columns_s1 <= stacked_columns_s2:\n print('Entailment')\n\nelif stacked_columns_s1 != stacked_columns_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sony and Johnny caught less than 75 fishes, \"statement 2\" :Sony and Johnny caught 25 fishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "caught_fish_s1 = None\ncaught_fish_s2 = 25\n\nif caught_fish_s1 is None or caught_fish_s2 is None:\n print('neutral')\n\nelif caught_fish_s1 <= caught_fish_s2:\n print('Entailment')\n\nelif caught_fish_s1 != caught_fish_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": During a car trip , Maria stopped to rest after she traveled less than 2 / 2 of the total distance to her destination, \"statement 2\" :During a car trip , Maria stopped to rest after she traveled 1 / 2 of the total distance to her destination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Maria_traveled_s1 = None\nMaria_traveled_s2 = 1/2\n\nif Maria_traveled_s1 is None or Maria_traveled_s2 is None:\n print('neutral')\n\nelif Maria_traveled_s1 >= Maria_traveled_s2:\n print('Entailment')\n\nelif Maria_traveled_s1 != Maria_traveled_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jessica can text 75 words per minute , while Maurice can text 10 words per minute, \"statement 2\" :Jessica can text more than 35 words per minute , while Maurice can text 10 words per minute, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jessica_can_text_s1 = 75\nJessica_can_text_s2 = 35\n\nif Jessica_can_text_s1 is None or Jessica_can_text_s2 is None:\n print('neutral')\n\nelif Jessica_can_text_s1 >= Jessica_can_text_s2:\n print('Entailment')\n\nelif Jessica_can_text_s1 != Jessica_can_text_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Susan , Daisy and Tim need to be seated in less than 5 identical chairs in straight line so that Susan is seated always left to Tim, \"statement 2\" :Susan , Daisy and Tim need to be seated in 3 identical chairs in straight line so that Susan is seated always left to Tim, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "seated_s1 = None\nseated_s2 = 3\n\nif seated_s1 is None or seated_s2 is None:\n print('neutral')\n\nelif seated_s1 == seated_s2:\n print('Entailment')\n\nelif seated_s1 != seated_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": At a bank , the service charges for transactions were US Dollar less than 3 for every 5 transactions, \"statement 2\" :At a bank , the service charges for transactions were US Dollar 1 for every 5 transactions, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Service_charges_for_transactions_s1 = None\nService_charges_for_transactions_s2 = 5\n\nif Service_charges_for_transactions_s1 is None or Service_charges_for_transactions_s2 is None:\n print('neutral')\n\nelif Service_charges_for_transactions_s1 == Service_charges_for_transactions_s2:\n print('Entailment')\n\nelif Service_charges_for_transactions_s1 != Service_charges_for_transactions_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In a 100 m sprint race Kelly was given a 3 m head start by Abel, \"statement 2\" :In a less than 200 m sprint race Kelly was given a 3 m head start by Abel, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sprint_race_Kelly_s1 = 100\nsprint_race_Kelly_s2 = 200\n\nif sprint_race_Kelly_s1 is None or sprint_race_Kelly_s2 is None:\n print('neutral')\n\nelif sprint_race_Kelly_s1 <= sprint_race_Kelly_s2:\n print('Entailment')\n\nelif sprint_race_Kelly_s1 != sprint_race_Kelly_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Lary received $ more than 200 more than Terry did , what was the profit made by their business in that year ?, \"statement 2\" :If Lary received $ 800 more than Terry did , what was the profit made by their business in that year ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Lary_received_s1 = None\nLary_received_s2 = 800\n\nif Lary_received_s1 is None or Lary_received_s2 is None:\n print('neutral')\n\nelif Lary_received_s1 == Lary_received_s2:\n print('Entailment')\n\nelif Lary_received_s1 != Lary_received_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Albert is 2 times Mary \u2019 s age and 4 times as old as Betty, \"statement 2\" :Albert is less than 5 times Mary \u2019 s age and 4 times as old as Betty, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Albert_years_s1 = 2\nAlbert_years_s2 = 5\n\nif Albert_years_s1 is None or Albert_years_s2 is None:\n print('neutral')\n\nelif Albert_years_s1 <= Albert_years_s2:\n print('Entailment')\n\nelif Albert_years_s1 != Albert_years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": 3750 from Anwar at 6 % p, \"statement 2\" :more than 3750 from Anwar at 6 % p, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Anwar_s1 = 3750\nAnwar_s2 = 3750+1\n\nif Anwar_s1 is None or Anwar_s2 is None:\n print('neutral')\n\nelif Anwar_s1 == Anwar_s2:\n print('Entailment')\n\nelif Anwar_s1 != Anwar_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Sanket finishes the race by clocking 15 minutes , how far was Suresh from the finish line when Sam must have finished the race ?, \"statement 2\" :If Sanket finishes the race by clocking less than 35 minutes , how far was Suresh from the finish line when Sam must have finished the race ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "race_by_clocking_s1 = 15\nrace_by_clocking_s2 = 35\n\nif race_by_clocking_s1 is None or race_by_clocking_s2 is None:\n print('neutral')\n\nelif race_by_clocking_s1 <= race_by_clocking_s2:\n print('Entailment')\n\nelif race_by_clocking_s1 != race_by_clocking_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is less than 7 : 3 , After 4 Years Rahul age will be 32 years, \"statement 2\" :Ratio between Rahul and Deepak is 4 : 3 , After 4 Years Rahul age will be 32 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ratio_between_Rahul_and_Deepak_s1 = None\nRatio_between_Rahul_and_Deepak_s2 = 4/3\n\nif Ratio_between_Rahul_and_Deepak_s1 is None or Ratio_between_Rahul_and_Deepak_s2 is None:\n print('neutral')\n\nelif Ratio_between_Rahul_and_Deepak_s1 == Ratio_between_Rahul_and_Deepak_s2:\n print('Entailment')\n\nelif Ratio_between_Rahul_and_Deepak_s1 != Ratio_between_Rahul_and_Deepak_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Today Roseline , who is less than 60 years old , and her daughter , who is 20 years old , celebrate their birthdays, \"statement 2\" :Today Roseline , who is 50 years old , and her daughter , who is 20 years old , celebrate their birthdays, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Today_Roseline_s1 = None\nToday_Roseline_s2 = 50\n\nif Today_Roseline_s1 is None or Today_Roseline_s2 is None:\n print('neutral')\n\nelif Today_Roseline_s1 == Today_Roseline_s2:\n print('Entailment')\n\nelif Today_Roseline_s1 != Today_Roseline_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": 120 , what is Thomas ' capital ?, \"statement 2\" :less than 120 , what is Thomas ' capital ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Thomas_capital_s1 = 120\nThomas_capital_s2 = 120-1\n\nif Thomas_capital_s1 is None or Thomas_capital_s2 is None:\n print('neutral')\n\nelif Thomas_capital_s1 == Thomas_capital_s2:\n print('Entailment')\n\nelif Thomas_capital_s1 != Thomas_capital_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Calculate Rebecca ' s average score in an exam if she obtained the following marks 70 , 57 , 69 , 89 and 85 out of 100 in different subjects ., \"statement 2\" :Calculate Rebecca ' s average score in an exam if she obtained the following marks more than 10 , 57 , 69 , 89 and 85 out of 100 in different subjects ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Rebecca_score_s1 = 70,57,69,89,85\nRebecca_score_s2 = 10,57,69,89,85\n\nif Rebecca_score_s1 is None or Rebecca_score_s2 is None:\n print('neutral')\n\nelif Rebecca_score_s1 >= Rebecca_score_s2:\n print('Entailment')\n\nelif Rebecca_score_s1 != Rebecca_score_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": How many different combinations of 3 passengers can be formed from John ' s 6 friends ?, \"statement 2\" :How many different combinations of less than 8 passengers can be formed from John ' s 6 friends ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "passengers_s1 = 3\npassengers_s2 = 8\n\nif passengers_s1 is None or passengers_s2 is None:\n print('neutral')\n\nelif passengers_s1 <= passengers_s2:\n print('Entailment')\n\nelif passengers_s1 != passengers_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": A starts from Delhi with a speed of less than 30 kmph at 7 a, \"statement 2\" :A starts from Delhi with a speed of 20 kmph at 7 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Speed_of_A_s1 = None\nSpeed_of_A_s2 = 20\n\nif Speed_of_A_s1 is None or Speed_of_A_s2 is None:\n print('neutral')\n\nelif Speed_of_A_s1 == Speed_of_A_s2:\n print('Entailment')\n\nelif Speed_of_A_s1 != Speed_of_A_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Dana gives her parents less than 6 % of that amount back each month , how much will she still owe her parents after four years of college ?, \"statement 2\" :If Dana gives her parents 2 % of that amount back each month , how much will she still owe her parents after four years of college ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dana_gives_her_parents_s1 = None\nDana_gives_her_parents_s2 = 2\n\nif Dana_gives_her_parents_s1 is None or Dana_gives_her_parents_s2 is None:\n print('neutral')\n\nelif Dana_gives_her_parents_s1 == Dana_gives_her_parents_s2:\n print('Entailment')\n\nelif Dana_gives_her_parents_s1 != Dana_gives_her_parents_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Triangle STV has sides ST = TV = 25 , and SV = 14, \"statement 2\" :Triangle STV has sides ST = TV = less than 85 , and SV = 14, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "STTV_s1 = 25\nSTTV_s2 = 85\n\nif STTV_s1 is None or STTV_s2 is None:\n print('neutral')\n\nelif STTV_s1 <= STTV_s2:\n print('Entailment')\n\nelif STTV_s1 != STTV_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The ratio between the number of sheep and the number of horses at the Stewart farm is 3 to 7 , If each horse is fed 230 ounces of horse food per day and the farm needs a total 12,880 ounces of horse food per day , what is the number of sheep in the farm ?, \"statement 2\" :The ratio between the number of sheep and the number of horses at the Stewart farm is less than 4 to 7 , If each horse is fed 230 ounces of horse food per day and the farm needs a total 12,880 ounces of horse food per day , what is the number of sheep in the farm ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nratio_between_sheep_Number_of_horse_s1 = 3,7\nratio_between_sheep_Number_of_horse_s2 = 4,7\n\nif ratio_between_sheep_Number_of_horse_s1 is None or ratio_between_sheep_Number_of_horse_s2 is None:\n print('neutral')\n\nelif ratio_between_sheep_Number_of_horse_s1 <= ratio_between_sheep_Number_of_horse_s2:\n print('Entailment')\n\nelif ratio_between_sheep_Number_of_horse_s1 != ratio_between_sheep_Number_of_horse_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In the biology lab of ` ` Jefferson ' ' High School there are 0.037 * less than 30 ^ 5 germs , equally divided among 74000 * 10 ^ ( - 3 ) Petri dishes, \"statement 2\" :In the biology lab of ` ` Jefferson ' ' High School there are 0.037 * 10 ^ 5 germs , equally divided among 74000 * 10 ^ ( - 3 ) Petri dishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Germs_in_school_s1 = None\nGerms_in_school_s2 = 3700\n\nif Germs_in_school_s1 is None or Germs_in_school_s2 is None:\n print('neutral')\n\nelif Germs_in_school_s1 == Germs_in_school_s2:\n print('Entailment')\n\nelif Germs_in_school_s1 != Germs_in_school_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In the biology lab of ` ` Jefferson ' ' High School there are 0.037 * 10 ^ 5 germs , equally divided among 74000 * 10 ^ ( - 3 ) Petri dishes, \"statement 2\" :In the biology lab of ` ` Jefferson ' ' High School there are 0.037 * less than 30 ^ 5 germs , equally divided among 74000 * 10 ^ ( - 3 ) Petri dishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Germs_in_school_s1 = 3700\nGerms_in_school_s2 = 899100\n\nif Germs_in_school_s1 is None or Germs_in_school_s2 is None:\n print('neutral')\n\nelif Germs_in_school_s1 <= Germs_in_school_s2:\n print('Entailment')\n\nelif Germs_in_school_s1 != Germs_in_school_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": After 6 years , Arun ' s age will be 26 years, \"statement 2\" :After more than 2 years , Arun ' s age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nArun_Years_s1 = 6\nArun_Years_s2 = 2\n\nif Arun_Years_s1 is None or Arun_Years_s2 is None:\n print('neutral')\n\nelif Arun_Years_s1 >= Arun_Years_s2:\n print('Entailment')\n\nelif Arun_Years_s1 != Arun_Years_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In an exam , Libi scored 78 percent , Nibi scored 75 percent and Catherine 85 percent, \"statement 2\" :In an exam , Libi scored 48 percent , Nibi scored 75 percent and Catherine 85 percent, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nLibi_scored_s1 = 78\nLibi_scored_s2 = 48\n\nif Libi_scored_s1 is None or Libi_scored_s2 is None:\n print('neutral')\n\nelif Libi_scored_s1 == Libi_scored_s2:\n print('Entailment')\n\nelif Libi_scored_s1 != Libi_scored_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": When Banu reached the goal post Esha was 10 m behind, \"statement 2\" :When Banu reached the goal post Esha was 30 m behind, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Banu_reached_s1 = 10\nBanu_reached_s2 = 30\n\nif Banu_reached_s1 is None or Banu_reached_s2 is None:\n print('neutral')\n\nelif Banu_reached_s1 == Banu_reached_s2:\n print('Entailment')\n\nelif Banu_reached_s1 != Banu_reached_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The ages of Nishi and vinnee are in the ratio of 6 : 5 respectively, \"statement 2\" :The ages of Nishi and vinnee are in the ratio of 2 : 5 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ages_of_Nishi_and_vinnee_s1 = 6/5\nAges_of_Nishi_and_vinnee_s2 = 2/5\n\nif Ages_of_Nishi_and_vinnee_s1 is None or Ages_of_Nishi_and_vinnee_s2 is None:\n print('neutral')\n\nelif Ages_of_Nishi_and_vinnee_s1 == Ages_of_Nishi_and_vinnee_s2:\n print('Entailment')\n\nelif Ages_of_Nishi_and_vinnee_s1 != Ages_of_Nishi_and_vinnee_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Matt has twuenty iron coins and thuenty copper coins , how many different sums from 1 \u00a2 to 140 \u00a2 can he make with a combination of his coins ?, \"statement 2\" :If Matt has twuenty iron coins and thuenty copper coins , how many different sums from less than 7 \u00a2 to 140 \u00a2 can he make with a combination of his coins ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Matt_coins_s1 = 1,140\nMatt_coins_s2 = 7,140\n\nif Matt_coins_s1 is None or Matt_coins_s2 is None:\n print('neutral')\n\nelif Matt_coins_s1 <= Matt_coins_s2:\n print('Entailment')\n\nelif Matt_coins_s1 != Matt_coins_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Lindy runs at a constant speed of 9 feet per second from Christina to Jack , back to Christina , back to Jack , and so forth, \"statement 2\" :Lindy runs at a constant speed of 6 feet per second from Christina to Jack , back to Christina , back to Jack , and so forth, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Lindy_runs_s1 = 9\nLindy_runs_s2 = 6\n\nif Lindy_runs_s1 is None or Lindy_runs_s2 is None:\n print('neutral')\n\nelif Lindy_runs_s1 == Lindy_runs_s2:\n print('Entailment')\n\nelif Lindy_runs_s1 != Lindy_runs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": 120 , what is Thomas ' capital ?, \"statement 2\" :less than 720 , what is Thomas ' capital ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Thomas_capital_s1 = 120\nThomas_capital_s2 = 720\n\nif Thomas_capital_s1 is None or Thomas_capital_s2 is None:\n print('neutral')\n\nelif Thomas_capital_s1 == Thomas_capital_s2:\n print('Entailment')\n\nelif Thomas_capital_s1 != Thomas_capital_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": City A to city B , John drove for 1 hour at 40 mph and for 3 hours at 60 mph, \"statement 2\" :City A to city B , John drove for less than 1 hour at 40 mph and for 3 hours at 60 mph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "John_drove_s1 = 1\nJohn_drove_s2 = 1-1\n\nif John_drove_s1 is None or John_drove_s2 is None:\n print('neutral')\n\nelif John_drove_s1 == John_drove_s2:\n print('Entailment')\n\nelif John_drove_s1 != John_drove_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Alok ordered 16 chapatis , 5 plates of rice , 7 plates of mixed vegetable and 6 ice - cream cups, \"statement 2\" :Alok ordered 86 chapatis , 5 plates of rice , 7 plates of mixed vegetable and 6 ice - cream cups, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Alok_ordered_chapatis_s1 = 16\nAlok_ordered_chapatis_s2 = 86\n\nif Alok_ordered_chapatis_s1 is None or Alok_ordered_chapatis_s2 is None:\n print('neutral')\n\nelif Alok_ordered_chapatis_s1 == Alok_ordered_chapatis_s2:\n print('Entailment')\n\nelif Alok_ordered_chapatis_s1 != Alok_ordered_chapatis_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": When Anusha reached the goal post , Banu was 10 m behind, \"statement 2\" :When Anusha reached the goal post , Banu was less than 30 m behind, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Anusha_reached_s1 = 10\nAnusha_reached_s2 = 30\n\nif Anusha_reached_s1 is None or Anusha_reached_s2 is None:\n print('neutral')\n\nelif Anusha_reached_s1 <= Anusha_reached_s2:\n print('Entailment')\n\nelif Anusha_reached_s1 != Anusha_reached_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": It takes John exactly less than 65 minutes to rake a lawn and it takes his son Todd exactly 30 minutes to rake the same lawn, \"statement 2\" :It takes John exactly 15 minutes to rake a lawn and it takes his son Todd exactly 30 minutes to rake the same lawn, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "John_s1 = 65\nJohn_s2 = 15\n\nif John_s1 is None or John_s2 is None:\n print('neutral')\n\nelif John_s1 == John_s2:\n print('Entailment')\n\nelif John_s1 != John_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Suresh works for 9 hours and then the remaining job is completed by Ashutosh, \"statement 2\" :Suresh works for less than 9 hours and then the remaining job is completed by Ashutosh, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Suresh_works_s1 = 9\nSuresh_works_s2 = 9-1\n\nif Suresh_works_s1 is None or Suresh_works_s2 is None:\n print('neutral')\n\nelif Suresh_works_s1 == Suresh_works_s2:\n print('Entailment')\n\nelif Suresh_works_s1 != Suresh_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Exactly 5 / 7 of the ponies have horseshoes , and exactly 2 / 3 of the ponies with horseshoes are from Iceland, \"statement 2\" :Exactly 2 / 7 of the ponies have horseshoes , and exactly 2 / 3 of the ponies with horseshoes are from Iceland, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ponies_have_horseshoes_s1 = 5/7\nponies_have_horseshoes_s2 = 2/7\n\nif ponies_have_horseshoes_s1 is None or ponies_have_horseshoes_s2 is None:\n print('neutral')\n\nelif ponies_have_horseshoes_s1 == ponies_have_horseshoes_s2:\n print('Entailment')\n\nelif ponies_have_horseshoes_s1 != ponies_have_horseshoes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Susan weighs less than 80 pounds more than Anna does , and together they weigh a total of 160 pounds, \"statement 2\" :Susan weighs 20 pounds more than Anna does , and together they weigh a total of 160 pounds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Susan_weighs_s1 = None\nSusan_weighs_s2 = 20\n\nif Susan_weighs_s1 is None or Susan_weighs_s2 is None:\n print('neutral')\nelif Susan_weighs_s1 == Susan_weighs_s2:\n print('Entailment')\n\nelif Susan_weighs_s1 != Susan_weighs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Patrick has a locker with a 3 number combination, \"statement 2\" :Patrick has a locker with a more than 3 number combination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Patrick_Locker_s1 = 3\nPatrick_Locker_s2 = 3+1\n\nif Patrick_Locker_s1 is None or Patrick_Locker_s2 is None:\n print('neutral')\n\nelif Patrick_Locker_s1 == Patrick_Locker_s2:\n print('Entailment')\n\nelif Patrick_Locker_s1 != Patrick_Locker_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If 41 people have visited both Iceland and Norway , how many people have visited neither country ?, \"statement 2\" :If 11 people have visited both Iceland and Norway , how many people have visited neither country ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Visited_Iceland_and_Norway_s1 = 41\nVisited_Iceland_and_Norway_s2 = 11\n\nif Visited_Iceland_and_Norway_s1 is None or Visited_Iceland_and_Norway_s2 is None:\n print('neutral')\n\nelif Visited_Iceland_and_Norway_s1 == Visited_Iceland_and_Norway_s2:\n print('Entailment')\n\nelif Visited_Iceland_and_Norway_s1 != Visited_Iceland_and_Norway_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": When Professor Wang looked at the rosters for this term ' s classes , she saw that the roster for her economics class ( E ) had less than 76 names , the roster for her marketing class ( M ) had 26 , and the roster for her statistics class ( S ) had 18, \"statement 2\" :When Professor Wang looked at the rosters for this term ' s classes , she saw that the roster for her economics class ( E ) had 26 names , the roster for her marketing class ( M ) had 26 , and the roster for her statistics class ( S ) had 18, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Names_s1 = None\nNames_s2 = 26\n\nif Names_s1 is None or Names_s2 is None:\n print('neutral')\n\nelif Names_s1 == Names_s2:\n print('Entailment')\n\nelif Names_s1 != Names_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Faiza has 6 purses , she gives 3 purse as gift, \"statement 2\" :Faiza has more than 6 purses , she gives 3 purse as gift, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Faiza_purses_s1 = 6\nFaiza_purses_s2 = 6+1\n\nif Faiza_purses_s1 is None or Faiza_purses_s2 is None:\n print('neutral')\n\nelif Faiza_purses_s1 == Faiza_purses_s2:\n print('Entailment')\n\nelif Faiza_purses_s1 != Faiza_purses_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": A group of less than 8 friends \u2014 Archie , Betty , Jerry , Moose , and Veronica \u2014 arrived at the movie theater to see a movie, \"statement 2\" :A group of 5 friends \u2014 Archie , Betty , Jerry , Moose , and Veronica \u2014 arrived at the movie theater to see a movie, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "friends_in_group_s1 = None\nfriends_in_group_s2 = 5\n\nif friends_in_group_s1 is None or friends_in_group_s2 is None:\n print('neutral')\n\nelif friends_in_group_s1 == friends_in_group_s2:\n print('Entailment')\n\nelif friends_in_group_s1 != friends_in_group_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Shop Offered 32 % offer for every Shirt , Smith bought a shirt at Rs, \"statement 2\" :Shop Offered less than 32 % offer for every Shirt , Smith bought a shirt at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Shop_Offered_s1 = 32\nShop_Offered_s2 = 32-1\n\nif Shop_Offered_s1 is None or Shop_Offered_s2 is None:\n print('neutral')\n\nelif Shop_Offered_s1 == Shop_Offered_s2:\n print('Entailment')\n\nelif Shop_Offered_s1 != Shop_Offered_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jose joined him 2 months later , investing Rs, \"statement 2\" :Jose joined him 3 months later , investing Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jose_joined_s1 = 2\nJose_joined_s2 = 3\n\nif Jose_joined_s1 is None or Jose_joined_s2 is None:\n print('neutral')\n\nelif Jose_joined_s1 == Jose_joined_s2:\n print('Entailment')\n\nelif Jose_joined_s1 != Jose_joined_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": How many liters of blue paint must be added to less than 54 liters of Fuchsia to change it to Mauve paint ?, \"statement 2\" :How many liters of blue paint must be added to 24 liters of Fuchsia to change it to Mauve paint ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "blue_paint_s1 = None\nblue_paint_s2 = 24\n\nif blue_paint_s1 is None or blue_paint_s2 is None:\n print('neutral')\n\nelif blue_paint_s1 == blue_paint_s2:\n print('Entailment')\n\nelif blue_paint_s1 != blue_paint_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": At Veridux Corporation , there are 250 employees, \"statement 2\" :At Veridux Corporation , there are 750 employees, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "employees_s1 = 250\nemployees_s2 = 750\n\nif employees_s1 is None or employees_s2 is None:\n print('neutral')\n\nelif employees_s1 == employees_s2:\n print('Entailment')\n\nelif employees_s1 != employees_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jack walks in a straight line toward Christina at a constant speed of 4 feet per second and Christina walks in a straight line toward Jack at a constant speed of 5 feet per second, \"statement 2\" :Jack walks in a straight line toward Christina at a constant speed of 6 feet per second and Christina walks in a straight line toward Jack at a constant speed of 5 feet per second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Christina_speed_s1 = 4\nChristina_speed_s2 = 6\n\nif Christina_speed_s1 is None or Christina_speed_s2 is None:\n print('neutral')\n\nelif Christina_speed_s1 == Christina_speed_s2:\n print('Entailment')\n\nelif Christina_speed_s1 != Christina_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If there are less than 35 males altogether , how many gerbils does Claire have ?, \"statement 2\" :If there are 25 males altogether , how many gerbils does Claire have ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "males_altogether_s1 = None\nmales_altogether_s2 = 25\n\nif males_altogether_s1 is None or males_altogether_s2 is None:\n print('neutral')\n\nelif males_altogether_s1 == males_altogether_s2:\n print('Entailment')\n\nelif males_altogether_s1 != males_altogether_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The bank recently revised the charges to US Dollar 0.75 for every less than 7 transactions, \"statement 2\" :The bank recently revised the charges to US Dollar 0.75 for every 3 transactions, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "transactions_s1 = None\ntransactions_s2 = 3\n\nif transactions_s1 is None or transactions_s2 is None:\n print('neutral')\n\nelif transactions_s1 == transactions_s2:\n print('Entailment')\n\nelif transactions_s1 != transactions_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The average time of Izzy ' s past 3 100 - meter sprints is 15 seconds, \"statement 2\" :The average time of Izzy ' s past 6 100 - meter sprints is 15 seconds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_time_of_Izzy_s1 = 3100\naverage_time_of_Izzy_s2 = 6100\n\nif average_time_of_Izzy_s1 is None or average_time_of_Izzy_s2 is None:\n print('neutral')\n\nelif average_time_of_Izzy_s1 == average_time_of_Izzy_s2:\n print('Entailment')\n\nelif average_time_of_Izzy_s1 != average_time_of_Izzy_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Tanya is 25 % more efficient than Sakshi, \"statement 2\" :Tanya is less than 25 % more efficient than Sakshi, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Tanya_efficient_s1 = 25\nTanya_efficient_s2 = 25-1\n\nif Tanya_efficient_s1 is None or Tanya_efficient_s2 is None:\n print('neutral')\n\nelif Tanya_efficient_s1 == Tanya_efficient_s2:\n print('Entailment')\n\nelif Tanya_efficient_s1 != Tanya_efficient_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": City A to city B , John drove for less than 5 hour at 40 mph and for 3 hours at 60 mph, \"statement 2\" :City A to city B , John drove for 1 hour at 40 mph and for 3 hours at 60 mph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "John_drove_s1 = None\nJohn_drove_s2 = 1\n\nif John_drove_s1 is None or John_drove_s2 is None:\n print('neutral')\n\nelif John_drove_s1 == John_drove_s2:\n print('Entailment')\n\nelif John_drove_s1 != John_drove_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Albert \u2019 s monthly earnings rise by 27 % , he would earn $ 567, \"statement 2\" :If Albert \u2019 s monthly earnings rise by less than 87 % , he would earn $ 567, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Albert_monthly_earnings_s1 = 27\nAlbert_monthly_earnings_s2 = 87\n\nif Albert_monthly_earnings_s1 is None or Albert_monthly_earnings_s2 is None:\n print('neutral')\n\nelif Albert_monthly_earnings_s1 <= Albert_monthly_earnings_s2:\n print('Entailment')\n\nelif Albert_monthly_earnings_s1 != Albert_monthly_earnings_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Albert \u2019 s monthly earnings rise by 27 % , he would earn $ 567, \"statement 2\" :If Albert \u2019 s monthly earnings rise by 17 % , he would earn $ 567, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Albert_monthly_earnings_s1 = 27\nAlbert_monthly_earnings_s2 = 17\n\nif Albert_monthly_earnings_s1 is None or Albert_monthly_earnings_s2 is None:\n print('neutral')\n\nelif Albert_monthly_earnings_s1 == Albert_monthly_earnings_s2:\n print('Entailment')\n\nelif Albert_monthly_earnings_s1 != Albert_monthly_earnings_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Joe had an average of more than 35 on his first 5 tests, \"statement 2\" :Joe had an average of 95 on his first 5 tests, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Joe_average_s1 = None\nJoe_average_s2 = 95\n\nif Joe_average_s1 is None or Joe_average_s2 is None:\n print('neutral')\n\nelif Joe_average_s1 == Joe_average_s2:\n print('Entailment')\n\nelif Joe_average_s1 != Joe_average_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Patrick has a locker with a 3 number combination, \"statement 2\" :Patrick has a locker with a less than 8 number combination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Patrick_locker_s1 = 3\nPatrick_locker_s2 = 8\n\nif Patrick_locker_s1 is None or Patrick_locker_s2 is None:\n print('neutral')\n\nelif Patrick_locker_s1 <= Patrick_locker_s2:\n print('Entailment')\n\nelif Patrick_locker_s1 != Patrick_locker_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Alice drives at a constant speed of 30 km per hour, \"statement 2\" :Alice drives at a constant speed of less than 40 km per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Alice_drives_s1 = 30\nAlice_drives_s2 = 40\n\nif Alice_drives_s1 is None or Alice_drives_s2 is None:\n print('neutral')\n\nelif Alice_drives_s1 <= Alice_drives_s2:\n print('Entailment')\n\nelif Alice_drives_s1 != Alice_drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Faiza has more than 2 purses , she gives 3 purse as gift, \"statement 2\" :Faiza has 6 purses , she gives 3 purse as gift, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Faiza_purses_s1 = None\nFaiza_purses_s2 = 6\n\nif Faiza_purses_s1 is None or Faiza_purses_s2 is None:\n print('neutral')\n\nelif Faiza_purses_s1 == Faiza_purses_s2:\n print('Entailment')\n\nelif Faiza_purses_s1 != Faiza_purses_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Venki takes a trip and drives 5 hours from Town X to Town Z at a rate of 80 miles per hour, \"statement 2\" :Venki takes a trip and drives less than 7 hours from Town X to Town Z at a rate of 80 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Venki_drives_s1 = 5\nVenki_drives_s2 = 7\n\nif Venki_drives_s1 is None or Venki_drives_s2 is None:\n print('neutral')\n\nelif Venki_drives_s1 <= Venki_drives_s2:\n print('Entailment')\n\nelif Venki_drives_s1 != Venki_drives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": What is the minimum number of packages of Aero flight tees Bill must purchase to ensure that he has at least 10 golf tees for each member of his foursome , if he will buy no more than 3 packages of the generic golf tees ?, \"statement 2\" :What is the minimum number of packages of Aero flight tees Bill must purchase to ensure that he has at least 30 golf tees for each member of his foursome , if he will buy no more than 3 packages of the generic golf tees ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Bill_purchase_s1 = 10\nBill_purchase_s2 = 30\n\nif Bill_purchase_s1 is None or Bill_purchase_s2 is None:\n print('neutral')\n\nelif Bill_purchase_s1 == Bill_purchase_s2:\n print('Entailment')\n\nelif Bill_purchase_s1 != Bill_purchase_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": What is the ratio of Arun ' s monthly income in the year 2006 , Suman ' s monthly income in the year 2007 and Jyothi ' s monthly income in the year 2005 ?, \"statement 2\" :What is the ratio of Arun ' s monthly income in the year more than 2006 , Suman ' s monthly income in the year 2007 and Jyothi ' s monthly income in the year 2005 ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Arun_monthly_income_s1 = 2006\nArun_monthly_income_s2 = 2006+1\n\nif Arun_monthly_income_s1 is None or Arun_monthly_income_s2 is None:\n print('neutral')\n\nelif Arun_monthly_income_s1 == Arun_monthly_income_s2:\n print('Entailment')\n\nelif Arun_monthly_income_s1 != Arun_monthly_income_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Meg and Bob are among the more than 1 participants in a cycling race, \"statement 2\" :Meg and Bob are among the 4 participants in a cycling race, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "participants_s1 = None\nparticipants_s2 = 4\n\nif participants_s1 is None or participants_s2 is None:\n print('neutral')\n\nelif participants_s1 == participants_s2:\n print('Entailment')\n\nelif participants_s1 != participants_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Jerry wants to raise his average by less than 5 points , what score must he earn on the fourth test ?, \"statement 2\" :If Jerry wants to raise his average by 3 points , what score must he earn on the fourth test ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jerry_average_s1 = None\nJerry_average_s2 = 3\n\nif Jerry_average_s1 is None or Jerry_average_s2 is None:\n print('neutral')\n\nelif Jerry_average_s1 == Jerry_average_s2:\n print('Entailment')\n\nelif Jerry_average_s1 != Jerry_average_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": George ' s drawer has less than 20 loose black socks , 14 loose blue socks , and 8 loose white socks, \"statement 2\" :George ' s drawer has 10 loose black socks , 14 loose blue socks , and 8 loose white socks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "George_drawer_s1 = None\nGeorge_drawer_s2 = 10\n\nif George_drawer_s1 is None or George_drawer_s2 is None:\n print('neutral')\n\nelif George_drawer_s1 == George_drawer_s2:\n print('Entailment')\n\nelif George_drawer_s1 != George_drawer_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": After 6 years , Arun ' s age will be 26 years, \"statement 2\" :After 2 years , Arun ' s age will be 26 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Arun_age_years_s1 = 6\nArun_age_years_s2 = 2\n\nif Arun_age_years_s1 is None or Arun_age_years_s2 is None:\n print('neutral')\n\nelif Arun_age_years_s1 == Arun_age_years_s2:\n print('Entailment')\n\nelif Arun_age_years_s1 != Arun_age_years_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jack and Christina are standing less than 340 feet apart on a level surface, \"statement 2\" :Jack and Christina are standing 240 feet apart on a level surface, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jack_Christina_standing_s1 = None\nJack_Christina_standing_s2 = 240\n\nif Jack_Christina_standing_s1 is None or Jack_Christina_standing_s2 is None:\n print('neutral')\n\nelif Jack_Christina_standing_s1 == Jack_Christina_standing_s2:\n print('Entailment')\n\nelif Jack_Christina_standing_s1 != Jack_Christina_standing_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Triangle STV has sides ST = TV = 25 , and SV = 14, \"statement 2\" :Triangle STV has sides ST = TV = 35 , and SV = 14, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "STTV_s1 = 25\nSTTV_s2 = 35\n\nif STTV_s1 is None or STTV_s2 is None:\n print('neutral')\n\nelif STTV_s1 == STTV_s2:\n print('Entailment')\n\nelif STTV_s1 != STTV_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Albert \u2019 s monthly earnings rise by 14 % , he would earn $ 678, \"statement 2\" :If Albert \u2019 s monthly earnings rise by less than 74 % , he would earn $ 678, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Albert_monthly_earnings_s1 = 14\nAlbert_monthly_earnings_s2 = 74\n\nif Albert_monthly_earnings_s1 is None or Albert_monthly_earnings_s2 is None:\n print('neutral')\n\nelif Albert_monthly_earnings_s1 <= Albert_monthly_earnings_s2:\n print('Entailment')\n\nelif Albert_monthly_earnings_s1 != Albert_monthly_earnings_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Abinaya had 100 currency notes in all , some of which are of Rs 80 denomination and the remaining of Rs 50 denomination, \"statement 2\" :Abinaya had less than 200 currency notes in all , some of which are of Rs 80 denomination and the remaining of Rs 50 denomination, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Abinaya_notes_s1 = 100\nAbinaya_notes_s2 = 200\n\nif Abinaya_notes_s1 is None or Abinaya_notes_s2 is None:\n print('neutral')\n\nelif Abinaya_notes_s1 <= Abinaya_notes_s2:\n print('Entailment')\n\nelif Abinaya_notes_s1 != Abinaya_notes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Lally ' s internet provider offers unlimited traffic which costs $ 0.5 per day charged off at less than 52 a, \"statement 2\" :Lally ' s internet provider offers unlimited traffic which costs $ 0.5 per day charged off at 12 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "traffic_costs_s1 = None\ntraffic_costs_s2 = 12\n\nif traffic_costs_s1 is None or traffic_costs_s2 is None:\n print('neutral')\n\nelif traffic_costs_s1 == traffic_costs_s2:\n print('Entailment')\n\nelif traffic_costs_s1 != traffic_costs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": A boat crossed a lake from East to West at the speed of 5 km / h , entered a river and covered twice as much distance going upstream at 4 km / h, \"statement 2\" :A boat crossed a lake from East to West at the speed of less than 8 km / h , entered a river and covered twice as much distance going upstream at 4 km / h, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Boat_speed_s1 = 5\nBoat_speed_s2 = 8\n\nif Boat_speed_s1 is None or Boat_speed_s2 is None:\n print('neutral')\n\nelif Boat_speed_s1 <= Boat_speed_s2:\n print('Entailment')\n\nelif Boat_speed_s1 != Boat_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If she worked three more than 4 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"statement 2\" :If she worked three 8 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "She_worked_s1 = None\nShe_worked_s2 = 8\n\nif She_worked_s1 is None or She_worked_s2 is None:\n print('neutral')\n\nelif She_worked_s1 == She_worked_s2:\n print('Entailment')\n\nelif She_worked_s1 != She_worked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": During the first two weeks of April , the total rainfall in Springdale was 30 inches, \"statement 2\" :During the first two weeks of April , the total rainfall in Springdale was more than 10 inches, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Rainfall_s1 = 30\nRainfall_s2 = 10\n\nif Rainfall_s1 is None or Rainfall_s2 is None:\n print('neutral')\n\nelif Rainfall_s1 >= Rainfall_s2:\n print('Entailment')\n\nelif Rainfall_s1 != Rainfall_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": There are less than 7 more women than men on Centerville ' s board of education, \"statement 2\" :There are 4 more women than men on Centerville ' s board of education, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Women_s1 = None\nWomen_s2 = 4\n\nif Women_s1 is None or Women_s2 is None:\n print('neutral')\n\nelif Women_s1 == Women_s2:\n print('Entailment')\n\nelif Women_s1 != Women_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Rajesh solved more than 20 per cent of the questions in an examination correctly, \"statement 2\" :Rajesh solved 80 per cent of the questions in an examination correctly, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Rajesh_solved_s1 = None\nRajesh_solved_s2 = 80\n\nif Rajesh_solved_s1 is None or Rajesh_solved_s2 is None:\n print('neutral')\n\nelif Rajesh_solved_s1 == Rajesh_solved_s2:\n print('Entailment')\n\nelif Rajesh_solved_s1 != Rajesh_solved_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Mary is less than 82 years younger than Albert, \"statement 2\" :Mary is 12 years younger than Albert, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Mary_younger_s1 = None\nMary_younger_s2 = 12\n\nif Mary_younger_s1 is None or Mary_younger_s2 is None:\n print('neutral')\n\nelif Mary_younger_s1 == Mary_younger_s2:\n print('Entailment')\n\nelif Mary_younger_s1 != Mary_younger_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Vijay sells a cupboard at less than 86 % below cost price, \"statement 2\" :Vijay sells a cupboard at 16 % below cost price, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Vijay_sells_s1 = None\nVijay_sells_s2 = 16\n\nif Vijay_sells_s1 is None or Vijay_sells_s2 is None:\n print('neutral')\n\nelif Vijay_sells_s1 == Vijay_sells_s2:\n print('Entailment')\n\nelif Vijay_sells_s1 != Vijay_sells_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Dawson completes a piece of work in 40 days , Rose completes the same work in 60 days, \"statement 2\" :Dawson completes a piece of work in 20 days , Rose completes the same work in 60 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dawson_completes_Work_s1 = 40\nDawson_completes_Work_s2 = 20\n\nif Dawson_completes_Work_s1 is None or Dawson_completes_Work_s2 is None:\n print('neutral')\n\nelif Dawson_completes_Work_s1 == Dawson_completes_Work_s2:\n print('Entailment')\n\nelif Dawson_completes_Work_s1 != Dawson_completes_Work_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": more than 4887 is divided between Shyam and Ram , such that Shyam ' s share at the end of 9 years is equal to Ram ' s share at the end of 11 years , compounded annually at the rate of 5 %, \"statement 2\" :5887 is divided between Shyam and Ram , such that Shyam ' s share at the end of 9 years is equal to Ram ' s share at the end of 11 years , compounded annually at the rate of 5 %, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "divided_between_Shyam_and_Ram_s1 = None\ndivided_between_Shyam_and_Ram_s2 = 5887\n\nif divided_between_Shyam_and_Ram_s1 is None or divided_between_Shyam_and_Ram_s2 is None:\n print('neutral')\n\nelif divided_between_Shyam_and_Ram_s1 == divided_between_Shyam_and_Ram_s2:\n print('Entailment')\n\nelif divided_between_Shyam_and_Ram_s1 != divided_between_Shyam_and_Ram_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Susan , John , Daisy , Tim , Matt , Jane and Kim need to be seated in more than 1 identical chairs in straight line so that Susan is seated always left to Tim, \"statement 2\" :Susan , John , Daisy , Tim , Matt , Jane and Kim need to be seated in 7 identical chairs in straight line so that Susan is seated always left to Tim, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "identical_chairs_s1 = None\nidentical_chairs_s2 = 7\n\nif identical_chairs_s1 is None or identical_chairs_s2 is None:\n print('neutral')\n\nelif identical_chairs_s1 == identical_chairs_s2:\n print('Entailment')\n\nelif identical_chairs_s1 != identical_chairs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Dawson completes a piece of work in less than 70 days , Rose completes the same work in 60 days, \"statement 2\" :Dawson completes a piece of work in 40 days , Rose completes the same work in 60 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dawson_completes_s1 = None\nDawson_completes_s2 = 40\n\nif Dawson_completes_s1 is None or Dawson_completes_s2 is None:\n print('neutral')\n\nelif Dawson_completes_s1 == Dawson_completes_s2:\n print('Entailment')\n\nelif Dawson_completes_s1 != Dawson_completes_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Suresh age after 15 years will be 5 times his age 5 years back , What is the present age of Suresh, \"statement 2\" :Suresh age after less than 85 years will be 5 times his age 5 years back , What is the present age of Suresh, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Suresh_age_s1 = 15\nSuresh_age_s2 = 85\n\nif Suresh_age_s1 is None or Suresh_age_s2 is None:\n print('neutral')\n\nelif Suresh_age_s1 <= Suresh_age_s2:\n print('Entailment')\n\nelif Suresh_age_s1 != Suresh_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Mary is less than 40 years younger than Albert, \"statement 2\" :Mary is 10 years younger than Albert, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nMary_younger_s1 = None\nMary_younger_s2 = 10\n\nif Mary_younger_s1 is None or Mary_younger_s2 is None:\n print('neutral')\n\nelif Mary_younger_s1 == Mary_younger_s2:\n print('Entailment')\n\nelif Mary_younger_s1 != Mary_younger_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Today Roseline , who is 50 years old , and her daughter , who is 20 years old , celebrate their birthdays, \"statement 2\" :Today Roseline , who is less than 60 years old , and her daughter , who is 20 years old , celebrate their birthdays, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nToday_Roseline_s1 = 50\nToday_Roseline_s2 = 60\n\nif Today_Roseline_s1 is None or Today_Roseline_s2 is None:\n print('neutral')\n\nelif Today_Roseline_s1 <= Today_Roseline_s2:\n print('Entailment')\n\nelif Today_Roseline_s1 != Today_Roseline_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The total of the ages of Amar , Akbar and Anthony is 56 years, \"statement 2\" :The total of the ages of Amar , Akbar and Anthony is more than 16 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ages_of_Amar_Akbar_Anthony_s1 = 56\nages_of_Amar_Akbar_Anthony_s2 = 16\n\nif ages_of_Amar_Akbar_Anthony_s1 is None or ages_of_Amar_Akbar_Anthony_s2 is None:\n print('neutral')\n\nelif ages_of_Amar_Akbar_Anthony_s1 >= ages_of_Amar_Akbar_Anthony_s2:\n print('Entailment')\n\nelif ages_of_Amar_Akbar_Anthony_s1 != ages_of_Amar_Akbar_Anthony_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The average number of shirts with Salman , Ambani and Dalmiya is 69 , if all of them reached a shopping mall in Delhi and purchased 12 shirts each of them then average number of shirt each of them now has, \"statement 2\" :The average number of shirts with Salman , Ambani and Dalmiya is less than 69 , if all of them reached a shopping mall in Delhi and purchased 12 shirts each of them then average number of shirt each of them now has, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_number_of_shirts_s1 = 69\naverage_number_of_shirts_s2 = 69-1\n\nif average_number_of_shirts_s1 is None or average_number_of_shirts_s2 is None:\n print('neutral')\n\nelif average_number_of_shirts_s1 == average_number_of_shirts_s2:\n print('Entailment')\n\nelif average_number_of_shirts_s1 != average_number_of_shirts_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": A train leaves Delhi at 11 a, \"statement 2\" :A train leaves Delhi at more than 11 a, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "train_leaves_s1 = 11\ntrain_leaves_s2 = 11+1\n\nif train_leaves_s1 is None or train_leaves_s2 is None:\n print('neutral')\n\nelif train_leaves_s1 == train_leaves_s2:\n print('Entailment')\n\nelif train_leaves_s1 != train_leaves_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jack and Christina are standing 270 feet apart on a level surface, \"statement 2\" :Jack and Christina are standing 570 feet apart on a level surface, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jack_and_Christina_s1 = 270\nJack_and_Christina_s2 = 570\n\nif Jack_and_Christina_s1 is None or Jack_and_Christina_s2 is None:\n print('neutral')\n\nelif Jack_and_Christina_s1 == Jack_and_Christina_s2:\n print('Entailment')\n\nelif Jack_and_Christina_s1 != Jack_and_Christina_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sandy is younger than Molly by less than 30 years, \"statement 2\" :Sandy is younger than Molly by 20 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sandy_Age_s1 = None\nSandy_Age_s2 = 20\n\nif Sandy_Age_s1 is None or Sandy_Age_s2 is None:\n print('neutral')\n\nelif Sandy_Age_s1 == Sandy_Age_s2:\n print('Entailment')\n\nelif Sandy_Age_s1 != Sandy_Age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": When the river is running at less than 2 km / h , it takes the rower 1 hour to row to Big Rock and back, \"statement 2\" :When the river is running at 1 km / h , it takes the rower 1 hour to row to Big Rock and back, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "river_running_s1 = None\nriver_running_s2 = 1\n\nif river_running_s1 is None or river_running_s2 is None:\n print('neutral')\n\nelif river_running_s1 == river_running_s2:\n print('Entailment')\n\nelif river_running_s1 != river_running_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In a certain town , the ratio of NY Yankees fans to NY Mets fans is 2 : 1 , and the ratio of NY Mets fans to Boston Red Sox fans is 3 : 7, \"statement 2\" :In a certain town , the ratio of NY Yankees fans to NY Mets fans is less than 7 : 1 , and the ratio of NY Mets fans to Boston Red Sox fans is 3 : 7, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "NY_Mets_fans_s1 = 2/1\nNY_Mets_fans_s2 = 7/1\n\nif NY_Mets_fans_s1 is None or NY_Mets_fans_s2 is None:\n print('neutral')\n\nelif NY_Mets_fans_s1 <= NY_Mets_fans_s2:\n print('Entailment')\n\nelif NY_Mets_fans_s1 != NY_Mets_fans_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The distance between Delhi and Mathura is 110 kms, \"statement 2\" :The distance between Delhi and Mathura is less than 310 kms, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distance_between_Delhi_and_Mathura_s1 = 110\ndistance_between_Delhi_and_Mathura_s2 = 310\n\nif distance_between_Delhi_and_Mathura_s1 is None or distance_between_Delhi_and_Mathura_s2 is None:\n print('neutral')\n\nelif distance_between_Delhi_and_Mathura_s1 <= distance_between_Delhi_and_Mathura_s2:\n print('Entailment')\n\nelif distance_between_Delhi_and_Mathura_s1 != distance_between_Delhi_and_Mathura_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In a deck of 52 cards , how many ways are there to select 13 Spade and 13 heart cards without repetition ?, \"statement 2\" :In a deck of less than 72 cards , how many ways are there to select 13 Spade and 13 heart cards without repetition ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "deck_cards_s1 = 52\ndeck_cards_s2 = 72\n\nif deck_cards_s1 is None or deck_cards_s2 is None:\n print('neutral')\n\nelif deck_cards_s1 <= deck_cards_s2:\n print('Entailment')\n\nelif deck_cards_s1 != deck_cards_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Zada has to distribute 15 choclates among 5 of her children Sana , ada , jaya , amir and farhan, \"statement 2\" :Zada has to distribute less than 15 choclates among 5 of her children Sana , ada , jaya , amir and farhan, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "distribute_choclates_s1 = 15\ndistribute_choclates_s2 = 15-1\n\nif distribute_choclates_s1 is None or distribute_choclates_s2 is None:\n print('neutral')\n\nelif distribute_choclates_s1 == distribute_choclates_s2:\n print('Entailment')\n\nelif distribute_choclates_s1 != distribute_choclates_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If the marks secured by Reema was written as 46 instead of 96 then find the correct average marks up to two decimal places ., \"statement 2\" :If the marks secured by Reema was written as less than 76 instead of 96 then find the correct average marks up to two decimal places ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nReema_written_s1 = 46\nReema_written_s2 = 76\n\nif Reema_written_s1 is None or Reema_written_s2 is None:\n print('neutral')\n\nelif Reema_written_s1 <= Reema_written_s2:\n print('Entailment')\n\nelif Reema_written_s1 != Reema_written_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": When Sally went to the candy store , she bought 25 licorice sticks, \"statement 2\" :When Sally went to the candy store , she bought less than 25 licorice sticks, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sally_bought_s1 = 25\nSally_bought_s2 = 25-1\n\nif Sally_bought_s1 is None or Sally_bought_s2 is None:\n print('neutral')\n\nelif Sally_bought_s1 == Sally_bought_s2:\n print('Entailment')\n\nelif Sally_bought_s1 != Sally_bought_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If the boys at Jones Elementary make up 50 % of the total school population of x students , what is x ?, \"statement 2\" :If the boys at Jones Elementary make up more than 30 % of the total school population of x students , what is x ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "population_s1 = 50\npopulation_s2 = 30\n\nif population_s1 is None or population_s2 is None:\n print('neutral')\n\nelif population_s1 >= population_s2:\n print('Entailment')\n\nelif population_s1 != population_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": A train travels from Albany to Syracuse , a distance of less than 520 miles , at the average rate of 50 miles per hour, \"statement 2\" :A train travels from Albany to Syracuse , a distance of 120 miles , at the average rate of 50 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "train_travels_s1 = None\ntrain_travels_s2 = 120\n\nif train_travels_s1 is None or train_travels_s2 is None:\n print('neutral')\n\nelif train_travels_s1 == train_travels_s2:\n print('Entailment')\n\nelif train_travels_s1 != train_travels_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": When the river is running at less than 4 km / h , it takes the rower 1 hour to row to Big Rock and back, \"statement 2\" :When the river is running at 2 km / h , it takes the rower 1 hour to row to Big Rock and back, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "river_runnig_s1 = None\nriver_runnig_s2 = 2\n\nif river_runnig_s1 is None or river_runnig_s2 is None:\n print('neutral')\n\nelif river_runnig_s1 == river_runnig_s2:\n print('Entailment')\n\nelif river_runnig_s1 != river_runnig_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Matt has five iron coins and ten copper coins , how many different sums from 1 \u00a2 to 60 \u00a2 can he make with a combination of his coins ?, \"statement 2\" :If Matt has five iron coins and ten copper coins , how many different sums from 6 \u00a2 to 60 \u00a2 can he make with a combination of his coins ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nCoins_s1 = 1,60\nCoins_s2 = 6,60\n\nif Coins_s1 is None or Coins_s2 is None:\n print('neutral')\n\nelif Coins_s1 == Coins_s2:\n print('Entailment')\n\nelif Coins_s1 != Coins_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In how many ways can you seat more than 1 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"statement 2\" :In how many ways can you seat 8 people on a bench if one of them , Rohit , does not want to sit on the middle seat or at either end ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "seat_people_s1 = None\nseat_people_s2 = 8\n\nif seat_people_s1 is None or seat_people_s2 is None:\n print('neutral')\n\nelif seat_people_s1 == seat_people_s2:\n print('Entailment')\n\nelif seat_people_s1 != seat_people_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": A train travels from Albany to Syracuse , a distance of 100 miles , at the average rate of 50 miles per hour, \"statement 2\" :A train travels from Albany to Syracuse , a distance of less than 100 miles , at the average rate of 50 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Train_travel_s1 = 100\nTrain_travel_s2 = 100-1\n\nif Train_travel_s1 is None or Train_travel_s2 is None:\n print('neutral')\n\nelif Train_travel_s1 == Train_travel_s2:\n print('Entailment')\n\nelif Train_travel_s1 != Train_travel_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sakshi can do a piece of work in 20 days, \"statement 2\" :Sakshi can do a piece of work in more than 10 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sakshi_Work_s1 = 20\nSakshi_Work_s2 = 10\n\nif Sakshi_Work_s1 is None or Sakshi_Work_s2 is None:\n print('neutral')\n\nelif Sakshi_Work_s1 >= Sakshi_Work_s2:\n print('Entailment')\n\nelif Sakshi_Work_s1 != Sakshi_Work_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If T = 5 / 9 * ( K - 32 ) , and if T = 50 , then what is the value of K ?, \"statement 2\" :If T = less than 6 / 9 * ( K - 32 ) , and if T = 50 , then what is the value of K ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nValue_of_K_s1 = 122\nValue_of_K_s2 = 107\n\nif Value_of_K_s1 is None or Value_of_K_s2 is None:\n print('neutral')\n\nelif Value_of_K_s1 <= Value_of_K_s2:\n print('Entailment')\n\nelif Value_of_K_s1 != Value_of_K_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": How many different ways can you arrange the 4 dancers in a line if Anne must be first or second, \"statement 2\" :How many different ways can you arrange the more than 1 dancers in a line if Anne must be first or second, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "dancers_in_line_s1 = 4\ndancers_in_line_s2 = 1\n\nif dancers_in_line_s1 is None or dancers_in_line_s2 is None:\n print('neutral')\n\nelif dancers_in_line_s1 >= dancers_in_line_s2:\n print('Entailment')\n\nelif dancers_in_line_s1 != dancers_in_line_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Matt has ten iron coins and ten copper coins , how many different sums from less than 7 \u00a2 to 70 \u00a2 can he make with a combination of his coins ?, \"statement 2\" :If Matt has ten iron coins and ten copper coins , how many different sums from 1 \u00a2 to 70 \u00a2 can he make with a combination of his coins ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nMatt_coins_s1 = None\nMatt_coins_s2 = 1,70\n\nif Matt_coins_s1 is None or Matt_coins_s2 is None:\n print('neutral')\n\nelif Matt_coins_s1 == Matt_coins_s2:\n print('Entailment')\n\nelif Matt_coins_s1 != Matt_coins_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": 50 % of students from 200 Science students are locals and 85 % of total 120 Commerce students are locals, \"statement 2\" :more than 50 % of students from 200 Science students are locals and 85 % of total 120 Commerce students are locals, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "local_students_s1 = 50\nlocal_students_s2 = 50+1\n\nif local_students_s1 is None or local_students_s2 is None:\n print('neutral')\n\nelif local_students_s1 == local_students_s2:\n print('Entailment')\n\nelif local_students_s1 != local_students_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Karen places a bet with Tom that she will beat Tom in a car race by more than 1 miles even if Karen starts 4 minutes late, \"statement 2\" :Karen places a bet with Tom that she will beat Tom in a car race by 4 miles even if Karen starts 4 minutes late, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Tom_car_race_s1 = None\nTom_car_race_s2 = 4\n\nif Tom_car_race_s1 is None or Tom_car_race_s2 is None:\n print('neutral')\n\nelif Tom_car_race_s1 == Tom_car_race_s2:\n print('Entailment')\n\nelif Tom_car_race_s1 != Tom_car_race_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": While driving from City A to City B , Glen drives at a constant speed of more than 10 miles per hour, \"statement 2\" :While driving from City A to City B , Glen drives at a constant speed of 40 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Glen_drives_speed_s1 = None\nGlen_drives_speed_s2 = 40\n\nif Glen_drives_speed_s1 is None or Glen_drives_speed_s2 is None:\n print('neutral')\n\nelif Glen_drives_speed_s1 == Glen_drives_speed_s2:\n print('Entailment')\n\nelif Glen_drives_speed_s1 != Glen_drives_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": How much loss would Indu has suffered had she given it to Bindu for 2 years at 4 % per annum simple interest ?, \"statement 2\" :How much loss would Indu has suffered had she given it to Bindu for 3 years at 4 % per annum simple interest ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "given_it_to_Bindu_s1 = 2\ngiven_it_to_Bindu_s2 = 3\n\nif given_it_to_Bindu_s1 is None or given_it_to_Bindu_s2 is None:\n print('neutral')\n\nelif given_it_to_Bindu_s1 == given_it_to_Bindu_s2:\n print('Entailment')\n\nelif given_it_to_Bindu_s1 != given_it_to_Bindu_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If there are 25 males altogether , how many gerbils does Claire have ?, \"statement 2\" :If there are less than 35 males altogether , how many gerbils does Claire have ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "males_s1 = 25\nmales_s2 = 35\n\nif males_s1 is None or males_s2 is None:\n print('neutral')\n\nelif males_s1 <= males_s2:\n print('Entailment')\n\nelif males_s1 != males_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": John traveled 80 % of the way from Yellow - town to Green - fields by train at an average speed of 80 miles per hour, \"statement 2\" :John traveled more than 40 % of the way from Yellow - town to Green - fields by train at an average speed of 80 miles per hour, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "John_traveled_s1 = 80\nJohn_traveled_s2 = 40\n\nif John_traveled_s1 is None or John_traveled_s2 is None:\n print('neutral')\n\nelif John_traveled_s1 >= John_traveled_s2:\n print('Entailment')\n\nelif John_traveled_s1 != John_traveled_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If the three started to fish together and after 40 minutes Mike and Bob left , how many fish did the three fishermen catch in one hour ?, \"statement 2\" :If the three started to fish together and after 10 minutes Mike and Bob left , how many fish did the three fishermen catch in one hour ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Fish_s1 = 40\nFish_s2 = 10\n\nif Fish_s1 is None or Fish_s2 is None:\n print('neutral')\n\nelif Fish_s1 == Fish_s2:\n print('Entailment')\n\nelif Fish_s1 != Fish_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Six years ago , the ratio of ages of Kunal and Sagar was more than 1 : 5, \"statement 2\" :Six years ago , the ratio of ages of Kunal and Sagar was 6 : 5, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Age_ratio_s1 = None\nAge_ratio_s2 = 6/5\n\nif Age_ratio_s1 is None or Age_ratio_s2 is None:\n print('neutral')\n\nelif Age_ratio_s1 == Age_ratio_s2:\n print('Entailment')\n\nelif Age_ratio_s1 != Age_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Assuming that Karen drives at an average speed of 60 mph and Tom drives at an average speed of 45 mph , how many W miles will Tom drive before Karen wins the bet ?, \"statement 2\" :Assuming that Karen drives at an average speed of less than 70 mph and Tom drives at an average speed of 45 mph , how many W miles will Tom drive before Karen wins the bet ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Karen_average_Speed_s1 = 60\nKaren_average_Speed_s2 = 70\n\nif Karen_average_Speed_s1 is None or Karen_average_Speed_s2 is None:\n print('neutral')\n\nelif Karen_average_Speed_s1 <= Karen_average_Speed_s2:\n print('Entailment')\n\nelif Karen_average_Speed_s1 != Karen_average_Speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Mary is less than 42 years younger than Albert, \"statement 2\" :Mary is 22 years younger than Albert, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Mary_age_s1 = None\nMary_age_s2 = 22\n\nif Mary_age_s1 is None or Mary_age_s2 is None:\n print('neutral')\n\nelif Mary_age_s1 == Mary_age_s2:\n print('Entailment')\n\nelif Mary_age_s1 != Mary_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Lionel ' s speed was less than 5 miles per hour and Walt ' s 6 miles per hour , how many miles had Lionel walked when he met Walt ?, \"statement 2\" :If Lionel ' s speed was 2 miles per hour and Walt ' s 6 miles per hour , how many miles had Lionel walked when he met Walt ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Lionel_speed_s1 = None\nLionel_speed_s2 = 2\n\nif Lionel_speed_s1 is None or Lionel_speed_s2 is None:\n print('neutral')\n\nelif Lionel_speed_s1 == Lionel_speed_s2:\n print('Entailment')\n\nelif Lionel_speed_s1 != Lionel_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Geoff needed exactly 3000 more votes to win the election , what is the value of x ?, \"statement 2\" :If Geoff needed exactly less than 6000 more votes to win the election , what is the value of x ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "\nGeoff_s1 = 3000\nGeoff_s2 = 6000\n\nif Geoff_s1 is None or Geoff_s2 is None:\n print('neutral')\n\nelif Geoff_s1 <= Geoff_s2:\n print('Entailment')\n\nelif Geoff_s1 != Geoff_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Jack walked more than 8 miles in 1 hour and 15 minutes , what was his rate of walking in miles per hour ?, \"statement 2\" :If Jack walked 9 miles in 1 hour and 15 minutes , what was his rate of walking in miles per hour ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jack_walked_s1 = None\nJack_walked_s2 = 9\n\nif Jack_walked_s1 is None or Jack_walked_s2 is None:\n print('neutral')\n\nelif Jack_walked_s1 == Jack_walked_s2:\n print('Entailment')\n\nelif Jack_walked_s1 != Jack_walked_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If it takes Cathy 24 minutes to stretch and Cara continues to run during this time , how many minutes will it take Cathy to catch up to Cara ?, \"statement 2\" :If it takes Cathy more than 24 minutes to stretch and Cara continues to run during this time , how many minutes will it take Cathy to catch up to Cara ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Cathy_s1 = 24\nCathy_s2 = 24+1\n\nif Cathy_s1 is None or Cathy_s2 is None:\n print('neutral')\n\nelif Cathy_s1 == Cathy_s2:\n print('Entailment')\n\nelif Cathy_s1 != Cathy_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": During the first two weeks of April , the total rainfall in Springdale was more than 10 inches, \"statement 2\" :During the first two weeks of April , the total rainfall in Springdale was 30 inches, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rainfall_s1 = None\nrainfall_s2 = 30\n\nif rainfall_s1 is None or rainfall_s2 is None:\n print('neutral')\n\nelif rainfall_s1 == rainfall_s2:\n print('Entailment')\n\nelif rainfall_s1 != rainfall_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If the average falls 1 second after Izzy finishes another sprint , how many seconds did it take Izzy to run the most recent sprint ?, \"statement 2\" :If the average falls less than 1 second after Izzy finishes another sprint , how many seconds did it take Izzy to run the most recent sprint ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "average_falls_s1 = 1\naverage_falls_s2 = 1-1\n\nif average_falls_s1 is None or average_falls_s2 is None:\n print('neutral')\n\nelif average_falls_s1 == average_falls_s2:\n print('Entailment')\n\nelif average_falls_s1 != average_falls_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Meg and Bob are among the 6 participants in a cycling race, \"statement 2\" :Meg and Bob are among the more than 1 participants in a cycling race, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "participants_s1 = 6\nparticipants_s2 = 1\n\nif participants_s1 is None or participants_s2 is None:\n print('neutral')\n\nelif participants_s1 >= participants_s2:\n print('Entailment')\n\nelif participants_s1 != participants_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": An amount of money is to be divided between Ram , Raja and Rahim in the ratio of 1 : 4 : 10, \"statement 2\" :An amount of money is to be divided between Ram , Raja and Rahim in the ratio of 7 : 4 : 10, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "money_divided_s1 = 2.5\nmoney_divided_s2 = 17.5\n\nif money_divided_s1 is None or money_divided_s2 is None:\n print('neutral')\n\nelif money_divided_s1 == money_divided_s2:\n print('Entailment')\n\nelif money_divided_s1 != money_divided_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jack took a 3 - hour bike ride, \"statement 2\" :Jack took a less than 7 - hour bike ride, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "bike_ride_s1 = 3\nbike_ride_s2 = 7\n\nif bike_ride_s1 is None or bike_ride_s2 is None:\n print('neutral')\n\nelif bike_ride_s1 <= bike_ride_s2:\n print('Entailment')\n\nelif bike_ride_s1 != bike_ride_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Anand and Deepak started a business investing Rs 22500 and 35000 respectively, \"statement 2\" :Anand and Deepak started a business investing Rs more than 22500 and 35000 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "investing_s1 = 22500,35000\ninvesting_s2 = 22500+1,35000+1\n\nif investing_s1 is None or investing_s2 is None:\n print('neutral')\n\nelif investing_s1 == investing_s2:\n print('Entailment')\n\nelif investing_s1 != investing_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Carina has 115 ounces of coffee divided into 5 - and 10 - ounce packages, \"statement 2\" :Carina has 315 ounces of coffee divided into 5 - and 10 - ounce packages, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "ounces_of_coffee_s1 = 115\nounces_of_coffee_s2 = 315\n\nif ounces_of_coffee_s1 is None or ounces_of_coffee_s2 is None:\n print('neutral')\n\nelif ounces_of_coffee_s1 == ounces_of_coffee_s2:\n print('Entailment')\n\nelif ounces_of_coffee_s1 != ounces_of_coffee_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Dana borrows 7500 pounds annually for her college education, \"statement 2\" :Dana borrows more than 7500 pounds annually for her college education, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dana_borrows_s1 = 7500\nDana_borrows_s2 = 7500+1\n\nif Dana_borrows_s1 is None or Dana_borrows_s2 is None:\n print('neutral')\n\nelif Dana_borrows_s1 == Dana_borrows_s2:\n print('Entailment')\n\nelif Dana_borrows_s1 != Dana_borrows_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Zada has to distribute 15 choclates among 5 of her children Sana , ada , jaya , amir and farhan, \"statement 2\" :Zada has to distribute less than 55 choclates among 5 of her children Sana , ada , jaya , amir and farhan, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "choclates_s1 = 15\nchoclates_s2 = 55\n\nif choclates_s1 is None or choclates_s2 is None:\n print('neutral')\n\nelif choclates_s1 <= choclates_s2:\n print('Entailment')\n\nelif choclates_s1 != choclates_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Dana gives her parents 5 % of that amount back each month , how much will she still owe her parents after four years of college ?, \"statement 2\" :If Dana gives her parents more than 4 % of that amount back each month , how much will she still owe her parents after four years of college ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Dana_gives_s1 = 5\nDana_gives_s2 = 4+1\n\nif Dana_gives_s1 is None or Dana_gives_s2 is None:\n print('neutral')\n\nelif Dana_gives_s1 == Dana_gives_s2:\n print('Entailment')\n\nelif Dana_gives_s1 != Dana_gives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If there are 14 more FGH supermarkets in the US than in Canada , how many FGH supermarkets are there in the US ?, \"statement 2\" :If there are less than 64 more FGH supermarkets in the US than in Canada , how many FGH supermarkets are there in the US ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "supermarkets_s1 = 14\nsupermarkets_s2 = 64\n\nif supermarkets_s1 is None or supermarkets_s2 is None:\n print('neutral')\n\nelif supermarkets_s1 <= supermarkets_s2:\n print('Entailment')\n\nelif supermarkets_s1 != supermarkets_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": After they have worked together for 10 days Matt stops and Peter completes the remaining work in 10 days, \"statement 2\" :After they have worked together for less than 30 days Matt stops and Peter completes the remaining work in 10 days, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "worked_s1 = 10\nworked_s2 = 30\n\nif worked_s1 is None or worked_s2 is None:\n print('neutral')\n\nelif worked_s1 <= worked_s2:\n print('Entailment')\n\nelif worked_s1 != worked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": less than 800 , what will be the difference between Raja and Rahim ' s share ?, \"statement 2\" :300 , what will be the difference between Raja and Rahim ' s share ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "difference_between_Raja_and_Rahim_s1 = None\ndifference_between_Raja_and_Rahim_s2 = 300\n\nif difference_between_Raja_and_Rahim_s1 is None or difference_between_Raja_and_Rahim_s2 is None:\n print('neutral')\n\nelif difference_between_Raja_and_Rahim_s1 == difference_between_Raja_and_Rahim_s2:\n print('Entailment')\n\nelif difference_between_Raja_and_Rahim_s1 != difference_between_Raja_and_Rahim_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If more than 11 people have visited both Iceland and Norway , how many people have visited neither country ?, \"statement 2\" :If 41 people have visited both Iceland and Norway , how many people have visited neither country ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "visited_Iceland_s1 = None\nvisited_Iceland_s2 = 41\n\nif visited_Iceland_s1 is None or visited_Iceland_s2 is None:\n print('neutral')\n\nelif visited_Iceland_s1 == visited_Iceland_s2:\n print('Entailment')\n\nelif visited_Iceland_s1 != visited_Iceland_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Mary works in a restaurant a maximum of 80 hours, \"statement 2\" :Mary works in a restaurant a maximum of 10 hours, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Mary_works_s1 = 80\nMary_works_s2 = 10\n\nif Mary_works_s1 is None or Mary_works_s2 is None:\n print('neutral')\n\nelif Mary_works_s1 == Mary_works_s2:\n print('Entailment')\n\nelif Mary_works_s1 != Mary_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Anne \u2019 s speed were doubled , they could clean their house in 3 hours working at their respective rates, \"statement 2\" :If Anne \u2019 s speed were doubled , they could clean their house in more than 3 hours working at their respective rates, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Anne_speed_s1 = 3\nAnne_speed_s2 = 3+1\n\nif Anne_speed_s1 is None or Anne_speed_s2 is None:\n print('neutral')\n\nelif Anne_speed_s1 == Anne_speed_s2:\n print('Entailment')\n\nelif Anne_speed_s1 != Anne_speed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": There are 4 more women than men on Centerville ' s board of education, \"statement 2\" :There are less than 7 more women than men on Centerville ' s board of education, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Women_Centerville_s1 = 4\nWomen_Centerville_s2 = 7\n\nif Women_Centerville_s1 is None or Women_Centerville_s2 is None:\n print('neutral')\n\nelif Women_Centerville_s1 <= Women_Centerville_s2:\n print('Entailment')\n\nelif Women_Centerville_s1 != Women_Centerville_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": less than 85 percent of Andrea ' s living room floor is covered by a carpet that is 4 feet by 9 feet, \"statement 2\" :75 percent of Andrea ' s living room floor is covered by a carpet that is 4 feet by 9 feet, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "covered_by_carpet_s1 = None\ncovered_by_carpet_s2 = 75\n\nif covered_by_carpet_s1 is None or covered_by_carpet_s2 is None:\n print('neutral')\n\nelif covered_by_carpet_s1 == covered_by_carpet_s2:\n print('Entailment')\n\nelif covered_by_carpet_s1 != covered_by_carpet_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Arun purchased less than 80 kg of wheat at the rate of Rs, \"statement 2\" :Arun purchased 30 kg of wheat at the rate of Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Arun_purchased_s1 = None\nArun_purchased_s2 = 30\n\nif Arun_purchased_s1 is None or Arun_purchased_s2 is None:\n print('neutral')\n\nelif Arun_purchased_s1 == Arun_purchased_s2:\n print('Entailment')\n\nelif Arun_purchased_s1 != Arun_purchased_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In Josephs convent school , 80 % are boys at the same time 75 % are girls students, \"statement 2\" :In Josephs convent school , less than 80 % are boys at the same time 75 % are girls students, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Josephs_convent_boys_s1 = 80\nJosephs_convent_boys_s2 = 80-1\n\nif Josephs_convent_boys_s1 is None or Josephs_convent_boys_s2 is None:\n print('neutral')\n\nelif Josephs_convent_boys_s1 == Josephs_convent_boys_s2:\n print('Entailment')\n\nelif Josephs_convent_boys_s1 != Josephs_convent_boys_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If there are 320 baseball fans in the town , each of whom is a fan of exactly one of those three teams , how many NY Mets fans are there in this town ?, \"statement 2\" :If there are 220 baseball fans in the town , each of whom is a fan of exactly one of those three teams , how many NY Mets fans are there in this town ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "baseball_fans_s1 = 320\nbaseball_fans_s2 = 220\n\nif baseball_fans_s1 is None or baseball_fans_s2 is None:\n print('neutral')\n\nelif baseball_fans_s1 == baseball_fans_s2:\n print('Entailment')\n\nelif baseball_fans_s1 != baseball_fans_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": After 6 years , Sandy \u2019 s age will be 42 years, \"statement 2\" :After less than 8 years , Sandy \u2019 s age will be 42 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sandy_age_s1 = 6\nSandy_age_s2 = 8\n\nif Sandy_age_s1 is None or Sandy_age_s2 is None:\n print('neutral')\n\nelif Sandy_age_s1 <= Sandy_age_s2:\n print('Entailment')\n\nelif Sandy_age_s1 != Sandy_age_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Ratio between Rahul and Deepak is 4 : 3 , After 4 Years Rahul age will be 32 years, \"statement 2\" :Ratio between Rahul and Deepak is less than 7 : 3 , After 4 Years Rahul age will be 32 years, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Ratio_s1 = 3/4\nRatio_s2 = 7/3\n\nif Ratio_s1 is None or Ratio_s2 is None:\n print('neutral')\n\nelif Ratio_s1 <= Ratio_s2:\n print('Entailment')\n\nelif Ratio_s1 != Ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If out of less than 51 questions solved by Rajesh 37 questions are correct and of the remaining questions out of 8 questions 5 questions have been solved by Rajesh correctly then find the total number of questions asked in the examination ., \"statement 2\" :If out of 41 questions solved by Rajesh 37 questions are correct and of the remaining questions out of 8 questions 5 questions have been solved by Rajesh correctly then find the total number of questions asked in the examination ., \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "questions_solved_s1 = None\nquestions_solved_s2 = 41\n\nif questions_solved_s1 is None or questions_solved_s2 is None:\n print('neutral')\n\nelif questions_solved_s1 == questions_solved_s2:\n print('Entailment')\n\nelif questions_solved_s1 != questions_solved_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": 250 and Andre ' s share is Rs, \"statement 2\" :less than 550 and Andre ' s share is Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Andre_Share_s1 = 250\nAndre_Share_s2 = 550\n\nif Andre_Share_s1 is None or Andre_Share_s2 is None:\n print('neutral')\n\nelif Andre_Share_s1 <= Andre_Share_s2:\n print('Entailment')\n\nelif Andre_Share_s1 != Andre_Share_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Raman mixed 34 kg of butter at Rs, \"statement 2\" :Raman mixed 84 kg of butter at Rs, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Raman_mixed_s1 = 34\nRaman_mixed_s2 = 84\n\nif Raman_mixed_s1 is None or Raman_mixed_s2 is None:\n print('neutral')\n\nelif Raman_mixed_s1 == Raman_mixed_s2:\n print('Entailment')\n\nelif Raman_mixed_s1 != Raman_mixed_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sharmila works 10 hours per day on Monday , Wednesday and Friday , and 8 hours per day on Tuesday and Thursday, \"statement 2\" :Sharmila works less than 80 hours per day on Monday , Wednesday and Friday , and 8 hours per day on Tuesday and Thursday, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sharmila_works_s1 = 10\nSharmila_works_s2 = 80\n\nif Sharmila_works_s1 is None or Sharmila_works_s2 is None:\n print('neutral')\n\nelif Sharmila_works_s1 <= Sharmila_works_s2:\n print('Entailment')\n\nelif Sharmila_works_s1 != Sharmila_works_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Anand and Deepak started a business investing Rs less than 82500 and 35000 respectively, \"statement 2\" :Anand and Deepak started a business investing Rs 22500 and 35000 respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "investing_s1 = None\ninvesting_s2 = 22500,35000\n\nif investing_s1 is None or investing_s2 is None:\n print('neutral')\n\nelif investing_s1 == investing_s2:\n print('Entailment')\n\nelif investing_s1 != investing_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Jack and Christina are standing 240 feet apart on a level surface, \"statement 2\" :Jack and Christina are standing 340 feet apart on a level surface, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Jack_and_Christina_s1 = 240\nJack_and_Christina_s2 = 340\n\nif Jack_and_Christina_s1 is None or Jack_and_Christina_s2 is None:\n print('neutral')\n\nelif Jack_and_Christina_s1 == Jack_and_Christina_s2:\n print('Entailment')\n\nelif Jack_and_Christina_s1 != Jack_and_Christina_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If the ratio of their ages is 7 : 9 , how old is Sandy ?, \"statement 2\" :If the ratio of their ages is more than 7 : 9 , how old is Sandy ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_ratio_s1 = 7/9\nage_ratio_s2 = 7/9+1\n\nif age_ratio_s1 is None or age_ratio_s2 is None:\n print('neutral')\n\nelif age_ratio_s1 == age_ratio_s2:\n print('Entailment')\n\nelif age_ratio_s1 != age_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": When Banu reached the goal post Esha was less than 60 m behind, \"statement 2\" :When Banu reached the goal post Esha was 10 m behind, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Banu_reached_goal_s1 = None\nBanu_reached_goal_s2 = 10\n\nif Banu_reached_goal_s1 is None or Banu_reached_goal_s2 is None:\n print('neutral')\n\nelif Banu_reached_goal_s1 == Banu_reached_goal_s2:\n print('Entailment')\n\nelif Banu_reached_goal_s1 != Banu_reached_goal_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": The less than 88 parents participating in the Smithville PTA have been assigned to at least 1 of 3 committees : festival planning , classroom aid , and teacher relations, \"statement 2\" :The 38 parents participating in the Smithville PTA have been assigned to at least 1 of 3 committees : festival planning , classroom aid , and teacher relations, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "parents_participating_s1 = None\nparents_participating_s2 = 38\n\nif parents_participating_s1 is None or parents_participating_s2 is None:\n print('neutral')\n\nelif parents_participating_s1 == parents_participating_s2:\n print('Entailment')\n\nelif parents_participating_s1 != parents_participating_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": When the river is running at 1 km / h , it takes the rower 1 hour to row to Big Rock and back, \"statement 2\" :When the river is running at less than 3 km / h , it takes the rower 1 hour to row to Big Rock and back, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "river_running_s1 = 1\nriver_running_s2 = 3\n\nif river_running_s1 is None or river_running_s2 is None:\n print('neutral')\n\nelif river_running_s1 <= river_running_s2:\n print('Entailment')\n\nelif river_running_s1 != river_running_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": What is the height difference between the two if the Empire State Building is less than 864 m tall and the Petronas Towers is 472 m tall ?, \"statement 2\" :What is the height difference between the two if the Empire\nState Building is 464 m tall and the Petronas Towers is 472 m tall ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Empire_s1 = None\nEmpire_s2 = 464\n\nif Empire_s1 is None or Empire_s2 is None:\n print('neutral')\n\nelif Empire_s1 == Empire_s2:\n print('Entailment')\n\nelif Empire_s1 != Empire_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sony and Johnny caught 75 fishes, \"statement 2\" :Sony and Johnny caught more than 75 fishes, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Johnny_fish_s1 = 75\nJohnny_fish_s2 = 75+1\n\nif Johnny_fish_s1 is None or Johnny_fish_s2 is None:\n print('neutral')\n\nelif Johnny_fish_s1 == Johnny_fish_s2:\n print('Entailment')\n\nelif Johnny_fish_s1 != Johnny_fish_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": City A to city B , John drove for 1 hour at 40 mph and for 3 hours at 60 mph, \"statement 2\" :City A to city B , John drove for less than 5 hour at 40 mph and for 3 hours at 60 mph, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "John_drove_s1 = 1\nJohn_drove_s2 = 5\n\nif John_drove_s1 is None or John_drove_s2 is None:\n print('neutral')\n\nelif John_drove_s1 <= John_drove_s2:\n print('Entailment')\n\nelif John_drove_s1 != John_drove_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Six years ago , the ratio of ages of Kunal and Sagar was 6 : 5, \"statement 2\" :Six years ago , the ratio of ages of Kunal and Sagar was more than 1 : 5, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "age_ratio_s1 = 6/5\nage_ratio_s2 = 1/5\n\nif age_ratio_s1 is None or age_ratio_s2 is None:\n print('neutral')\n\nelif age_ratio_s1 >= age_ratio_s2:\n print('Entailment')\n\nelif age_ratio_s1 != age_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": 2000 , Deepak ' s share is :, \"statement 2\" :more than 2000 , Deepak ' s share is :, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Deepak_share_s1 = 2000\nDeepak_share_s2 = 2000+1\n\nif Deepak_share_s1 is None or Deepak_share_s2 is None:\n print('neutral')\n\nelif Deepak_share_s1 == Deepak_share_s2:\n print('Entailment')\n\nelif Deepak_share_s1 != Deepak_share_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Donald carries a total of less than 89 notes ( of either $ 10 or \u20ac 10 , ) then what is the total number of notes ( of either $ 10 or \u20ac 10 , ) they take ?, \"statement 2\" :If Donald carries a total of 39 notes ( of either $ 10 or \u20ac 10 , ) then what is the total number of notes ( of either $ 10 or \u20ac 10 , ) they take ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Donald_carries_s1 = 89\nDonald_carries_s2 = 39\n\nif Donald_carries_s1 is None or Donald_carries_s2 is None:\n print('neutral')\n\nelif Donald_carries_s1 == Donald_carries_s2:\n print('Entailment')\n\nelif Donald_carries_s1 != Donald_carries_s2:\n print('contradiction')\n" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": A group of 5 friends \u2014 Archie , Betty , Jerry , Moose , and Veronica \u2014 arrived at the movie theater to see a movie, \"statement 2\" :A group of less than 8 friends \u2014 Archie , Betty , Jerry , Moose , and Veronica \u2014 arrived at the movie theater to see a movie, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "group_of_friends_s1 = 5\ngroup_of_friends_s2 = 8\n\nif group_of_friends_s1 is None or group_of_friends_s2 is None:\n print('neutral')\n\nelif group_of_friends_s1 <= group_of_friends_s2:\n print('Entailment')\n\nelif group_of_friends_s1 != group_of_friends_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Claire has a total of 80 pets consisting of gerbils and hamsters only, \"statement 2\" :Claire has a total of more than 30 pets consisting of gerbils and hamsters only, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Claire_pets_s1 = 80\nClaire_pets_s2 = 30\n\nif Claire_pets_s1 is None or Claire_pets_s2 is None:\n print('neutral')\n\nelif Claire_pets_s1 >= Claire_pets_s2:\n print('Entailment')\n\nelif Claire_pets_s1 != Claire_pets_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Akash will arrange 6 people of 6 different heights for photograph by placing them in two rows of three so that each person in the first row is standing is standing in front of someone in the second row, \"statement 2\" :Akash will arrange less than 8 people of 6 different heights for photograph by placing them in two rows of three so that each person in the first row is standing is standing in front of someone in the second row, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Akash_will_arrange_s1 = 6\nAkash_will_arrange_s2 = 8\n\nif Akash_will_arrange_s1 is None or Akash_will_arrange_s2 is None:\n print('neutral')\n\nelif Akash_will_arrange_s1 <= Akash_will_arrange_s2:\n print('Entailment')\n\nelif Akash_will_arrange_s1 != Akash_will_arrange_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Andrew purchased 6 kg of grapes at the rate of 74 per kg and 9 kg of mangoes at the rate of 59 per kg, \"statement 2\" :Andrew purchased 8 kg of grapes at the rate of 74 per kg and 9 kg of mangoes at the rate of 59 per kg, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Andrew_purchased_s1 = 6\nAndrew_purchased_s2 = 8\n\nif Andrew_purchased_s1 is None or Andrew_purchased_s2 is None:\n print('neutral')\n\nelif Andrew_purchased_s1 == Andrew_purchased_s2:\n print('Entailment')\n\nelif Andrew_purchased_s1 != Andrew_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If she worked three 8 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"statement 2\" :If she worked three 3 - hour shifts this week and averaged $ 40 in orders per hour , how much did Jill earn this week ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "worked_s1 = 8\nworked_s2 = 3\n\nif worked_s1 is None or worked_s2 is None:\n print('neutral')\n\nelif worked_s1 == worked_s2:\n print('Entailment')\n\nelif worked_s1 != worked_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Right now , the ratio between the ages of Sandy and Molly is 4 : 3, \"statement 2\" :Right now , the ratio between the ages of Sandy and Molly is more than 1 : 3, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Age_ratio_s1 = 4/3\nAge_ratio_s2 = 1/3\n\nif Age_ratio_s1 is None or Age_ratio_s2 is None:\n print('neutral')\n\nelif Age_ratio_s1 >= Age_ratio_s2:\n print('Entailment')\n\nelif Age_ratio_s1 != Age_ratio_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": If Elena purchased a total of 10 of these pens for $ 42.00 , how many brand X pens did she purchase ?, \"statement 2\" :If Elena purchased a total of more than 10 of these pens for $ 42.00 , how many brand X pens did she purchase ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Elena_purchased_s1 = 10\nElena_purchased_s2 = 10+1\n\nif Elena_purchased_s1 is None or Elena_purchased_s2 is None:\n print('neutral')\n\nelif Elena_purchased_s1 == Elena_purchased_s2:\n print('Entailment')\n\nelif Elena_purchased_s1 != Elena_purchased_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": During the first two weeks of February , the total rainfall in Springdale was 20 inches, \"statement 2\" :During the first two weeks of February , the total rainfall in Springdale was less than 40 inches, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "rainfall_s1 = 20\nrainfall_s2 = 40\n\nif rainfall_s1 is None or rainfall_s2 is None:\n print('neutral')\n\nelif rainfall_s1 <= rainfall_s2:\n print('Entailment')\n\nelif rainfall_s1 != rainfall_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": At a meeting of the 6 Joint Chiefs of Staff , the Chief of Naval Operations does not want to sit next to the Chief of the National Guard Bureau, \"statement 2\" :At a meeting of the more than 2 Joint Chiefs of Staff , the Chief of Naval Operations does not want to sit next to the Chief of the National Guard Bureau, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "meeting_s1 = 6\nmeeting_s2 = 2\n\nif meeting_s1 is None or meeting_s2 is None:\n print('neutral')\n\nelif meeting_s1 >= meeting_s2:\n print('Entailment')\n\nelif meeting_s1 != meeting_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Meg and Bob are among the more than 2 participants in a cycling race, \"statement 2\" :Meg and Bob are among the 4 participants in a cycling race, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "participants_s1 = None\nparticipants_s2 = 4\n\nif participants_s1 is None or participants_s2 is None:\n print('neutral')\n\nelif participants_s1 == participants_s2:\n print('Entailment')\n\nelif participants_s1 != participants_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Shawn invested one half of his savings in a bond that paid simple interest for less than 4 years and received $ 200 as interest, \"statement 2\" :Shawn invested one half of his savings in a bond that paid simple interest for 2 years and received $ 200 as interest, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Shawn_invested_s1 = None\nShawn_invested_s2 = 2\n\nif Shawn_invested_s1 is None or Shawn_invested_s2 is None:\n print('neutral')\n\nelif Shawn_invested_s1 == Shawn_invested_s2:\n print('Entailment')\n\nelif Shawn_invested_s1 != Shawn_invested_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Cindy ' s mother gives her $ more than 20 to spend, \"statement 2\" :Cindy ' s mother gives her $ 30 to spend, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Cindy_mother_gives_s1 = None\nCindy_mother_gives_s2 = 30\n\nif Cindy_mother_gives_s1 is None or Cindy_mother_gives_s2 is None:\n print('neutral')\n\nelif Cindy_mother_gives_s1 == Cindy_mother_gives_s2:\n print('Entailment')\n\nelif Cindy_mother_gives_s1 != Cindy_mother_gives_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": In a less than 200 m sprint race Kelly was given a 3 m head start by Abel, \"statement 2\" :In a 100 m sprint race Kelly was given a 3 m head start by Abel, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sprint_race_s1 = None\nsprint_race_s2 = 100\n\nif sprint_race_s1 is None or sprint_race_s2 is None:\n print('neutral')\n\nelif sprint_race_s1 == sprint_race_s2:\n print('Entailment')\n\nelif sprint_race_s1 != sprint_race_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Quarters ( US $ 0.25 ) are stacked in 18 columns, \"statement 2\" :Quarters ( US $ 0.25 ) are stacked in 38 columns, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "stacked_columns_s1 = 18\nstacked_columns_s2 = 38\n\nif stacked_columns_s1 is None or stacked_columns_s2 is None:\n print('neutral')\n\nelif stacked_columns_s1 == stacked_columns_s2:\n print('Entailment')\n\nelif stacked_columns_s1 != stacked_columns_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Sean , who weighs 200 pounds , is in the elevator with two packages weighing 150 pounds and 280 pounds, \"statement 2\" :Sean , who weighs less than 400 pounds , is in the elevator with two packages weighing 150 pounds and 280 pounds, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Sean_weighs_s1 = 200\nSean_weighs_s2 = 400\n\nif Sean_weighs_s1 is None or Sean_weighs_s2 is None:\n print('neutral')\n\nelif Sean_weighs_s1 <= Sean_weighs_s2:\n print('Entailment')\n\nelif Sean_weighs_s1 != Sean_weighs_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Matt is touring a nation in which coins are issued in two amounts , 2 \u00a2 and 5 \u00a2 , which are made of iron and copper , respectively, \"statement 2\" :Matt is touring a nation in which coins are issued in two amounts , less than 4 \u00a2 and 5 \u00a2 , which are made of iron and copper , respectively, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "Amount_s1 = 2,5\nAmount_s2 = 4,5\n\nif Amount_s1 is None or Amount_s2 is None:\n print('neutral')\n\nelif Amount_s1 <= Amount_s2:\n print('Entailment')\n\nelif Amount_s1 != Amount_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "dev" + }, + { + "Input": " \"statement 1\": Pooja is selling her books at puzzles land at a strange price as\n* she sells her book ` ` Vanity ' ' at $ 30\n* she sells her book ` ` Sybil ' ' at $ 25\n* she sells her book ` ` xmen ' ' at $ 20\nAt what price does she sell her book ` ` twilight ' ' ?, \"statement 2\" :Pooja is selling her books at puzzles land at a strange price as * she sells her book ` ` Vanity ' ' at $ more than 10 * she sells her book ` ` Sybil ' ' at $ 25 * she sells her book ` ` xmen ' ' at $ 20 At what price does she sell her book ` ` twilight ' ' ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "sells_book_vanity_s1 = 30\nsells_book_vanity_s2 = 10\n\nif sells_book_vanity_s1 is None or sells_book_vanity_s2 is None:\n print('neutral')\n\nelif sells_book_vanity_s1 > sells_book_vanity_s2:\n print('Entailment')\n\nelif sells_book_vanity_s1 != sells_book_vanity_s2:\n print('contradiction')" + ], + "Output Answer": [ + "Entailment" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Pooja is selling her books at puzzles land at a strange price as * she sells her book ` ` Vanity ' ' at $ more than 10 * she sells her book ` ` Sybil ' ' at $ 25 * she sells her book ` ` xmen ' ' at $ 20 At what price does she sell her book ` ` twilight ' ' ?, \"statement 2\" :Pooja is selling her books at puzzles land at a strange price as\n* she sells her book ` ` Vanity ' ' at $ 30\n* she sells her book ` ` Sybil ' ' at $ 25\n* she sells her book ` ` xmen ' ' at $ 20\nAt what price does she sell her book ` ` twilight ' ' ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "book_price_s1 = None\nbook_price_s2 = 20\n\nif book_price_s1 is None or book_price_s2 is None:\n print('neutral')\n\nelif book_price_s1 == book_price_s2:\n print('Entailment')\n\nelif book_price_s1 != book_price_s2:\n print('contradiction')" + ], + "Output Answer": [ + "neutral" + ], + "split": "train" + }, + { + "Input": " \"statement 1\": Pooja is selling her books at puzzles land at a strange price as\n* she sells her book ` ` Vanity ' ' at $ 30\n* she sells her book ` ` Sybil ' ' at $ 25\n* she sells her book ` ` xmen ' ' at $ 20\nAt what price does she sell her book ` ` twilight ' ' ?, \"statement 2\" :Pooja is selling her books at puzzles land at a strange price as * she sells her book ` ` Vanity ' ' at $ 80 * she sells her book ` ` Sybil ' ' at $ 25 * she sells her book ` ` xmen ' ' at $ 20 At what price does she sell her book ` ` twilight ' ' ?, \"options: \" Entailment or contradiction or neutral?", + "Output Program": [ + "vanity_book_s1 = 30\nvanity_book_s2 = 80\n \nif vanity_book_s1 is None or vanity_book_s2 is None:\n print('neutral')\n\nelif vanity_book_s1 == vanity_book_s2:\n print('Entailment')\n\nelif vanity_book_s1 != vanity_book_s2:\n print('contradiction')" + ], + "Output Answer": [ + "contradiction" + ], + "split": "train" + } + ], + "Metadata": [] +} \ No newline at end of file