text
stringlengths
13
30k
{"repo_name": "ZeitOnline/zeit.newsletter", "path": "src/zeit/newsletter/browser/edit.py", "copies": "1", "size": "2579", "content": "from zeit.cms.i18n import MessageFactory as _\nfrom zope.cachedescriptors.property import Lazy as cachedproperty\nimport os.path\nimport zeit.cms.browser.view\nimport zeit.cms.content.interfaces\nimport zeit.cms.interfaces\nimport zeit.content.image.interfaces\nimport zeit.content.video.interfaces\nimport zeit.edit.browser.form\nimport zeit.edit.browser.landing\nimport zeit.edit.browser.view\nimport zeit.newsletter.interfaces\nimport zope.formlib.form\n\n\nclass LandingZoneBase(zeit.edit.browser.landing.LandingZone):\n\n uniqueId = zeit.edit.browser.view.Form('uniqueId')\n block_type = 'teaser'\n\n def initialize_block(self):\n content = zeit.cms.interfaces.ICMSContent(self.uniqueId)\n self.block.reference = content\n\n\nclass GroupLandingZone(LandingZoneBase):\n \"\"\"Handler to drop objects to the body's landing zone.\"\"\"\n\n order = 0\n\n\nclass TeaserLandingZone(LandingZoneBase):\n \"\"\"Handler to drop objects after other objects.\"\"\"\n\n order = 'after-context'\n\n\nclass Teaser(zeit.cms.browser.view.Base):\n\n @cachedproperty\n def metadata(self):\n return zeit.cms.content.interfaces.ICommonMetadata(\n self.context.reference, None)\n\n @cachedproperty\n def image(self):\n # XXX copy&paste&tweak of zeit.content.cp.browser.blocks.teaser.Display\n content = self.context.reference\n if content is None:\n return\n if zeit.content.video.interfaces.IVideoContent.providedBy(content):\n return content.thumbnail\n images = zeit.content.image.interfaces.IImages(content, None)\n if images is None:\n preview = zope.component.queryMultiAdapter(\n (content, self.request), name='preview')\n if preview:\n return self.url(preview)\n return\n if not images.image:\n return\n group = images.image\n for name in group:\n basename, ext = os.path.splitext(name)\n if basename.endswith('148x84'):\n image = group[name]\n return self.url(image, '@@raw')\n\n\nclass Advertisement(zeit.cms.browser.view.Base):\n\n @cachedproperty\n def image(self):\n if not self.context.image:\n return\n return self.url(self.context.image, '@@raw')\n\n\nclass GroupTitle(zeit.edit.browser.form.InlineForm):\n\n legend = None\n prefix = 'group'\n undo_description = _('edit group title')\n\n form_fields = zope.formlib.form.FormFields(\n zeit.newsletter.interfaces.IGroup).select('title')\n\n\nclass Empty(object):\n\n def render(self):\n return u''\n", "license": "bsd-3-clause", "hash": -2014002219757949260, "line_mean": 27.0326086957, "line_max": 79, "alpha_frac": 0.6711903839, "autogenerated": false, "ratio": 3.781524926686217, "config_test": false, "has_no_keywords": false, "few_assignments": false}
{"repo_name": "robdobsn/AmazonEchoShopping", "path": "WaitroseService/WaitroseScraper.py", "copies": "1", "size": "20691", "content": "# Waitrose web scraper\n\n__author__ = 'robdobsn'\n\nfrom selenium import webdriver\nfrom selenium.webdriver.common.keys import Keys\nimport selenium.webdriver.support.ui as webdriverui\nfrom selenium.webdriver.support.wait import WebDriverWait\nfrom selenium.webdriver.common.by import By\nfrom selenium.common.exceptions import NoSuchElementException, WebDriverException, TimeoutException\nfrom selenium.webdriver.support import expected_conditions as EC\nfrom bs4 import BeautifulSoup\nimport logging\nimport json\nimport re\n\nclass WaitroseScraper():\n\n def __init__(self):\n logging.info(\"Waitrose scraper starting\")\n self.isInitalized = False\n self.isLoggedIn = False\n self.webDriverType = \"PhantomJS\"\n self.execUsingJS = False\n\n def clickButtonByClassName(self, className):\n if self.execUsingJS:\n self.webDriver.execute_script(\"document.getElementsByClassName('\" + className + \"')[0].click()\")\n else:\n btn = self.webDriver.find_element_by_class_name(className)\n btn.click()\n\n def clickButtonByXPath(self, xpath):\n if self.execUsingJS:\n self.webDriver.execute_script(\"return document.evaluate('\" + xpath + \"', document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue.click()\")\n else:\n btn = self.webDriver.find_element_by_xpath(xpath)\n btn.click()\n\n def clickButtonByCSSSelector(self, cssSelector):\n btn = self.webDriver.find_element_by_css_selector(cssSelector)\n btn.click()\n\n def checkButtonEnabledByCSSSelector(self, cssSelector):\n btn = self.webDriver.find_element_by_css_selector(cssSelector)\n return btn.is_enabled() and btn.is_displayed()\n\n def sendKeysToFieldById(self, elemId, strToSend, pressEnterAfter, clearFirst):\n# if self.execUsingJS:\n# self.webDriver.execute_script(\"document.getElementsByClassName('\" + elemId + \"').value = '\" + strToSend)\n# else:\n print(\"Sending keys to elemId \" + elemId + \" keys = \" + strToSend)\n field = self.webDriver.find_element_by_id(elemId)\n print(field)\n if (clearFirst):\n field.send_keys(Keys.CONTROL + \"a\")\n field.send_keys(Keys.DELETE)\n field.send_keys(strToSend + (Keys.RETURN if pressEnterAfter else \"\"))\n\n def debugDumpPageSource(self, filenameExtra=\"\"):\n with open(\"debugPageSource\" + filenameExtra + \".html\", \"w\") as debugDumpFile:\n debugDumpFile.write(self.webDriver.page_source)\n self.webDriver.save_screenshot('debugPageImage.png')\n\n # Start the web driver (runs the browser)\n def startWebDriver(self):\n\n # Clear current session file info\n with open('browserSession.json', 'w') as outfile:\n json.dump({}, outfile)\n\n # Create WebDriver\n if self.webDriverType == \"Chrome\":\n try:\n self.webDriver = webdriver.Chrome()\n except WebDriverException:\n logging.error(\"startWebDriver() Chrome Failed to start\")\n return False\n elif self.webDriverType == \"Firefox\":\n try:\n self.webDriver = webdriver.Firefox()\n except WebDriverException:\n logging.error(\"startWebDriver() Firefox Failed to start\")\n return False\n elif self.webDriverType == \"PhantomJS\":\n try:\n self.webDriver = webdriver.PhantomJS() # or add to your PATH\n except:\n try:\n self.webDriver = webdriver.PhantomJS(\n executable_path='C:\\ProgramData\\PhantomJS\\bin')\n except:\n try:\n self.webDriver = webdriver.PhantomJS(\n executable_path='/usr/local/lib/node_modules/phantomjs/lib/phantom/bin/phantomjs')\n except:\n try:\n self.webDriver = webdriver.PhantomJS(\n executable_path=r'C:\\Users\\rob_2\\AppData\\Roaming\\npm\\node_modules\\phantomjs\\lib\\phantom\\bin\\phantomjs.exe')\n except:\n logging.error(\"Failed to load the PhantomJS webdriver\")\n return False\n\n # Set the window size (seems to be needed in phantomJS particularly\n # This is probably because the website responds in mobile mode?\n self.webDriver.set_window_size(1280,1024)\n\n # Save session info\n url = self.webDriver.command_executor._url\n session_id = self.webDriver.session_id\n with open('browserSession.json', 'w') as outfile:\n json.dump({\"url\": url, \"session_id\": session_id}, outfile)\n\n return True\n\n def websiteLogin(self, username, password, attemptIdx):\n try:\n self.webDriver.save_screenshot('debug1_'+str(attemptIdx)+'.png')\n logging.info(\"Waiting for signInRegister button\")\n wait = WebDriverWait(self.webDriver, 30)\n wait.until(EC.visibility_of_element_located((By.CLASS_NAME, \"js-sign-in-register\")))\n logging.info(\"waitroseLogin() pressing signInRegister button\")\n self.clickButtonByClassName('js-sign-in-register')\n self.webDriver.save_screenshot('debug2_'+str(attemptIdx)+'.png')\n\n try:\n print(\"Starting to wait for logon-email\")\n wait = WebDriverWait(self.webDriver, 30)\n wait.until(EC.visibility_of_element_located((By.ID, \"logon-email\")))\n print(\"Finished waiting for logon-email\")\n self.webDriver.save_screenshot('debug3_' + str(attemptIdx) + '.png')\n\n try:\n logging.info(\"waitroseLogin() entering username\")\n self.debugDumpPageSource(\"contbutton\")\n self.sendKeysToFieldById('logon-email', username, False, True)\n self.webDriver.save_screenshot('debug4_' + str(attemptIdx) + '.png')\n # self.clickButtonByXPath(\"//input[@type='button' and @value='Continue']\")\n if (self.checkButtonEnabledByCSSSelector(\"input[value='Continue'][type='button']\")):\n self.clickButtonByCSSSelector(\"input[value='Continue'][type='button']\")\n\n try:\n logging.info(\"waitroseLogin() waiting for logon-password visible\")\n wait = WebDriverWait(self.webDriver, 60)\n wait.until(EC.visibility_of_element_located((By.ID, \"logon-password\")))\n self.webDriver.save_screenshot('debug5_' + str(attemptIdx) + '.png')\n\n try:\n logging.info(\"waitroseLogin() entering password\")\n self.sendKeysToFieldById('logon-password', password, False, True)\n #self.clickButtonById('logon-button-sign-in')\n self.clickButtonByCSSSelector(\"input[value='Sign in'][type='button']\")\n self.webDriver.save_screenshot('debug6_' + str(attemptIdx) + '.png')\n logging.info(\"waitroseLogin() waiting for trolley-total to be visible\")\n wait = WebDriverWait(self.webDriver, 60)\n wait.until(EC.visibility_of_element_located((By.CLASS_NAME, \"trolley-total\")))\n self.webDriver.save_screenshot('debug7_' + str(attemptIdx) + '.png')\n elem2 = self.webDriver.find_element_by_class_name('trolley-total')\n if elem2:\n logging.info(\"waitroseLogin() basket found\")\n else:\n logging.info(\"waitroseLogin() basket not found\")\n\n return True\n\n except WebDriverException as err:\n logging.error(\"waitroseLogin() Cannot find logon-password after wait \" + err.msg)\n self.debugDumpPageSource()\n\n except WebDriverException as err:\n logging.error(\"waitroseLogin() Cannot find logon-password field\" + err.msg)\n self.debugDumpPageSource()\n\n except WebDriverException as err:\n logging.error(\"waitroseLogin() Error entering logon-email\" + err.msg)\n self.debugDumpPageSource()\n\n except WebDriverException as err:\n logging.error(\"waitroseLogin() Cannot find logon-email field\" + err.msg)\n self.debugDumpPageSource()\n\n except WebDriverException as err:\n logging.error(\"waitroseLogin() Cannot find sign-in-register button\" + err.msg)\n self.debugDumpPageSource()\n\n return False\n\n def getBasketSummary(self):\n\n basketSummary = {}\n\n # Ensure we wait until the trolley-total is visible\n try:\n wait = WebDriverWait(self.webDriver, 20)\n wait.until(EC.visibility_of_element_located((By.CLASS_NAME, \"trolley-total\")))\n except TimeoutException:\n logging.error(\"Get basket summary timeout exception\")\n self.debugDumpPageSource()\n return None\n except WebDriverException:\n logging.error(\"Get basket summary webdriver element exception\")\n self.debugDumpPageSource()\n return None\n\n # Get basket total price\n try:\n totalElem = self.webDriver.find_element_by_class_name('trolley-total')\n if totalElem:\n reTotalElem = re.search(\"([0-9]{1,4}\\.[0-9]{2})\", totalElem.text)\n if reTotalElem:\n basketSummary[\"totalPrice\"] = reTotalElem.group(1)\n logging.info(\"waitrose: Basket: total=\" + str(basketSummary[\"totalPrice\"]))\n\n # Get number of basket items\n summaryElem = self.webDriver.find_element_by_class_name('trolley-summary')\n if summaryElem:\n reSummaryElem = re.search(\"([0-9]{1,4}) items\", summaryElem.text)\n if reSummaryElem:\n basketSummary[\"numItems\"] = reSummaryElem.group(1)\n logging.info(\"waitrose: Basket: num items=\" + str(basketSummary[\"numItems\"]))\n except WebDriverException:\n logging.error(\"waitrose: Get basket summary webdriver element exception\")\n self.debugDumpPageSource()\n return None\n\n # Return info found\n return basketSummary\n\n def getElemAttrIfPresent(self, soup, elemName, className, subElem, attrName, regexReplace, destDict=None, dictName=None):\n rslt = \"\"\n try:\n el = soup.find(elemName, class_=className)\n if subElem is not \"\":\n el = el.find(subElem)\n if attrName == \"text\":\n rslt = el.get_text()\n else:\n rslt = el[attrName]\n if regexReplace is not \"\":\n rslt = re.sub(regexReplace, \"\", rslt)\n if destDict is not None:\n destDict[dictName] = rslt\n except WebDriverException:\n logging.error(\"waitrose: Error extracting element \" + elemName + \" \" + className)\n self.debugDumpPageSource()\n except:\n logging.error(\"waitrose: Error (not webdriver) extracting element \" + elemName + \" \" + className)\n self.debugDumpPageSource()\n return rslt\n\n def getShoppingItems(self, isTrolleyPage):\n\n # Make sure all items on the page are loaded - lazy loader\n try:\n self.debugDumpPageSource(\"m-product\")\n webdriverui.WebDriverWait(self.webDriver, 10)\\\n .until(EC.visibility_of_element_located((By.CLASS_NAME, \"m-product\")))\n except WebDriverException:\n logging.error(\"Wait for m-product webdriver element exception\")\n return []\n \n productsFound = self.webDriver.find_elements_by_class_name(\"m-product\")\n print(\"waitrose: Lazy loading products - currently \" + str(len(productsFound)) + \" found\")\n numRepeats = 0\n if len(productsFound) > 10:\n while True:\n prevFound = len(productsFound)\n self.webDriver.execute_script(\"window.scrollBy(0,window.innerHeight)\")\n productsFound = self.webDriver.find_elements_by_class_name(\"m-product\")\n print(\"Loading products - currently \" + str(len(productsFound)) + \" found\")\n if len(productsFound) <= prevFound:\n numRepeats += 1\n if numRepeats > 20:\n break\n else:\n numRepeats = 0\n\n print(\"Done lazy loading products \" + str(len(productsFound)) + \" found\")\n\n # Go through items in the list on the current page\n shoppingItems = []\n for product in productsFound:\n\n # Get HTML for this product\n basketIt = {}\n el = product.get_attribute(\"innerHTML\")\n productSoup = BeautifulSoup(el, \"html.parser\")\n\n # Extract some common details\n self.getElemAttrIfPresent(productSoup, \"a\", \"m-product-open-details\", \"\", \"href\", \"\", basketIt, \"detailsHref\")\n self.getElemAttrIfPresent(productSoup, \"a\", \"m-product-open-details\", \"img\", \"src\", \"\", basketIt, \"imageSrc\")\n self.getElemAttrIfPresent(productSoup, \"div\", \"m-product-volume\", \"\", \"text\", r\"\\W\", basketIt, \"productVolume\")\n\n # Check if we are doing the trolley page - which has extra info like number of items ordered\n if isTrolleyPage:\n self.getElemAttrIfPresent(productSoup, \"div\", \"m-product-title\", \"a\", \"text\", \"\", basketIt, \"productTitle\")\n if not \"productTitle\" in basketIt or basketIt[\"productTitle\"] == \"\":\n self.getElemAttrIfPresent(productSoup, \"a\", \"m-product-open-details\", \"img\", \"title\", \"\", basketIt,\n \"productTitle\")\n self.getElemAttrIfPresent(productSoup, \"div\", \"quantity-append\", \"input\", \"value\", \"\", basketIt,\n \"trolleyQuantity\")\n self.getElemAttrIfPresent(productSoup, \"p\", \"m-product-details\", \"span\", \"text\", \"\", basketIt,\n \"trolleyPrice\")\n self.getElemAttrIfPresent(productSoup, \"div\", \"m-product-details-container\", \"div\", \"data-price\", \"\",\n basketIt,\n \"price\")\n self.getElemAttrIfPresent(productSoup, \"div\", \"m-product-details-container\", \"div\", \"data-priceperkg\",\n \"\", basketIt, \"pricePerKg\")\n self.getElemAttrIfPresent(productSoup, \"div\", \"m-product-details-container\", \"div\", \"data-orderitemid\",\n \"\", basketIt, \"orderItemId\")\n self.getElemAttrIfPresent(productSoup, \"div\", \"m-product-details-container\", \"div\", \"data-producttype\",\n \"\", basketIt, \"productType\")\n self.getElemAttrIfPresent(productSoup, \"div\", \"m-product-details-container\", \"div\", \"data-productid\",\n \"\", basketIt, \"productId\")\n self.getElemAttrIfPresent(productSoup, \"div\", \"m-product-details-container\", \"div\", \"data-uom\", \"\", basketIt,\n \"UOM\")\n self.getElemAttrIfPresent(productSoup, \"div\", \"m-product-details-container\", \"div\", \"data-weighttype\",\n \"\", basketIt, \"weightType\")\n self.getElemAttrIfPresent(productSoup, \"div\", \"m-product-details-container\", \"div\", \"data-substitute\",\n \"\", basketIt, \"substitute\")\n else:\n self.getElemAttrIfPresent(productSoup, \"div\", \"m-product-price-container\", \"span\", \"text\", \"\\W\", basketIt,\n \"price\")\n self.getElemAttrIfPresent(productSoup, \"a\", \"m-product-open-details\", \"\", \"text\", \"\", basketIt,\n \"productTitle\")\n if not \"productTitle\" in basketIt or basketIt[\"productTitle\"] == \"\":\n self.getElemAttrIfPresent(productSoup, \"a\", \"m-product-open-details\", \"img\", \"title\", \"\", basketIt,\n \"productTitle\")\n\n # Check if the product at least has a title and only add to list if it does\n if not \"productTitle\" in basketIt or basketIt[\"productTitle\"] == \"\":\n logging.error(\"Extract Shopping List: Failed to extract product name\")\n else:\n shoppingItems.append(basketIt)\n\n return shoppingItems\n\n def getTrolleyContents(self):\n\n # Ensure we wait until the trolley-total is visible\n try:\n wait = WebDriverWait(self.webDriver, 20)\n wait.until(EC.visibility_of_element_located((By.CLASS_NAME, \"trolley-total\")))\n except WebDriverException:\n logging.error(\"Wait for Trolley-Total webdriver element exception\")\n self.debugDumpPageSource()\n return None\n\n # Navigate to the basket contents\n try:\n self.clickButtonByXPath('//div[@class=\"mini-trolley\"]//a')\n wait = WebDriverWait(self.webDriver, 30)\n wait.until(EC.visibility_of_element_located((By.ID, \"my-trolley\")))\n except NoSuchElementException:\n logging.error(\"Press view trolley button no such element\")\n self.debugDumpPageSource()\n return None\n except WebDriverException:\n logging.error(\"Press view trolley button webdriver element exception\")\n self.debugDumpPageSource()\n return None\n\n # Get the shopping items on the current page\n return self.getShoppingItems(True)\n\n def getFavourites(self):\n\n # Ensure we wait until the favourites is visible\n try:\n wait = WebDriverWait(self.webDriver, 20)\n wait.until(EC.visibility_of_element_located((By.CLASS_NAME, \"js-navbar-favourites\")))\n except WebDriverException:\n logging.error(\"Wait for favourites button webdriver element exception\")\n self.debugDumpPageSource()\n return None\n\n # Navigate to the favourites\n try:\n FAVOURITES_BUTTON_XPATH = '//a[@class=\"js-navbar-favourites\"]'\n elemBasketBtn = self.webDriver.find_element_by_xpath(FAVOURITES_BUTTON_XPATH)\n print(elemBasketBtn)\n elemBasketBtn.click()\n wait = WebDriverWait(self.webDriver, 60)\n wait.until(EC.visibility_of_element_located((By.CLASS_NAME, \"products-grid\")))\n except NoSuchElementException:\n logging.error(\"Press view favourites button no such element\")\n self.debugDumpPageSource()\n return None\n except WebDriverException:\n logging.error(\"Press view favourites button webdriver element exception\")\n self.debugDumpPageSource()\n return None\n\n # Get the shopping items on the current page\n return self.getShoppingItems(False)\n\n # Handle site login\n def siteLogin(self, siteUrl, username, password, titleMustContainStr):\n\n # Start webDriver\n if not self.startWebDriver():\n logging.error(\"Unable to start webdriver\")\n return False\n self.isInitalized = True\n\n # Go to URL\n logging.info(\"Webdriver going to \" + siteUrl)\n self.webDriver.get(siteUrl)\n logging.info(\"Webdriver site title = \" + self.webDriver.title)\n if not titleMustContainStr in self.webDriver.title:\n logging.error(\"Site \" + siteUrl + \" title doesn't contain \" + titleMustContainStr)\n self.debugDumpPageSource()\n return False\n\n # Handle login\n self.isLoggedIn = self.websiteLogin(username, password, 1)\n\n # Succeeded so far\n return self.isLoggedIn\n\n # Ensure that we are logged in\n def ensureLoggedIn(self, username, password):\n # Ensure we are initialised\n if not self.isInitalized:\n self.siteLogin(\"http://www.waitrose.com\", username, password, \"Waitrose\")\n\n # Try to login again if not currently logged in\n if self.isInitalized:\n if not self.isLoggedIn:\n self.isLoggedIn = self.websiteLogin(username, password, 2)\n\n return self.isLoggedIn\n", "license": "isc", "hash": -783531863977082537, "line_mean": 46.8958333333, "line_max": 169, "alpha_frac": 0.5816538592, "autogenerated": false, "ratio": 4.352334875893984, "config_test": false, "has_no_keywords": false, "few_assignments": false}
{"repo_name": "kidscancode/gamedev", "path": "pygame template.py", "copies": "1", "size": "1508", "content": "# Pygame Template\n# Use this to start a new Pygame project\n# KidsCanCode 2015\nimport pygame\nimport random\n\n# define some colors (R, G, B)\nWHITE = (255, 255, 255)\nGREEN = (0, 255, 0)\nBLUE = (0, 0, 255)\nBLACK = (0, 0, 0) \nFUCHSIA = (255, 0, 255)\nGRAY = (128, 128, 128)\nLIME = (0, 128, 0)\nMAROON = (128, 0, 0)\nNAVYBLUE = (0, 0, 128)\nOLIVE = (128, 128, 0)\nPURPLE = (128, 0, 128)\nRED = (255, 0, 0)\nSILVER = (192, 192, 192)\nTEAL = (0, 128, 128)\nYELLOW = (255, 255, 0)\nORANGE = (255, 128, 0)\nCYAN = (0, 255, 255)\n\n# basic constants to set up your game\nWIDTH = 360\nHEIGHT = 480\nFPS = 30\nBGCOLOR = BLACK\n\n# initialize pygame\npygame.init()\n# initialize sound - uncomment if you're using sound\n# pygame.mixer.init()\n# create the game window and set the title\nscreen = pygame.display.set_mode((WIDTH, HEIGHT))\npygame.display.set_caption(\"My Game\")\n# start the clock\nclock = pygame.time.Clock()\n\n# set the 'running' variable to False to end the game\nrunning = True\n# start the game loop\nwhile running:\n # keep the loop running at the right speed\n clock.tick(FPS)\n # Game loop part 1: Events #####\n for event in pygame.event.get():\n # this one checks for the window being closed\n if event.type == pygame.QUIT:\n pygame.quit()\n # add any other events here (keys, mouse, etc.)\n\n # Game loop part 2: Updates #####\n\n # Game loop part 3: Draw #####\n screen.fill(BGCOLOR)\n # after drawing, flip the display\n pygame.display.flip()\n\n# close the window\npygame.quit()\n", "license": "mit", "hash": 3454655415024161001, "line_mean": 22.9365079365, "line_max": 55, "alpha_frac": 0.6399204244, "autogenerated": false, "ratio": 2.9980119284294235, "config_test": false, "has_no_keywords": false, "few_assignments": false}
{"repo_name": "hhucn/git-vote", "path": "git-vote/__main__.py", "copies": "1", "size": "3022", "content": "import argparse\nimport collections\nimport re\nimport subprocess\n\n\nNOTES_REF = 'refs/notes/votes'\n\n\nVote = collections.namedtuple('Vote', ['commit', 'user'])\n\n\n\ndef vote(args):\n\tassert args.user, 'TODO: determine user automatically'\n\tvote = 'vote:%s' % args.user\n\tsubprocess.check_call([\n\t\t'git', 'notes', '--ref', NOTES_REF, 'append', '--allow-empty', '-m', vote, args.COMMIT],\n\t\tcwd=args.repo_dir)\n\t# TODO: prevent voting twice as same user\n\n\ndef get_all_votes(repo_dir):\n\toutput_bytes = subprocess.check_output([\n\t\t'git', 'notes', '--ref', NOTES_REF, 'list'],\n\t\tcwd=repo_dir)\n\toutput = output_bytes.decode('utf-8')\n\tfor line in output.splitlines():\n\t\tif not line:\n\t\t\tcontinue\n\t\tvotenote_ref, commit_id = line.split()\n\t\t# TODO use dulwich or something more efficient here\n\t\tvotenote_bytes = subprocess.check_output(\n\t\t\t['git', 'show', votenote_ref],\n\t\t\tcwd=repo_dir)\n\n\t\tvotenote_content = votenote_bytes.decode('utf-8') # TODO ignore invalid votes\n\t\tfor voteline in votenote_content.splitlines():\n\t\t\tif not voteline:\n\t\t\t\tcontinue\n\t\t\tm = re.match(r'^vote:(?P<user>[a-z0-9@._]+)$', voteline.strip()) # TODO check re for user spec\n\t\t\tif not m:\n\t\t\t\tprint('Skipping crap %r' % voteline)\n\t\t\t\tcontinue\n\t\t\tuser = m.group('user')\n\n\t\t\tyield Vote(commit=commit_id, user=user)\n\n\ndef print_list(args):\n\tall_votes = get_all_votes(args.repo_dir)\n\tall_votes_sorted = sorted(all_votes, key=lambda v: (v.commit, v.user))\n\tfor v in all_votes_sorted:\n\t\tprint('%s: +1 from %s' % (v.commit, v.user))\n\n\ndef tally(all_votes):\n\t\"\"\" Returns a dict commit id => set of users \"\"\"\n\tres = collections.defaultdict(set)\n\tfor v in all_votes:\n\t\tres[v.commit].add(v.user)\n\treturn res\n\n\ndef print_tally(args):\n\tall_votes = get_all_votes(args.repo_dir)\n\tfor commit, votes in sorted(tally(all_votes).items(), key=lambda kv: (kv[1], kv[0])):\n\t\tprint('%s: %d votes' % (commit, len(votes)))\n\n\ndef print_elect(args):\n\tall_votes = get_all_votes(args.repo_dir)\n\twinner_vcount, winner_commit = max((len(votes), commit) for commit, votes in tally(all_votes).items())\n\t# TODO more algorithms\n\tprint('%s won the election with %d votes' % (winner_commit, winner_vcount))\n\n\ndef main():\n\tparser = argparse.ArgumentParser('Vote on git commands')\n\tparser.add_argument('-r', '--repo-dir', metavar='DIR', help='root directory of the repository to modify')\n\tsubparsers = parser.add_subparsers(dest='cmd')\n\tvote_parser = subparsers.add_parser('vote', help='Vote for commit')\n\tvote_parser.add_argument('--user', metavar='USER_ID', help='ID of the user to vote as')\n\tvote_parser.add_argument('COMMIT', help='reference to the commit to vote for')\n\tsubparsers.add_parser('list', help='List all votes')\n\tsubparsers.add_parser('tally', help='Tally all votes')\n\tsubparsers.add_parser('elect', help='Elect a commit')\n\n\targs = parser.parse_args()\n\tif args.cmd == 'vote':\n\t\tvote(args)\n\telif args.cmd == 'list':\n\t\tprint_list(args)\n\telif args.cmd == 'tally':\n\t\tprint_tally(args)\n\telif args.cmd == 'elect':\n\t\tprint_elect(args)\n\telse:\n\t\tparser.print_help()\n\nif __name__ == '__main__':\n\tmain()\n", "license": "apache-2.0", "hash": 2600720082252724022, "line_mean": 28.6274509804, "line_max": 106, "alpha_frac": 0.6767041694, "autogenerated": false, "ratio": 2.869895536562203, "config_test": false, "has_no_keywords": false, "few_assignments": false}
{"repo_name": "kerimlcr/ab2017-dpyo", "path": "ornek/lollypop/lollypop-0.9.229/src/web.py", "copies": "1", "size": "7411", "content": "# Copyright (c) 2014-2016 Cedric Bellegarde <[email protected]>\n# This program is free software: you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation, either version 3 of the License, or\n# (at your option) any later version.\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n# GNU General Public License for more details.\n# You should have received a copy of the GNU General Public License\n# along with this program. If not, see <http://www.gnu.org/licenses/>.\n\nfrom gi.repository import GObject, GLib\n\nfrom threading import Thread\nfrom time import time\n\nfrom lollypop.sqlcursor import SqlCursor\nfrom lollypop.tagreader import TagReader\nfrom lollypop.web_youtube import WebYouTube\nfrom lollypop.web_jgm90 import WebJmg90\nfrom lollypop.define import Lp, DbPersistent, Type\nfrom lollypop.lio import Lio\n\n\nclass Web(GObject.Object):\n \"\"\"\n Web helper\n \"\"\"\n\n __gsignals__ = {\n 'saved': (GObject.SignalFlags.RUN_FIRST, None, (int,)),\n 'progress': (GObject.SignalFlags.RUN_FIRST, None, (float,))\n }\n\n def play_track(track, play, callback):\n \"\"\"\n Play track\n @param track as Track\n @param play as bool\n @param callback as func(uri: str, track: Track, play: bool)\n \"\"\"\n if track.is_jgm:\n uri = WebJmg90.get_uri_content(track.uri)\n elif track.is_youtube:\n uri = WebYouTube.get_uri_content(track.uri)\n else:\n return\n GLib.idle_add(callback, uri, track, play)\n\n def __init__(self):\n \"\"\"\n Init helper\n \"\"\"\n GObject.Object.__init__(self)\n self.__helpers = [WebJmg90(), WebYouTube()]\n\n def save_track(self, item, persistent):\n \"\"\"\n Save item into collection as track\n @param item as SearchItem\n @param persistent as DbPersistent\n \"\"\"\n t = Thread(target=self.__save_track_thread, args=(item, persistent))\n t.daemon = True\n t.start()\n\n def save_album(self, item, persistent):\n \"\"\"\n Save item into collection as album\n @param item as SearchItem\n @param persistent as DbPersistent\n \"\"\"\n t = Thread(target=self.__save_album_thread,\n args=(item, persistent))\n t.daemon = True\n t.start()\n\n#######################\n# PRIVATE #\n#######################\n def __save_album_thread(self, item, persistent):\n \"\"\"\n Save item into collection as album\n @param item as SearchItem\n @param persistent as DbPersistent\n \"\"\"\n nb_items = len(item.subitems)\n # Should not happen but happen :-/\n if nb_items == 0:\n return\n start = 0\n album_artist = item.subitems[0].artists[0]\n album_id = None\n for track_item in item.subitems:\n (album_id, track_id) = self.__save_track(track_item, persistent,\n album_artist)\n if track_id is None:\n continue\n # Download cover\n if start == 0:\n t = Thread(target=self.__save_cover, args=(item, album_id))\n t.daemon = True\n t.start()\n start += 1\n GLib.idle_add(self.emit, \"progress\", start / nb_items)\n GLib.idle_add(self.emit, \"progress\", 1)\n if Lp().settings.get_value('artist-artwork'):\n Lp().art.cache_artists_info()\n if album_id is not None:\n GLib.idle_add(self.emit, \"saved\", album_id)\n\n def __save_track_thread(self, item, persistent):\n \"\"\"\n Save item into collection as track\n @param item as SearchItem\n @param persistent as DbPersistent\n \"\"\"\n album_artist = item.artists[0]\n (album_id, track_id) = self.__save_track(item, persistent,\n album_artist)\n if track_id is None:\n return\n self.__save_cover(item, album_id)\n if Lp().settings.get_value('artist-artwork'):\n Lp().art.cache_artists_info()\n GLib.idle_add(self.emit, \"saved\", track_id)\n\n def __save_track(self, item, persistent, album_artist):\n \"\"\"\n Save item into collection as track\n @param item as SearchItem\n @param persistent as DbPersistent\n @param album artist as str\n @return (album id as int, track id as int)\n \"\"\"\n # Get uri from helpers\n for helper in self.__helpers:\n uri = helper.get_uri(item)\n if uri:\n break\n # Don't found anything\n if not uri:\n return (None, None)\n track_id = Lp().tracks.get_id_by_uri(uri)\n # Check if track needs to be updated\n if track_id is not None:\n if Lp().tracks.get_persistent(track_id) == DbPersistent.NONE\\\n and persistent == DbPersistent.EXTERNAL:\n Lp().tracks.set_persistent(track_id, DbPersistent.EXTERNAL)\n return (None, None)\n t = TagReader()\n with SqlCursor(Lp().db) as sql:\n # Happen often with Itunes/Spotify\n if album_artist not in item.artists:\n item.artists.append(album_artist)\n artists = \"; \".join(item.artists)\n artist_ids = t.add_artists(artists, album_artist, \"\")\n album_artist_ids = t.add_album_artists(album_artist, \"\")\n (album_id, new_album) = t.add_album(item.album,\n album_artist_ids, \"\",\n False, 0, 0, int(time()), True)\n # FIXME: Check this, could move this in add_album()\n if new_album:\n Lp().albums.set_synced(album_id, Type.NONE)\n\n if persistent == DbPersistent.CHARTS:\n genre_ids = [Type.CHARTS]\n new_artist_ids = []\n else:\n new_artist_ids = list(set(artist_ids) | set(album_artist_ids))\n genre_ids = t.add_genres(\"Web\", album_id)\n\n # Add track to db\n track_id = Lp().tracks.add(item.name, uri, item.duration,\n 0, item.discnumber, \"\", album_id,\n item.year, 0, 0, 0, persistent)\n t.update_track(track_id, artist_ids, genre_ids)\n t.update_album(album_id, album_artist_ids, genre_ids, None)\n sql.commit()\n\n for genre_id in genre_ids:\n GLib.idle_add(Lp().scanner.emit, 'genre-updated', genre_id, True)\n for artist_id in new_artist_ids:\n GLib.idle_add(Lp().scanner.emit, 'artist-updated', artist_id, True)\n return (album_id, track_id)\n\n def __save_cover(self, item, album_id):\n \"\"\"\n Save cover to store\n @param item as SearchItem\n @param album id as int\n \"\"\"\n f = Lio.File.new_for_uri(item.cover)\n (status, data, tag) = f.load_contents(None)\n if status:\n Lp().art.save_album_artwork(data, album_id)\n", "license": "gpl-3.0", "hash": 2696436820573914990, "line_mean": 36.6192893401, "line_max": 79, "alpha_frac": 0.5471596276, "autogenerated": false, "ratio": 4.005945945945946, "config_test": false, "has_no_keywords": false, "few_assignments": false}
{"text": "big sittle lies season 2 how many episodes", "summary": "big little lies season 2 how many episodes"}
{"text": "big little lies season 2 how any episodes", "summary": "big little lies season 2 how many episodes"}
{"text": "big little lies season 2 how may episodes", "summary": "big little lies season 2 how many episodes"}
{"text": "big how lies season 2 little many episodes", "summary": "big little lies season 2 how many episodes"}
{"text": "big little libes season 2 how many episodes", "summary": "big little lies season 2 how many episodes"}
{"text": "big little lies season 2 how many those episodes", "summary": "big little lies season 2 how many episodes"}
{"text": "big little lies season 2 how many episodes", "summary": "big little lies season 2 how many episodes"}
{"text": "big little lie season 2 how many episodes", "summary": "big little lies season 2 how many episodes"}
{"text": "whoj sang waiting for a girl like you", "summary": "who sang waiting for a girl like you"}
{"text": "who sang waitjng for a girl like you", "summary": "who sang waiting for a girl like you"}
{"repo_name": "ahmedbodi/AutobahnPython", "path": "examples/asyncio/websocket/echo/client_coroutines.py", "copies": "13", "size": "2044", "content": "###############################################################################\n##\n## Copyright (C) 2013-2014 Tavendo GmbH\n##\n## Licensed under the Apache License, Version 2.0 (the \"License\");\n## you may not use this file except in compliance with the License.\n## You may obtain a copy of the License at\n##\n## http://www.apache.org/licenses/LICENSE-2.0\n##\n## Unless required by applicable law or agreed to in writing, software\n## distributed under the License is distributed on an \"AS IS\" BASIS,\n## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n## See the License for the specific language governing permissions and\n## limitations under the License.\n##\n###############################################################################\n\nfrom autobahn.asyncio.websocket import WebSocketClientProtocol, \\\n WebSocketClientFactory\n\nimport asyncio\n\n\n\nclass MyClientProtocol(WebSocketClientProtocol):\n\n def onConnect(self, response):\n print(\"Server connected: {0}\".format(response.peer))\n\n @asyncio.coroutine\n def onOpen(self):\n print(\"WebSocket connection open.\")\n\n ## start sending messages every second ..\n while True:\n self.sendMessage(u\"Hello, world!\".encode('utf8'))\n self.sendMessage(b\"\\x00\\x01\\x03\\x04\", isBinary = True)\n yield from asyncio.sleep(1)\n\n def onMessage(self, payload, isBinary):\n if isBinary:\n print(\"Binary message received: {0} bytes\".format(len(payload)))\n else:\n print(\"Text message received: {0}\".format(payload.decode('utf8')))\n\n def onClose(self, wasClean, code, reason):\n print(\"WebSocket connection closed: {0}\".format(reason))\n\n\n\nif __name__ == '__main__':\n\n import asyncio\n\n factory = WebSocketClientFactory(\"ws://localhost:9000\", debug = False)\n factory.protocol = MyClientProtocol\n\n loop = asyncio.get_event_loop()\n coro = loop.create_connection(factory, '127.0.0.1', 9000)\n loop.run_until_complete(coro)\n loop.run_forever()\n loop.close()\n", "license": "apache-2.0", "hash": 7822061744094950801, "line_mean": 31.4444444444, "line_max": 79, "alpha_frac": 0.6232876712, "autogenerated": false}
{"repo_name": "ifduyue/django", "path": "django/core/checks/registry.py", "copies": "13", "size": "3108", "content": "from itertools import chain\n\nfrom django.utils.itercompat import is_iterable\n\n\nclass Tags:\n \"\"\"\n Built-in tags for internal checks.\n \"\"\"\n admin = 'admin'\n caches = 'caches'\n compatibility = 'compatibility'\n database = 'database'\n models = 'models'\n security = 'security'\n signals = 'signals'\n templates = 'templates'\n urls = 'urls'\n\n\nclass CheckRegistry:\n\n def __init__(self):\n self.registered_checks = set()\n self.deployment_checks = set()\n\n def register(self, check=None, *tags, **kwargs):\n \"\"\"\n Can be used as a function or a decorator. Register given function\n `f` labeled with given `tags`. The function should receive **kwargs\n and return list of Errors and Warnings.\n\n Example::\n\n registry = CheckRegistry()\n @registry.register('mytag', 'anothertag')\n def my_check(apps, **kwargs):\n # ... perform checks and collect `errors` ...\n return errors\n # or\n registry.register(my_check, 'mytag', 'anothertag')\n \"\"\"\n kwargs.setdefault('deploy', False)\n\n def inner(check):\n check.tags = tags\n checks = self.deployment_checks if kwargs['deploy'] else self.registered_checks\n checks.add(check)\n return check\n\n if callable(check):\n return inner(check)\n else:\n if check:\n tags += (check, )\n return inner\n\n def run_checks(self, app_configs=None, tags=None, include_deployment_checks=False):\n \"\"\"\n Run all registered checks and return list of Errors and Warnings.\n \"\"\"\n errors = []\n checks = self.get_checks(include_deployment_checks)\n\n if tags is not None:\n checks = [check for check in checks if not set(check.tags).isdisjoint(tags)]\n else:\n # By default, 'database'-tagged checks are not run as they do more\n # than mere static code analysis.\n checks = [check for check in checks if Tags.database not in check.tags]\n\n for check in checks:\n new_errors = check(app_configs=app_configs)\n assert is_iterable(new_errors), (\n \"The function %r did not return a list. All functions registered \"\n \"with the checks registry must return a list.\" % check)\n errors.extend(new_errors)\n return errors\n\n def tag_exists(self, tag, include_deployment_checks=False):\n return tag in self.tags_available(include_deployment_checks)\n\n def tags_available(self, deployment_checks=False):\n return set(chain.from_iterable(\n check.tags for check in self.get_checks(deployment_checks)\n ))\n\n def get_checks(self, include_deployment_checks=False):\n checks = list(self.registered_checks)\n if include_deployment_checks:\n checks.extend(self.deployment_checks)\n return checks\n\n\nregistry = CheckRegistry()\nregister = registry.register\nrun_checks = registry.run_checks\ntag_exists = registry.tag_exists\n", "license": "bsd-3-clause", "hash": -2035686896372967697, "line_mean": 30.7142857143, "line_max": 91, "alpha_frac": 0.6023166023, "autogenerated": false}
{"repo_name": "kmike/scikit-learn", "path": "sklearn/utils/__init__.py", "copies": "3", "size": "10094", "content": "\"\"\"\nThe :mod:`sklearn.utils` module includes various utilites.\n\"\"\"\n\nfrom collections import Sequence\n\nimport numpy as np\nfrom scipy.sparse import issparse\nimport warnings\n\nfrom .murmurhash import murmurhash3_32\nfrom .validation import (as_float_array, check_arrays, safe_asarray,\n assert_all_finite, array2d, atleast2d_or_csc,\n atleast2d_or_csr, warn_if_not_float,\n check_random_state)\nfrom .class_weight import compute_class_weight\n\n__all__ = [\"murmurhash3_32\", \"as_float_array\", \"check_arrays\", \"safe_asarray\",\n \"assert_all_finite\", \"array2d\", \"atleast2d_or_csc\",\n \"atleast2d_or_csr\", \"warn_if_not_float\", \"check_random_state\",\n \"compute_class_weight\"]\n\n# Make sure that DeprecationWarning get printed\nwarnings.simplefilter(\"always\", DeprecationWarning)\n\n\nclass deprecated(object):\n \"\"\"Decorator to mark a function or class as deprecated.\n\n Issue a warning when the function is called/the class is instantiated and\n adds a warning to the docstring.\n\n The optional extra argument will be appended to the deprecation message\n and the docstring. Note: to use this with the default value for extra, put\n in an empty of parentheses:\n\n >>> from sklearn.utils import deprecated\n >>> deprecated() # doctest: +ELLIPSIS\n <sklearn.utils.deprecated object at ...>\n\n >>> @deprecated()\n ... def some_function(): pass\n \"\"\"\n\n # Adapted from http://wiki.python.org/moin/PythonDecoratorLibrary,\n # but with many changes.\n\n def __init__(self, extra=''):\n \"\"\"\n Parameters\n ----------\n extra: string\n to be added to the deprecation messages\n\n \"\"\"\n self.extra = extra\n\n def __call__(self, obj):\n if isinstance(obj, type):\n return self._decorate_class(obj)\n else:\n return self._decorate_fun(obj)\n\n def _decorate_class(self, cls):\n msg = \"Class %s is deprecated\" % cls.__name__\n if self.extra:\n msg += \"; %s\" % self.extra\n\n # FIXME: we should probably reset __new__ for full generality\n init = cls.__init__\n\n def wrapped(*args, **kwargs):\n warnings.warn(msg, category=DeprecationWarning)\n return init(*args, **kwargs)\n cls.__init__ = wrapped\n\n wrapped.__name__ = '__init__'\n wrapped.__doc__ = self._update_doc(init.__doc__)\n wrapped.deprecated_original = init\n\n return cls\n\n def _decorate_fun(self, fun):\n \"\"\"Decorate function fun\"\"\"\n\n msg = \"Function %s is deprecated\" % fun.__name__\n if self.extra:\n msg += \"; %s\" % self.extra\n\n def wrapped(*args, **kwargs):\n warnings.warn(msg, category=DeprecationWarning)\n return fun(*args, **kwargs)\n\n wrapped.__name__ = fun.__name__\n wrapped.__dict__ = fun.__dict__\n wrapped.__doc__ = self._update_doc(fun.__doc__)\n\n return wrapped\n\n def _update_doc(self, olddoc):\n newdoc = \"DEPRECATED\"\n if self.extra:\n newdoc = \"%s: %s\" % (newdoc, self.extra)\n if olddoc:\n newdoc = \"%s\\n\\n%s\" % (newdoc, olddoc)\n return newdoc\n\n\ndef safe_mask(X, mask):\n \"\"\"Return a mask which is safe to use on X.\n\n Parameters\n ----------\n X : {array-like, sparse matrix}\n Data on which to apply mask.\n\n mask: array\n Mask to be used on X.\n\n Returns\n -------\n mask\n \"\"\"\n mask = np.asanyarray(mask)\n if np.issubdtype(mask.dtype, np.int):\n return mask\n\n if hasattr(X, \"toarray\"):\n ind = np.arange(mask.shape[0])\n mask = ind[mask]\n return mask\n\n\ndef resample(*arrays, **options):\n \"\"\"Resample arrays or sparse matrices in a consistent way\n\n The default strategy implements one step of the bootstrapping\n procedure.\n\n Parameters\n ----------\n `*arrays` : sequence of arrays or scipy.sparse matrices with same shape[0]\n\n replace : boolean, True by default\n Implements resampling with replacement. If False, this will implement\n (sliced) random permutations.\n\n n_samples : int, None by default\n Number of samples to generate. If left to None this is\n automatically set to the first dimension of the arrays.\n\n random_state : int or RandomState instance\n Control the shuffling for reproducible behavior.\n\n Returns\n -------\n Sequence of resampled views of the collections. The original arrays are\n not impacted.\n\n Examples\n --------\n It is possible to mix sparse and dense arrays in the same run::\n\n >>> X = [[1., 0.], [2., 1.], [0., 0.]]\n >>> y = np.array([0, 1, 2])\n\n >>> from scipy.sparse import coo_matrix\n >>> X_sparse = coo_matrix(X)\n\n >>> from sklearn.utils import resample\n >>> X, X_sparse, y = resample(X, X_sparse, y, random_state=0)\n >>> X\n array([[ 1., 0.],\n [ 2., 1.],\n [ 1., 0.]])\n\n >>> X_sparse # doctest: +ELLIPSIS +NORMALIZE_WHITESPACE\n <3x2 sparse matrix of type '<... 'numpy.float64'>'\n with 4 stored elements in Compressed Sparse Row format>\n\n >>> X_sparse.toarray()\n array([[ 1., 0.],\n [ 2., 1.],\n [ 1., 0.]])\n\n >>> y\n array([0, 1, 0])\n\n >>> resample(y, n_samples=2, random_state=0)\n array([0, 1])\n\n\n See also\n --------\n :class:`sklearn.cross_validation.Bootstrap`\n :func:`sklearn.utils.shuffle`\n \"\"\"\n random_state = check_random_state(options.pop('random_state', None))\n replace = options.pop('replace', True)\n max_n_samples = options.pop('n_samples', None)\n if options:\n raise ValueError(\"Unexpected kw arguments: %r\" % options.keys())\n\n if len(arrays) == 0:\n return None\n\n first = arrays[0]\n n_samples = first.shape[0] if hasattr(first, 'shape') else len(first)\n\n if max_n_samples is None:\n max_n_samples = n_samples\n\n if max_n_samples > n_samples:\n raise ValueError(\"Cannot sample %d out of arrays with dim %d\" % (\n max_n_samples, n_samples))\n\n arrays = check_arrays(*arrays, sparse_format='csr')\n\n if replace:\n indices = random_state.randint(0, n_samples, size=(max_n_samples,))\n else:\n indices = np.arange(n_samples)\n random_state.shuffle(indices)\n indices = indices[:max_n_samples]\n\n resampled_arrays = []\n\n for array in arrays:\n array = array[indices]\n resampled_arrays.append(array)\n\n if len(resampled_arrays) == 1:\n # syntactic sugar for the unit argument case\n return resampled_arrays[0]\n else:\n return resampled_arrays\n\n\ndef shuffle(*arrays, **options):\n \"\"\"Shuffle arrays or sparse matrices in a consistent way\n\n This is a convenience alias to ``resample(*arrays, replace=False)`` to do\n random permutations of the collections.\n\n Parameters\n ----------\n `*arrays` : sequence of arrays or scipy.sparse matrices with same shape[0]\n\n random_state : int or RandomState instance\n Control the shuffling for reproducible behavior.\n\n n_samples : int, None by default\n Number of samples to generate. If left to None this is\n automatically set to the first dimension of the arrays.\n\n Returns\n -------\n Sequence of shuffled views of the collections. The original arrays are\n not impacted.\n\n Examples\n --------\n It is possible to mix sparse and dense arrays in the same run::\n\n >>> X = [[1., 0.], [2., 1.], [0., 0.]]\n >>> y = np.array([0, 1, 2])\n\n >>> from scipy.sparse import coo_matrix\n >>> X_sparse = coo_matrix(X)\n\n >>> from sklearn.utils import shuffle\n >>> X, X_sparse, y = shuffle(X, X_sparse, y, random_state=0)\n >>> X\n array([[ 0., 0.],\n [ 2., 1.],\n [ 1., 0.]])\n\n >>> X_sparse # doctest: +ELLIPSIS +NORMALIZE_WHITESPACE\n <3x2 sparse matrix of type '<... 'numpy.float64'>'\n with 3 stored elements in Compressed Sparse Row format>\n\n >>> X_sparse.toarray()\n array([[ 0., 0.],\n [ 2., 1.],\n [ 1., 0.]])\n\n >>> y\n array([2, 1, 0])\n\n >>> shuffle(y, n_samples=2, random_state=0)\n array([0, 1])\n\n See also\n --------\n :func:`sklearn.utils.resample`\n \"\"\"\n options['replace'] = False\n return resample(*arrays, **options)\n\n\ndef safe_sqr(X, copy=True):\n \"\"\"Element wise squaring of array-likes and sparse matrices.\n\n Parameters\n ----------\n X : array like, matrix, sparse matrix\n\n Returns\n -------\n X ** 2 : element wise square\n \"\"\"\n X = safe_asarray(X)\n if issparse(X):\n if copy:\n X = X.copy()\n X.data **= 2\n else:\n if copy:\n X = X ** 2\n else:\n X **= 2\n return X\n\n\ndef gen_even_slices(n, n_packs):\n \"\"\"Generator to create n_packs slices going up to n.\n\n Examples\n --------\n >>> from sklearn.utils import gen_even_slices\n >>> list(gen_even_slices(10, 1))\n [slice(0, 10, None)]\n >>> list(gen_even_slices(10, 10)) #doctest: +ELLIPSIS\n [slice(0, 1, None), slice(1, 2, None), ..., slice(9, 10, None)]\n >>> list(gen_even_slices(10, 5)) #doctest: +ELLIPSIS\n [slice(0, 2, None), slice(2, 4, None), ..., slice(8, 10, None)]\n >>> list(gen_even_slices(10, 3))\n [slice(0, 4, None), slice(4, 7, None), slice(7, 10, None)]\n \"\"\"\n start = 0\n for pack_num in range(n_packs):\n this_n = n // n_packs\n if pack_num < n % n_packs:\n this_n += 1\n if this_n > 0:\n end = start + this_n\n yield slice(start, end, None)\n start = end\n\n\ndef tosequence(x):\n \"\"\"Cast iterable x to a Sequence, avoiding a copy if possible.\"\"\"\n if isinstance(x, np.ndarray):\n return np.asarray(x)\n elif isinstance(x, Sequence):\n return x\n else:\n return list(x)\n\n\nclass ConvergenceWarning(Warning):\n \"Custom warning to capture convergence problems\"\n", "license": "bsd-3-clause", "hash": 2334709577611160651, "line_mean": 26.8839779006, "line_max": 79, "alpha_frac": 0.5680602338, "autogenerated": false}
{"repo_name": "dataxu/ansible", "path": "lib/ansible/modules/system/kernel_blacklist.py", "copies": "125", "size": "4009", "content": "#!/usr/bin/python\n# encoding: utf-8 -*-\n\n# Copyright: (c) 2013, Matthias Vogelgesang <[email protected]>\n# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)\n\nfrom __future__ import absolute_import, division, print_function\n__metaclass__ = type\n\nANSIBLE_METADATA = {'metadata_version': '1.1',\n 'status': ['preview'],\n 'supported_by': 'community'}\n\nDOCUMENTATION = '''\n---\nmodule: kernel_blacklist\nauthor:\n- Matthias Vogelgesang (@matze)\nversion_added: '1.4'\nshort_description: Blacklist kernel modules\ndescription:\n - Add or remove kernel modules from blacklist.\noptions:\n name:\n description:\n - Name of kernel module to black- or whitelist.\n required: true\n state:\n description:\n - Whether the module should be present in the blacklist or absent.\n choices: [ absent, present ]\n default: present\n blacklist_file:\n description:\n - If specified, use this blacklist file instead of\n C(/etc/modprobe.d/blacklist-ansible.conf).\n'''\n\nEXAMPLES = '''\n- name: Blacklist the nouveau driver module\n kernel_blacklist:\n name: nouveau\n state: present\n'''\n\nimport os\nimport re\n\nfrom ansible.module_utils.basic import AnsibleModule\n\n\nclass Blacklist(object):\n def __init__(self, module, filename, checkmode):\n self.filename = filename\n self.module = module\n self.checkmode = checkmode\n\n def create_file(self):\n if not self.checkmode and not os.path.exists(self.filename):\n open(self.filename, 'a').close()\n return True\n elif self.checkmode and not os.path.exists(self.filename):\n self.filename = os.devnull\n return True\n else:\n return False\n\n def get_pattern(self):\n return r'^blacklist\\s*' + self.module + '$'\n\n def readlines(self):\n f = open(self.filename, 'r')\n lines = f.readlines()\n f.close()\n return lines\n\n def module_listed(self):\n lines = self.readlines()\n pattern = self.get_pattern()\n\n for line in lines:\n stripped = line.strip()\n if stripped.startswith('#'):\n continue\n\n if re.match(pattern, stripped):\n return True\n\n return False\n\n def remove_module(self):\n lines = self.readlines()\n pattern = self.get_pattern()\n\n if self.checkmode:\n f = open(os.devnull, 'w')\n else:\n f = open(self.filename, 'w')\n\n for line in lines:\n if not re.match(pattern, line.strip()):\n f.write(line)\n\n f.close()\n\n def add_module(self):\n if self.checkmode:\n f = open(os.devnull, 'a')\n else:\n f = open(self.filename, 'a')\n\n f.write('blacklist %s\\n' % self.module)\n\n f.close()\n\n\ndef main():\n module = AnsibleModule(\n argument_spec=dict(\n name=dict(type='str', required=True),\n state=dict(type='str', default='present', choices=['absent', 'present']),\n blacklist_file=dict(type='str')\n ),\n supports_check_mode=True,\n )\n\n args = dict(changed=False, failed=False,\n name=module.params['name'], state=module.params['state'])\n\n filename = '/etc/modprobe.d/blacklist-ansible.conf'\n\n if module.params['blacklist_file']:\n filename = module.params['blacklist_file']\n\n blacklist = Blacklist(args['name'], filename, module.check_mode)\n\n if blacklist.create_file():\n args['changed'] = True\n else:\n args['changed'] = False\n\n if blacklist.module_listed():\n if args['state'] == 'absent':\n blacklist.remove_module()\n args['changed'] = True\n else:\n if args['state'] == 'present':\n blacklist.add_module()\n args['changed'] = True\n\n module.exit_json(**args)\n\n\nif __name__ == '__main__':\n main()\n", "license": "gpl-3.0", "hash": 8498771084445726761, "line_mean": 24.864516129, "line_max": 92, "alpha_frac": 0.575205787, "autogenerated": false}
{"repo_name": "blackbliss/callme", "path": "flask/lib/python2.7/site-packages/werkzeug/contrib/cache.py", "copies": "306", "size": "23519", "content": "# -*- coding: utf-8 -*-\n\"\"\"\n werkzeug.contrib.cache\n ~~~~~~~~~~~~~~~~~~~~~~\n\n The main problem with dynamic Web sites is, well, they're dynamic. Each\n time a user requests a page, the webserver executes a lot of code, queries\n the database, renders templates until the visitor gets the page he sees.\n\n This is a lot more expensive than just loading a file from the file system\n and sending it to the visitor.\n\n For most Web applications, this overhead isn't a big deal but once it\n becomes, you will be glad to have a cache system in place.\n\n How Caching Works\n =================\n\n Caching is pretty simple. Basically you have a cache object lurking around\n somewhere that is connected to a remote cache or the file system or\n something else. When the request comes in you check if the current page\n is already in the cache and if so, you're returning it from the cache.\n Otherwise you generate the page and put it into the cache. (Or a fragment\n of the page, you don't have to cache the full thing)\n\n Here is a simple example of how to cache a sidebar for a template::\n\n def get_sidebar(user):\n identifier = 'sidebar_for/user%d' % user.id\n value = cache.get(identifier)\n if value is not None:\n return value\n value = generate_sidebar_for(user=user)\n cache.set(identifier, value, timeout=60 * 5)\n return value\n\n Creating a Cache Object\n =======================\n\n To create a cache object you just import the cache system of your choice\n from the cache module and instantiate it. Then you can start working\n with that object:\n\n >>> from werkzeug.contrib.cache import SimpleCache\n >>> c = SimpleCache()\n >>> c.set(\"foo\", \"value\")\n >>> c.get(\"foo\")\n 'value'\n >>> c.get(\"missing\") is None\n True\n\n Please keep in mind that you have to create the cache and put it somewhere\n you have access to it (either as a module global you can import or you just\n put it into your WSGI application).\n\n :copyright: (c) 2013 by the Werkzeug Team, see AUTHORS for more details.\n :license: BSD, see LICENSE for more details.\n\"\"\"\nimport os\nimport re\nimport tempfile\nfrom hashlib import md5\nfrom time import time\ntry:\n import cPickle as pickle\nexcept ImportError:\n import pickle\n\nfrom werkzeug._compat import iteritems, string_types, text_type, \\\n integer_types, to_bytes\nfrom werkzeug.posixemulation import rename\n\n\ndef _items(mappingorseq):\n \"\"\"Wrapper for efficient iteration over mappings represented by dicts\n or sequences::\n\n >>> for k, v in _items((i, i*i) for i in xrange(5)):\n ... assert k*k == v\n\n >>> for k, v in _items(dict((i, i*i) for i in xrange(5))):\n ... assert k*k == v\n\n \"\"\"\n if hasattr(mappingorseq, \"iteritems\"):\n return mappingorseq.iteritems()\n elif hasattr(mappingorseq, \"items\"):\n return mappingorseq.items()\n return mappingorseq\n\n\nclass BaseCache(object):\n \"\"\"Baseclass for the cache systems. All the cache systems implement this\n API or a superset of it.\n\n :param default_timeout: the default timeout that is used if no timeout is\n specified on :meth:`set`.\n \"\"\"\n\n def __init__(self, default_timeout=300):\n self.default_timeout = default_timeout\n\n def get(self, key):\n \"\"\"Looks up key in the cache and returns the value for it.\n If the key does not exist `None` is returned instead.\n\n :param key: the key to be looked up.\n \"\"\"\n return None\n\n def delete(self, key):\n \"\"\"Deletes `key` from the cache. If it does not exist in the cache\n nothing happens.\n\n :param key: the key to delete.\n \"\"\"\n pass\n\n def get_many(self, *keys):\n \"\"\"Returns a list of values for the given keys.\n For each key a item in the list is created. Example::\n\n foo, bar = cache.get_many(\"foo\", \"bar\")\n\n If a key can't be looked up `None` is returned for that key\n instead.\n\n :param keys: The function accepts multiple keys as positional\n arguments.\n \"\"\"\n return map(self.get, keys)\n\n def get_dict(self, *keys):\n \"\"\"Works like :meth:`get_many` but returns a dict::\n\n d = cache.get_dict(\"foo\", \"bar\")\n foo = d[\"foo\"]\n bar = d[\"bar\"]\n\n :param keys: The function accepts multiple keys as positional\n arguments.\n \"\"\"\n return dict(zip(keys, self.get_many(*keys)))\n\n def set(self, key, value, timeout=None):\n \"\"\"Adds a new key/value to the cache (overwrites value, if key already\n exists in the cache).\n\n :param key: the key to set\n :param value: the value for the key\n :param timeout: the cache timeout for the key (if not specified,\n it uses the default timeout).\n \"\"\"\n pass\n\n def add(self, key, value, timeout=None):\n \"\"\"Works like :meth:`set` but does not overwrite the values of already\n existing keys.\n\n :param key: the key to set\n :param value: the value for the key\n :param timeout: the cache timeout for the key or the default\n timeout if not specified.\n \"\"\"\n pass\n\n def set_many(self, mapping, timeout=None):\n \"\"\"Sets multiple keys and values from a mapping.\n\n :param mapping: a mapping with the keys/values to set.\n :param timeout: the cache timeout for the key (if not specified,\n it uses the default timeout).\n \"\"\"\n for key, value in _items(mapping):\n self.set(key, value, timeout)\n\n def delete_many(self, *keys):\n \"\"\"Deletes multiple keys at once.\n\n :param keys: The function accepts multiple keys as positional\n arguments.\n \"\"\"\n for key in keys:\n self.delete(key)\n\n def clear(self):\n \"\"\"Clears the cache. Keep in mind that not all caches support\n completely clearing the cache.\n \"\"\"\n pass\n\n def inc(self, key, delta=1):\n \"\"\"Increments the value of a key by `delta`. If the key does\n not yet exist it is initialized with `delta`.\n\n For supporting caches this is an atomic operation.\n\n :param key: the key to increment.\n :param delta: the delta to add.\n \"\"\"\n self.set(key, (self.get(key) or 0) + delta)\n\n def dec(self, key, delta=1):\n \"\"\"Decrements the value of a key by `delta`. If the key does\n not yet exist it is initialized with `-delta`.\n\n For supporting caches this is an atomic operation.\n\n :param key: the key to increment.\n :param delta: the delta to subtract.\n \"\"\"\n self.set(key, (self.get(key) or 0) - delta)\n\n\nclass NullCache(BaseCache):\n \"\"\"A cache that doesn't cache. This can be useful for unit testing.\n\n :param default_timeout: a dummy parameter that is ignored but exists\n for API compatibility with other caches.\n \"\"\"\n\n\nclass SimpleCache(BaseCache):\n \"\"\"Simple memory cache for single process environments. This class exists\n mainly for the development server and is not 100% thread safe. It tries\n to use as many atomic operations as possible and no locks for simplicity\n but it could happen under heavy load that keys are added multiple times.\n\n :param threshold: the maximum number of items the cache stores before\n it starts deleting some.\n :param default_timeout: the default timeout that is used if no timeout is\n specified on :meth:`~BaseCache.set`.\n \"\"\"\n\n def __init__(self, threshold=500, default_timeout=300):\n BaseCache.__init__(self, default_timeout)\n self._cache = {}\n self.clear = self._cache.clear\n self._threshold = threshold\n\n def _prune(self):\n if len(self._cache) > self._threshold:\n now = time()\n for idx, (key, (expires, _)) in enumerate(self._cache.items()):\n if expires <= now or idx % 3 == 0:\n self._cache.pop(key, None)\n\n def get(self, key):\n expires, value = self._cache.get(key, (0, None))\n if expires > time():\n return pickle.loads(value)\n\n def set(self, key, value, timeout=None):\n if timeout is None:\n timeout = self.default_timeout\n self._prune()\n self._cache[key] = (time() + timeout, pickle.dumps(value,\n pickle.HIGHEST_PROTOCOL))\n\n def add(self, key, value, timeout=None):\n if timeout is None:\n timeout = self.default_timeout\n if len(self._cache) > self._threshold:\n self._prune()\n item = (time() + timeout, pickle.dumps(value,\n pickle.HIGHEST_PROTOCOL))\n self._cache.setdefault(key, item)\n\n def delete(self, key):\n self._cache.pop(key, None)\n\n\n_test_memcached_key = re.compile(br'[^\\x00-\\x21\\xff]{1,250}$').match\n\nclass MemcachedCache(BaseCache):\n \"\"\"A cache that uses memcached as backend.\n\n The first argument can either be an object that resembles the API of a\n :class:`memcache.Client` or a tuple/list of server addresses. In the\n event that a tuple/list is passed, Werkzeug tries to import the best\n available memcache library.\n\n Implementation notes: This cache backend works around some limitations in\n memcached to simplify the interface. For example unicode keys are encoded\n to utf-8 on the fly. Methods such as :meth:`~BaseCache.get_dict` return\n the keys in the same format as passed. Furthermore all get methods\n silently ignore key errors to not cause problems when untrusted user data\n is passed to the get methods which is often the case in web applications.\n\n :param servers: a list or tuple of server addresses or alternatively\n a :class:`memcache.Client` or a compatible client.\n :param default_timeout: the default timeout that is used if no timeout is\n specified on :meth:`~BaseCache.set`.\n :param key_prefix: a prefix that is added before all keys. This makes it\n possible to use the same memcached server for different\n applications. Keep in mind that\n :meth:`~BaseCache.clear` will also clear keys with a\n different prefix.\n \"\"\"\n\n def __init__(self, servers=None, default_timeout=300, key_prefix=None):\n BaseCache.__init__(self, default_timeout)\n if servers is None or isinstance(servers, (list, tuple)):\n if servers is None:\n servers = ['127.0.0.1:11211']\n self._client = self.import_preferred_memcache_lib(servers)\n if self._client is None:\n raise RuntimeError('no memcache module found')\n else:\n # NOTE: servers is actually an already initialized memcache\n # client.\n self._client = servers\n\n self.key_prefix = to_bytes(key_prefix)\n\n def get(self, key):\n if isinstance(key, text_type):\n key = key.encode('utf-8')\n if self.key_prefix:\n key = self.key_prefix + key\n # memcached doesn't support keys longer than that. Because often\n # checks for so long keys can occour because it's tested from user\n # submitted data etc we fail silently for getting.\n if _test_memcached_key(key):\n return self._client.get(key)\n\n def get_dict(self, *keys):\n key_mapping = {}\n have_encoded_keys = False\n for key in keys:\n if isinstance(key, unicode):\n encoded_key = key.encode('utf-8')\n have_encoded_keys = True\n else:\n encoded_key = key\n if self.key_prefix:\n encoded_key = self.key_prefix + encoded_key\n if _test_memcached_key(key):\n key_mapping[encoded_key] = key\n d = rv = self._client.get_multi(key_mapping.keys())\n if have_encoded_keys or self.key_prefix:\n rv = {}\n for key, value in iteritems(d):\n rv[key_mapping[key]] = value\n if len(rv) < len(keys):\n for key in keys:\n if key not in rv:\n rv[key] = None\n return rv\n\n def add(self, key, value, timeout=None):\n if timeout is None:\n timeout = self.default_timeout\n if isinstance(key, text_type):\n key = key.encode('utf-8')\n if self.key_prefix:\n key = self.key_prefix + key\n self._client.add(key, value, timeout)\n\n def set(self, key, value, timeout=None):\n if timeout is None:\n timeout = self.default_timeout\n if isinstance(key, text_type):\n key = key.encode('utf-8')\n if self.key_prefix:\n key = self.key_prefix + key\n self._client.set(key, value, timeout)\n\n def get_many(self, *keys):\n d = self.get_dict(*keys)\n return [d[key] for key in keys]\n\n def set_many(self, mapping, timeout=None):\n if timeout is None:\n timeout = self.default_timeout\n new_mapping = {}\n for key, value in _items(mapping):\n if isinstance(key, text_type):\n key = key.encode('utf-8')\n if self.key_prefix:\n key = self.key_prefix + key\n new_mapping[key] = value\n self._client.set_multi(new_mapping, timeout)\n\n def delete(self, key):\n if isinstance(key, unicode):\n key = key.encode('utf-8')\n if self.key_prefix:\n key = self.key_prefix + key\n if _test_memcached_key(key):\n self._client.delete(key)\n\n def delete_many(self, *keys):\n new_keys = []\n for key in keys:\n if isinstance(key, unicode):\n key = key.encode('utf-8')\n if self.key_prefix:\n key = self.key_prefix + key\n if _test_memcached_key(key):\n new_keys.append(key)\n self._client.delete_multi(new_keys)\n\n def clear(self):\n self._client.flush_all()\n\n def inc(self, key, delta=1):\n if isinstance(key, unicode):\n key = key.encode('utf-8')\n if self.key_prefix:\n key = self.key_prefix + key\n self._client.incr(key, delta)\n\n def dec(self, key, delta=1):\n if isinstance(key, unicode):\n key = key.encode('utf-8')\n if self.key_prefix:\n key = self.key_prefix + key\n self._client.decr(key, delta)\n\n def import_preferred_memcache_lib(self, servers):\n \"\"\"Returns an initialized memcache client. Used by the constructor.\"\"\"\n try:\n import pylibmc\n except ImportError:\n pass\n else:\n return pylibmc.Client(servers)\n\n try:\n from google.appengine.api import memcache\n except ImportError:\n pass\n else:\n return memcache.Client()\n\n try:\n import memcache\n except ImportError:\n pass\n else:\n return memcache.Client(servers)\n\n\n# backwards compatibility\nGAEMemcachedCache = MemcachedCache\n\n\nclass RedisCache(BaseCache):\n \"\"\"Uses the Redis key-value store as a cache backend.\n\n The first argument can be either a string denoting address of the Redis\n server or an object resembling an instance of a redis.Redis class.\n\n Note: Python Redis API already takes care of encoding unicode strings on\n the fly.\n\n .. versionadded:: 0.7\n\n .. versionadded:: 0.8\n `key_prefix` was added.\n\n .. versionchanged:: 0.8\n This cache backend now properly serializes objects.\n\n .. versionchanged:: 0.8.3\n This cache backend now supports password authentication.\n\n :param host: address of the Redis server or an object which API is\n compatible with the official Python Redis client (redis-py).\n :param port: port number on which Redis server listens for connections.\n :param password: password authentication for the Redis server.\n :param db: db (zero-based numeric index) on Redis Server to connect.\n :param default_timeout: the default timeout that is used if no timeout is\n specified on :meth:`~BaseCache.set`.\n :param key_prefix: A prefix that should be added to all keys.\n \"\"\"\n\n def __init__(self, host='localhost', port=6379, password=None,\n db=0, default_timeout=300, key_prefix=None):\n BaseCache.__init__(self, default_timeout)\n if isinstance(host, string_types):\n try:\n import redis\n except ImportError:\n raise RuntimeError('no redis module found')\n self._client = redis.Redis(host=host, port=port, password=password, db=db)\n else:\n self._client = host\n self.key_prefix = key_prefix or ''\n\n def dump_object(self, value):\n \"\"\"Dumps an object into a string for redis. By default it serializes\n integers as regular string and pickle dumps everything else.\n \"\"\"\n t = type(value)\n if t in integer_types:\n return str(value).encode('ascii')\n return b'!' + pickle.dumps(value)\n\n def load_object(self, value):\n \"\"\"The reversal of :meth:`dump_object`. This might be callde with\n None.\n \"\"\"\n if value is None:\n return None\n if value.startswith(b'!'):\n return pickle.loads(value[1:])\n try:\n return int(value)\n except ValueError:\n # before 0.8 we did not have serialization. Still support that.\n return value\n\n def get(self, key):\n return self.load_object(self._client.get(self.key_prefix + key))\n\n def get_many(self, *keys):\n if self.key_prefix:\n keys = [self.key_prefix + key for key in keys]\n return [self.load_object(x) for x in self._client.mget(keys)]\n\n def set(self, key, value, timeout=None):\n if timeout is None:\n timeout = self.default_timeout\n dump = self.dump_object(value)\n self._client.setex(self.key_prefix + key, dump, timeout)\n\n def add(self, key, value, timeout=None):\n if timeout is None:\n timeout = self.default_timeout\n dump = self.dump_object(value)\n added = self._client.setnx(self.key_prefix + key, dump)\n if added:\n self._client.expire(self.key_prefix + key, timeout)\n\n def set_many(self, mapping, timeout=None):\n if timeout is None:\n timeout = self.default_timeout\n pipe = self._client.pipeline()\n for key, value in _items(mapping):\n dump = self.dump_object(value)\n pipe.setex(self.key_prefix + key, dump, timeout)\n pipe.execute()\n\n def delete(self, key):\n self._client.delete(self.key_prefix + key)\n\n def delete_many(self, *keys):\n if not keys:\n return\n if self.key_prefix:\n keys = [self.key_prefix + key for key in keys]\n self._client.delete(*keys)\n\n def clear(self):\n if self.key_prefix:\n keys = self._client.keys(self.key_prefix + '*')\n if keys:\n self._client.delete(*keys)\n else:\n self._client.flushdb()\n\n def inc(self, key, delta=1):\n return self._client.incr(self.key_prefix + key, delta)\n\n def dec(self, key, delta=1):\n return self._client.decr(self.key_prefix + key, delta)\n\n\nclass FileSystemCache(BaseCache):\n \"\"\"A cache that stores the items on the file system. This cache depends\n on being the only user of the `cache_dir`. Make absolutely sure that\n nobody but this cache stores files there or otherwise the cache will\n randomly delete files therein.\n\n :param cache_dir: the directory where cache files are stored.\n :param threshold: the maximum number of items the cache stores before\n it starts deleting some.\n :param default_timeout: the default timeout that is used if no timeout is\n specified on :meth:`~BaseCache.set`.\n :param mode: the file mode wanted for the cache files, default 0600\n \"\"\"\n\n #: used for temporary files by the FileSystemCache\n _fs_transaction_suffix = '.__wz_cache'\n\n def __init__(self, cache_dir, threshold=500, default_timeout=300, mode=0o600):\n BaseCache.__init__(self, default_timeout)\n self._path = cache_dir\n self._threshold = threshold\n self._mode = mode\n if not os.path.exists(self._path):\n os.makedirs(self._path)\n\n def _list_dir(self):\n \"\"\"return a list of (fully qualified) cache filenames\n \"\"\"\n return [os.path.join(self._path, fn) for fn in os.listdir(self._path)\n if not fn.endswith(self._fs_transaction_suffix)]\n\n def _prune(self):\n entries = self._list_dir()\n if len(entries) > self._threshold:\n now = time()\n for idx, fname in enumerate(entries):\n remove = False\n f = None\n try:\n try:\n f = open(fname, 'rb')\n expires = pickle.load(f)\n remove = expires <= now or idx % 3 == 0\n finally:\n if f is not None:\n f.close()\n except Exception:\n pass\n if remove:\n try:\n os.remove(fname)\n except (IOError, OSError):\n pass\n\n def clear(self):\n for fname in self._list_dir():\n try:\n os.remove(fname)\n except (IOError, OSError):\n pass\n\n def _get_filename(self, key):\n if isinstance(key, text_type):\n key = key.encode('utf-8') #XXX unicode review\n hash = md5(key).hexdigest()\n return os.path.join(self._path, hash)\n\n def get(self, key):\n filename = self._get_filename(key)\n try:\n f = open(filename, 'rb')\n try:\n if pickle.load(f) >= time():\n return pickle.load(f)\n finally:\n f.close()\n os.remove(filename)\n except Exception:\n return None\n\n def add(self, key, value, timeout=None):\n filename = self._get_filename(key)\n if not os.path.exists(filename):\n self.set(key, value, timeout)\n\n def set(self, key, value, timeout=None):\n if timeout is None:\n timeout = self.default_timeout\n filename = self._get_filename(key)\n self._prune()\n try:\n fd, tmp = tempfile.mkstemp(suffix=self._fs_transaction_suffix,\n dir=self._path)\n f = os.fdopen(fd, 'wb')\n try:\n pickle.dump(int(time() + timeout), f, 1)\n pickle.dump(value, f, pickle.HIGHEST_PROTOCOL)\n finally:\n f.close()\n rename(tmp, filename)\n os.chmod(filename, self._mode)\n except (IOError, OSError):\n pass\n\n def delete(self, key):\n try:\n os.remove(self._get_filename(key))\n except (IOError, OSError):\n pass\n", "license": "mit", "hash": -7111811701270589600, "line_mean": 33.6377025037, "line_max": 86, "alpha_frac": 0.5791062545, "autogenerated": false}
{"repo_name": "pipet/pipet", "path": "pipet/sources/zendesk/tasks.py", "copies": "2", "size": "1544", "content": "from contextlib import contextmanager\nfrom datetime import datetime\nfrom inspect import isclass\n\nfrom celery import chord, group\nfrom celery_once import QueueOnce\nfrom celery.schedules import crontab\nfrom celery.utils.log import get_task_logger\nfrom sqlalchemy.orm.attributes import flag_modified\n\n# from pipet import celery\nfrom pipet.models import db, Organization\nfrom pipet.sources.zendesk import ZendeskAccount\nfrom pipet.sources.zendesk.models import (\n Base,\n CLASS_REGISTRY,\n)\n\n\nlogger = get_task_logger(__name__)\n\n\n# @celery.task(base=QueueOnce, once={'graceful': True})\ndef sync(account_id):\n with app.app_context():\n account = ZendeskAccount.query.get(account_id)\n session = account.organization.create_session()\n\n for cls in [m for n, m in CLASS_REGISTRY.items() if isclass(m) and issubclass(m, Base)]:\n # TODO: Make these parallel to speed up execution\n while True:\n conn = session.connection()\n statments, cursor, has_more = cls.sync(account)\n account.cursors[cls.__tablename__] = cursor\n flag_modified(account, 'cursors')\n\n for statement in statments:\n conn.execute(statement)\n\n session.commit()\n\n db.session.add(account)\n db.session.commit()\n\n if not has_more:\n break\n\n\n# @celery.task\ndef sync_all():\n job = group([sync.s(account.id) for account in ZendeskAccount.query.all()])\n job.apply_async()\n", "license": "apache-2.0", "hash": 156606072465059935, "line_mean": 28.6923076923, "line_max": 96, "alpha_frac": 0.6457253886, "autogenerated": false}
{"repo_name": "tomchristie/django", "path": "django/apps/config.py", "copies": "55", "size": "8047", "content": "import os\nfrom importlib import import_module\n\nfrom django.core.exceptions import ImproperlyConfigured\nfrom django.utils.module_loading import module_has_submodule\n\nMODELS_MODULE_NAME = 'models'\n\n\nclass AppConfig:\n \"\"\"Class representing a Django application and its configuration.\"\"\"\n\n def __init__(self, app_name, app_module):\n # Full Python path to the application e.g. 'django.contrib.admin'.\n self.name = app_name\n\n # Root module for the application e.g. <module 'django.contrib.admin'\n # from 'django/contrib/admin/__init__.py'>.\n self.module = app_module\n\n # Reference to the Apps registry that holds this AppConfig. Set by the\n # registry when it registers the AppConfig instance.\n self.apps = None\n\n # The following attributes could be defined at the class level in a\n # subclass, hence the test-and-set pattern.\n\n # Last component of the Python path to the application e.g. 'admin'.\n # This value must be unique across a Django project.\n if not hasattr(self, 'label'):\n self.label = app_name.rpartition(\".\")[2]\n\n # Human-readable name for the application e.g. \"Admin\".\n if not hasattr(self, 'verbose_name'):\n self.verbose_name = self.label.title()\n\n # Filesystem path to the application directory e.g.\n # '/path/to/django/contrib/admin'.\n if not hasattr(self, 'path'):\n self.path = self._path_from_module(app_module)\n\n # Module containing models e.g. <module 'django.contrib.admin.models'\n # from 'django/contrib/admin/models.py'>. Set by import_models().\n # None if the application doesn't have a models module.\n self.models_module = None\n\n # Mapping of lower case model names to model classes. Initially set to\n # None to prevent accidental access before import_models() runs.\n self.models = None\n\n def __repr__(self):\n return '<%s: %s>' % (self.__class__.__name__, self.label)\n\n def _path_from_module(self, module):\n \"\"\"Attempt to determine app's filesystem path from its module.\"\"\"\n # See #21874 for extended discussion of the behavior of this method in\n # various cases.\n # Convert paths to list because Python's _NamespacePath doesn't support\n # indexing.\n paths = list(getattr(module, '__path__', []))\n if len(paths) != 1:\n filename = getattr(module, '__file__', None)\n if filename is not None:\n paths = [os.path.dirname(filename)]\n else:\n # For unknown reasons, sometimes the list returned by __path__\n # contains duplicates that must be removed (#25246).\n paths = list(set(paths))\n if len(paths) > 1:\n raise ImproperlyConfigured(\n \"The app module %r has multiple filesystem locations (%r); \"\n \"you must configure this app with an AppConfig subclass \"\n \"with a 'path' class attribute.\" % (module, paths))\n elif not paths:\n raise ImproperlyConfigured(\n \"The app module %r has no filesystem location, \"\n \"you must configure this app with an AppConfig subclass \"\n \"with a 'path' class attribute.\" % (module,))\n return paths[0]\n\n @classmethod\n def create(cls, entry):\n \"\"\"\n Factory that creates an app config from an entry in INSTALLED_APPS.\n \"\"\"\n try:\n # If import_module succeeds, entry is a path to an app module,\n # which may specify an app config class with default_app_config.\n # Otherwise, entry is a path to an app config class or an error.\n module = import_module(entry)\n\n except ImportError:\n # Track that importing as an app module failed. If importing as an\n # app config class fails too, we'll trigger the ImportError again.\n module = None\n\n mod_path, _, cls_name = entry.rpartition('.')\n\n # Raise the original exception when entry cannot be a path to an\n # app config class.\n if not mod_path:\n raise\n\n else:\n try:\n # If this works, the app module specifies an app config class.\n entry = module.default_app_config\n except AttributeError:\n # Otherwise, it simply uses the default app config class.\n return cls(entry, module)\n else:\n mod_path, _, cls_name = entry.rpartition('.')\n\n # If we're reaching this point, we must attempt to load the app config\n # class located at <mod_path>.<cls_name>\n mod = import_module(mod_path)\n try:\n cls = getattr(mod, cls_name)\n except AttributeError:\n if module is None:\n # If importing as an app module failed, that error probably\n # contains the most informative traceback. Trigger it again.\n import_module(entry)\n else:\n raise\n\n # Check for obvious errors. (This check prevents duck typing, but\n # it could be removed if it became a problem in practice.)\n if not issubclass(cls, AppConfig):\n raise ImproperlyConfigured(\n \"'%s' isn't a subclass of AppConfig.\" % entry)\n\n # Obtain app name here rather than in AppClass.__init__ to keep\n # all error checking for entries in INSTALLED_APPS in one place.\n try:\n app_name = cls.name\n except AttributeError:\n raise ImproperlyConfigured(\n \"'%s' must supply a name attribute.\" % entry)\n\n # Ensure app_name points to a valid module.\n try:\n app_module = import_module(app_name)\n except ImportError:\n raise ImproperlyConfigured(\n \"Cannot import '%s'. Check that '%s.%s.name' is correct.\" % (\n app_name, mod_path, cls_name,\n )\n )\n\n # Entry is a path to an app config class.\n return cls(app_name, app_module)\n\n def get_model(self, model_name, require_ready=True):\n \"\"\"\n Return the model with the given case-insensitive model_name.\n\n Raise LookupError if no model exists with this name.\n \"\"\"\n if require_ready:\n self.apps.check_models_ready()\n else:\n self.apps.check_apps_ready()\n try:\n return self.models[model_name.lower()]\n except KeyError:\n raise LookupError(\n \"App '%s' doesn't have a '%s' model.\" % (self.label, model_name))\n\n def get_models(self, include_auto_created=False, include_swapped=False):\n \"\"\"\n Return an iterable of models.\n\n By default, the following models aren't included:\n\n - auto-created models for many-to-many relations without\n an explicit intermediate table,\n - models that have been swapped out.\n\n Set the corresponding keyword argument to True to include such models.\n Keyword arguments aren't documented; they're a private API.\n \"\"\"\n self.apps.check_models_ready()\n for model in self.models.values():\n if model._meta.auto_created and not include_auto_created:\n continue\n if model._meta.swapped and not include_swapped:\n continue\n yield model\n\n def import_models(self):\n # Dictionary of models for this app, primarily maintained in the\n # 'all_models' attribute of the Apps this AppConfig is attached to.\n self.models = self.apps.all_models[self.label]\n\n if module_has_submodule(self.module, MODELS_MODULE_NAME):\n models_module_name = '%s.%s' % (self.name, MODELS_MODULE_NAME)\n self.models_module = import_module(models_module_name)\n\n def ready(self):\n \"\"\"\n Override this method in subclasses to run code when Django starts.\n \"\"\"\n", "license": "bsd-3-clause", "hash": -8530773113433397750, "line_mean": 38.6403940887, "line_max": 81, "alpha_frac": 0.5922704113, "autogenerated": false}
{"repo_name": "prutseltje/ansible", "path": "test/units/modules/network/f5/test_bigip_gtm_datacenter.py", "copies": "23", "size": "6819", "content": "# -*- coding: utf-8 -*-\n#\n# Copyright (c) 2017 F5 Networks Inc.\n# GNU General Public License v3.0 (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)\n\nfrom __future__ import (absolute_import, division, print_function)\n__metaclass__ = type\n\nimport os\nimport json\nimport sys\n\nfrom nose.plugins.skip import SkipTest\nif sys.version_info < (2, 7):\n raise SkipTest(\"F5 Ansible modules require Python >= 2.7\")\n\nfrom ansible.compat.tests import unittest\nfrom ansible.compat.tests.mock import Mock\nfrom ansible.compat.tests.mock import patch\nfrom ansible.module_utils.basic import AnsibleModule\n\ntry:\n from library.modules.bigip_gtm_datacenter import ApiParameters\n from library.modules.bigip_gtm_datacenter import ModuleParameters\n from library.modules.bigip_gtm_datacenter import ModuleManager\n from library.modules.bigip_gtm_datacenter import ArgumentSpec\n from library.module_utils.network.f5.common import F5ModuleError\n from library.module_utils.network.f5.common import iControlUnexpectedHTTPError\n from test.unit.modules.utils import set_module_args\nexcept ImportError:\n try:\n from ansible.modules.network.f5.bigip_gtm_datacenter import ApiParameters\n from ansible.modules.network.f5.bigip_gtm_datacenter import ModuleParameters\n from ansible.modules.network.f5.bigip_gtm_datacenter import ModuleManager\n from ansible.modules.network.f5.bigip_gtm_datacenter import ArgumentSpec\n from ansible.module_utils.network.f5.common import F5ModuleError\n from ansible.module_utils.network.f5.common import iControlUnexpectedHTTPError\n from units.modules.utils import set_module_args\n except ImportError:\n raise SkipTest(\"F5 Ansible modules require the f5-sdk Python library\")\n\nfixture_path = os.path.join(os.path.dirname(__file__), 'fixtures')\nfixture_data = {}\n\n\ndef load_fixture(name):\n path = os.path.join(fixture_path, name)\n\n if path in fixture_data:\n return fixture_data[path]\n\n with open(path) as f:\n data = f.read()\n\n try:\n data = json.loads(data)\n except Exception:\n pass\n\n fixture_data[path] = data\n return data\n\n\nclass TestParameters(unittest.TestCase):\n def test_module_parameters(self):\n args = dict(\n state='present',\n contact='foo',\n description='bar',\n location='baz',\n name='datacenter'\n )\n p = ModuleParameters(params=args)\n assert p.state == 'present'\n\n def test_api_parameters(self):\n args = load_fixture('load_gtm_datacenter_default.json')\n p = ApiParameters(params=args)\n assert p.name == 'asd'\n\n def test_module_parameters_state_present(self):\n args = dict(\n state='present'\n )\n p = ModuleParameters(params=args)\n assert p.state == 'present'\n assert p.enabled is True\n\n def test_module_parameters_state_absent(self):\n args = dict(\n state='absent'\n )\n p = ModuleParameters(params=args)\n assert p.state == 'absent'\n\n def test_module_parameters_state_enabled(self):\n args = dict(\n state='enabled'\n )\n p = ModuleParameters(params=args)\n assert p.state == 'enabled'\n assert p.enabled is True\n assert p.disabled is None\n\n def test_module_parameters_state_disabled(self):\n args = dict(\n state='disabled'\n )\n p = ModuleParameters(params=args)\n assert p.state == 'disabled'\n assert p.enabled is None\n assert p.disabled is True\n\n\nclass TestManager(unittest.TestCase):\n\n def setUp(self):\n self.spec = ArgumentSpec()\n\n def test_create_datacenter(self, *args):\n set_module_args(dict(\n state='present',\n password='admin',\n server='localhost',\n user='admin',\n name='foo'\n ))\n\n module = AnsibleModule(\n argument_spec=self.spec.argument_spec,\n supports_check_mode=self.spec.supports_check_mode\n )\n mm = ModuleManager(module=module)\n\n # Override methods to force specific logic in the module to happen\n mm.exists = Mock(side_effect=[False, True])\n mm.create_on_device = Mock(return_value=True)\n\n results = mm.exec_module()\n assert results['changed'] is True\n assert results['state'] == 'present'\n\n def test_create_disabled_datacenter(self, *args):\n set_module_args(dict(\n state='disabled',\n password='admin',\n server='localhost',\n user='admin',\n name='foo'\n ))\n\n module = AnsibleModule(\n argument_spec=self.spec.argument_spec,\n supports_check_mode=self.spec.supports_check_mode\n )\n mm = ModuleManager(module=module)\n\n # Override methods to force specific logic in the module to happen\n mm.exists = Mock(side_effect=[False, True])\n mm.create_on_device = Mock(return_value=True)\n\n results = mm.exec_module()\n assert results['changed'] is True\n assert results['enabled'] is False\n assert results['disabled'] is True\n\n def test_create_enabled_datacenter(self, *args):\n set_module_args(dict(\n state='enabled',\n password='admin',\n server='localhost',\n user='admin',\n name='foo'\n ))\n\n module = AnsibleModule(\n argument_spec=self.spec.argument_spec,\n supports_check_mode=self.spec.supports_check_mode\n )\n mm = ModuleManager(module=module)\n\n # Override methods to force specific logic in the module to happen\n mm.exists = Mock(side_effect=[False, True])\n mm.create_on_device = Mock(return_value=True)\n\n results = mm.exec_module()\n assert results['changed'] is True\n assert results['enabled'] is True\n assert results['disabled'] is False\n\n def test_idempotent_disable_datacenter(self, *args):\n set_module_args(dict(\n state='disabled',\n password='admin',\n server='localhost',\n user='admin',\n name='foo'\n ))\n\n module = AnsibleModule(\n argument_spec=self.spec.argument_spec,\n supports_check_mode=self.spec.supports_check_mode\n )\n\n current = ApiParameters(params=load_fixture('load_gtm_datacenter_disabled.json'))\n\n mm = ModuleManager(module=module)\n\n # Override methods to force specific logic in the module to happen\n mm.exists = Mock(return_value=True)\n mm.update_on_device = Mock(return_value=True)\n mm.read_current_from_device = Mock(return_value=current)\n\n results = mm.exec_module()\n assert results['changed'] is False\n", "license": "gpl-3.0", "hash": 1435203684349960277, "line_mean": 30.7162790698, "line_max": 91, "alpha_frac": 0.6286845579, "autogenerated": false}
{"caption id": "0", "text": "= = = Initial inquiry = = =", "embeddings": [-0.8035017251968384, -0.9239815473556519, 0.38133013248443604, -0.09339570999145508, -0.5494121313095093, -0.5205829739570618, -0.3602186441421509, -0.5744439959526062, 0.6299000382423401, 0.4852217137813568, 0.095911905169487, -0.12304369360208511, -0.846173107624054, 0.16957813501358032, -0.620678722858429, 0.5179755687713623, 0.5849162340164185, -0.5060978531837463, 0.6788171529769897, 0.24207761883735657, -0.34898579120635986, -0.20119628310203552, 0.04033641517162323, -0.2108009308576584, -0.2830631732940674, -0.07823467999696732, 0.13349729776382446, -0.39901694655418396, -0.3544562757015228, -0.6183372735977173, 0.2629360854625702, 0.4571157693862915, -0.12506766617298126, 0.5399062633514404, 0.42411065101623535, -0.366915762424469, 0.28480982780456543, -0.5196647047996521, -0.33937522768974304, -0.5642279982566833, -0.10469171404838562, 0.2952810823917389, -0.6834601163864136, 0.3530493378639221, -0.04433314874768257, 0.23134878277778625, 0.29637056589126587, 0.572084367275238, -0.5387980937957764, -0.49627289175987244, 0.45363613963127136, 0.7629876732826233, -0.19086229801177979, 0.06077234819531441, -0.4392230212688446, -0.36331474781036377, -0.22556281089782715, -0.3695497214794159, 0.10250376909971237, -0.7604166269302368, 0.16112466156482697, -0.36409616470336914, -0.6943931579589844, 0.407260924577713, 0.05430884286761284, 0.3400254249572754, 0.6840554475784302, 0.492397278547287, -0.6370781660079956, 0.4291195273399353, -0.46688833832740784, -0.6709887385368347, -0.38366714119911194, 0.5901509523391724, -0.5929628014564514, -0.19530028104782104, 0.7263579368591309, 0.4155862629413605, 0.5469292402267456, 0.48801344633102417, 0.01140687521547079, 0.7692283987998962, -0.26118168234825134, 0.9004554748535156, -0.21052399277687073, 0.1680266559123993, -0.2950149476528168, -0.20682144165039062, 0.4135955572128296, 0.645492672920227, -0.11863702535629272, 0.3643741309642792, 0.257180780172348, 0.30687329173088074, -0.2599051296710968, -0.45712000131607056, -0.12306656688451767, 0.0283301193267107, -0.23344337940216064, -0.16107703745365143, -0.5427513122558594, -0.5506613254547119, 0.26504188776016235, -0.07027020305395126, -0.8431072235107422, -0.3222532272338867, 0.4526374638080597, -0.5596279501914978, -0.5451117753982544, 0.8239703178405762, 0.6183074712753296, -0.24517175555229187, 0.7447630167007446, -0.07409664988517761, 0.8598732352256775, 0.7892360091209412, -0.1996137648820877, 0.2913631498813629, 0.03324173018336296, -0.07424511015415192, 0.40919461846351624, 0.05183589085936546, 0.4511154890060425, -0.35466277599334717, 0.18474946916103363, 0.16477596759796143, -0.14570832252502441, 0.3557211756706238, 0.4510602355003357, 0.8829150795936584, 0.35868626832962036, 0.020406527444720268, 0.5406620502471924, 0.2868536114692688, -0.40053460001945496, -0.6293190717697144, 0.4262423813343048, -0.25338423252105713, -0.52970290184021, 0.09919892996549606, -0.8507547974586487, -0.5616012811660767, 0.4635995030403137, -0.6514082551002502, -0.15078265964984894, -0.09216124564409256, -0.7014086246490479, -0.11851975321769714, -0.10164830088615417, -0.19206556677818298, 0.5419008731842041, -0.010126360692083836, 0.11686666309833527, 0.23198802769184113, -0.6265670657157898, -0.12292052805423737, -0.5704917907714844, 0.5629050135612488, 0.6687705516815186, 0.4687548577785492, -0.5912815928459167, 0.28859204053878784, 0.2290930598974228, -0.7004965543746948, 0.08428987115621567, -0.018611177802085876, 0.021710418164730072, -0.0817323550581932, -0.5259636640548706, -0.46497660875320435, -0.11793970316648483, -0.23127013444900513, -0.09362476319074631, 0.628007173538208, -0.7444442510604858, -0.5131548047065735, 0.328898549079895, -0.18902115523815155, 0.425530344247818, 0.3595471680164337, 0.2522246539592743, 0.8211039900779724, 0.15235783159732819, -0.25884950160980225, 0.7109082937240601, 0.43258872628211975, -0.2456473410129547, 0.21677519381046295, -0.502202570438385, -0.08989179134368896, -0.3450109362602234, 0.2908792495727539, 0.04682279750704765, 0.4575656056404114, 0.10949056595563889, -0.6101184487342834, -0.7522364854812622, 0.700680136680603, -0.36897116899490356, -0.41605645418167114, 0.26952850818634033, -0.4307127892971039, -0.590543270111084, 0.465628981590271, -0.26121416687965393, -0.7044512033462524, 0.044963538646698, -0.6130151748657227, 0.10574203729629517, 0.2381105124950409, 0.7483630180358887, -0.32499271631240845, -0.7739388942718506, 0.4979688227176666, 0.32909095287323, 0.5243095755577087, -0.6068860292434692, -0.7716180086135864, 0.6837242841720581, -0.10372377932071686, -0.6229572892189026, 0.7538517117500305, 0.2013125717639923, 0.04204992949962616, -0.7379766702651978, 0.2798977494239807, 0.3520866632461548, 0.6004713177680969, 0.7927007079124451, -0.4674065113067627, -0.24856877326965332, 0.6786497831344604, 0.535727322101593, 0.034032221883535385, 0.21323871612548828, -0.20047780871391296, 0.6824064254760742, 0.05241740867495537, 0.3582836091518402, -0.8486857414245605, 0.029263688251376152, -0.2340010106563568, -0.3381899893283844, -0.5439430475234985, 0.22379833459854126, -0.35775208473205566, -0.32442885637283325, 0.009110572747886181, -0.07648637890815735, 0.6456185579299927, -0.5726998448371887, 0.27002906799316406, -0.7804273366928101, -0.09391598403453827, 0.6143229007720947, -0.5107038021087646, 0.46742135286331177, 0.7309771776199341, 0.5317221283912659, -0.3490056097507477, -0.5350722074508667, -0.714443027973175, 0.7878895998001099, 0.4786090552806854, 0.4004508852958679, -0.8155614733695984, 0.3195972144603729, -0.10396050661802292, 0.4983096420764923, 0.4628288745880127, -0.009410600177943707, 0.0955384224653244, -0.0889640599489212, 0.11485759168863297, 0.31736528873443604, -0.42388248443603516, -0.6009637713432312, -0.31764790415763855, -0.03158187121152878, 0.5556398630142212, 0.4958364963531494, -0.16023553907871246, -0.4552004933357239, -0.2698884606361389, 0.019411474466323853, 0.6180243492126465, 0.001721041277050972, -0.11675431579351425, 0.056727129966020584, -0.5099085569381714, 0.31124863028526306, -0.7624849081039429, 0.6517715454101562, 0.10703565925359726, 0.22274468839168549, -0.027541734278202057, -0.09488643705844879, -0.3944982588291168, -0.15251173079013824, -0.15663473308086395, 0.5663820505142212, 0.18565192818641663, 0.37689009308815, 0.10863935947418213, 0.10096242278814316, -0.34280577301979065, -0.597751259803772, -0.04750188812613487, -0.3984033763408661, 0.07329048216342926, 0.01182060968130827, -0.11490542441606522, -0.163414865732193, 0.5511782765388489, -0.2876282334327698, 0.07028432935476303, -0.6715364456176758, -0.49549028277397156, 0.40152478218078613, -0.16014441847801208, 0.8217293620109558, 0.4689776599407196, 0.3207641541957855, 0.32414788007736206, -0.3412341773509979, -0.05411481857299805, -0.1284659206867218, -0.743702232837677, 0.08696147054433823, 0.2196613848209381, 0.35890084505081177, -0.5798544883728027, 0.18023809790611267, -0.3279435336589813, 0.21558602154254913, -0.18610741198062897, 0.33257973194122314, 0.7580912709236145, 0.17516553401947021, -0.11673969775438309, 0.7565874457359314, -0.574161946773529, -0.34332937002182007, -0.7056454420089722, -0.14386361837387085, 0.35159868001937866, -0.2901878356933594, -0.7995860576629639, 0.25975024700164795, -0.7780107259750366, -0.2541637420654297, -0.3995809555053711, 0.6420139670372009, -0.2664509117603302, 0.2263869196176529, -0.2758835554122925, 0.6033666133880615, -0.39392414689064026, 0.029822856187820435, 0.6702389121055603, -0.20442870259284973, 0.6477133631706238, -0.9047931432723999, 0.4832199811935425, 0.0648866519331932, 0.228605255484581, 0.37260469794273376, -0.3549559712409973, 0.32493412494659424, 0.12619203329086304, -0.19419831037521362, -0.6108275055885315, 0.43324732780456543, -0.5464227199554443, 0.45915350317955017, -0.18468786776065826, 0.2960277795791626, 0.8675697445869446, -0.09755483269691467, -0.09796888381242752, -0.2657460570335388, -0.7624490261077881, 0.19823767244815826, 0.8409209847450256, -0.0283874049782753, 0.8391810059547424, 0.10941796749830246, -0.3761930763721466, 0.40636950731277466, -0.5710977911949158, 0.4221622943878174, 0.3606286644935608, 0.06954408437013626, -0.7658398747444153, 0.2696325480937958, -0.061270494014024734, 0.11299382895231247, 0.6351093053817749, 0.6124491691589355, -0.6265296936035156, 0.5539451837539673, -0.19568707048892975, 0.43861091136932373, -0.3262820839881897, 0.5116661190986633, 0.09504876285791397, -0.20291408896446228, -0.49368688464164734, -0.15738452970981598, 0.5941696763038635, -0.5544461607933044, 0.6987324357032776, 0.20095929503440857, -0.07836400717496872, 0.8727913498878479, -0.04416881874203682, 0.43350279331207275, 0.3122296631336212, 0.4228982627391815, 0.22764649987220764, -0.18532277643680573, -0.8536891937255859, 0.3396689295768738, 0.1869126260280609, -0.15730570256710052, -0.08331124484539032, 0.2703520655632019, 0.3415360450744629, -0.7200575470924377, -0.3966580033302307, -0.09053713083267212, -0.18977028131484985, -0.296261727809906, -0.6418336629867554, 0.4255293309688568, -0.47660475969314575, 0.5140624046325684, -0.11903880536556244, 0.4934978485107422, -0.12726852297782898, 0.33878299593925476, 0.31995540857315063, -0.6261014938354492, 0.41483429074287415, 0.1207280158996582, -0.39235150814056396, -0.014953645877540112, 0.010978084988892078, 0.11244403570890427, 0.14228445291519165, -0.03161035478115082, -0.36650145053863525, -0.11124955862760544, -0.5482288599014282, -0.0488385371863842, -0.5643981695175171, 0.1455051451921463, 0.593085765838623, -0.2521217167377472, -0.6193848848342896, 0.7365652322769165, 0.15279431641101837, -0.2954886555671692, -0.060593441128730774, 0.22154955565929413, -0.03724799305200577, 0.17143124341964722, 0.19580872356891632, -0.0610765740275383, 0.507314145565033, 0.6041626930236816, -0.3957807719707489, 0.5553872585296631, -0.047288279980421066, -0.033008236438035965, -0.33626678586006165, -0.1433338224887848, 0.2847301959991455, -0.2430611252784729, -0.3366513252258301, 0.050284817814826965, -0.11705923080444336, 0.47593894600868225, -0.20199568569660187, -0.41291823983192444, 0.44595780968666077, 0.5291376113891602, 0.03111625649034977, -0.15336200594902039, 0.6215060949325562, -0.6206662654876709, -0.0038756427820771933, -0.130474254488945, -0.34556108713150024, -0.010128643363714218, -0.0415344275534153, -0.4481990933418274, -0.30805227160453796, -0.08512673527002335, -0.07573983073234558, -0.3526204526424408, -0.3000725507736206, -0.4573602080345154, -0.15616559982299805, -0.17798945307731628, 0.8051981329917908, -0.8305007815361023, 0.24941794574260712, 0.6577979326248169, -0.29876479506492615, 0.552207350730896, -0.23565588891506195, -0.040711503475904465, -0.424254834651947, -0.40512457489967346, -0.41306090354919434, -0.6283307671546936, 0.7534323930740356, -0.0919211208820343, -0.5633497834205627, 0.22357726097106934, 0.823798656463623, -0.17142599821090698, -0.7221944332122803, -0.29056912660598755, 0.31606361269950867, 0.21733592450618744, -0.6340653896331787, -0.5917223691940308, 0.019365765154361725, 0.048361796885728836, 0.5483406782150269, -0.046490378677845, -0.21103517711162567, -0.00947478786110878, 0.5881964564323425, -0.5598215460777283, -0.05358216539025307, 0.26600655913352966, -0.6286641359329224, 0.26345327496528625, -0.2226683348417282, 0.36666300892829895, -0.030986711382865906, 0.009641972370445728, 0.7981346249580383, 0.8775641322135925, -0.5155848264694214, 0.5160021781921387, 0.5992636680603027, 0.1507781744003296, -0.370282381772995, -0.1821763664484024, 0.15526890754699707, -0.5666139125823975, -0.8149555921554565, 0.575171947479248, -0.11728052794933319, 0.39142122864723206, 0.8123749494552612, 0.19167070090770721, -0.04413817450404167, -0.6365193128585815, -0.379520058631897, -0.5712985992431641, 0.620039701461792, -0.435905396938324, -0.5800626277923584, -0.11717110872268677, 0.23539192974567413, 0.1134386658668518, 0.17564772069454193, -0.15702563524246216, -0.5079318881034851, 0.2995951473712921, -0.5656133890151978, -0.07810764014720917, 0.6145697832107544, 0.47010132670402527, -0.6250395178794861, 0.08339748531579971, 0.39352017641067505, 0.24835370481014252, -0.04804980754852295, 0.4698134958744049, 0.9746232628822327, 0.777962863445282, -0.040359269827604294, 0.5974410772323608, 0.26224738359451294, -0.8408960700035095, -0.8564223051071167, 0.05708347633481026, 0.06740033626556396, -0.2405199259519577, -0.1737949550151825, 0.05289345979690552, -0.5457651615142822, 0.9389263987541199, 0.6648262143135071, 0.20517143607139587, 0.503790557384491, 0.3925286829471588, -0.17829549312591553, -0.01761772856116295, 0.11023014783859253, 0.6440017223358154, 0.4972347021102905, 0.04860880225896835, -0.46800488233566284, -0.24249593913555145, 0.6390366554260254, 0.14105133712291718, -0.7009209990501404, 0.3599531352519989, -0.8146277666091919, 0.5024521350860596, -0.6147528290748596, -0.1656876802444458, 0.6521185636520386, 0.4103344678878784, 0.5011014342308044, 0.6134830713272095, -0.24012665450572968, -0.7072671055793762, -0.5852879285812378, 0.637714147567749, 0.3278312087059021, 0.5008128881454468, 0.4701286256313324, 0.3093070387840271, 0.3463098406791687, 0.4089769423007965, -0.35209259390830994, -0.8180004954338074, 0.22717368602752686, -0.6766317486763, 0.1626572459936142, 0.3831295967102051, -0.5053408741950989, -0.8984636664390564, -0.7448299527168274, -0.00798497349023819, 0.2848075032234192, -0.6880743503570557, 0.68706876039505, -0.5935088396072388, -0.1274641454219818, 0.12679912149906158, 0.5835868120193481, -0.7145094871520996, -0.33131667971611023, -0.3685436248779297, 0.2355426549911499, -0.5736830234527588, -0.2985113859176636, -0.4975948929786682, -0.6640470027923584, -0.516038715839386, 0.8611645102500916, 0.5406633615493774, -0.3165760636329651, 0.13695545494556427, 0.8969308137893677, -0.41919955611228943, -0.7165030837059021, -0.01254560798406601, 0.2832949161529541, -0.8625943660736084, -0.23350676894187927, -0.5980622172355652, 0.3075556457042694, -0.5998615026473999, -0.45395323634147644, 0.054288554936647415, -0.5829116106033325, 0.11269133538007736, -0.11413496732711792, 0.35519734025001526, -0.8575626611709595, 0.5556284189224243, 0.2987964451313019, 0.002860243897885084, -0.10138379037380219, -0.27307960391044617, -0.47932833433151245, 0.5826247930526733, -0.7591823935508728, -0.558148205280304, 0.5847276449203491, -0.3115847706794739, -0.20334874093532562, -0.6777119636535645, -0.04667134955525398, -0.24035419523715973, 0.8604649305343628, -0.7362192869186401, 0.041295457631349564, -0.25977298617362976, -0.22186803817749023, -0.10064036399126053, -0.34604015946388245, -0.1129981055855751, 0.3187805116176605, 0.6522377729415894, -0.12274649739265442, -0.31389227509498596, -0.09913769364356995, 0.24234126508235931, -0.011206405237317085, -0.6531810760498047, 0.4111024737358093, 0.5243044495582581, -0.6985042095184326, -0.015069426968693733, 0.9013183116912842, 0.5958912372589111, -0.6178423166275024, -0.41633155941963196, -0.5043849945068359, -0.2957920730113983, -0.009794557467103004, 0.2642461061477661, 0.3723928928375244, 0.0314905121922493, 0.29394927620887756, -0.07230100780725479, 0.7928448915481567, 0.6590799689292908, 0.019115444272756577, -0.2725512683391571, -0.3722163140773773, 0.034202273935079575, 0.23887772858142853, 0.30110278725624084, 0.5861289501190186, 0.4710848927497864, -0.2158096581697464, 0.24648061394691467, 0.233423113822937, 0.026356715708971024, 0.2971574366092682, 0.6807428598403931, 0.2911469042301178, 0.7802159786224365, 0.4108816385269165, 0.10372534394264221, 0.4313850700855255, -0.35818517208099365, -0.600231409072876, 0.1568198800086975, -0.12366565316915512, 0.42948096990585327, 0.15883868932724, 0.0687093436717987, 0.13808046281337738, -0.19031980633735657, -0.059096481651067734, 0.031064003705978394, -0.6404818296432495, -0.2687068283557892, -0.5518556833267212, -0.7766982316970825, -0.3007880747318268, 0.4712947607040405, -0.3075427711009979, -0.5554598569869995, 0.15069137513637543, -0.05671580880880356, 0.6672155261039734, -0.25726234912872314, 0.280272901058197, 0.5296649932861328, 0.07683169841766357, -0.060373153537511826, 0.41751185059547424, 0.32393792271614075, 0.5736349821090698, -0.32888874411582947, 0.669364333152771, -0.8248661160469055, -0.8797967433929443, 0.7602586150169373, 0.41162213683128357, 0.09959513694047928, 0.4303847551345825, -0.05237917602062225, 0.40546637773513794, 0.20019587874412537, -0.0305348951369524, -0.001028559752739966, 0.14012449979782104, 0.6008018255233765, 0.8433496356010437, -0.0708899050951004, -0.4713675081729889, 0.4771219491958618, -0.5811874866485596, -0.47929295897483826, 0.2553804814815521, -0.2096526026725769, -0.49398618936538696, 0.8533576726913452, -0.639832615852356, 0.25434398651123047, -0.414630651473999, 0.5632520914077759, 0.08827294409275055, 0.22924602031707764, 0.5040917992591858, 0.3903113901615143, -0.35420089960098267, -0.3362843692302704, 0.2879962921142578, 0.02768263779580593, 0.17189441621303558, -0.2724961042404175, -0.572985827922821, 0.39899110794067383, 0.4739625155925751, 0.24098747968673706, 0.009383573196828365, 0.07289367914199829, 0.226389080286026, 0.29928120970726013, -0.3145640790462494, -0.45149627327919006, 0.15190865099430084, 0.26115456223487854, -0.4995065927505493, 0.42918744683265686, -0.3047802448272705, 0.369728684425354, -0.682547926902771, 0.31734639406204224, 0.37687739729881287, 0.07407266646623611, -0.38590624928474426, 0.526240348815918, 0.46555814146995544, 0.16157656908035278, 0.09720151126384735, -0.01698325015604496, 0.14146775007247925, -0.6376986503601074, -0.32164809107780457, 0.09098566323518753, -0.6673898696899414, 0.5359651446342468, 0.5365133881568909, -0.7030168175697327, -0.5659854412078857, -0.5088850259780884, -0.09875836968421936, 0.7359864711761475, 0.5743793249130249, 0.3018662631511688, -0.3459521234035492, -0.013422325253486633, -0.2237125188112259, -0.19813339412212372, 0.6084922552108765, 0.31564611196517944, 0.7018222808837891, 0.05679630488157272, -0.244843527674675, 0.42928406596183777, 0.4988706409931183, 0.17187365889549255, 0.15776658058166504, -0.5091364979743958, 0.5557324886322021, 0.16401176154613495, 0.5649125576019287, -0.6128842234611511, -0.31312867999076843, -0.07372727990150452, -0.8193748593330383, 0.01929258368909359, -0.2548343539237976, -0.7925370931625366, -0.6996006369590759, 0.32712429761886597, 0.2499919980764389, -0.5332402586936951, -0.7316591739654541, -0.35804805159568787, -0.5322921872138977, 0.7737654447555542, 0.5446693897247314, 0.07624844461679459, 0.479228675365448, 0.6244557499885559, 0.21727629005908966, 0.12162620574235916, -0.7332229614257812, -0.4633007347583771, -0.09874770790338516, 0.23897910118103027, 0.031056681647896767, -0.17106814682483673, 0.898453950881958, -0.03201949968934059, -0.42216551303863525, 0.1593886762857437, -0.3275938332080841, 0.809114933013916, 0.6818784475326538, -0.6299685835838318, 0.35237500071525574, 0.3759726285934448, -0.033776119351387024, -0.34183987975120544, -0.45838767290115356, 0.2824488878250122, 0.43885648250579834, -0.4914700984954834, -0.34746602177619934, -0.21617887914180756, 0.049500610679388046, 0.8660685420036316, 0.17752233147621155, 0.3086283504962921, -0.02463541552424431, 0.5797837972640991, -0.7038717269897461, 0.6042033433914185, -0.3950730860233307, -0.24009281396865845, -0.06705310195684433, -0.27593162655830383, -0.15346509218215942, -0.5520586967468262, 0.4454376995563507, -0.6080371141433716, 0.09909479320049286, 0.12748341262340546, 0.1403864473104477, -0.34349334239959717, 0.6559528112411499, -0.09114007651805878, 0.8101398944854736, -0.11297693103551865, -0.010249669663608074, -0.18859386444091797, 0.1196037158370018, -0.7896140813827515, 0.0064695850014686584, 0.015316362492740154, -0.2421797215938568, 0.3013480603694916, -0.2876712381839752, -0.33349478244781494, 0.31061074137687683, -0.6314041614532471, -0.44113266468048096, -0.12225382775068283, -0.6150863170623779, -0.33505648374557495, 0.48022130131721497, 0.37541136145591736, -0.6164629459381104, 0.07108759135007858, 0.4613129198551178, -0.2675636112689972, 0.6724457740783691, 0.9483258128166199, 0.18813617527484894, 0.43987414240837097, -0.597819983959198, -0.20335806906223297, 0.3429681956768036, -0.18540461361408234, 0.04036717489361763, -0.4845231771469116, 0.35552024841308594, 0.29116949439048767, -0.4808667302131653, -0.6337356567382812, 0.1335945725440979, -0.5144081711769104, 0.13990487158298492, 0.28925782442092896, -0.5441794395446777, -0.49543964862823486, 0.2434425801038742, 0.3821706473827362, 0.4538457989692688, 0.1687980592250824, -0.9229335188865662, 0.07446487993001938, 0.20677265524864197, 0.34461721777915955, -0.36953112483024597, 0.29089587926864624, -0.7220863699913025, -0.3360074758529663, 0.6865928173065186, 0.07076703011989594, -0.04824469983577728, 0.28011661767959595, -0.6229887008666992, 0.0807003304362297, -0.6517013311386108, -0.04678715392947197, 0.6483973264694214, -0.6508044004440308, 0.16556835174560547, -0.1026514321565628, -0.9420227408409119, -0.17734916508197784, -0.5949293971061707, -0.24820901453495026, 0.1789742410182953, -0.22658585011959076, -0.21402685344219208, 0.017172977328300476, -0.04057176038622856, 0.5215312838554382, 0.19167770445346832, 0.5565115809440613, -0.6829512119293213, 0.15731121599674225, -0.060964006930589676]}
{"caption id": "1", "text": "Needing a place to hold a reception for him , Philadelphia renovated the Old State House ( today Independence Hall ) , which might otherwise have been torn down .", "embeddings": [-0.5812311172485352, 0.31279703974723816, -0.42239099740982056, 0.6381670236587524, -0.40164491534233093, -0.052553750574588776, -0.5896015763282776, -0.5520725250244141, 0.5268102884292603, -0.5578643083572388, 0.46107301115989685, -0.32174596190452576, 0.3218154311180115, -0.2423616498708725, 0.5807331204414368, -0.2675849497318268, -0.499446302652359, -0.5555663108825684, 0.6219063997268677, 0.3327814042568207, -0.3555641174316406, 0.2511252760887146, -0.26441967487335205, 0.12523053586483002, 0.5272420048713684, 0.3940366506576538, -0.6350980997085571, -0.637787938117981, -0.8866023421287537, -0.8663386702537537, -0.2842088043689728, 0.5806975364685059, -0.3177749216556549, 0.16608783602714539, 0.13938167691230774, 0.48427048325538635, 0.6615302562713623, -0.4334256947040558, 0.7124566435813904, 0.2217119038105011, 0.5733943581581116, -0.6069228649139404, 0.5954557061195374, 0.4630376100540161, 0.018216490745544434, 0.6469321250915527, -0.47553926706314087, -0.17217816412448883, -0.47226855158805847, 0.5593452453613281, 0.0844058245420456, 0.6127496957778931, -0.4133523106575012, 0.18431256711483002, 0.6734280586242676, 0.6604667901992798, -0.39943262934684753, 0.20442984998226166, -0.6800655126571655, -0.2669704854488373, -0.3459531366825104, -0.5681308507919312, 0.4808792471885681, -0.04035433009266853, 0.040324389934539795, 0.027060097083449364, -0.31204867362976074, -0.3453167974948883, -0.4436441957950592, 0.361331045627594, 0.873493492603302, -0.6587494611740112, -0.5083814263343811, 0.13691821694374084, 0.6424446105957031, -0.27691173553466797, -0.8694872260093689, 0.06886612623929977, 0.5006191730499268, 0.45518064498901367, -0.2196616232395172, 0.3621978163719177, -0.5707566738128662, -0.36568787693977356, -0.2996167540550232, -0.46572744846343994, 0.42556148767471313, -0.6896437406539917, 0.12199793010950089, 0.30384060740470886, -0.8763360977172852, -0.14163406193256378, 0.6779406070709229, -0.3883530795574188, 0.7994163036346436, 0.201563760638237, -0.8142486214637756, 0.09525331109762192, 0.26078057289123535, -0.6083551049232483, -0.018270887434482574, 0.3614061772823334, -0.8160921335220337, 0.24046412110328674, 0.5524497032165527, -0.28825610876083374, -0.8409571647644043, 0.739291787147522, -0.3526654839515686, -0.14639563858509064, 0.5241407752037048, 0.3911467492580414, -0.18670201301574707, 0.10722138732671738, -0.3631116449832916, -0.33642908930778503, -0.23600804805755615, 0.3059753179550171, -0.06469745934009552, 0.43742066621780396, -0.7549614906311035, 0.29263776540756226, 0.20055323839187622, -0.2716175615787506, 0.15013881027698517, 0.016579192131757736, -0.4029609262943268, 0.6680624485015869, -0.21943749487400055, 0.627698540687561, -0.23208847641944885, 0.5060723423957825, 6.668269634246826e-06, -0.3915497660636902, -0.7732947468757629, -0.4894789457321167, 0.43076151609420776, -0.545128345489502, 0.35627850890159607, -0.8540194034576416, 0.05941515788435936, -0.6457949876785278, -0.5150042176246643, -0.6746429800987244, 0.08584652841091156, -0.582884669303894, 0.43100589513778687, -0.27362269163131714, -0.7511511445045471, -0.4495309591293335, 0.6492228507995605, 0.49023476243019104, 0.48684683442115784, 0.5816145539283752, 0.7696810960769653, -0.2647990882396698, -0.26709359884262085, 0.8894440531730652, 0.5378994345664978, -0.34416624903678894, -0.43838703632354736, -0.5380147695541382, -0.7357008457183838, 0.6487302780151367, 0.7204906940460205, -0.14356474578380585, -0.8195064663887024, 0.29819682240486145, -0.6882939338684082, -0.22101055085659027, 0.16482950747013092, -0.008659414947032928, 0.7275476455688477, -0.3783809542655945, -0.6214624047279358, 0.05501939356327057, 0.18777959048748016, -0.014335122890770435, 0.12205139547586441, 0.5306373238563538, -0.8076727986335754, 0.5930697917938232, -0.4710085988044739, -0.6187381148338318, 0.516973078250885, -0.1466880738735199, 0.2920052707195282, -0.21850553154945374, -0.1653735339641571, 0.49559029936790466, 0.8525674343109131, 0.13230590522289276, 0.4595926105976105, 0.24803045392036438, -0.7231234312057495, -0.5988444685935974, 0.19588854908943176, 0.5821349024772644, -0.11147505789995193, 0.0447964183986187, 0.0568302758038044, -0.010737249627709389, 0.20203052461147308, 0.636541485786438, 0.08493135869503021, 0.21878990530967712, 0.16988541185855865, -0.002354282420128584, -0.27396202087402344, -0.06302328407764435, 0.6827042102813721, -0.5822461843490601, -0.10416309535503387, 0.282394677400589, -0.12771214544773102, -0.8343581557273865, -0.4973571300506592, -0.5521801114082336, -0.22027362883090973, -0.12210774421691895, -0.05383202061057091, -0.5807262659072876, 0.5150924921035767, -0.2548719644546509, 0.08253970742225647, 0.7925047278404236, 0.0868159681558609, 0.6338480710983276, -0.6282920837402344, 0.4739975333213806, -0.47659286856651306, 0.6683039665222168, -0.35951927304267883, 0.029682284221053123, -0.40934181213378906, -0.010701439343392849, -0.0800078809261322, -0.04653216153383255, 0.35004690289497375, -0.17712204158306122, -0.4479915201663971, 0.7617412805557251, 0.6245805025100708, -0.3137584924697876, 0.4395082890987396, 0.10198476910591125, -0.2518937289714813, -0.6279147863388062, 0.36533328890800476, -0.7919628620147705, -0.31247377395629883, 0.8080406188964844, -0.43880587816238403, -0.14695106446743011, -0.49042925238609314, 0.30751824378967285, 0.054453857243061066, 0.6784238815307617, -0.20760156214237213, -0.5744759440422058, 0.3038409650325775, 0.7328047752380371, -0.6773895025253296, -0.5210168361663818, 0.09600736945867538, -0.17372086644172668, 0.12976130843162537, 0.0606907419860363, 0.6481008529663086, -0.4134778380393982, -0.3288913369178772, -0.03301529958844185, 0.4642697274684906, -0.10003312677145004, 0.4795575439929962, -0.6857773065567017, 0.21152116358280182, -0.775715172290802, 0.5040894150733948, -0.08584140241146088, 0.4916681945323944, -0.38631486892700195, -0.09462451934814453, 0.50239497423172, 0.39217159152030945, 0.2781814932823181, 0.13750125467777252, -0.5018853545188904, 0.03218526020646095, -0.44373419880867004, -0.20636221766471863, -0.3328973650932312, -0.10870492458343506, 0.39124512672424316, 0.02329511009156704, -0.13817666471004486, -0.37342193722724915, -0.2192355990409851, 0.20952750742435455, -0.17905549705028534, -0.46726882457733154, -0.36868971586227417, -0.10927849262952805, -0.033895719796419144, -0.727472186088562, 0.24934127926826477, -0.25265151262283325, 0.8406680822372437, 0.2113112360239029, -0.6099101305007935, 0.6655898094177246, -0.26256614923477173, 0.1692522168159485, 0.7300710678100586, 0.6646369099617004, 0.30302146077156067, 0.307906836271286, 0.5348779559135437, -0.3293343484401703, -0.11627518385648727, -0.02555081993341446, 0.5318838953971863, -0.18316741287708282, -0.7525854706764221, 0.7981376647949219, 0.26197049021720886, 0.8339706659317017, -0.5249922275543213, 0.1974814385175705, -0.2558596432209015, 0.3249054253101349, -0.6476763486862183, 0.48396065831184387, -0.4510349929332733, -0.3946739137172699, -0.1751202940940857, -0.4198989272117615, -0.27369192242622375, 0.24672485888004303, -0.04937584698200226, -0.30194664001464844, -0.4182414710521698, 0.240871861577034, 0.38753387331962585, -0.5534193515777588, -0.1976514458656311, -0.4999440014362335, -0.5601359605789185, -0.4215688407421112, 0.09938462823629379, 0.1610558032989502, 0.013629023917019367, 0.2697659730911255, 0.6743438243865967, -0.35031265020370483, -0.25414884090423584, 0.14111846685409546, -0.8514407277107239, -0.7133384346961975, -0.411371111869812, 0.8316060900688171, -0.8211365938186646, -0.22490161657333374, 0.4833424985408783, -0.7884054780006409, -0.05653400719165802, 0.401611864566803, -0.014849998988211155, 0.0353950671851635, -0.2661847472190857, 0.5065892934799194, -0.7682064175605774, -0.060123004019260406, 0.08950643986463547, -0.590377926826477, 0.262836217880249, 0.5159474611282349, 0.2984093129634857, -0.5458113551139832, -0.11229529231786728, -0.5206634402275085, -0.08907444775104523, 0.1769404411315918, 0.8218815326690674, 0.4393483102321625, 0.04708172008395195, 0.7386306524276733, 0.49360376596450806, -0.7611604928970337, -0.31718990206718445, 0.34809234738349915, 0.12687084078788757, -0.18107230961322784, -0.383406400680542, 0.6234303116798401, -0.5039231181144714, -0.5131028294563293, -0.5619443655014038, 0.5875604152679443, 0.28385087847709656, 0.8768130540847778, 0.4476274847984314, 0.5144942402839661, 0.8693836331367493, -0.12267724424600601, -0.7091025114059448, 0.22810399532318115, 0.727103054523468, 0.29001960158348083, -0.35959070920944214, -0.513836681842804, -0.6997666358947754, -0.13087700307369232, 0.09303614497184753, 0.44375142455101013, -0.6463526487350464, -0.5355497598648071, -0.6539772748947144, -0.03148302435874939, -0.3929005563259125, 0.4628066420555115, -0.6195389628410339, -0.10794001817703247, 0.04392385110259056, -0.6775147318840027, 0.23325411975383759, -0.5790610313415527, -0.028280790895223618, -0.35839298367500305, 0.17040704190731049, 0.04205595329403877, 0.4293700158596039, -0.29230979084968567, -0.6349180340766907, -0.5515189170837402, 0.33006080985069275, -0.7650778889656067, -0.7425559759140015, -0.2908875346183777, 0.7232645750045776, -0.6088418960571289, -0.10009400546550751, -0.18923640251159668, -0.4280303418636322, 0.06323369592428207, -0.16593444347381592, 0.41705521941185, 0.5510197877883911, 0.4330366253852844, 0.5821225047111511, 0.36477357149124146, 0.40229225158691406, 0.19371701776981354, 0.7539982795715332, -0.022027403116226196, 0.39988550543785095, -0.65006422996521, -0.48140454292297363, 0.44177863001823425, -0.10272123664617538, -0.34052774310112, -0.544011116027832, -0.020898425951600075, -0.7926209568977356, -0.1753467172384262, -0.42916634678840637, 0.13353338837623596, 0.033122092485427856, 0.5967257022857666, -0.9098108410835266, -0.337237685918808, 0.3858027160167694, 0.39231282472610474, 0.2441573292016983, -0.24272754788398743, 0.43436700105667114, 0.3435153365135193, -0.016651133075356483, 0.5207879543304443, 0.01634421944618225, -0.3250798285007477, -0.5362550020217896, 0.04452027007937431, -0.7002267837524414, 0.019083824008703232, 0.7264058589935303, 0.46972617506980896, -0.29345712065696716, -0.4294394850730896, -0.5552113056182861, -0.6304856538772583, 0.789272665977478, -0.7166809439659119, -0.3658958077430725, 0.19185742735862732, 0.5027985572814941, 0.3623087406158447, 0.04678627848625183, 0.6484071016311646, -0.14152757823467255, 0.6184197664260864, -0.7175575494766235, 0.38662806153297424, -0.5801036357879639, -0.18247029185295105, -0.32830697298049927, -0.09445910900831223, -0.11833421885967255, 0.19407907128334045, -0.5215348601341248, -0.14102895557880402, 0.3764110803604126, 0.5517691373825073, 0.13975632190704346, 0.5750809907913208, -0.21272097527980804, -0.022543728351593018, -0.2847479283809662, 0.13852117955684662, -0.6394208669662476, -0.08689144998788834, 0.4543868899345398, 0.28239113092422485, 0.5636272430419922, -0.6778557300567627, -0.031973470002412796, -0.5783522129058838, 0.6724352836608887, 0.7439349889755249, 0.6551375389099121, 0.9393722414970398, -0.04805094003677368, 0.5784316062927246, -0.5767835378646851, -0.6284431219100952, 0.25753018260002136, 0.6450167894363403, 0.3865244388580322, 0.056360334157943726, -0.5958682298660278, -0.7230655550956726, -0.6137090921401978, -0.12819123268127441, 0.34112367033958435, 0.7035696506500244, -0.2779621183872223, -0.3195607364177704, -0.673830509185791, -0.1644895225763321, -0.7689521312713623, 0.7137120962142944, 0.965847373008728, -0.029203571379184723, 0.4722190499305725, 0.6155554056167603, -0.31728655099868774, -0.25439780950546265, -0.5962206125259399, 0.16231587529182434, -0.8586629629135132, -0.2241164594888687, -0.07162171602249146, 0.8270648717880249, -0.5923852920532227, 0.07389073073863983, -0.623944878578186, -0.002266237512230873, 0.49687719345092773, 0.5387446284294128, -0.7019890546798706, -0.45819899439811707, 0.10326390713453293, 0.6667430400848389, -0.059608105570077896, 0.7879223823547363, -0.8334219455718994, -0.3578266203403473, 0.7676705121994019, 0.2803041934967041, 0.21073020994663239, 0.039148975163698196, 0.21079708635807037, 0.44643324613571167, -0.15250834822654724, -0.5419957637786865, 0.1413307785987854, 0.27692970633506775, 0.46695858240127563, -0.8798919916152954, -0.8411398530006409, -0.24548928439617157, 0.48195773363113403, -0.44416487216949463, -0.4883336126804352, 0.38574865460395813, -0.0841238796710968, 0.7583091855049133, -0.3642823100090027, -0.7271679639816284, -0.12590251863002777, 0.003633357584476471, 0.010730131529271603, 0.14201997220516205, -0.12856635451316833, -0.027744652703404427, -0.11800087988376617, -0.46343716979026794, -0.012187137268483639, 0.6626369953155518, -0.13055723905563354, 0.1051139310002327, 0.7997063398361206, -0.04025057703256607, 0.4573686122894287, -0.6913939714431763, 0.007514812517911196, -0.08498479425907135, 0.6210364699363708, 0.12855024635791779, 0.13376235961914062, 0.4514734745025635, -0.6249880194664001, -0.08514194935560226, 0.4231118857860565, -0.1365882158279419, 0.2869384288787842, 0.060345303267240524, -0.18016929924488068, 0.44419023394584656, -0.04286336526274681, 0.23942264914512634, 0.05187099054455757, -0.1841202825307846, -0.13342474400997162, 0.4526476263999939, 0.2244998812675476, 0.4400598108768463, 0.4795428514480591, 0.20838840305805206, 0.7870458364486694, 0.547157883644104, -0.17642590403556824, -0.00700868247076869, -0.01699003018438816, 0.5363074541091919, 0.1752437949180603, 0.683680534362793, 0.06025877594947815, -0.6416043639183044, 0.003799434984102845, -0.27083471417427063, -0.16456171870231628, -0.04278486967086792, 0.4246998429298401, -0.5079938173294067, 0.7132896184921265, -0.4766315221786499, -0.4001440107822418, 0.35159939527511597, -0.5096839666366577, -0.20711199939250946, -0.5346962809562683, 0.02396191842854023, -0.06234106048941612, 0.07663752138614655, -0.2862452268600464, -0.6855993866920471, 0.6038080453872681, -0.27616286277770996, 0.20979274809360504, -0.7722836136817932, 0.8713411688804626, -0.395620197057724, -0.47357600927352905, -0.6939741373062134, -0.7060986757278442, 0.47329846024513245, 0.2103041410446167, -0.4789769947528839, -0.4289831817150116, 0.05966523289680481, 0.2946684956550598, 0.45653343200683594, 0.6870023608207703, 0.15897230803966522, -0.3856810927391052, -0.6013672947883606, 0.4605594873428345, -0.7850759625434875, 0.32501983642578125, 0.09863334894180298, -0.7061526775360107, 0.2824258506298065, 0.7664820551872253, 0.3832615911960602, 0.5549339056015015, -0.7012307643890381, -0.16990883648395538, -0.12100156396627426, -0.6191315650939941, 0.5123175978660583, -0.4384419322013855, 0.11703471094369888, -0.6886503100395203, 0.45585396885871887, 0.4269428551197052, -0.16043342649936676, -0.814017653465271, -0.4160335659980774, -0.058320675045251846, 0.658589243888855, -0.5213001370429993, -0.6519746780395508, 0.10187288373708725, -0.5155144929885864, 0.19448579847812653, -0.16497264802455902, 0.5634487867355347, -0.5447462201118469, -0.6711876392364502, 0.40273338556289673, -0.6710370779037476, 0.7575122714042664, 0.07641345262527466, 0.39159199595451355, -0.028808563947677612, 0.20059233903884888, 0.6688259840011597, 0.6055636405944824, -0.0013952098088338971, 0.12779521942138672, -0.5916329622268677, 0.5344093441963196, 0.31846940517425537, 0.8350003361701965, -0.037543993443250656, -0.6022576689720154, 0.5450634956359863, -0.13403478264808655, 0.2061278074979782, 0.8466521501541138, 0.31923192739486694, -0.3982490301132202, -0.1797364056110382, -0.0619082972407341, 0.18350568413734436, 0.4429866671562195, -0.4350704252719879, -0.12119545787572861, 0.8048042058944702, -0.43654879927635193, -0.00801587663590908, 0.23192676901817322, 0.09737545251846313, -0.14783233404159546, -0.4996994137763977, -0.33779624104499817, 0.0966632068157196, 0.499813973903656, 0.24651126563549042, -0.510844886302948, 0.7039999961853027, -0.3676110804080963, 0.7406932711601257, 0.4097074866294861, -0.31101083755493164, -0.8933267593383789, -0.10574991255998611, 0.2916204333305359, -0.4753122627735138, 0.5679467916488647, 0.1451059877872467, 0.4738491475582123, 0.6115518808364868, 0.4362266957759857, -0.24489432573318481, -0.5978199243545532, -0.32893890142440796, 0.12241293489933014, -0.5030680298805237, -0.23805902898311615, -0.2481648325920105, -0.4622795581817627, 0.16269487142562866, -0.4736838638782501, -0.002880664076656103, -0.17894604802131653, -0.27271902561187744, 0.3688463568687439, -0.569484531879425, 0.7118610739707947, -0.8582539558410645, -0.017050310969352722, -0.6297274827957153, -0.3485950231552124, 0.0861637219786644, 0.10916554182767868, -0.6595980525016785, -0.6472008228302002, -0.118252232670784, -0.29139959812164307, -0.03298507630825043, -0.5737068057060242, -0.6850839853286743, 0.1323869228363037, -0.005708298645913601, 0.2614731788635254, -0.03096717782318592, -0.543594479560852, 0.5331029891967773, 0.4221651256084442, -0.5480344891548157, -0.37207433581352234, -0.36385464668273926, -0.4572235643863678, 0.40046724677085876, -0.32458677887916565, -0.2613656222820282, -0.30367419123649597, 0.7115048170089722, 0.2609093487262726, -0.6826890707015991, -0.7809180617332458, -0.5806035399436951, -0.6108105182647705, -0.3571721613407135, -0.8265851736068726, -0.14900806546211243, -0.1963445246219635, 0.6044319868087769, 0.29115793108940125, -0.07842512428760529, -0.6346266269683838, 0.593894362449646, 0.3339228332042694, 0.5364264845848083, -0.5719000101089478, 0.643036961555481, 0.42900410294532776, 0.10493519902229309, 0.43567103147506714, -0.6519381999969482, -0.06863047182559967, 0.4048776626586914, 0.5883839726448059, 0.4124208986759186, -0.44360825419425964, -0.5610289573669434, -0.2364732176065445, 0.3192278742790222, -0.3658502697944641, 0.09214243292808533, -0.20144037902355194, -0.6933022737503052, -0.3396754860877991, -0.8035991787910461, 0.7174580097198486, -0.13836590945720673, 0.5634651184082031, -0.07637891173362732, -0.8203463554382324, 0.058967847377061844, 0.4663437306880951, 0.008239527232944965, -0.23320166766643524, -0.6919746398925781, 0.3249790072441101, -0.5121736526489258, 0.5860099792480469, -0.16018931567668915, -0.4070674777030945, 0.35721147060394287, -0.6094613075256348, -0.13416261970996857, 0.12662793695926666, 0.5163689255714417, 0.28250956535339355, -0.10129973292350769, -0.3671777844429016, -0.08192377537488937, 0.809309184551239, 0.18006214499473572, 0.14756625890731812, -0.6294850707054138, 0.07828157395124435, 0.3870304524898529, -0.4858992397785187, 0.17890043556690216, 0.43818792700767517, -0.4217267334461212, -0.7047374248504639, 0.6863021850585938, 0.33803850412368774, 0.3190467059612274, 0.2443491816520691, -0.32469603419303894, -0.33044174313545227, -0.055468831211328506, 0.17686910927295685, 0.684495210647583, 0.30083492398262024, 0.06256604194641113, 0.1576138287782669, 0.2198706567287445, -0.04272514209151268, 0.8071284294128418, 0.10695404559373856, 0.09260406345129013, -0.3279934227466583, 0.7121392488479614, -0.2505970299243927, 0.606149435043335, -0.2576897144317627, -0.3187011480331421, -0.3418138325214386, 0.524779200553894, 0.26436877250671387, 0.14879059791564941, -0.5287460684776306, 0.27541249990463257, -0.30408239364624023, 0.42140036821365356, -0.3901613652706146, 0.09709570556879044, 0.2397058606147766, -0.36693984270095825, -0.4345197379589081, 0.45627787709236145, 0.13589714467525482, -0.7784379124641418, 0.10976653546094894, 0.14193062484264374, -0.15640731155872345, -0.02980002388358116, -0.7746003866195679, 0.3742865025997162, -0.23640163242816925, -0.5421931743621826, -0.3718191683292389, -0.03139059245586395, -0.4135817289352417, -0.2833612263202667, 0.5141452550888062, 0.40966129302978516, -0.26105907559394836, 0.5768880844116211, -0.18474532663822174, 0.6109462976455688, 0.010604625567793846, -0.30230259895324707, 0.7052401304244995, -0.5306214094161987, -0.26361072063446045, -0.24526381492614746, -0.4855019450187683, -0.20700621604919434, 0.4091530740261078, -0.5664602518081665, -0.20673218369483948, -0.879404604434967, -0.5519429445266724, 0.30720287561416626, 0.6676793694496155, -0.2300153374671936, 0.6690504550933838, 0.34241798520088196, -0.49522191286087036, -0.2298382818698883, 0.05633043870329857, -0.6646637916564941, 0.32738569378852844, 0.14813929796218872, -0.3248855769634247, -0.3147655427455902, -0.7098734378814697, -0.1439248025417328, 0.42330920696258545, 0.5945018529891968, -0.299015611410141, -0.6346078515052795, 0.522802472114563, -0.5451256036758423, 0.4830701947212219, 0.903120756149292, 0.710963785648346, -0.5000620484352112, 0.4301029443740845, -0.45273634791374207, 0.4983818233013153, -0.31726881861686707, -0.5032200813293457, 0.4808617830276489, 0.819398820400238, 0.11270859092473984, -0.7926582098007202, -0.23138895630836487, 0.22573339939117432, 0.3198692798614502, 0.5369139909744263, 0.5385634899139404, 0.5773611664772034, 0.11777006834745407, 0.579789400100708, 0.17123417556285858, -0.3215869963169098, -0.29072096943855286, 0.025818392634391785, 0.11259616911411285, -0.026272762566804886, 0.48945721983909607, 0.08430715650320053, 0.6038583517074585, -0.5120775699615479, 0.7193866968154907, -0.7601242065429688, -0.042889878153800964, -0.349757581949234, -0.7429598569869995, -0.32253822684288025, 0.7639224529266357, -0.19168630242347717, 0.64629065990448, 0.5750799775123596, -0.7796083688735962]}
{"caption id": "2", "text": "He left for New York in February 1831 and released a third volume of poems , simply titled Poems .", "embeddings": [-0.36523985862731934, 0.893364667892456, -0.15896935760974884, 0.8362849950790405, -0.43390828371047974, 0.5748965740203857, 0.36011525988578796, -0.12397903949022293, 0.4378212094306946, 0.1618208885192871, 0.06343700736761093, 0.28014928102493286, -0.45099857449531555, -0.03200158476829529, 0.4061223566532135, 0.31697165966033936, -0.5176329612731934, -0.6886690855026245, -0.3605184853076935, -0.08284881711006165, 0.14830172061920166, 0.35711851716041565, 0.13890214264392853, 0.45686599612236023, 0.2750069797039032, -0.19513770937919617, -0.4027974009513855, 0.10319726914167404, 0.35503992438316345, 0.384843111038208, 0.7346845865249634, 0.2014898955821991, -0.6383650302886963, -0.5111150741577148, 0.2192143201828003, -0.4565422534942627, -0.22964808344841003, -0.10908857733011246, -0.21547462046146393, -0.5617269277572632, -0.09783715009689331, 0.31518077850341797, 0.6127320528030396, 0.2849818468093872, -0.23079606890678406, 0.36906251311302185, 0.8557866811752319, -0.5205156207084656, 0.527501106262207, 0.9260622262954712, -0.31264686584472656, -0.3306310474872589, 0.6249989867210388, 0.21162629127502441, 0.6267353296279907, 0.030605677515268326, -0.16658581793308258, -0.8748099207878113, -0.3015231192111969, -0.43077993392944336, 0.05219116806983948, 0.645311176776886, 0.13949811458587646, -0.5101987719535828, -0.6873574256896973, -0.29986482858657837, -0.7735821008682251, -0.14870794117450714, 0.1397683173418045, 0.5540115833282471, 0.45806318521499634, 0.02076629549264908, -0.7911213040351868, -0.04151957109570503, -0.07089059054851532, 0.06466047465801239, -0.7933530807495117, -0.3072644770145416, 0.6079269051551819, 0.3072167932987213, 0.44232767820358276, 0.8252596855163574, -0.014312204904854298, 0.4973568618297577, -0.09571769833564758, 0.09118039906024933, 0.2310686558485031, -0.06736651062965393, 0.7020924687385559, 0.859818696975708, -0.21097412705421448, 0.16385497152805328, 0.6913549900054932, 0.1796814203262329, 0.6002411842346191, 0.32596343755722046, 0.5199167728424072, 0.5199038982391357, 0.09466549009084702, -0.059055227786302567, -0.03578982874751091, -0.2761809527873993, -0.03506385162472725, -0.19482289254665375, 0.1131015196442604, 0.385936975479126, 0.020257610827684402, 0.29415690898895264, -0.26460909843444824, 0.4996691048145294, 0.6859452724456787, 0.4617735743522644, 0.2483528107404709, -0.4245448708534241, 0.3655470609664917, -0.41236793994903564, -0.49770233035087585, -0.6974332332611084, 0.5546239614486694, -0.4031430780887604, -0.2595689594745636, 0.5980713367462158, 0.4627140760421753, -0.678000807762146, 0.4128262996673584, -0.9031124114990234, -0.2722708284854889, 0.05172279477119446, -0.18951280415058136, 0.05010959878563881, 0.5256631374359131, -0.5286228656768799, -0.1866408735513687, -0.04449201375246048, 0.1041613444685936, 0.692541241645813, 0.07624758034944534, -0.48887473344802856, 0.321355938911438, -0.5413399338722229, 0.015899429097771645, -0.38106054067611694, -0.4069179594516754, 0.16883040964603424, 0.42374929785728455, -0.650276243686676, -0.8460118770599365, 0.07818228751420975, 0.016987962648272514, 0.0785631313920021, -0.05569697171449661, 0.9324946999549866, 0.03650352731347084, 0.5005167722702026, 0.5460989475250244, 0.4279917776584625, -0.15392151474952698, 0.4059930145740509, 0.20415636897087097, 0.4552707076072693, 0.6175544857978821, -0.8192427158355713, 0.14619627594947815, 0.10060948878526688, -0.8051133751869202, -0.8294510245323181, -0.2314106673002243, -0.6171871423721313, 0.05243835970759392, -0.5270817875862122, -0.24381986260414124, -0.36730435490608215, 0.6381334066390991, 0.6054112911224365, 0.2793616056442261, -0.3227747976779938, 0.33198800683021545, 0.7260625958442688, 0.30769801139831543, 0.5109314322471619, -0.020908363163471222, -0.10197406262159348, 0.690707802772522, -0.8020066618919373, -0.5076587200164795, 0.27923282980918884, 0.4975408613681793, 0.5741039514541626, -0.14019134640693665, 0.6003417372703552, 0.16826128959655762, 0.891075074672699, 0.861000657081604, 0.23333993554115295, 0.8016031384468079, -0.7086299657821655, -0.47591671347618103, -0.038440704345703125, 0.44790250062942505, -0.23858217895030975, -0.7214688062667847, -0.6159582138061523, -0.403463214635849, -0.6262149810791016, -0.4041984975337982, 0.059705909341573715, 0.7829961776733398, 0.09778013080358505, 0.2232035994529724, -0.12249233573675156, 0.7203298211097717, -0.8237239122390747, 0.30977511405944824, -0.11128487437963486, -0.15506741404533386, -0.3100939095020294, 0.6926298141479492, -0.7095440626144409, 0.36933398246765137, 0.1246684342622757, -0.40799376368522644, -0.3531377613544464, -0.055667247623205185, 0.09605690091848373, -0.7668346166610718, -0.326034814119339, -0.5037261247634888, 0.4572724401950836, -0.20740406215190887, -0.3334560692310333, 0.01838129572570324, -0.0758972018957138, 0.3556014597415924, -0.32176047563552856, 0.25675472617149353, -0.5134503841400146, -0.2077617645263672, -0.3765571713447571, -0.6706562042236328, -0.6574804782867432, -0.09462471306324005, -0.5870954990386963, -0.20439165830612183, 0.5842784643173218, -0.809916615486145, -0.5704049468040466, 0.16575558483600616, -0.4919613301753998, 0.7503728866577148, 0.06814908981323242, -0.3335791230201721, 0.5973712801933289, 0.4980159401893616, 0.4814280867576599, -0.8651455044746399, 0.6412502527236938, 0.6506495475769043, 0.13081805408000946, -0.5688601732254028, 0.3827260136604309, 0.2652471661567688, 0.756800651550293, -0.23756267130374908, 0.4763742685317993, -0.7121869325637817, -0.12481893599033356, 0.2686479389667511, 0.3850710690021515, 0.424293577671051, 0.034933604300022125, -0.5539652109146118, -0.780410647392273, 0.2492031306028366, 0.1466260701417923, 0.13317878544330597, -0.21848714351654053, 0.4481099247932434, -0.8879079818725586, -0.029837384819984436, -0.035520244389772415, 0.11959729343652725, -0.48873603343963623, -0.1969636082649231, 0.21458445489406586, -0.5389618873596191, 0.5934644937515259, -0.3250138759613037, -0.2352106273174286, -0.591486930847168, -0.23697158694267273, 0.11358384788036346, -0.4679594933986664, 0.6294217705726624, -0.44925662875175476, 0.39495202898979187, -0.18845252692699432, -0.18589678406715393, -0.2720266878604889, -0.032132335007190704, -0.131151482462883, 0.5859678387641907, -0.858775794506073, -0.07900229841470718, -0.7368792295455933, -0.6948034763336182, 0.10627246648073196, 0.7588573098182678, 0.3911297023296356, 0.30671021342277527, -0.7291552424430847, 0.2713650166988373, -0.47953104972839355, 0.04653839394450188, 0.003194838762283325, 0.002139087300747633, -0.6268534660339355, 0.26223069429397583, 0.7661998271942139, -0.6721322536468506, -0.6342239379882812, 0.5032603144645691, -0.06190270557999611, -0.4425066113471985, -0.7174190282821655, -0.16149812936782837, 0.6611447334289551, 0.5951094627380371, -0.26718828082084656, -0.6873629093170166, -0.19679278135299683, -0.034712061285972595, 0.3795989453792572, -0.2038705199956894, -0.7307106852531433, 0.4539150893688202, -0.052477870136499405, 0.1492709517478943, -0.3973553478717804, 0.5336642265319824, 0.3416067361831665, -0.21320722997188568, -0.3062107563018799, -0.5845211744308472, -0.6213528513908386, -0.5721091628074646, 0.3009498119354248, -0.2320888340473175, -0.5806118249893188, -0.007939308881759644, -0.015488379634916782, 0.6692116260528564, -0.23379582166671753, 0.6244609355926514, 0.7731806039810181, -0.5315454602241516, -0.043014831840991974, 0.08135303109884262, 0.2840098738670349, -0.807512640953064, 0.6684947609901428, 0.5535610914230347, 0.4238235652446747, -0.5526115894317627, -0.35107511281967163, -0.5540497303009033, 0.09276025742292404, 0.2931603491306305, 0.1238388791680336, 0.5285456776618958, 0.42346900701522827, 0.9005460739135742, -0.24446406960487366, 0.03570089861750603, 0.13982385396957397, -0.49530458450317383, 0.08659685403108597, 0.6604510545730591, 0.7987693548202515, 0.13500282168388367, 0.41955244541168213, 0.11916440725326538, -0.5373066663742065, 0.0075622908771038055, 0.20539171993732452, 0.4955679178237915, 0.035132985562086105, -0.1800297647714615, 0.1203303337097168, -0.32883337140083313, -0.012214049696922302, 0.00019116047769784927, -0.48240962624549866, 0.48094356060028076, 0.19945421814918518, 0.17420271039009094, -0.8048813939094543, 0.15136383473873138, -0.7004044651985168, 0.4500781297683716, -0.6438400745391846, -0.05369632691144943, 0.5262039303779602, 0.7742050886154175, 0.2953490614891052, -0.07158959656953812, -0.3383547365665436, 0.5992899537086487, -0.19794391095638275, 0.7242136001586914, -0.8004246950149536, -0.8273897171020508, -0.04255760461091995, 0.6733881235122681, 0.401312917470932, -0.046972133219242096, -0.4072704613208771, -0.09830838441848755, -0.24224859476089478, -0.3048132658004761, -0.9113807678222656, -0.7164434194564819, -0.9271811842918396, 0.21229013800621033, -0.20904791355133057, 0.8208261132240295, -0.2933306097984314, 0.13402952253818512, -0.6021199226379395, 0.29850783944129944, -0.7927948236465454, -0.44019338488578796, -0.21932879090309143, -0.29846030473709106, 0.7563095688819885, 0.4096892476081848, -0.2964823842048645, -0.8523009419441223, -0.4004474878311157, -0.5134112238883972, -0.107173852622509, -0.5747517347335815, 0.562301516532898, -0.250901460647583, -0.533877968788147, 0.7691590189933777, -0.13612748682498932, -0.4901355504989624, 0.0951579213142395, 0.21833541989326477, 0.19097089767456055, -0.6432111263275146, -0.721510112285614, -0.7552742958068848, 0.49634671211242676, 0.4396320879459381, 0.7487007975578308, -0.01050590630620718, 0.5432210564613342, 0.6090072393417358, -0.02801400236785412, -0.1112137958407402, 0.7043251991271973, -0.1847931295633316, -0.1888533979654312, -0.10944876819849014, -0.06156656891107559, 0.25057828426361084, 0.94547039270401, -0.139724999666214, 0.18501247465610504, 0.7735602855682373, -0.14341935515403748, -0.2552700638771057, 0.25066623091697693, -0.596373975276947, 0.6404086351394653, -0.03901426121592522, -0.2576037347316742, 0.29848429560661316, -0.506047785282135, -0.5198596119880676, 0.23039452731609344, 0.6542049646377563, 0.14312304556369781, -0.3829294443130493, -0.15114685893058777, 0.01170683279633522, -0.013909230940043926, 0.07307282090187073, -0.06805840134620667, -0.10290997475385666, 0.10193612426519394, -0.4684806168079376, -0.053205884993076324, -0.6405549049377441, 0.4154110252857208, 0.045970432460308075, -0.28063496947288513, 0.7397730946540833, -0.11231908947229385, 0.7577370405197144, -0.6733007431030273, 0.12622539699077606, -0.7811377644538879, 0.5410759449005127, 0.6835535764694214, 0.6433210372924805, 0.48930415511131287, -0.2978787422180176, 0.10892490297555923, -0.44200626015663147, 0.3331661820411682, 0.47224220633506775, 0.1438436210155487, 0.2404729723930359, -0.5173345804214478, 0.32466354966163635, -0.12838976085186005, 0.528052568435669, -0.64910489320755, 0.22508135437965393, -0.422818660736084, -0.7416425943374634, 0.2149520218372345, -0.6891182661056519, -0.006488777697086334, -0.39426037669181824, 0.07506609708070755, 0.26973503828048706, 0.6539349555969238, 0.37590858340263367, -0.04732131585478783, -0.5258917212486267, 0.11977366358041763, 0.1691140979528427, -0.4088514745235443, 0.7254708409309387, 0.5464744567871094, 0.8893544673919678, -0.28907012939453125, 0.3420237898826599, -0.16269782185554504, -0.4439185559749603, 0.4033351242542267, 0.5223706960678101, -0.612393319606781, -0.2630930542945862, -0.0873122438788414, -0.06340368092060089, -0.5368260741233826, -0.3386962115764618, 0.22575721144676208, 0.29295942187309265, 0.29452887177467346, -0.039546504616737366, -0.8305151462554932, 0.19922329485416412, 0.4913172125816345, -0.7214339375495911, -0.15135988593101501, 0.3644750416278839, 0.2370150089263916, 0.43685346841812134, 0.3466075658798218, 0.014806592836976051, 0.33923155069351196, -0.398775577545166, -0.5746484994888306, 0.35400232672691345, -0.3729243278503418, 0.2427929937839508, 0.14876550436019897, -0.686367392539978, 0.19762863218784332, 0.30335599184036255, -0.22072243690490723, 0.31325459480285645, 0.6058151721954346, -0.08135675638914108, 0.4753243029117584, 0.48914051055908203, 0.7080022692680359, 0.2611510753631592, 0.07205356657505035, 0.035702988505363464, -0.15798798203468323, 0.07870516180992126, -0.336470365524292, -0.8370299339294434, -0.1893935352563858, -0.8811901807785034, -0.45854249596595764, -0.255247563123703, 0.21772834658622742, 0.3962055742740631, 0.6544700860977173, 0.5447050333023071, 0.12430112808942795, 0.13841316103935242, 0.33448293805122375, -0.13481122255325317, 0.5047951340675354, -0.05185398459434509, 0.1222008690237999, -0.5565745830535889, 0.14985084533691406, -0.4975523352622986, -0.6131796836853027, -0.008712022565305233, 0.18529324233531952, 0.6118102073669434, 0.46757903695106506, 0.09098094701766968, -0.0020723151974380016, -0.6304587125778198, -0.010515204630792141, 0.5145091414451599, -0.31794580817222595, 0.33906129002571106, 0.33518847823143005, 0.8448380827903748, 0.06260316073894501, -0.12059226632118225, 0.6648069024085999, -0.8441358804702759, -0.1567368060350418, 0.3278598487377167, -0.5299589037895203, -0.39166775345802307, 0.2735728323459625, -0.9252102375030518, -0.62509685754776, 0.13427917659282684, -0.6561468243598938, -0.3556613326072693, 0.10407685488462448, -0.011981077492237091, 0.6935984492301941, 0.6210429072380066, -0.23670154809951782, 0.190651535987854, -0.47011005878448486, -0.3879873752593994, -0.2780425548553467, -0.3724811375141144, -0.7501748204231262, 0.6917098760604858, 0.030036304146051407, 0.6614294052124023, 0.7116355299949646, -0.704761266708374, 0.06731711328029633, 0.7611002922058105, 0.0656353011727333, -0.05009074509143829, -0.4447755515575409, -0.14927874505519867, 0.6214683651924133, 0.16888336837291718, -0.624346137046814, -0.1888447403907776, 0.2935815751552582, 0.5742037296295166, -0.3529475927352905, 0.19608497619628906, -0.3229759633541107, -0.4310082793235779, 0.05114360898733139, 0.2887642979621887, 0.12730464339256287, -0.869746744632721, 0.5953457355499268, -0.4031773805618286, 0.8992002010345459, 0.1749582290649414, 0.10326924175024033, 0.10730157792568207, 0.23866048455238342, -0.8117941617965698, 0.16664956510066986, -0.288086473941803, -0.28979331254959106, 0.22636345028877258, 0.07800469547510147, -0.10946733504533768, -0.527022123336792, -0.4142157733440399, -0.19975212216377258, -0.3895348906517029, 0.5048596262931824, -0.5571432113647461, 0.017239490523934364, 0.37594088912010193, 0.17969326674938202, -0.6040108799934387, 0.4150794446468353, 0.23413078486919403, 0.5057090520858765, -0.057793598622083664, -0.893561840057373, 0.4147718846797943, 0.047920770943164825, -0.23721472918987274, 0.6791409254074097, 0.22267037630081177, 0.26499414443969727, -0.45941221714019775, -0.6165316104888916, 0.7966967821121216, -0.37655946612358093, 0.22677229344844818, -0.556607723236084, -0.766094446182251, 0.30534884333610535, -0.0491827055811882, 0.33851587772369385, -0.4862408936023712, 0.31214621663093567, 0.03180285543203354, 0.6793327331542969, 0.17208360135555267, -0.5336489677429199, -0.5683659315109253, -0.3117343485355377, 0.8500323295593262, -0.20652985572814941, 0.5714407563209534, 0.845788836479187, -0.3880566656589508, 0.29980286955833435, 0.5266482830047607, 0.23538736999034882, 0.9324382543563843, 0.1516568809747696, -0.6304810047149658, 0.39614859223365784, -0.8829419612884521, 0.2277376502752304, -0.847643256187439, 0.3644832372665405, 0.5435846447944641, 0.5243421196937561, -0.7241500616073608, -0.4467470049858093, -0.17859423160552979, 0.5828908681869507, -0.6625989079475403, -0.01390865072607994, 0.2678559124469757, 0.36540496349334717, -0.6377214193344116, 0.20257268846035004, -0.40986669063568115, 0.5619782209396362, -0.5010079145431519, -0.8028901815414429, 0.8443965315818787, 0.7245950102806091, -0.1789330542087555, -0.5492011308670044, -0.2773410975933075, 0.09038322418928146, 0.17585085332393646, 0.13565966486930847, -0.6644166707992554, -0.4646322429180145, -0.20489923655986786, 0.0341656319797039, -0.2622649073600769, -0.5015512704849243, 0.3787038326263428, -0.2507499158382416, -0.1177850142121315, 0.7553667426109314, 0.15560029447078705, 0.41065168380737305, 0.22221244871616364, 0.22928425669670105, -0.7026162147521973, 0.12018664926290512, 0.7791420221328735, -0.08794180303812027, -0.05701475590467453, -0.1690354198217392, -0.814906656742096, -0.704990804195404, 0.7200087308883667, -0.10534504055976868, 0.23535491526126862, -0.6365448832511902, 0.03912826254963875, -0.6983934640884399, -0.40861353278160095, -0.40820980072021484, 0.008368157781660557, -0.046010252088308334, -0.5069180130958557, -0.22043412923812866, -0.636040985584259, -0.19797579944133759, -0.03444768115878105, 0.12507669627666473, -0.04813219979405403, -0.019157838076353073, 0.41137248277664185, 0.24032950401306152, -0.7202093601226807, -0.7188806533813477, -0.21777154505252838, 0.3909856677055359, -0.2628690004348755, 0.16101764142513275, -0.34178975224494934, 0.3508709669113159, -0.7829095721244812, 0.16737043857574463, 0.1087343692779541, 0.07250751554965973, -0.2979695498943329, 0.02249264344573021, 0.33023902773857117, 0.16722846031188965, 0.6592758893966675, 0.051844559609889984, 0.6579323410987854, 0.5586711168289185, -0.4274430572986603, -0.4278687536716461, -0.185675248503685, -0.5823380947113037, 0.4200107455253601, -0.35689958930015564, -0.7199668884277344, -0.04313844069838524, -0.6878907680511475, -0.16922374069690704, -0.4670400023460388, 0.6113811731338501, 0.3018077611923218, 0.7132036685943604, 0.9386486411094666, 0.0452980138361454, 0.7101672887802124, 0.1976238489151001, 0.3242529332637787, -0.21342366933822632, 0.2758200764656067, 0.37106403708457947, 0.1361413151025772, 0.6077136993408203, -0.2855077087879181, -0.01425927598029375, -0.1414654552936554, 0.40012091398239136, 0.4337916672229767, -0.026601361110806465, 0.2060915231704712, 0.6157956719398499, 0.343960165977478, -0.13139480352401733, -0.7136598229408264, 0.3288734257221222, 0.5165448188781738, -0.200495645403862, 0.5674349069595337, 0.23616382479667664, 0.34846892952919006, 0.17001813650131226, 0.7952122688293457, -0.7274177074432373, -0.3786453306674957, 0.14133885502815247, 0.0063462588004767895, 0.6920797228813171, -0.2951694130897522, -0.5835094451904297, 0.49972036480903625, 0.4890087842941284, 0.18721070885658264, -0.3925337493419647, 0.04445226117968559, 0.3207857608795166, -0.7174520492553711, -0.01000501960515976, -0.3441263735294342, 0.38604462146759033, 0.29834938049316406, 0.2385246306657791, 0.7731702327728271, -0.2027319073677063, -0.138804093003273, -0.6488223075866699, -0.09342920035123825, -0.5228807926177979, 0.3963415026664734, 0.047632064670324326, 0.17814180254936218, 0.20572228729724884, -0.6855179667472839, -0.4117215871810913, 0.014991037547588348, -0.4312705993652344, -0.03678483888506889, -0.9402730464935303, -0.7213828563690186, -0.1215163841843605, -0.4793669581413269, -0.4579210877418518, -0.456596314907074, 0.3626856803894043, -0.5222305655479431, -0.7665141820907593, 0.13963167369365692, 0.13353294134140015, 0.7594467401504517, -0.5232410430908203, -0.31567445397377014, 0.2696865499019623, -0.7914658188819885, -0.11311417073011398, 0.08399400115013123, -0.6675727367401123, -0.1747264415025711, 0.24710887670516968, 0.4256901144981384, 0.20395004749298096, 0.14886611700057983, 0.3942747712135315, -0.44833460450172424, 0.15720109641551971, -0.17991331219673157, -0.16022488474845886, 0.21396060287952423, 0.25501248240470886, -0.3357350826263428, 0.602764368057251, 0.7010340690612793, -0.392453134059906, 0.4824439287185669, -0.49378201365470886, 0.28275391459465027, 0.4878445565700531, -0.29520121216773987, -0.29313480854034424, -0.1830245703458786, 0.04305850714445114, 0.5536283254623413, -0.025913240388035774, -0.08803725242614746, 0.4699804484844208, 0.3981301188468933, -0.08765099197626114, -0.533855140209198, -0.19192087650299072, -0.8092086315155029, 0.12734708189964294, 0.23514284193515778, 0.215413436293602, 0.27152538299560547, -0.5205146670341492, -0.6171256303787231, 0.4633238911628723, -0.0922066867351532, -0.24491843581199646, 0.19388066232204437, -0.0858992338180542, 0.8568407297134399, -0.30429723858833313, 0.22368934750556946, 0.2839639186859131, -0.05313338339328766, -0.3052328824996948, 0.005075124558061361, 0.18278472125530243, 0.2598907947540283, -0.7153404355049133, 0.7175045013427734, 0.47856149077415466, 0.23212742805480957, 0.09822358191013336, -0.8284153938293457, -0.27094095945358276, -0.04042596369981766, 0.9674588441848755, 0.24241577088832855, -0.7275222539901733, -0.41558322310447693, -0.4260595738887787, 0.4695543348789215, 0.3942808508872986, 0.679236114025116, -0.3647271990776062, -0.23639754951000214, -0.12458639591932297, 0.740500271320343, 0.14884860813617706, 0.6342087984085083, 0.6120147109031677, 0.22776083648204803, -0.5539021492004395, -0.5733304619789124, -0.08027947694063187, -0.1844622641801834, -0.2761278748512268, 0.8192985653877258, 0.7867816090583801, 0.08116758614778519, -0.6099246144294739, -0.6293392181396484, 0.10357295721769333, 0.9256771802902222, 0.8638296127319336, -0.5138869881629944, 0.13558414578437805, 0.6395140886306763, -0.11996085196733475, -0.6321045160293579, -0.5057380795478821, 0.22749899327754974, 0.1539442539215088, -0.6124328374862671, -0.5452951192855835, 0.07147324830293655, -0.946426272392273]}
{"caption id": "3", "text": "Born after Judgment Day , Star is mute due to the trauma of the post @-@ apocalyptic world .", "embeddings": [0.0011851952876895666, 0.365278422832489, 0.8494523763656616, -0.6015021800994873, 0.0005482638953253627, 0.8391897082328796, 0.6991085410118103, -0.03111332841217518, -0.6167490482330322, 0.30181604623794556, 0.7136156558990479, -0.6213018894195557, -0.38762861490249634, 0.7116959095001221, -0.1602049171924591, 0.376336932182312, -0.15588204562664032, -0.14601168036460876, -0.25479021668434143, 0.33494675159454346, 0.8242987990379333, 0.854285478591919, -0.4178285002708435, 0.802591860294342, -0.5307742953300476, -0.7617210149765015, 0.3219175636768341, -0.7864128947257996, -0.5475872159004211, 0.4339102804660797, 0.5664167404174805, -0.03840651363134384, -0.5201568007469177, -0.15004020929336548, 0.08631252497434616, 0.17414075136184692, 0.2904340326786041, -0.5239028334617615, 0.440984845161438, 0.34256383776664734, 0.08923100680112839, -0.42421236634254456, -0.011713576503098011, 0.07439126074314117, -0.3023280203342438, -0.1760217249393463, 0.22086825966835022, -0.09112007170915604, 0.42172908782958984, -0.28017327189445496, -0.030174190178513527, -0.2240120768547058, -0.48558783531188965, 0.17315013706684113, 0.023725518956780434, 0.22632119059562683, 0.30174195766448975, -0.36289140582084656, 0.22468793392181396, 0.3975139558315277, 0.5836191773414612, -0.10063456743955612, 0.5169091820716858, -0.4544558823108673, 0.6485623717308044, 0.17453786730766296, -0.6759405136108398, -0.8740387558937073, -0.6861310005187988, -0.3203012943267822, 0.5063148736953735, 0.4307814836502075, -0.47450318932533264, 0.10280564427375793, -0.05654582381248474, 0.18153806030750275, -0.6387437582015991, -0.7199749946594238, 0.49980223178863525, 0.41329509019851685, 0.05205131694674492, 0.8652853965759277, 0.6058182120323181, 0.8023160696029663, 0.2796061635017395, 0.021478930488228798, -0.09163128584623337, -0.3692218065261841, -0.8236422538757324, 0.8495221734046936, 0.49977633357048035, -0.6529145240783691, -0.36105769872665405, 0.07701905071735382, -0.7161005139350891, 0.06246432289481163, 0.37529462575912476, 0.25736844539642334, -0.9158194065093994, -0.5700373649597168, -0.30564332008361816, -0.1307132989168167, -0.4517236351966858, -0.7483293414115906, 0.2973000109195709, -0.3611871898174286, 0.19665110111236572, 0.12409377098083496, 0.868635356426239, 0.5349141359329224, -0.4124438166618347, -0.6966075897216797, 0.11666305363178253, 0.07989590615034103, -0.6902424097061157, -0.3988924026489258, -0.32357844710350037, 0.4417330026626587, -0.10974258929491043, 0.34571126103401184, 0.5491591691970825, 0.06706199049949646, 0.6829591989517212, 0.0934654101729393, -0.2917768657207489, -0.5950902700424194, 0.40834298729896545, -0.7484748363494873, 0.6417065858840942, -0.2045564502477646, -0.33548954129219055, 0.4299428462982178, -0.303331196308136, -0.07706974446773529, 0.33128976821899414, 0.4779575765132904, 0.015789855271577835, 0.21601444482803345, -0.09347903728485107, 0.06513471901416779, 0.04655613377690315, 0.09482964128255844, 0.2575024962425232, -0.6744749546051025, 0.3608991503715515, -0.1712012141942978, -0.05455600470304489, -0.16887934505939484, -0.39224156737327576, -0.5449618697166443, 0.28149738907814026, -0.657618522644043, 0.262867271900177, 0.4092314541339874, -0.09900052845478058, 0.8440864086151123, -0.25682979822158813, 0.04173058643937111, -0.7003023624420166, 0.4180023968219757, -0.19527654349803925, 0.6515381932258606, 0.439749151468277, 0.0877719596028328, 0.4194474518299103, 0.03187395632266998, -0.12308688461780548, -0.3744806945323944, -0.6452780961990356, -0.3473423719406128, 0.5072625875473022, 0.28481465578079224, 0.337021142244339, 0.013384569436311722, 0.5596729516983032, -0.33188650012016296, -0.12141159176826477, -0.4137903153896332, 0.02586083486676216, 0.23430685698986053, -0.4354371726512909, 0.31644362211227417, -0.033149246126413345, -0.46801087260246277, -0.5052448511123657, 0.18951883912086487, -0.3438962697982788, 0.48475852608680725, -0.32797685265541077, -0.14106857776641846, 0.4912879765033722, -0.02872539684176445, 0.29468315839767456, -0.5849031209945679, 0.6282863020896912, -0.3240950107574463, -0.26292264461517334, 0.8497537970542908, 0.04980142042040825, -0.44215449690818787, 0.20162281394004822, -0.4150382876396179, -0.28864479064941406, 0.5038205981254578, -0.5964226722717285, -0.8106619715690613, 0.5340349078178406, -0.05323866382241249, 0.4376070499420166, 0.06186116114258766, -0.28060370683670044, 0.4086613655090332, 0.3600538969039917, 0.4916993975639343, -0.3006422817707062, -0.6193716526031494, -0.19201041758060455, -0.363432377576828, 0.7892289161682129, 0.6739506721496582, 0.3585343360900879, -0.6031203269958496, 0.7174569368362427, -0.7071754932403564, 0.3980429172515869, -0.5586997270584106, -0.4969002306461334, -0.8109034299850464, 0.291452556848526, 0.6637105345726013, -0.16808851063251495, 0.2729146182537079, 0.7632302641868591, -0.8713555932044983, -0.2095274031162262, -0.12672172486782074, -0.4057977795600891, 0.6587662696838379, 0.14785681664943695, 0.4507656395435333, 0.5050220489501953, 0.7661473155021667, 0.5211185216903687, 0.8027557134628296, -0.24477054178714752, 0.39548778533935547, 0.10941523313522339, 0.5761203765869141, 0.5005436539649963, -0.514771580696106, -0.09177418798208237, -0.03554612770676613, -0.18765133619308472, 0.7709763646125793, 0.059664446860551834, 0.3163231611251831, -0.4593639373779297, 0.6638432741165161, -0.40205463767051697, -0.4635283350944519, 0.4351867139339447, 0.007879956625401974, -0.30964261293411255, 0.08025376498699188, -0.3831503689289093, -0.04554999992251396, 0.6985431909561157, -0.6939080357551575, -0.5660066604614258, 0.45346593856811523, 0.08973187208175659, -0.026718419045209885, 0.53376305103302, 0.1568865180015564, 0.02644425444304943, -0.795497477054596, 0.6402024626731873, 0.4169926047325134, -0.7062340974807739, 0.09483874589204788, 0.014226279221475124, -0.13686063885688782, 0.22403527796268463, -0.25579914450645447, 0.4111444354057312, 0.056914426386356354, -0.2547254264354706, -0.17865455150604248, 0.0235007144510746, 0.2007984071969986, 0.5915501117706299, -0.47889143228530884, -0.5605801343917847, 0.4737520217895508, -0.22967149317264557, 0.7351993322372437, -0.5796072483062744, -0.7440239787101746, -0.702275276184082, -0.7579622268676758, -0.0713818147778511, -0.6833717823028564, 0.7555106282234192, 0.5207294821739197, -0.19335047900676727, 0.6576074361801147, -0.2487223893404007, 0.3450808823108673, 0.12902143597602844, 0.038061726838350296, -0.6192361116409302, 0.21381469070911407, -0.0325927697122097, -0.1012079045176506, 0.4805084764957428, -0.7133782505989075, 0.1899716854095459, -0.7277640700340271, -0.15802058577537537, -0.6245806813240051, -0.31039831042289734, 0.06406714022159576, -0.09852505475282669, -0.7124161720275879, -0.5862171649932861, 0.001926836441271007, -0.7345758676528931, -0.13474975526332855, -0.6197333335876465, 0.11015898734331131, -0.21001788973808289, 0.21301651000976562, -0.48471006751060486, -0.40981152653694153, 0.21103118360042572, 0.2891530990600586, -0.6593952775001526, -0.6122299432754517, 0.11661846190690994, 0.7247180342674255, -0.08281388878822327, 0.19141504168510437, -0.6636942625045776, -0.3899623155593872, -0.15651126205921173, -0.4157888889312744, -0.3921727240085602, 0.023449357599020004, -0.657726526260376, 0.4271608889102936, -0.09098135679960251, -0.9572142958641052, -0.6347564458847046, -0.14870963990688324, -0.33268865942955017, 0.20695760846138, 0.5520082712173462, -0.5568971037864685, 0.783476710319519, 0.12556838989257812, 0.7604219913482666, 0.7336946725845337, 0.6077780723571777, 0.07513507455587387, -0.15994179248809814, 0.7035726308822632, 0.5811682939529419, -0.27312391996383667, 0.6134465932846069, -0.5425282716751099, 0.21183723211288452, 0.37779611349105835, -0.5936190485954285, 0.7706173062324524, 0.19663774967193604, 0.1581946313381195, 0.2770102620124817, -0.6971497535705566, -0.7781522870063782, -0.5719347596168518, -0.3803962469100952, 0.4610043168067932, -0.035476721823215485, -0.15835459530353546, -0.4712368845939636, 0.23353424668312073, -0.31708207726478577, 0.5006418824195862, 0.364033579826355, 0.09669962525367737, -0.3186517655849457, -0.15674515068531036, -0.9251750707626343, 0.05262311175465584, 0.15621834993362427, 0.7046821117401123, -0.25188887119293213, -0.2300238013267517, -0.6994407176971436, -0.6349493265151978, 0.6029733419418335, 0.41821691393852234, -0.010434596799314022, 0.5939741134643555, -0.5952509045600891, 0.32672882080078125, 0.6509521007537842, -0.4302780330181122, 0.6556979417800903, -0.2392854541540146, 0.3964991271495819, 0.2059316337108612, -0.2971142530441284, 0.7954592108726501, -0.5333850979804993, -0.5729988217353821, -0.34381619095802307, 0.09963539242744446, 0.20763954520225525, -0.3434907793998718, -0.23911051452159882, -0.6691360473632812, 0.015014792792499065, 0.2957974374294281, 0.276440292596817, 0.7617654204368591, 0.656997799873352, 0.5757830142974854, 0.32763195037841797, 0.47365668416023254, 0.35295048356056213, -0.6368557214736938, 0.3229861557483673, 0.1278046816587448, -0.2746760845184326, 0.06399812549352646, -0.767067015171051, 0.4267736077308655, -0.632590115070343, 0.08974352478981018, 0.008048811927437782, 0.8671365976333618, 0.7109754085540771, -0.16098740696907043, 0.864604115486145, -0.3350691497325897, -0.2054872363805771, 0.7649933099746704, 0.8412029147148132, 0.03984607011079788, -0.30710601806640625, -0.4788699746131897, 0.261589914560318, 0.2629658281803131, -0.8933435082435608, -0.025200868025422096, 0.42122653126716614, -0.1623552143573761, -0.6179086565971375, -0.5353076457977295, 0.6486862897872925, 0.22918488085269928, -0.40481826663017273, 0.5103160738945007, -0.8541906476020813, 0.37612423300743103, 0.579990029335022, -0.18223115801811218, 0.08769052475690842, 0.7392017841339111, 0.6799554824829102, -0.10752327740192413, -0.2146981805562973, 0.05140295252203941, -0.5295160412788391, 0.3541082739830017, -0.27199116349220276, 0.21763493120670319, 0.3488653898239136, -0.2462451308965683, 0.8440831899642944, -0.29516446590423584, 0.6414743661880493, -0.22532622516155243, 0.8649349808692932, 0.27810138463974, 0.36047258973121643, -0.5789918303489685, 0.4903412461280823, -0.6481419801712036, 0.5975009799003601, -0.5057530403137207, -0.383535236120224, -0.1562599092721939, 0.7058316469192505, -0.5285491347312927, 0.43378061056137085, -0.5140882134437561, 0.7932960987091064, -0.43056949973106384, 0.15443004667758942, -0.29893577098846436, 0.10338383913040161, -0.9029383659362793, 0.3050048351287842, -0.2550833523273468, -0.3415234088897705, -0.43385761976242065, -0.677168607711792, 0.631382942199707, -0.07753527164459229, 0.8133848905563354, 0.8018776774406433, 0.08205501735210419, -0.29989463090896606, -0.40511414408683777, 0.04736073687672615, -0.2905604839324951, 0.11600525677204132, -0.23261910676956177, 0.3836682438850403, -0.33250677585601807, 0.8067876100540161, 0.2811596095561981, -0.6938431262969971, -0.8243969678878784, 0.49274447560310364, -0.14512015879154205, -0.13265934586524963, -0.3672630190849304, 0.6227607131004333, -0.6516978740692139, -0.20259720087051392, -0.4065937101840973, 0.13507936894893646, -0.0710398405790329, 0.6397126913070679, -0.28046247363090515, 0.7790455222129822, 0.08730192482471466, -0.6569807529449463, -0.4256143271923065, -0.5478637218475342, 0.5592718124389648, -0.8710956573486328, 0.5224898457527161, 0.2356191724538803, 0.3084564507007599, -0.28288060426712036, 0.4815499782562256, 0.4403579533100128, -0.4039503037929535, 0.2011725753545761, 0.025324746966362, 0.6040046215057373, -0.15811489522457123, 0.4640559256076813, -0.09625577926635742, 0.8125641345977783, -0.05436786636710167, -0.20095299184322357, -0.04583438113331795, 0.41923752427101135, 0.0028237304650247097, 0.09231074899435043, 0.02314550243318081, 0.1290462613105774, 0.44889435172080994, 0.5305249094963074, -0.0784410908818245, 0.5240001678466797, -0.2408788949251175, -0.259431391954422, 0.4240686893463135, -0.467210978269577, -0.5870436429977417, 0.1684686541557312, -0.11345889419317245, 0.7033153772354126, 0.08731148391962051, 0.5795339345932007, 0.27723684906959534, -0.8098604679107666, 0.6319239139556885, -0.7919251918792725, -0.4366447627544403, 0.49394065141677856, 0.37069252133369446, -0.7406657934188843, -0.30993005633354187, -0.015704112127423286, 0.2768736183643341, 0.5082644820213318, 0.11984837800264359, 0.3157367408275604, 0.646341860294342, 0.45246487855911255, -0.7832773327827454, 0.3476845324039459, -0.6131922602653503, -0.42220187187194824, 0.35906335711479187, -0.5895431637763977, -0.05083221197128296, -0.35459423065185547, -0.41875195503234863, 0.7396082282066345, 0.7198200225830078, -0.21246793866157532, -0.14445488154888153, 0.4165419340133667, 0.4774675667285919, 0.024180129170417786, 0.5015156269073486, 0.6654511094093323, -0.4401998221874237, -0.8008409738540649, -0.23484422266483307, 0.06576398015022278, -0.013735547661781311, 0.6276535987854004, -0.4191218614578247, -0.022361788898706436, -0.5755064487457275, -0.12721329927444458, 0.2819843888282776, -0.5858815908432007, 0.42103075981140137, 0.7745139598846436, 0.1552199423313141, -0.7804352641105652, 0.6980277299880981, -0.08523544669151306, -0.7768392562866211, 0.026016434654593468, 0.4615676999092102, 0.09565487504005432, -0.04714541882276535, 0.5291246175765991, -0.19120070338249207, 0.7449968457221985, -0.3328046500682831, -0.5819543600082397, 0.11916682124137878, 0.2283305525779724, -0.509709358215332, 0.6037975549697876, 0.1608487069606781, -0.44561058282852173, -0.9002799987792969, 0.0033824744168668985, -0.16267499327659607, 0.44168922305107117, 0.4936051666736603, 0.13804775476455688, 0.34189674258232117, 0.4255908131599426, -0.24209092557430267, 0.08872223645448685, -0.4178163409233093, -0.3518245220184326, -0.4719826579093933, -0.5811738967895508, -0.26560667157173157, 0.42626965045928955, -0.026343924924731255, 0.3228508532047272, -0.3836229741573334, -0.06661499291658401, 0.27320635318756104, -0.23282860219478607, -0.03765661269426346, 0.6078301668167114, 0.20673853158950806, -0.6811610460281372, 0.672103762626648, 0.16370229423046112, 0.20222939550876617, 0.4059993326663971, -0.05498634651303291, -0.9403472542762756, 0.40133389830589294, 0.8319281339645386, 0.46553850173950195, 0.3656392991542816, -0.052510425448417664, 0.20480763912200928, -0.258398175239563, -0.3381823003292084, 0.6497563123703003, 0.5006396174430847, 5.768658593297005e-05, -0.039496853947639465, -0.051788318902254105, -0.05101068317890167, -0.7601630091667175, 0.2831953465938568, 0.0296846441924572, 0.36103397607803345, 0.08060327172279358, 0.03264434635639191, -0.8439717292785645, 0.17556756734848022, -0.39288780093193054, -0.5890264511108398, -0.4627523422241211, 0.6677111983299255, 0.13380067050457, 0.38815951347351074, 0.40968918800354004, -0.4962356686592102, 0.06085779517889023, -0.2916054427623749, 0.16524848341941833, -0.7770562767982483, 0.5893023610115051, 0.07055424898862839, -0.2022235095500946, -0.08159549534320831, 0.7167518138885498, 0.6776069402694702, -0.549969494342804, -0.5162751078605652, 0.05516951158642769, -0.8229054808616638, -0.04741893336176872, 0.7960638403892517, 0.6376605033874512, 0.30609381198883057, -0.6382739543914795, 0.1741599440574646, -0.4951832592487335, 0.2800125181674957, 0.03732597455382347, -0.3781692385673523, -0.18052920699119568, 0.18677644431591034, -0.05678912252187729, -0.27787476778030396, 0.03166663646697998, 0.5947698354721069, 0.49952784180641174, 0.3651518225669861, 0.4662887454032898, -0.46622157096862793, -0.7255730628967285, -0.4858846366405487, -0.7537639141082764, 0.14376115798950195, 0.22871987521648407, -0.6803348064422607, -0.15301194787025452, -0.48399651050567627, -0.04277336224913597, 0.2043592631816864, -0.10918937623500824, -0.0059560430236160755, 0.3047279119491577, -0.05250075086951256, 0.5096469521522522, -0.05008266866207123, -0.7353671789169312, 0.420205295085907, 0.08073287457227707, -0.10670777410268784, -0.6541144847869873, 0.0625789538025856, 0.6107825636863708, -0.5049815773963928, -0.2154831737279892, 0.7710080146789551, -0.7491416931152344, 0.7948811650276184, 0.13237938284873962, -0.3726070821285248, -0.1356206238269806, 0.7748808264732361, 0.28535112738609314, 0.056832000613212585, -0.7212841510772705, 0.2912992238998413, -0.35654109716415405, 0.4516594111919403, 0.12757070362567902, -0.4181595742702484, -0.6691792011260986, -0.11679049581289291, 0.06989860534667969, 0.6000802516937256, -0.5948860049247742, 0.7514501810073853, 0.4975970387458801, 0.08722025901079178, 0.06677940487861633, 0.40066325664520264, 0.058975957334041595, -0.3199639320373535, 0.3959459662437439, -0.32703879475593567, 0.40170490741729736, -0.05662023276090622, -0.1537572741508484, -0.6846253871917725, -0.0002522852155379951, 0.4893864691257477, -0.10178378224372864, 0.2731718420982361, -0.25813716650009155, -0.7383148074150085, 0.3565022349357605, 0.0037221303209662437, 0.41344842314720154, -0.3261341154575348, 0.28805112838745117, 0.3502950370311737, 0.0972934439778328, -0.2993285059928894, 0.4822348654270172, -0.6837226748466492, 0.1467793583869934, 0.4119075536727905, -0.20069707930088043, -0.6279540657997131, 0.4606055021286011, -0.7763643264770508, -0.0668257549405098, 0.2744017243385315, -0.22047394514083862, 0.3559962213039398, -0.48586925864219666, 0.2132696658372879, -0.09646874666213989, 0.677606463432312, -0.6392170786857605, 0.3820965588092804, -0.3089504539966583, 0.5446432828903198, -0.18824058771133423, 0.15099281072616577, 0.1320440173149109, 0.3364257514476776, -0.7296983003616333, -0.6707258224487305, 0.6066780686378479, -0.31940212845802307, -0.03578575700521469, -0.4425365626811981, 0.556233286857605, 0.6099476218223572, -0.8044561743736267, 0.4163258969783783, -0.8067240715026855, -0.5290659070014954, -0.672828197479248, -0.01360497809946537, 0.22547167539596558, 0.6598666310310364, 0.4644470810890198, -0.667325496673584, -0.498732328414917, -0.19417601823806763, 0.3086090683937073, 0.7210841178894043, 0.43432167172431946, 0.7649580240249634, 0.3209742605686188, -0.5838724374771118, 0.03628909960389137, -0.036092471331357956, -0.5138847827911377, -0.525959849357605, -0.6490992903709412, 0.6142542362213135, -0.5094114542007446, -0.5082840919494629, 0.32508960366249084, -0.42271164059638977, 0.24885742366313934, -0.066245898604393, 0.17363308370113373, 0.05012838542461395, -0.7309213876724243, -0.1305961161851883, 0.30427491664886475, 0.41237369179725647, -0.11842837929725647, 0.8852055072784424, -0.7005817890167236, 0.6843138337135315, -0.24677789211273193, -0.1174418181180954, 0.41430914402008057, 0.4219115972518921, 0.08287809789180756, -0.5347990989685059, 0.09241849184036255, 0.16368384659290314, 0.574068546295166, 0.6708190441131592, 0.3400696814060211, -0.5296412706375122, -0.2266293317079544, 0.11755627393722534, -0.4813862144947052, -0.06771980971097946, -0.7531899213790894, 0.48348090052604675, 0.10135243833065033, 0.48036861419677734, 0.6564278602600098, -0.2543025016784668, -0.5085622072219849, -0.0910634845495224, -0.2816719114780426, 0.5553280115127563, 0.587270975112915, 0.04868081212043762, 0.38605350255966187, 0.6884502172470093, 0.19865241646766663, -0.4675654172897339, 0.31870096921920776, 0.2495097517967224, -0.32369759678840637, -0.036837488412857056, -0.06310217827558517, -0.24275586009025574, 0.7725375890731812, 0.3104096055030823, 0.26735031604766846, -0.24272792041301727, -0.19097943603992462, -0.07748459279537201, 0.5169270634651184, -0.25420695543289185, 0.3009744882583618, 0.6813664436340332, -0.2798594534397125, 0.22955194115638733, 0.7141371965408325, 0.1793566644191742, -0.3152281939983368, 0.7525429725646973, -0.8629781007766724, -0.862617015838623, -0.5694302320480347, 0.43895938992500305, -0.07086559385061264, 0.23553279042243958, -0.1455552726984024, -0.41297274827957153, 0.008466123603284359, 0.17858374118804932, -0.18622180819511414, -0.14508073031902313, -0.44809213280677795, -0.10865432769060135, 0.4544419050216675, -0.3337838053703308, -0.1864851862192154, -0.1903582513332367, 0.7525888085365295, -0.5914798974990845, -0.5839189291000366, 0.705869197845459, 0.7165746688842773, -0.5407012701034546, -0.055911675095558167, -0.10178611427545547, 0.1648273766040802, 0.5679941773414612, -0.7714108228683472, -0.41571369767189026, -0.21225276589393616, -0.5357683897018433, 0.13855361938476562, -0.16717198491096497, -0.34145188331604004, -0.17309652268886566, 0.4271557331085205, -0.5273289680480957, 0.10416918247938156, -0.5449187159538269, 0.44578805565834045, -0.1394684910774231, 0.272180438041687, -0.24178816378116608, -0.31873515248298645, -0.07703731954097748, -0.47480788826942444, -0.5734444260597229, -0.13036416471004486, 0.16210202872753143, 0.26743003726005554, -0.1551162600517273, -0.4724057912826538, -0.17079225182533264, -0.4398099482059479, 0.14654408395290375, 0.8661654591560364, 0.0901997983455658, -0.43251416087150574, -0.3574461042881012, 0.6534175872802734, 0.4382864236831665, 0.09020476788282394, 0.055155545473098755, 0.12061893939971924, 0.23110602796077728, -0.40043774247169495, 0.3192111551761627, 0.6000169515609741, -0.09242262691259384, -0.49120160937309265, 0.2400703728199005, -0.18802495300769806, -0.15020163357257843, 0.8250108361244202, 0.3550679087638855, -0.8207318186759949, -0.5456357002258301, 0.42030102014541626, 0.7434177994728088, 0.01901818998157978]}
{"caption id": "5", "text": "In South Africa it is listed as an invasive species which must be controlled , or removed and destroyed .", "embeddings": [0.8094947934150696, -0.3295312821865082, -0.14584484696388245, -0.3503613770008087, 0.6771458983421326, 0.760977029800415, -0.7006573677062988, -0.18951214849948883, 0.29709792137145996, -0.13494190573692322, 0.34522631764411926, -0.30640462040901184, 0.1290266513824463, 0.7270379662513733, 0.14572636783123016, 0.05227988213300705, 0.19115184247493744, 0.35260000824928284, -0.9235749244689941, 0.4432571232318878, 0.7627382278442383, -0.06482017785310745, 0.3277057111263275, 0.6990126371383667, 0.25650250911712646, -0.34542524814605713, 0.6196840405464172, 0.2623739242553711, 0.28833016753196716, -0.06471740454435349, -0.11496560275554657, 0.6555869579315186, -0.8249388933181763, 0.4225451648235321, 0.6252614259719849, 0.5921765565872192, 0.18219055235385895, 0.06383399665355682, -0.45139798521995544, 0.6148039698600769, 0.8078993558883667, 0.8468496799468994, -0.3302280902862549, 0.02478358894586563, -0.15114164352416992, -0.5512412786483765, 0.7116293907165527, 0.7548603415489197, 0.8132184743881226, -0.32516831159591675, -0.09159243106842041, 0.33476942777633667, -0.7493127584457397, 0.34574684500694275, 0.06251045316457748, 0.40777912735939026, 0.048235394060611725, 0.5326870679855347, 0.29528093338012695, -0.4190274775028229, 0.17984819412231445, -0.3378497362136841, -0.35299211740493774, -0.33652740716934204, 0.7096447944641113, 0.27194449305534363, -0.46803563833236694, 0.7269590497016907, -0.555304765701294, 0.5414218306541443, -0.8261709213256836, 0.05293760821223259, 0.26545560359954834, -0.16965915262699127, 0.823234498500824, -0.23843370378017426, 0.17212648689746857, 0.6224784851074219, 0.4457605481147766, -0.040945157408714294, 0.4003600478172302, 0.5091615319252014, 0.3186679482460022, -0.013665026985108852, 0.39149850606918335, -0.03313247486948967, 0.6020311117172241, 0.3986460566520691, -0.6439921855926514, 0.10826600342988968, -0.29442131519317627, -0.33050376176834106, -0.7988389730453491, 0.17961102724075317, -0.06484813988208771, 0.7656859159469604, -0.6235378384590149, 0.06782998889684677, -0.0100284144282341, 0.24966734647750854, -0.23029839992523193, -0.4430502951145172, -0.1540219932794571, -0.42427465319633484, 0.7189491987228394, -0.2790679335594177, 0.4872230887413025, -0.4202898144721985, 0.07657091319561005, 0.6529481410980225, -0.31317201256752014, -0.5219219923019409, 0.11181950569152832, 0.6114949584007263, -0.6230366230010986, 0.6102306842803955, 0.8644431829452515, -0.5407111644744873, -0.3036421537399292, -0.09820746630430222, 0.5518350601196289, 0.4994475543498993, -0.23274101316928864, 0.7270468473434448, -0.6558331251144409, 0.818999171257019, 0.558140754699707, 0.549416720867157, -0.6501317620277405, -0.16788925230503082, 0.824518620967865, 0.5795425176620483, -0.38096198439598083, 0.1441851705312729, 0.6804038882255554, -0.3949102461338043, 0.7073657512664795, -0.17981694638729095, -0.18709218502044678, -0.1510949581861496, -0.2331344336271286, 0.8998032808303833, 0.08295416831970215, -0.5384793877601624, -0.2114482969045639, -0.6021276712417603, 0.22861242294311523, -0.40667518973350525, -0.11966857314109802, -0.3948492705821991, 0.4929696023464203, -0.1529003083705902, -0.7798352241516113, -0.31302523612976074, -0.4490048587322235, 0.4936463236808777, 0.674701452255249, 0.32033300399780273, 0.20492736995220184, -0.7376884818077087, -0.12269873917102814, -0.34652575850486755, 0.7458075881004333, 0.4435829818248749, -0.816484808921814, 0.3561442792415619, 0.04394051432609558, -0.315194696187973, 0.2002478986978531, -0.23270165920257568, -0.16724064946174622, -0.17946796119213104, -0.41285261511802673, 0.12693952023983002, 0.32871687412261963, -0.2557772696018219, 0.053304992616176605, -0.14031381905078888, 0.5667389035224915, 0.23009712994098663, 0.33261075615882874, -0.4377274513244629, 0.09819593280553818, 0.008448638021945953, 0.5296657085418701, 0.39496350288391113, 0.6115161180496216, -0.1956293135881424, -0.06337365508079529, 0.5810838937759399, 0.8818671107292175, 0.7536448836326599, -0.07141681015491486, -0.40024784207344055, 0.7337536811828613, -0.4090450704097748, -0.5678490400314331, 0.17669163644313812, 0.4483705163002014, 0.356427937746048, -0.27661946415901184, -0.11419082432985306, 0.8323861360549927, 0.39417392015457153, 0.25948622822761536, 0.060744836926460266, 0.3056787848472595, 0.24705953896045685, -0.3568258583545685, 0.5918660163879395, 0.6040014028549194, 0.20640556514263153, 0.7648460268974304, 0.49317654967308044, 0.15966981649398804, -0.3550848364830017, 0.5250936150550842, -0.1566287726163864, -0.336760014295578, 0.3388136327266693, 0.19160185754299164, 0.5625928640365601, 0.7243783473968506, -0.2810550630092621, -0.02512369118630886, -0.4608762264251709, -0.3773219883441925, -0.6894203424453735, -0.04760236665606499, 0.1853647381067276, -0.5366933941841125, 0.05942503362894058, -0.729736328125, -0.3268892765045166, -0.5585319995880127, 0.17266011238098145, 0.049793146550655365, 0.33465057611465454, 0.20530642569065094, -0.47539249062538147, 0.5055932998657227, 0.1733686327934265, 0.0977434292435646, 0.6245357990264893, -0.4519113600254059, -0.20167246460914612, -0.3374520540237427, -0.042450472712516785, -0.0874468982219696, 0.4879216253757477, 0.7169036865234375, 0.24195075035095215, 0.34347862005233765, -0.11816293746232986, 0.01559468638151884, 0.4663413465023041, -0.23705102503299713, -0.8356001973152161, 0.3090422749519348, -0.8402395844459534, 0.1980207860469818, -0.912500262260437, -0.254269003868103, 0.22384126484394073, -0.5893189311027527, -0.019965697079896927, -0.569894552230835, -0.10559481382369995, 0.026100728660821915, 0.07993538677692413, -0.04206207022070885, 0.014646917581558228, 0.3911435306072235, -0.07148850709199905, -0.7444851398468018, 0.14927923679351807, 0.6651605367660522, 0.838909924030304, -0.38555973768234253, -0.23430626094341278, 0.6795809268951416, -0.3782806992530823, -0.035380925983190536, -0.376674622297287, 0.5696717500686646, -0.745741069316864, 0.10215910524129868, -0.1488191932439804, 0.1979842483997345, -0.23507478833198547, 0.4816153347492218, -0.1607125848531723, -0.6352562308311462, -0.5994148850440979, 0.3745158612728119, 0.41140398383140564, -0.3415094316005707, 0.47290247678756714, -0.21224838495254517, 0.1971575766801834, -0.014977467246353626, -0.32221493124961853, 0.3236348628997803, -0.5804072618484497, -0.23034939169883728, 0.48223912715911865, -0.5397136807441711, -0.614040195941925, 0.24104918539524078, -0.08489499986171722, -0.047171786427497864, -0.2839115262031555, 0.7447658181190491, 0.15509478747844696, -0.026240486651659012, 0.26667430996894836, -0.7083801031112671, -0.14750321209430695, 0.39748579263687134, -0.5373557806015015, 0.28460273146629333, -0.07086004316806793, 0.4883933663368225, -0.48612862825393677, -0.39660578966140747, -0.2808128297328949, -0.23899807035923004, -0.6324517130851746, 0.3581092953681946, 0.4809291958808899, -0.598175048828125, 0.2526956796646118, -0.03309961408376694, -0.06167861074209213, 0.799934983253479, 0.5216140747070312, -0.5936006307601929, 0.2553717792034149, 0.3390769362449646, 0.5175648331642151, 0.35095691680908203, -0.3386085331439972, 0.19059821963310242, -0.07346619665622711, 0.1286577433347702, 0.31890904903411865, 0.2783117890357971, 0.5384863018989563, 0.7039583325386047, 0.42731884121894836, -0.4220050275325775, -0.5543002486228943, 0.4389142394065857, 0.47513067722320557, 0.24493372440338135, 0.1831122636795044, 0.10034151375293732, -0.11775150150060654, 0.45171234011650085, -0.29432326555252075, -0.038553278893232346, 0.6029847860336304, 0.4965478479862213, 0.8025097846984863, 0.7815880179405212, 0.45643681287765503, -0.3813711702823639, -0.5581281781196594, 0.18297544121742249, -0.7307195663452148, -0.3014797568321228, -0.23714371025562286, 0.09450960159301758, 0.5336782336235046, -0.8627053499221802, 0.3077560067176819, -0.5697270631790161, 0.3003932535648346, -0.06766226887702942, 0.26814326643943787, -0.45134109258651733, 0.70115065574646, -0.4727385938167572, -0.5640999674797058, -0.066451296210289, -0.5493685007095337, 0.3046024441719055, 0.8023214936256409, 0.08438654989004135, -0.3571998178958893, 0.008302148431539536, 0.03873008117079735, -0.5770837068557739, -0.3848980963230133, -0.04763830080628395, -0.42524412274360657, 0.6048136949539185, -0.43312519788742065, 0.40357524156570435, -0.7039886116981506, 0.3628888428211212, -0.4459083080291748, -0.6814566850662231, -0.9367660880088806, 0.41977155208587646, -0.22377461194992065, -0.7637999653816223, -0.7024562954902649, 0.1306476593017578, 0.17591819167137146, 0.3719305098056793, -0.032046567648649216, -0.3536369502544403, -0.06109873205423355, 0.031322378665208817, -0.7944315671920776, -0.24477943778038025, 0.6831175088882446, 0.5459864139556885, 0.5993939638137817, 0.11121216416358948, -0.20425640046596527, -0.034405868500471115, 0.5863292217254639, -0.12602992355823517, -0.5909509658813477, -0.7979136109352112, -0.12619580328464508, 0.20206111669540405, 0.5636141300201416, -0.23106756806373596, -0.36920976638793945, 0.030975257977843285, 0.0624951533973217, -0.5354704856872559, -0.18528953194618225, -0.08894459158182144, 0.5463420152664185, -0.5543770790100098, -0.17265301942825317, -0.4179413318634033, 0.8459093570709229, 0.638494610786438, -0.15755595266819, -0.08950585126876831, 0.7096686959266663, -0.8983311653137207, 0.17523474991321564, -0.15776874125003815, 0.20569820702075958, 0.07234112918376923, -0.18656405806541443, 0.09575610607862473, 0.18142744898796082, -0.2303464114665985, 0.2795303761959076, 0.4889070689678192, 0.645753800868988, -0.4362432658672333, -0.07776296883821487, -0.578155517578125, 0.6236253976821899, 0.7666367292404175, 0.7149032354354858, 0.05550315976142883, 0.1532803475856781, 0.05977823585271835, -0.15104685723781586, -0.12864428758621216, -0.2237291932106018, 0.21855990588665009, 0.16039741039276123, 0.10585983097553253, 0.26625868678092957, -0.2374139279127121, -0.3685815930366516, -0.8761059641838074, -0.34047025442123413, 0.03555455431342125, 0.2222563624382019, -0.32810476422309875, 0.2220160812139511, 0.6901648640632629, -0.4615785777568817, 0.9560103416442871, -0.41900870203971863, 0.209739089012146, -0.27626460790634155, 0.050271183252334595, -0.2353021204471588, -0.685076117515564, 0.3335863947868347, -0.04774202033877373, 0.10126550495624542, 0.4658038318157196, -0.8216891288757324, -0.32909056544303894, -0.08151885122060776, 0.2259543091058731, -0.09330447018146515, -0.26545780897140503, -0.580115795135498, 0.6186296939849854, -0.6918846368789673, 0.5867478847503662, 0.39605796337127686, 0.33597567677497864, -0.022126587107777596, 0.543968677520752, -0.09914008527994156, 0.3435041010379791, -0.654050350189209, 0.546579122543335, 0.4521121382713318, 0.28143441677093506, -0.40765729546546936, -0.6751036047935486, -0.4261394143104553, 0.4084712266921997, 0.8829466700553894, 0.37078535556793213, -0.24769753217697144, -0.5413755178451538, -0.23974968492984772, 0.3005715608596802, 0.26109907031059265, -0.467944860458374, -0.6036966443061829, 0.0886734202504158, 0.5081276297569275, 0.06737078726291656, 0.33218899369239807, -0.3725060820579529, -0.3410169184207916, -0.007331824395805597, -0.3173477053642273, 0.3315139710903168, -0.18861229717731476, -0.5740907192230225, 0.08780977874994278, 0.3393458425998688, 0.1832607537508011, 0.727642297744751, 0.17517557740211487, -0.3466367721557617, -0.05274136736989021, -0.7690758109092712, 0.262910395860672, -0.06806223094463348, 0.3677884638309479, -0.2682207524776459, 0.052296534180641174, -0.42536330223083496, -0.04761258885264397, 0.5756884217262268, -0.5819854736328125, 0.27966979146003723, -0.4336216449737549, 0.5147790312767029, 0.2217177152633667, -0.47742873430252075, 0.1711246520280838, 0.11637260019779205, 0.6109340190887451, -0.1845308244228363, -0.5008556842803955, 0.008314419537782669, -0.6125993728637695, 0.054675519466400146, -0.3238392472267151, 0.8282142281532288, -0.38708803057670593, -0.5049146413803101, 0.0264987051486969, -0.6235697269439697, -0.28207671642303467, 0.41858696937561035, -0.26399245858192444, -0.5279275178909302, -0.6120986938476562, -0.8633303642272949, 0.5917304754257202, -0.10042361170053482, 0.4701354503631592, -0.392396479845047, -0.4305376410484314, 0.26184970140457153, -0.395242840051651, 0.279384583234787, 0.2022526115179062, 0.23221781849861145, 0.6816306710243225, -0.6055890917778015, 0.28604626655578613, -0.04864338040351868, -0.23116615414619446, 0.6450973749160767, -0.5561542510986328, 0.3760061264038086, 0.19009298086166382, 0.4090081453323364, -0.7645421028137207, -0.045301031321287155, -0.903450608253479, -0.116553395986557, -0.18039847910404205, -0.6878268718719482, 0.8649768829345703, -0.44038572907447815, -0.27420899271965027, 0.4068337380886078, -0.6171592473983765, -0.20398597419261932, 0.7208905220031738, -0.6980277895927429, -0.7583028674125671, 0.795374870300293, -0.8086358308792114, -0.3248019516468048, 0.1397661566734314, -0.2342963069677353, -0.5255330204963684, 0.23132102191448212, -0.4729609191417694, -0.7306188344955444, 0.5975742936134338, -0.02297954633831978, 0.041990723460912704, -0.31023070216178894, 0.7028871774673462, -0.47938457131385803, 0.39365649223327637, 0.23022253811359406, 0.5050536394119263, -0.41329506039619446, -0.6801828742027283, -0.3972814977169037, 0.3902113139629364, -0.2863517105579376, -0.41536274552345276, 0.26929542422294617, -0.30631351470947266, 0.08446674793958664, 0.04812644049525261, -0.46983686089515686, 0.6990913152694702, 0.0924936905503273, -0.8399404883384705, 0.5650862455368042, -0.21532601118087769, 0.5816491842269897, -0.036892641335725784, 0.2848007082939148, -0.32613256573677063, 0.288992702960968, 0.6224836111068726, 0.8152625560760498, 0.12573276460170746, 0.4132741391658783, -0.19063439965248108, 0.2468184232711792, -0.10226693004369736, 0.2745790481567383, -0.019657552242279053, -0.040096405893564224, -0.6179307699203491, 0.5346516370773315, -0.9389155507087708, 0.46248704195022583, 0.6867542862892151, -0.6317521333694458, 0.6048696041107178, 0.7148489952087402, 0.08214804530143738, -0.8289042115211487, -0.6761602759361267, 0.23330318927764893, 0.5923701524734497, -0.011765636503696442, 0.1476946324110031, 0.47481638193130493, 0.024103352800011635, -0.43223774433135986, 0.5624174475669861, 0.12882627546787262, 0.4748457968235016, -0.6363326907157898, 0.4629579186439514, -0.014634741470217705, -0.48847752809524536, 0.32941216230392456, -0.28180721402168274, 0.28500670194625854, 0.4879513084888458, 0.08636808395385742, 0.7711935043334961, -0.8255887031555176, -0.7444368600845337, 0.028490394353866577, -0.44453027844429016, -0.41451266407966614, -0.18640342354774475, -0.7557129263877869, 0.20616412162780762, 0.47916263341903687, -0.6301424503326416, -0.0017083259299397469, 0.6969912052154541, 0.24446235597133636, -0.0015025708125904202, -0.5574295520782471, 0.20383529365062714, 0.5826315879821777, -0.580298125743866, -0.5343043804168701, 0.25841236114501953, -0.0392267107963562, -0.7945804595947266, -0.6827853918075562, -0.3081088066101074, 0.6929308176040649, 0.01176570262759924, -0.7079598903656006, 0.05715298652648926, 0.24710926413536072, -0.5792680978775024, 0.1363639384508133, -0.5943807363510132, 0.6515017747879028, -0.7272275686264038, -0.2647361159324646, 0.4450325071811676, 0.4476071000099182, 0.922929584980011, -0.29741546511650085, -0.1803288608789444, 0.6581818461418152, -0.19050642848014832, -0.5372966527938843, -0.6002720594406128, -0.6974416971206665, 0.011171232908964157, 0.17902250587940216, 0.37347906827926636, 0.7186154127120972, -0.3193523585796356, 0.08092057704925537, 0.4260002374649048, 0.2141362577676773, -0.43090134859085083, 0.27863404154777527, -0.3166297972202301, -0.08351913839578629, -0.40407687425613403, 0.8549095392227173, -0.011575768701732159, -0.43954482674598694, -0.6897581815719604, 0.5822999477386475, -0.7704814672470093, 0.3364447355270386, 0.46993231773376465, 0.4256986975669861, 0.6019046306610107, 0.2359071671962738, -0.09691711515188217, 0.49302199482917786, -0.12621143460273743, -0.1756981760263443, -0.32899656891822815, 0.29591813683509827, 0.3085738718509674, 0.6135282516479492, -0.14040929079055786, 0.04977515712380409, 0.26492658257484436, -0.07652375102043152, 0.2976955473423004, 0.06260452419519424, 0.5441039800643921, -0.6432204246520996, -0.609636127948761, 0.2938070297241211, -0.22418202459812164, -0.0977834016084671, -0.48739850521087646, 0.17999878525733948, -0.5639378428459167, 0.047987207770347595, 0.3739163279533386, 0.5001731514930725, -0.1417112797498703, 0.8726228475570679, -0.31255826354026794, 0.7749035954475403, 0.1669408679008484, -0.2480647712945938, 0.1650201827287674, 0.10122636705636978, -0.37283384799957275, 0.4334574341773987, -0.1707356572151184, -0.09269167482852936, 0.6516953110694885, 0.15378767251968384, -0.22753584384918213, 0.401822566986084, -0.16421352326869965, -0.31154751777648926, -0.3611714541912079, -0.16469329595565796, -0.13258400559425354, 0.10716284811496735, -0.5232762098312378, -0.5441323518753052, -0.27171629667282104, -0.03752609342336655, 0.01919504813849926, -0.17782676219940186, 0.33039554953575134, 0.3315226435661316, -0.5973235368728638, 0.3120567500591278, 0.22720099985599518, -0.05731843784451485, 0.7331386804580688, -0.10973385721445084, -0.7366820573806763, 0.02851000800728798, 0.4328632056713104, 0.2354126274585724, -0.8569478392601013, -0.43109896779060364, -0.32042810320854187, -0.33693358302116394, -0.5128523111343384, 0.12846282124519348, -0.46161070466041565, -0.34848326444625854, -0.7344675660133362, 0.07367341965436935, 0.5041953325271606, 0.12609641253948212, 0.5053761601448059, -0.24988093972206116, -0.27612605690956116, -0.6392070055007935, -0.03448619693517685, -0.5269586443901062, 0.2380254864692688, -0.010583729483187199, -0.4072471559047699, -0.45180416107177734, -0.8586950302124023, -0.8345835208892822, 0.3036983609199524, 0.01466347835958004, 0.5521554946899414, -0.1884695440530777, 0.4698173999786377, 0.7317217588424683, 0.04159834608435631, 0.12713758647441864, 0.2858579456806183, -0.17942780256271362, -0.35311102867126465, -0.37019041180610657, -0.614191472530365, 0.247702956199646, 0.36265623569488525, -0.2609556019306183, -0.14631855487823486, 0.12228940427303314, 0.04961598291993141, -0.518916666507721, -0.16492505371570587, -0.0629357174038887, -0.48021039366722107, -0.0007600713288411498, -0.7110755443572998, 0.4691007733345032, 0.17242741584777832, 0.395626962184906, 0.37168318033218384, -0.028603840619325638, -0.7604526877403259, 0.31258413195610046, -0.3814040422439575, -0.3588785231113434, 0.2652716636657715, 0.037964917719364166, -0.06210295855998993, 0.030413635075092316, 0.2699485123157501, -0.6418617963790894, 0.34054824709892273, 0.2284524291753769, 0.13692107796669006, -0.28955990076065063, 0.6656023859977722, -0.22518634796142578, 0.7967947721481323, 0.08989064395427704, -0.41074666380882263, 0.5760080814361572, 0.43606364727020264, 0.7890623211860657, -0.24792221188545227, 0.7847071290016174, -0.37086349725723267, -0.01946190744638443, -0.679425835609436, -0.6276897192001343, 0.1732402890920639, 0.11795537173748016, 0.3221382796764374, -0.7673870921134949, -0.7011287212371826, 0.6411603093147278, -0.14120475947856903, -0.709671676158905, -0.017536349594593048, 0.5748070478439331, 0.15827780961990356, -0.6190363168716431, -0.03939574211835861, -0.3774106204509735, 0.5104289650917053, 0.021253520622849464, -0.39290839433670044, 0.3035602569580078, -0.8696938753128052, 0.4149562120437622, 0.0743032693862915, 0.007774916477501392, 0.08178360760211945, 0.32613813877105713, -0.2211940437555313, -0.19037067890167236, 0.297671377658844, 0.3426080048084259, -0.7365024089813232, -0.2587321400642395, 0.4395466446876526, -0.8420506715774536, 0.3685957193374634, 0.17663884162902832, -0.23161233961582184, -0.7096652984619141, -0.09370166063308716, -0.1995256245136261, 0.3096005618572235, 0.21887639164924622, 0.5911892652511597, 0.6577243208885193, 0.5662012100219727, -0.0181779433041811, 0.6431196928024292, 0.3868866562843323, 0.3063163459300995, -0.1911192536354065, 0.5801630616188049, 0.690386176109314, -0.5245571732521057, 0.4650062322616577, -0.12328702956438065, -0.7183482646942139, 0.7879619002342224, 0.3485671281814575, -0.2368076890707016, 0.6504140496253967, -0.21807542443275452, -0.44377392530441284, -0.483758807182312, 0.18796885013580322, 0.610481858253479, -0.5715712308883667, -0.49328723549842834, -0.5826892852783203, -0.5342575311660767, 0.5299803614616394, 0.27514612674713135, 0.42207565903663635, 0.7631449103355408, 0.16505657136440277, 0.626197099685669, -0.14334110915660858, 0.5930041074752808, 0.36027148365974426, 0.2901853322982788, -0.11825422942638397, -0.006866751238703728, 0.5959134101867676, -0.8387477397918701, -0.5576785802841187, 0.2967992126941681, 0.4477112889289856, -0.010932521894574165, -0.06417625397443771, -0.33668434619903564, -0.8164038062095642, 0.24219737946987152, -0.3298279643058777, 0.556915283203125, 0.528010904788971, -0.011855512857437134, 0.12178142368793488, -0.5208629369735718, -0.7405250072479248, -0.22406142950057983, -0.3188589811325073, -0.6533528566360474, 0.6161013841629028, 0.022130509838461876, -0.6516066193580627, -0.6337350606918335, 0.4416950047016144, 0.5704947710037231, 0.6175640821456909, -0.2679823338985443, 0.6197054386138916, 0.35313794016838074, -0.340553343296051, 0.8440788388252258]}
{"caption id": "6", "text": "Contemporary author Ben Shapiro noted the verse \" seems to be Madonna 's credo .", "embeddings": [0.17735955119132996, 0.6632993221282959, 0.7014583349227905, 0.3971104621887207, -0.10914812237024307, -0.0065970029681921005, 0.49644914269447327, 0.4766312837600708, 0.18789513409137726, -0.42705604434013367, -0.043994393199682236, -0.38427385687828064, -0.452976256608963, 0.003948065917938948, -0.7252484560012817, 0.8037632703781128, -0.5894612073898315, -0.15724503993988037, 0.458333283662796, 0.17655055224895477, 0.5538713932037354, 0.8235381841659546, -0.47882458567619324, -0.2684641480445862, -0.4659726321697235, 0.06143522262573242, -0.02586475759744644, -0.12845101952552795, -0.14851203560829163, -0.8724493980407715, 0.26274147629737854, 0.1298551857471466, 0.513221025466919, 0.16140790283679962, 0.6019012331962585, 0.12006968259811401, 0.6864744424819946, -0.8143943548202515, 0.42930158972740173, -0.3606469929218292, 0.01467486284673214, -0.2564381957054138, -0.33601614832878113, -0.36849382519721985, -0.4675964415073395, -0.8961049318313599, 0.18222901225090027, -0.15749366581439972, -0.4603152871131897, -0.2921018600463867, -0.08572472631931305, -0.20583179593086243, -0.5782030820846558, 0.09106317907571793, 0.5099801421165466, -0.7725187540054321, 0.5568761825561523, -0.39553120732307434, -0.8982729911804199, 0.13448169827461243, 0.34897249937057495, 0.11999347060918808, 0.30257970094680786, -0.011866308748722076, 0.08563442528247833, 0.6943992376327515, -0.22514097392559052, 0.4296382665634155, 0.02914392203092575, 0.6994532346725464, 0.7070016860961914, 0.18528616428375244, -0.6034486293792725, -0.0034022354520857334, 0.41696739196777344, 0.2140985131263733, 0.03382616490125656, 0.2537723481655121, 0.380344033241272, -0.10401657968759537, -0.4258970022201538, 0.3653314709663391, 0.5185601711273193, 0.44333702325820923, -0.1303822100162506, -0.8428203463554382, -0.6551140546798706, -0.18414516746997833, 0.602422297000885, 0.5080602765083313, -0.3072796165943146, 0.01719602756202221, 0.13973398506641388, 0.664647102355957, -0.17318232357501984, 0.40481266379356384, 0.11114800721406937, 0.5611701011657715, -0.45262324810028076, 0.22980527579784393, -0.6830126047134399, 0.4364033639431, -0.20332519710063934, -0.035958874970674515, 0.5110456347465515, 0.47004199028015137, -0.6354681253433228, 0.3095490336418152, 0.4158340096473694, 0.7269214391708374, -0.4452286958694458, -0.02145434357225895, 0.41898244619369507, -0.18043196201324463, 0.6098188161849976, 0.1593286097049713, 0.566953182220459, 0.26447856426239014, 0.2193579375743866, -0.7576600909233093, -0.32491862773895264, -0.26459166407585144, 0.17576423287391663, -0.3915292024612427, -0.3716602027416229, -0.8214937448501587, -0.09482128173112869, -0.7389414310455322, -0.6250187158584595, -0.4415517747402191, -0.08106759190559387, -0.09316551685333252, 0.14267733693122864, -0.25219184160232544, 0.6768637299537659, -0.2946648895740509, -0.4324490427970886, 0.7901630997657776, 0.07262040674686432, -0.4366069734096527, -0.4481807351112366, -0.6460869312286377, -0.4706207513809204, 0.4296231269836426, 0.6751638054847717, -0.07234381139278412, 0.15542563796043396, -0.4219360649585724, 0.1339934915304184, 0.012760156765580177, 0.5054360032081604, 0.5412691831588745, -0.17213255167007446, -0.4271041750907898, 0.03353005647659302, 0.6481364965438843, 0.16692231595516205, 0.4208624064922333, 0.46068426966667175, 0.6443030834197998, 0.7402458190917969, 0.1519286185503006, -0.6359107494354248, -0.15003620088100433, -0.37800952792167664, 0.3223045766353607, 0.21816472709178925, -0.35103893280029297, -0.7778350114822388, -0.028081543743610382, -0.37566688656806946, -0.1658630520105362, 0.7399723529815674, 0.8512881398200989, 0.47010329365730286, -0.7166187763214111, -0.8205558061599731, -0.6629040241241455, -0.2605203688144684, -0.18321765959262848, -0.2596338093280792, 0.21938705444335938, 0.33332422375679016, -0.5496107339859009, 0.5538365840911865, 0.02988376095890999, 0.822965145111084, -0.37332338094711304, -0.6120984554290771, 0.254010945558548, -0.5542963147163391, -0.139768585562706, 0.4988286793231964, 0.030289635062217712, 0.7683417797088623, -0.49547654390335083, -0.48011645674705505, 0.2132081538438797, 0.5102531909942627, -0.17194002866744995, 0.23123396933078766, -0.6714867949485779, 0.07096197456121445, 0.18292540311813354, -0.10093791037797928, -0.16985909640789032, 0.4992676377296448, 0.5827528238296509, -0.14574775099754333, -0.6114778518676758, 0.5576316714286804, -0.16790370643138885, -0.20638719201087952, 0.6088319420814514, -0.602157711982727, -0.1922503560781479, 0.03440482169389725, -0.4375532865524292, 0.4751761257648468, 0.8251470327377319, -0.07927288115024567, -0.44444748759269714, 0.28055307269096375, 0.15778271853923798, -0.40980857610702515, -0.6732676029205322, -0.7039692997932434, -0.6379434466362, -0.06902434676885605, 0.6222870349884033, 0.7049136757850647, 0.279863566160202, 0.4458909332752228, -0.04457725211977959, 0.20970986783504486, 0.5397284030914307, 0.31771382689476013, 0.7470259070396423, 0.8162155747413635, -0.23797516524791718, -0.8210939168930054, -0.5223609209060669, 0.6557829976081848, 0.18538706004619598, -0.26823386549949646, -0.1915615350008011, -0.18256942927837372, -0.215935617685318, 0.5300612449645996, 0.07935760915279388, -0.5165814757347107, -0.0023381714709103107, -0.6204935312271118, 0.06189938634634018, -0.04984432831406593, -0.3938002586364746, 0.40663444995880127, -0.36444589495658875, -0.6140302419662476, -0.4071626663208008, 0.33676058053970337, 0.39599063992500305, 0.15520988404750824, 0.3540785014629364, -0.2714533507823944, -0.21764881908893585, -0.08278558403253555, -0.36891254782676697, 0.17831408977508545, -0.7012739181518555, -0.7669987082481384, 0.24506987631320953, 0.5238712430000305, 0.05941994860768318, -0.35615724325180054, -0.3389165997505188, 0.3379909098148346, -0.061318013817071915, -0.06928500533103943, 0.529464602470398, -0.3858621120452881, -0.5058223009109497, -0.3376208543777466, 0.4007803797721863, -0.004668483044952154, -0.8056412935256958, -0.47359463572502136, -0.6014145612716675, 0.20723655819892883, -0.4670713245868683, -0.046672970056533813, 0.5897115468978882, 0.13701696693897247, -0.3682791590690613, -0.7017463445663452, -0.16362103819847107, -0.2811923921108246, -0.8778045177459717, 0.1866624504327774, -0.9479443430900574, -0.25752806663513184, -0.13452982902526855, 0.6875005960464478, -0.40140771865844727, -0.4915364980697632, 0.18315629661083221, 0.40259748697280884, 0.7611383199691772, 0.8776808977127075, -0.6831482648849487, -0.5985525846481323, -0.2833860218524933, 0.20688830316066742, 0.37510737776756287, 0.19789713621139526, -0.4001041352748871, -0.4685901701450348, 0.06127620115876198, -0.5835384726524353, 0.37506604194641113, -0.11737605184316635, 0.5057214498519897, -0.8045366406440735, 0.3129999041557312, 0.2877214252948761, -0.16727304458618164, 0.4004068672657013, -0.2913377285003662, 0.38710564374923706, 0.260088711977005, -0.2937221825122833, -0.32471340894699097, -0.7895731925964355, -0.4703788161277771, 0.829220175743103, 0.010336769744753838, -0.3617296814918518, 0.5233169794082642, -0.2741975486278534, 0.08868454396724701, -0.08419929444789886, -0.007157436106353998, -0.6374081373214722, 0.32989075779914856, 0.06942961364984512, -0.043938521295785904, -0.8620457649230957, -0.5593278408050537, -0.19897179305553436, 0.8968531489372253, -0.7186546325683594, -0.7221503257751465, 0.5450124740600586, 0.6907081604003906, 0.18651212751865387, 0.017238179221749306, 0.5617995858192444, -0.5867714881896973, -0.7725604772567749, 0.09581362456083298, 0.41941556334495544, 0.2645127475261688, 0.4991779625415802, -0.46104246377944946, -0.6963348388671875, -0.0940956398844719, -0.44499650597572327, 0.3687560558319092, 0.3986055552959442, -0.3176146447658539, 0.5874664187431335, 0.07236404716968536, -0.0893402174115181, 0.6212694644927979, -0.4561437666416168, -0.749245285987854, -0.04962071403861046, -0.11045004427433014, -0.38487887382507324, -0.20149298012256622, 0.006235742475837469, 0.5280046463012695, 0.7841137647628784, 0.25795838236808777, 0.2153119146823883, -0.3014119863510132, 0.3570363223552704, 0.9139510989189148, -0.35423895716667175, 0.40021753311157227, 0.223972350358963, 0.4740706980228424, 0.5250384211540222, 0.22206905484199524, -0.25991275906562805, -0.5595074892044067, 0.38814541697502136, -0.4255959689617157, 0.2466556429862976, -0.9067313075065613, 0.0072073619812726974, -0.010715363547205925, -0.1395593136548996, -0.1261928528547287, -0.20829974114894867, -0.6681513786315918, 0.7318595051765442, 0.15279661118984222, -0.2560333013534546, -0.49062007665634155, -0.2579876482486725, -0.39575108885765076, 0.9073036909103394, 0.8980445861816406, -0.29900532960891724, -0.2708165943622589, -0.3339013457298279, 0.4120807647705078, 0.18631234765052795, -0.6830497980117798, -0.43482133746147156, -0.5962144136428833, 0.5193900465965271, -0.21131017804145813, 0.5133119225502014, 0.04173478111624718, -0.02450205385684967, -0.016672629863023758, 0.7172122597694397, -0.4074356257915497, 0.3467181921005249, -0.6798787117004395, -0.3764221668243408, 0.3716168701648712, 0.6455102562904358, -0.7073178291320801, -0.7546693682670593, -0.5780220031738281, 0.0009150498663075268, -3.857805859297514e-05, -0.840430736541748, 0.45693302154541016, -0.07161784917116165, -0.5251879692077637, -0.10433066636323929, -0.130475714802742, -0.6985067129135132, 0.21595457196235657, -0.1273745596408844, 0.3383803069591522, -0.15364186465740204, 0.14926759898662567, -0.02927412837743759, 0.49737393856048584, -0.5287784934043884, 0.8974194526672363, -0.6754281520843506, 0.7013978958129883, 0.4977847933769226, 0.5196639895439148, 0.0938270166516304, -0.5257896780967712, -0.16240312159061432, -0.37863433361053467, -0.4053214192390442, 0.5382157564163208, -0.5812746286392212, 0.5359498262405396, -0.26402953267097473, 0.5386764407157898, 0.8157283663749695, 0.8593858480453491, 0.24241645634174347, 0.6331733465194702, -0.3607563078403473, 0.7387120723724365, 0.14405463635921478, 0.4557967782020569, 0.09720960259437561, 0.49564215540885925, -0.012230302207171917, 0.2896363139152527, -0.37251633405685425, 0.14402048289775848, -0.07629336416721344, -0.3691348135471344, 0.6355786323547363, -0.33767518401145935, 0.5729014873504639, 0.5261736512184143, -0.22731903195381165, -0.4635692834854126, 0.015066470019519329, 0.3529248535633087, -0.22656956315040588, 0.3839375078678131, 0.785754919052124, 0.40149998664855957, 0.5590736865997314, 0.4092644453048706, 0.22525833547115326, -0.37015819549560547, 0.49949002265930176, -0.9213517308235168, 0.5679909586906433, 0.22194872796535492, -0.12403660267591476, -0.5831924080848694, -0.6782593727111816, -0.43355467915534973, -0.49109598994255066, 0.15130475163459778, 0.209839329123497, -0.4089330732822418, -0.023277033120393753, -0.18553709983825684, -0.4313855469226837, 0.5235078930854797, 0.22084717452526093, -0.472303181886673, 0.4400733709335327, -0.6621909141540527, 0.3929462432861328, 0.24013514816761017, -0.24056768417358398, -0.6678285598754883, -0.26029840111732483, -0.8787969946861267, -0.0655812919139862, 0.20608948171138763, 0.46708735823631287, 0.13317406177520752, 0.7953189611434937, -0.9098806977272034, -0.6030515432357788, 0.37659645080566406, -0.06614460796117783, -0.22400519251823425, 0.5334141850471497, -0.07296373695135117, 0.08618350327014923, -0.4479973018169403, -0.6648932099342346, 0.7205193042755127, 0.1195615753531456, 0.0572708435356617, 0.09101831167936325, 0.4063064754009247, 0.1454574465751648, -0.10332494974136353, 0.5774784088134766, -0.466709703207016, -0.2878551185131073, 0.6902318596839905, -0.07357777655124664, -0.10316304862499237, 0.6265243887901306, -0.12339414656162262, -0.05336133763194084, 0.22524060308933258, 0.014397683553397655, 0.4436849057674408, 0.3619403839111328, -0.06351576000452042, 0.1408630758523941, -0.2790737450122833, -0.6222165822982788, 0.18193545937538147, 0.46590322256088257, -0.7023274302482605, 0.10346003621816635, 0.1725202053785324, 0.5534659028053284, 0.8755624294281006, -0.6200323104858398, -0.4275229871273041, -0.4265696108341217, -0.4446457624435425, -0.44064947962760925, 0.5136293768882751, -0.08625287562608719, 0.7393029928207397, 0.3402741849422455, -0.4730551838874817, -0.6773850917816162, -0.7643623352050781, -0.303310751914978, -0.5037071108818054, 0.013540255837142467, -0.1208500936627388, 0.6069154143333435, -0.32818111777305603, 0.537199854850769, -0.18868803977966309, 0.27444449067115784, 0.7159925699234009, 0.6021875739097595, -0.46348506212234497, 0.08372098952531815, -0.5066624283790588, 0.6192317008972168, 0.39328277111053467, -0.04846431314945221, 0.24337497353553772, 0.5199357867240906, -0.3961731791496277, -0.16791394352912903, 0.32518553733825684, -0.44104528427124023, -0.42935705184936523, 0.5781327486038208, -0.6540500521659851, 0.26854419708251953, 0.6198259592056274, -0.42406222224235535, -0.45781078934669495, 0.2657462954521179, 0.038127023726701736, 0.4779762029647827, 0.25640490651130676, 0.18115441501140594, -0.824748158454895, -0.9452551007270813, -0.5107033252716064, -0.8454136848449707, 0.003949609585106373, -0.32219743728637695, 0.10673126578330994, 0.11187465488910675, 0.030813485383987427, 0.08861041069030762, -0.13603149354457855, -0.5613967180252075, -0.029090482741594315, 0.45923182368278503, 0.08496769517660141, -0.31941235065460205, -0.6727114915847778, 0.4611055552959442, 0.04130689054727554, 0.8021949529647827, 0.050692204385995865, -0.7543162107467651, 0.17974086105823517, -0.6589018106460571, -0.3515201508998871, -0.7507611513137817, -0.42513036727905273, 0.48024219274520874, -0.5430406332015991, 0.19784602522850037, 0.06923027336597443, 0.3149510622024536, -0.3019006848335266, 0.1890469491481781, -0.6139987707138062, 0.34054890275001526, 0.261914998292923, 0.34019437432289124, -0.604228138923645, 0.1295035034418106, -0.4065987467765808, 0.5781590342521667, -0.4740535318851471, 0.18777847290039062, 0.1849517822265625, -0.28639909625053406, -0.21381981670856476, -0.06145761162042618, 0.7392210960388184, 0.2699534296989441, 0.3298257291316986, -0.07112995535135269, 0.857710063457489, -0.16867025196552277, -0.3501055836677551, -0.7174602746963501, 0.3341789245605469, 0.08896096050739288, 0.6090283393859863, -0.7235450744628906, -0.39564576745033264, 0.00464041531085968, 0.6172816157341003, 0.6813501715660095, -0.43924573063850403, -0.0519234724342823, 0.45028308033943176, -0.37216946482658386, 0.09270504862070084, -0.41342324018478394, 0.2246486395597458, -0.08685598522424698, -0.6150903701782227, -0.5404497385025024, -0.47215554118156433, 0.2467925250530243, 0.11239881068468094, 0.6112806797027588, -0.20754165947437286, 0.15914876759052277, -0.8032729625701904, 0.6245927810668945, 0.46564391255378723, 0.3735969662666321, -0.610913872718811, 0.8106801509857178, -0.26227158308029175, -0.08922047168016434, -0.1258464753627777, -0.22529824078083038, 0.2670365571975708, -0.8970057368278503, 0.6647714376449585, 0.19945423305034637, 0.017031677067279816, -0.4281359016895294, 0.038125745952129364, -0.1611507683992386, 0.2234112173318863, 0.6831165552139282, 0.18238474428653717, 0.21760855615139008, 0.5484185218811035, 0.23650917410850525, -0.34240657091140747, 0.5890078544616699, -0.5520181655883789, 0.6281009912490845, -0.9184941053390503, 0.5946222543716431, 0.6712744832038879, 0.2040225714445114, -0.835921049118042, -0.3043387830257416, 0.5482163429260254, -0.2842768430709839, -0.4806984066963196, 0.32779133319854736, 0.5882250666618347, -0.022022560238838196, -0.2525559961795807, -0.5089098215103149, -0.2271239161491394, 0.20983487367630005, -0.4297080338001251, -0.16998425126075745, -0.5454211235046387, -0.25801554322242737, -0.42097485065460205, 0.5795142650604248, -0.6404006481170654, -0.8518255352973938, -0.10177937150001526, 0.34916290640830994, -0.6118564605712891, 0.48290854692459106, 0.19061093032360077, -0.8176009058952332, 0.7653433680534363, 0.15091057121753693, -0.00044898208579979837, -0.5333922505378723, -0.2331731617450714, -0.2570851445198059, -0.03743210807442665, -0.13485778868198395, 0.31152185797691345, 0.05348362773656845, 0.334031879901886, -0.39022305607795715, 0.12567661702632904, 0.1563059687614441, -0.33875572681427, 0.2563963830471039, 0.4622507393360138, -0.09216161072254181, 0.3382468819618225, 0.1778799444437027, 0.333406925201416, 0.6413812637329102, -0.21394366025924683, -0.6846483945846558, 0.13845232129096985, -0.3452891707420349, -0.7274763584136963, 0.7953190803527832, 0.09527988731861115, 0.32629963755607605, -0.38527911901474, 0.3327215313911438, -0.4363195598125458, -0.5553107261657715, -0.8630421757698059, 0.6206637620925903, 0.08476316928863525, -0.19561965763568878, 0.107511505484581, -0.17593640089035034, -0.7664433717727661, 0.715827465057373, 0.7681354284286499, 0.7134573459625244, 0.7619228363037109, -0.3963882625102997, -0.30095621943473816, -0.6276276707649231, -0.46375924348831177, -0.06690520793199539, -0.3553944528102875, -0.06314464658498764, 0.3340936601161957, 0.3811342418193817, 0.4841674864292145, 0.013744474388659, 0.22228530049324036, -0.3376788794994354, -0.06848227232694626, 0.2752962112426758, 0.1889164298772812, 0.49159130454063416, -0.378378301858902, -0.6082063317298889, 0.40309885144233704, 0.315420925617218, 0.3806464970111847, -0.27929607033729553, 0.7585217952728271, -0.4940975606441498, 0.2891857624053955, 0.5882878303527832, -0.3976025879383087, 0.14870110154151917, -0.4399702250957489, -0.1667538732290268, -0.5310016870498657, 0.05573810636997223, -0.31413355469703674, -0.029958875849843025, -0.45613041520118713, 0.10201703011989594, 0.09070251137018204, -0.060683466494083405, -0.0621357262134552, 0.8790106177330017, -0.4776375889778137, 0.32338249683380127, 0.6970342397689819, -0.19314277172088623, -0.49737828969955444, -0.2641269564628601, -0.4997289776802063, -0.5280597805976868, 0.2540075480937958, -0.5994595289230347, 0.4144229590892792, -0.5784822702407837, -0.004192798864096403, 0.2626992166042328, 0.42678943276405334, -0.31577107310295105, -0.03610362112522125, -0.2636459171772003, -0.8613438010215759, 0.21057702600955963, 0.5984734296798706, -0.6799578666687012, 0.059313926845788956, 0.31425973773002625, -0.22425001859664917, -0.6585681438446045, -0.26706352829933167, -0.08240731805562973, -0.7067636847496033, 0.5022427439689636, -0.642439603805542, 0.6176795959472656, -0.3093624413013458, 0.7557902932167053, -0.5929635763168335, 0.18259429931640625, 0.6345658302307129, -0.7550095319747925, 0.18176840245723724, -0.061451878398656845, -0.21005544066429138, 0.33342546224594116, -0.06430599093437195, 0.022562040016055107, 0.23438109457492828, 0.35701248049736023, 0.681846022605896, -0.3733215034008026, -0.07483114302158356, -0.25522732734680176, -0.5991411209106445, -0.5501531958580017, -0.28982871770858765, -0.3944332003593445, -0.2801976203918457, -0.04759249463677406, -0.22392676770687103, -0.15211327373981476, -0.3413485586643219, -0.3017299473285675, -0.20840439200401306, -0.34293100237846375, 0.5623428821563721, 0.6831774711608887, -0.7028773427009583, -0.5893807411193848, 0.05191129073500633, 0.01342150941491127, -0.32378271222114563, 0.16278494894504547, 0.5135987401008606, -0.8144685626029968, -0.238951176404953, 0.14494799077510834, -0.27768459916114807, -0.7753915190696716, 0.6652345657348633, -0.31226491928100586, 0.6620528697967529, 0.466828852891922, -0.7672905325889587, 0.702401340007782, 0.5673297643661499, 0.1730988472700119, -0.8404209017753601, -0.17631658911705017, 0.698349118232727, 0.26588132977485657, 0.18597356975078583, -0.4394349455833435, 0.5637352466583252, 0.7769120931625366, -0.5771809816360474, 0.681731104850769, 0.24174298346042633, -0.5187978148460388, -0.11869165301322937, 0.7810521125793457, -0.37871837615966797, 0.15988077223300934, -0.1738988310098648, -0.27383852005004883, -0.6935126781463623, 0.30601611733436584, -0.2731691598892212, -0.2710611820220947, -0.37725499272346497, -0.27154049277305603, -0.2870694398880005, -0.32153788208961487, 0.1486075073480606, 0.7349953651428223, -0.031249575316905975, 0.29080983996391296, -0.24696668982505798, 0.20640243589878082, -0.3071770668029785, -0.788547158241272, -0.2725542485713959, -0.19763900339603424, -0.5328518748283386, 0.41693830490112305, -0.750533401966095, -0.5195102691650391, -0.18556749820709229, 0.05485284700989723, 0.10546883940696716, 0.01660555973649025, 0.2888268232345581, 0.6218389272689819, -0.7934553027153015, 0.7050683498382568, -0.8172173500061035, -0.5953803658485413, -0.4293646812438965, 0.05541909486055374, -0.6358281373977661, -0.018005330115556717, 0.8985916972160339, 0.24662840366363525, -0.8040555119514465, -0.7304137945175171, -0.004508273676037788, 0.04061691835522652, 0.39000946283340454, 0.8395642042160034, -0.0006773864151909947, 0.5848557949066162, -0.16179579496383667, -0.5727713108062744, 0.46831250190734863, -0.12610721588134766, 0.29852619767189026, -0.012666942551732063, -0.2685665786266327, -0.48426371812820435, -0.2883766293525696, -0.30666491389274597, -0.23420555889606476, 0.5440798997879028, -0.6078593730926514, 0.4527464807033539, -0.54051673412323, 0.39149054884910583, -0.6293433904647827, 0.20670494437217712, 0.12120410799980164, -0.7649481296539307, 0.38385602831840515, -0.05835328623652458, -0.18964499235153198, 0.23884731531143188, -0.4618493318557739, 0.06705229729413986, -0.7239170074462891, -0.23552939295768738, -0.3653237223625183, 0.2446807324886322, -0.628078043460846]}
{"caption id": "7", "text": "Cuse responded by writing a letter to the editor .", "embeddings": [-0.5953047275543213, -0.25624045729637146, -0.16594582796096802, -0.2253580242395401, 0.5272848010063171, 0.22395800054073334, -0.7645730972290039, 0.20174062252044678, -0.2292589545249939, -0.47326362133026123, -0.3807041645050049, -0.6742483377456665, -0.3682132065296173, 0.1811845898628235, -0.8122379183769226, 0.21391279995441437, -0.8117527961730957, 0.1630372256040573, 0.7074853181838989, 0.6721216440200806, -0.4365967810153961, 0.11928212642669678, -0.1694546341896057, -0.4865982234477997, -0.23803912103176117, -0.153132826089859, -0.7622130513191223, -0.3929610848426819, 0.4296591877937317, -0.31751832365989685, -0.47572657465934753, -0.5114468932151794, 0.12670277059078217, -0.5074074268341064, 0.4122578203678131, -0.0655112937092781, -0.49642592668533325, -0.2432817667722702, -0.15894822776317596, -0.9345189332962036, 0.5094343423843384, 0.5057481527328491, -0.568832516670227, 0.3208615481853485, 0.8277589678764343, -0.28919848799705505, 0.36714234948158264, 0.10094521194696426, 0.5344840884208679, 0.347024530172348, -0.5801750421524048, -0.2818794846534729, -0.3869093954563141, 0.33665022253990173, -0.19197271764278412, 0.010834659449756145, 0.664168655872345, 0.2965971827507019, -0.2711024284362793, -0.22015166282653809, 0.27643850445747375, 0.5932595729827881, -0.21227015554904938, 0.23217535018920898, -0.5179147124290466, 0.5094937086105347, 0.10398729145526886, 0.3437533378601074, 0.07643552124500275, 0.7263855934143066, 0.4304129481315613, 0.463113009929657, 0.07558254152536392, 0.46239015460014343, 0.043074727058410645, -0.4221915900707245, -0.7860463857650757, 0.3571467101573944, 0.6077337265014648, -0.07997117191553116, -0.3591712415218353, 0.571544349193573, 0.27692854404449463, -0.6159682273864746, 0.5503222346305847, 0.709369421005249, 0.7586463689804077, -0.5050093531608582, 0.6850458979606628, 0.5149368643760681, -0.7655896544456482, -0.26482251286506653, 0.35473430156707764, -0.4833349585533142, -0.09345327317714691, 0.10314050316810608, 0.5018255710601807, 0.2044336199760437, -0.7241307497024536, -0.8317441940307617, -0.5196618437767029, 0.07524862140417099, -0.14862096309661865, 0.2767639756202698, -0.0037273410707712173, 0.3574158549308777, -0.20013757050037384, -0.3562306761741638, -0.07286381721496582, 0.6941143274307251, -0.5625355243682861, -0.33105793595314026, 0.2161281257867813, -0.32203036546707153, 0.5898719429969788, -0.7492352724075317, -0.4203779101371765, 0.6264704465866089, -0.6835021376609802, -0.1791609227657318, -0.02529172971844673, -0.06444442272186279, 0.5561022758483887, -0.27865368127822876, -0.35832712054252625, -0.573343813419342, 0.23808379471302032, 0.2610035538673401, -0.3161831200122833, -0.5999880433082581, 0.30877161026000977, 0.02969631366431713, 0.25871968269348145, 0.34272852540016174, 0.6759635210037231, -0.4934684634208679, -0.70864337682724, -0.5359342694282532, 0.05675308033823967, -0.3729203939437866, -0.8134516477584839, -0.3536340892314911, -0.12758618593215942, -0.05789125710725784, -0.5694839954376221, -0.28729474544525146, -0.3366985321044922, 0.32224240899086, -0.3869016766548157, 0.41734346747398376, -0.19239680469036102, -0.10025599598884583, -0.567948579788208, 0.14424633979797363, 0.3180752992630005, -0.1052190512418747, 0.5281335711479187, 0.04194309189915657, 0.7832604646682739, 0.17702406644821167, -0.17596936225891113, 0.23931720852851868, -0.08038990199565887, 0.6255686283111572, -0.7898715138435364, -0.6326709985733032, 0.04135044291615486, -0.8190304040908813, -0.6068428754806519, -0.06949185580015182, -0.7569099068641663, -0.02081616409122944, 0.7969453930854797, 0.5909692049026489, 0.5592634081840515, -0.8711795806884766, -0.24908407032489777, 0.17371295392513275, 0.5262316465377808, 0.30848240852355957, -0.009682866744697094, 0.05106083303689957, 0.3182050287723541, -0.34081751108169556, -0.02923913486301899, -0.4057338833808899, 0.15006953477859497, 0.4876008629798889, -0.5303628444671631, -0.2637188136577606, 0.17622390389442444, 0.6136153340339661, 0.7268712520599365, -0.6810840368270874, 0.42797785997390747, 0.22063037753105164, -0.41824808716773987, -0.15268316864967346, 0.26287323236465454, -0.027409236878156662, -0.34539517760276794, -0.08548954874277115, 0.13784559071063995, 0.2824995815753937, 0.5085731148719788, -0.03931323438882828, 0.5970337986946106, 0.5012800097465515, 0.3876391649246216, 0.0677395686507225, 0.2164396345615387, -0.5974043607711792, -0.06480403244495392, 0.527225911617279, -0.09339886158704758, 0.17053575813770294, -0.3767826557159424, -0.48197540640830994, 0.5070868730545044, 0.08136988431215286, -0.17102035880088806, 0.46998733282089233, -0.07154539227485657, 0.5046335458755493, -0.5160083174705505, -0.12792088091373444, -0.7947697639465332, 0.48040419816970825, 0.7003949880599976, -0.028445184230804443, -0.5499759316444397, 0.06516533344984055, 0.641203761100769, -0.011828816495835781, -0.1489439308643341, -0.34911417961120605, 0.18101540207862854, 0.8270260095596313, -0.6968520879745483, -0.5470818281173706, 0.5364346504211426, -0.5709660649299622, -0.27181732654571533, -0.741257905960083, -0.3878944516181946, -0.320234090089798, -0.8644133806228638, 0.30078548192977905, 0.33208727836608887, 0.3403536379337311, 0.12082336097955704, 0.5337076783180237, -0.21744821965694427, -0.6833298206329346, -0.03983039781451225, -0.44299569725990295, 0.8005521297454834, -0.7147852182388306, 0.5283789038658142, -0.3991350829601288, 0.07145708054304123, 0.793921947479248, -0.35585087537765503, -0.04650844633579254, -0.7172800302505493, 0.3829558491706848, 0.08014863729476929, -0.779987096786499, 0.010965715162456036, 0.3550645411014557, -0.8006114959716797, -0.417099267244339, 0.8239249587059021, 0.37003806233406067, -0.4922731816768646, 0.15293195843696594, 0.22125576436519623, 0.2752627432346344, -0.5064802169799805, -0.06428484618663788, 0.14703907072544098, -0.25963178277015686, -0.30627503991127014, -0.20391717553138733, -0.043626926839351654, 0.5488208532333374, 0.7144536972045898, -0.7069904804229736, 0.5120640993118286, 0.15198743343353271, 0.7035020589828491, 0.10786410421133041, 0.49670130014419556, -0.7368371486663818, -0.35563570261001587, -0.5110838413238525, -0.010467514395713806, -0.0726797878742218, 0.37450531125068665, -0.5468307733535767, 0.20412372052669525, -0.4751415252685547, -0.16009415686130524, -0.48929452896118164, -0.5003795027732849, -0.08741462975740433, 0.8408297300338745, -0.05471375957131386, 0.7993303537368774, -0.12935511767864227, -0.8274248242378235, -0.04059949889779091, -0.10211506485939026, -0.5772965550422668, -0.1241837590932846, -0.3297167122364044, -0.45300066471099854, 0.21978949010372162, -0.03159656003117561, -0.5761505365371704, 0.3309284746646881, -0.08708807080984116, -0.05697745457291603, 0.3127005994319916, 0.21752046048641205, -0.22323575615882874, 0.21815015375614166, -0.6924604177474976, 0.11409617215394974, 0.47658607363700867, 0.6915225982666016, -0.18475589156150818, -0.6642946600914001, -0.2982204556465149, 0.31096723675727844, -0.4684680104255676, -0.28650137782096863, 0.4512781500816345, 0.21868395805358887, 0.2976338267326355, -0.02175699733197689, 0.30700039863586426, 0.272871196269989, -0.44605380296707153, 0.3849051892757416, 0.5093763470649719, 0.18013682961463928, -0.010116093792021275, -0.6153563857078552, 0.6215986609458923, -0.23788878321647644, -0.7208051085472107, 0.6175606846809387, 0.6811960339546204, 0.21869853138923645, -0.4290960133075714, 0.11652620136737823, 0.020455364137887955, -0.7532771825790405, -0.01904340460896492, 0.2586992681026459, 0.6552485227584839, 0.060702648013830185, -0.33354881405830383, -0.9355040788650513, 0.15634122490882874, 0.0020507765002548695, 0.386115163564682, 0.14185869693756104, 0.099202461540699, 0.6036089658737183, -0.8872915506362915, -0.045720845460891724, -0.6178339719772339, -0.09018158167600632, -0.7903986573219299, -0.1132442057132721, 0.8830357789993286, 0.1528230458498001, -0.03876303508877754, 0.0653117299079895, 0.1022678017616272, -0.4503805935382843, 0.2195194959640503, 0.3483351767063141, -0.28262975811958313, 0.05775408074259758, -0.18246564269065857, 0.2840399444103241, 0.1961965709924698, 0.5231418609619141, -0.24240721762180328, -0.2536541521549225, 0.34259316325187683, -0.021647140383720398, -0.37143388390541077, 0.24495874345302582, -0.1526969075202942, 0.6934208869934082, -0.7927122116088867, -0.5973495244979858, -0.6598280668258667, 0.4094713032245636, 0.5889014005661011, -0.011518904007971287, 0.4068377614021301, 0.05478197708725929, 0.30756691098213196, -0.3248063921928406, -0.40214282274246216, -0.5975271463394165, 0.05683280900120735, 0.036867085844278336, -0.04322275146842003, -0.7120411992073059, 0.39182838797569275, 0.7019713521003723, 0.27423354983329773, 0.6834211349487305, -0.7396399974822998, -0.47405412793159485, -0.612223744392395, 0.4730105698108673, 0.1845536231994629, 0.7825558185577393, 0.378285676240921, 0.564710259437561, -0.6554268598556519, -0.47518232464790344, 0.05464169383049011, 0.6339094042778015, -0.07601792365312576, -0.23741084337234497, 0.39360368251800537, 0.034136831760406494, -0.9132920503616333, -0.4506321847438812, 0.18093116581439972, 0.2809739410877228, -0.41965237259864807, 0.01738482527434826, 0.27240660786628723, -0.6287006735801697, -0.790542721748352, -0.1777389496564865, 0.059468649327754974, -0.2407235950231552, -0.4022083282470703, 0.8105125427246094, 0.6405150890350342, -0.6800457239151001, -0.3417407274246216, -0.7637572884559631, 0.26291367411613464, 0.2917475402355194, -0.015977047383785248, -0.5151428580284119, 0.36126312613487244, 0.16623395681381226, 0.32651421427726746, -0.6635602116584778, 0.536071240901947, -0.10968872904777527, 0.7161147594451904, 0.20374533534049988, -0.3088425397872925, 0.41157951951026917, 0.5262259244918823, -0.5206658840179443, 0.6803866028785706, 0.7858926057815552, 0.42220571637153625, -0.39967676997184753, -0.09452612698078156, -0.8384355902671814, 0.6728507876396179, -0.39547935128211975, 0.558783769607544, 0.05107398331165314, 0.3018736243247986, -0.5556350946426392, 0.27071496844291687, 0.38324815034866333, -0.2969716489315033, -0.12671175599098206, 0.8985204100608826, 0.6337899565696716, -0.6017442941665649, 0.3588614761829376, 0.5709460973739624, 0.20806464552879333, 0.17205475270748138, -0.2489652782678604, -0.560247540473938, -0.37608587741851807, 0.3894319534301758, -0.19261489808559418, -0.7686607241630554, 0.37489840388298035, -0.21149402856826782, 0.5793790817260742, -0.507527768611908, -0.2380346655845642, -0.5641762018203735, 0.23507572710514069, -0.3942485749721527, 0.32544592022895813, 0.2850090265274048, -0.7971712350845337, -0.03200498968362808, 0.6944946050643921, -0.5931054949760437, 0.06206132099032402, -0.2581217885017395, 0.6035114526748657, 0.7440605163574219, -0.48872071504592896, 0.3098311126232147, 0.06466642767190933, -0.32347923517227173, 0.6865890026092529, 0.33628520369529724, 0.1456741839647293, 0.02517702989280224, -0.15027782320976257, 0.5095394253730774, -0.05169292911887169, -0.4703013002872467, 0.31807446479797363, 0.619949221611023, 0.6994114518165588, -0.3636712431907654, 0.08305995166301727, -0.027701441198587418, -0.16982346773147583, 0.43345925211906433, 0.13747066259384155, -0.18599537014961243, 0.12775421142578125, -0.2757291793823242, 0.30786946415901184, -0.2694202661514282, -0.575090765953064, 0.8146959543228149, 0.23188316822052002, 0.02155490778386593, 0.14656314253807068, -0.35996106266975403, -0.8086589574813843, 0.3877602815628052, 0.5250105857849121, 0.37710756063461304, 0.13864979147911072, 0.39380696415901184, -0.16870997846126556, -0.4859597682952881, 0.5629836320877075, 0.5953096151351929, 0.401726096868515, 0.638178825378418, -0.6982641220092773, -0.04119786620140076, -0.41688334941864014, -0.3767152428627014, 0.5934553146362305, 0.019443919882178307, 0.015338888391852379, -0.03693930804729462, 0.5523814558982849, 0.22176195681095123, 0.34280261397361755, -0.22075286507606506, 0.5896211862564087, 0.04956340044736862, 0.7582866549491882, -0.7865457534790039, 0.10084054619073868, 0.679095983505249, 0.5108197927474976, 0.13469873368740082, -0.31962811946868896, 0.4363536536693573, 0.1984701007604599, 0.2030855417251587, -0.10046688467264175, -0.525087296962738, 0.5569800138473511, -0.3022090196609497, 0.5872089862823486, 0.3502233028411865, 0.2004675567150116, 0.352102667093277, 0.13676664233207703, 0.34306010603904724, -0.021659400314092636, 0.6871367692947388, -0.3003394305706024, -0.6387306451797485, 0.03325607255101204, -0.7348414659500122, -0.4215394854545593, -0.6478865146636963, -0.3437759578227997, 0.2851458191871643, 0.6087976694107056, -0.5082977414131165, 0.02412661723792553, -0.1119738295674324, 0.18409985303878784, 0.011020808480679989, 0.5111066102981567, 0.8370743989944458, -0.2634483575820923, -0.03802218288183212, -0.29244765639305115, -0.7088145613670349, -0.09893207997083664, -0.6904278993606567, 0.49848538637161255, 0.7159987688064575, -0.5214821100234985, 0.31356287002563477, -0.28056490421295166, -0.10633090883493423, -0.6413017511367798, 0.6645855903625488, -0.6614640951156616, -0.09778990596532822, 0.2635757029056549, -0.45143815875053406, -0.17759519815444946, -0.8023422956466675, 0.3914176821708679, 0.3688286542892456, -0.22511912882328033, -0.0948227122426033, -0.037578776478767395, -0.5271883010864258, 0.4296737015247345, -0.4552861452102661, 0.07528241723775864, -0.0746193379163742, -0.5982562899589539, 0.7688601613044739, 0.019130004569888115, -0.19998352229595184, -0.07881520688533783, -0.06603571772575378, 0.7681275606155396, 0.6969186067581177, -0.2620934247970581, -0.5164182782173157, 0.0732378214597702, 0.5309575796127319, -0.48605382442474365, 0.6856397986412048, 0.607782244682312, 0.23965910077095032, 0.0771019384264946, -0.9370370507240295, -0.037066563963890076, 0.8905463814735413, 0.27603644132614136, 0.6602803468704224, 0.4135240316390991, -0.47435513138771057, 0.45446139574050903, -0.3262659013271332, -0.15180012583732605, -0.27870529890060425, 0.6135002970695496, -0.6935160160064697, 0.17413559556007385, 0.4568776786327362, -0.5122342109680176, -0.2805643677711487, 0.3150836229324341, 0.1623286008834839, -0.7177183628082275, -0.6215186715126038, 0.04647363722324371, -0.31899717450141907, -0.5333067774772644, -0.04367491230368614, -0.3409217894077301, -0.1854914426803589, -0.17373400926589966, -0.3457512855529785, -0.10004455596208572, -0.37311258912086487, -0.8428250551223755, 0.07211024314165115, 0.0992235392332077, -0.4870307743549347, 0.3848666250705719, 0.03408689796924591, -0.14418214559555054, -0.07441196590662003, -0.3447662591934204, -0.8404548168182373, -0.5739896297454834, 0.01832295022904873, -0.41423988342285156, 0.7971409559249878, 0.07203557342290878, -0.4355379641056061, -0.6670968532562256, 0.5178366303443909, 0.05441809818148613, -0.08177276700735092, -0.007143836934119463, -0.032935358583927155, -0.7321797609329224, 0.035656142979860306, 0.026955856010317802, -0.692471981048584, 0.01592426560819149, 0.7317709922790527, -0.8287340402603149, 0.21269290149211884, -0.570085883140564, -0.2584153115749359, 0.49211037158966064, 0.6099167466163635, 0.3410177528858185, 0.5520190596580505, 0.650586724281311, 0.3530771732330322, 0.39484545588493347, -0.44725990295410156, 0.8203650712966919, -0.26515719294548035, 0.8778048157691956, -0.26828354597091675, -0.07741528004407883, 0.4720020294189453, -0.31321921944618225, 0.4070390462875366, -0.48692697286605835, -0.08598250895738602, -0.6169141530990601, 0.4832095205783844, 0.3389872908592224, 0.41659972071647644, 0.253798246383667, 0.8256973028182983, -0.197267085313797, 0.023173699155449867, -0.30945321917533875, -0.09579624235630035, -0.66014564037323, -0.5327327847480774, -0.8576468229293823, -0.17221271991729736, -0.42313945293426514, 0.04625346511602402, 0.21380820870399475, 0.47938066720962524, -0.5392229557037354, 0.4443451464176178, -0.8524984121322632, 0.3187137842178345, 0.1251177042722702, -0.3585582971572876, -0.4677104949951172, -0.6540125012397766, -0.12544949352741241, 0.7516478300094604, 0.6204805970191956, -0.09798791259527206, 0.7163894176483154, 0.9591890573501587, 0.3437548577785492, -0.11671534925699234, -0.6715568900108337, 0.6996333003044128, -0.5756468772888184, 0.8270230293273926, -0.5077117085456848, 0.5892602205276489, -0.006969999521970749, -0.8517428636550903, -0.3792039453983307, -0.601962685585022, -0.4395672678947449, -0.4492310881614685, -0.45846351981163025, 0.539091944694519, 0.5284459590911865, -0.6613324880599976, -0.8103346824645996, -0.942020058631897, -0.7321451902389526, -0.04244236275553703, 0.44514793157577515, 0.2704846262931824, -0.3192861080169678, 0.7395748496055603, -0.5728222727775574, -0.14517876505851746, -0.06569232046604156, 0.8659008741378784, 0.1901084929704666, -0.2346334457397461, 0.4832022786140442, 0.05300773307681084, -0.5710014700889587, -0.06415072083473206, -0.06930961459875107, 0.26028749346733093, 0.23859655857086182, 0.14063531160354614, -0.039553459733724594, 0.598466157913208, -0.30027249455451965, 0.22671258449554443, -0.13313239812850952, 0.48373374342918396, 0.6084510087966919, -0.2974362075328827, 0.656588077545166, 0.36560627818107605, 0.4386252462863922, -0.2927842140197754, 0.7025960683822632, 0.6154153347015381, -0.00316092767752707, 0.6903151273727417, -0.9109240174293518, 0.7393093705177307, -0.008421649225056171, -0.6232610940933228, -0.7269919514656067, -0.6265694499015808, 0.6562966108322144, -0.09817299246788025, 0.01809724047780037, 0.7306403517723083, 0.4811338782310486, -0.5000993013381958, 0.6058480739593506, -0.44824644923210144, 0.6702367067337036, 0.5518845319747925, 0.771540105342865, -0.6722898483276367, 0.06388197094202042, 0.5548853278160095, 0.3510139286518097, 0.5051907300949097, 0.009695843793451786, -0.19926197826862335, 0.5925071239471436, -0.10912548005580902, 0.39509814977645874, -0.33620887994766235, 0.051320042461156845, -0.5368524193763733, 0.5317052602767944, 0.40864092111587524, -0.42001381516456604, 0.31902188062667847, -0.5074144005775452, -0.5620185136795044, 0.08900061249732971, 0.07256712019443512, 0.4983604848384857, 0.5402940511703491, 0.32781296968460083, 0.22402679920196533, -0.7399052381515503, 0.21633535623550415, -0.13219629228115082, 0.6495310068130493, -0.9282619953155518, -0.38864511251449585, 0.2327103614807129, 0.7633201479911804, 0.030017780140042305, -0.06804895401000977, 0.07636157423257828, -0.1708986908197403, -0.2516649663448334, -0.6188442707061768, -0.32592761516571045, 0.32245779037475586, 0.6594953536987305, 0.9057737588882446, 0.5990773439407349, 0.24294301867485046, -0.4631151854991913, -0.14583957195281982, 0.3345877230167389, 0.33655616641044617, -0.04072658345103264, 0.31396058201789856, 0.6299524903297424, -0.4248118996620178, -0.6889863014221191, -0.7990834712982178, 0.9483364820480347, -0.7857528924942017, 0.3097035884857178, -0.3008452355861664, -0.13567036390304565, 0.5484285354614258, 0.2831873297691345, -0.28623029589653015, -0.11111078411340714, -0.4647085964679718, -0.8511608839035034, -0.16104693710803986, 0.7315121293067932, 0.32029199600219727, 0.5864843726158142, -0.025772949680685997, -0.09216025471687317, -0.6898082494735718, -0.7544025182723999, 0.6253954172134399, -0.3329812288284302, -0.09414398670196533, -0.5263445973396301, -5.429075099527836e-05, -0.1391810178756714, -0.10096613317728043, -0.7916633486747742, 0.2110120952129364, -0.6970107555389404, -0.6933246850967407, 0.16935059428215027, -0.20038874447345734, 0.24821484088897705, -0.6075326204299927, -0.5802356004714966, 0.0654427707195282, 0.12753809988498688, -0.04678167402744293, 0.34137579798698425, 0.6871235370635986, 0.046027299016714096, 0.31143632531166077, 0.23182639479637146, -0.4727594256401062, -0.5087456107139587, 0.20961801707744598, -0.634965717792511, -0.27479293942451477, 0.8434810638427734, -0.18168528378009796, -0.2995547354221344, -0.3562786877155304, -0.7151901125907898, 0.8169950842857361, -0.27085399627685547, 0.4321269690990448, 0.5090727806091309, 0.6531412601470947, 0.13999603688716888, -0.8279858231544495, -0.19477379322052002, -0.18737129867076874, -0.21223138272762299, 0.31934303045272827, 0.4661746919155121, -0.709013044834137, 0.3424089848995209, -0.2154160887002945, 0.5296629667282104, 0.0152593944221735, -0.39748021960258484, 0.7089242935180664, -0.4203715920448303, 0.0057679531164467335, 0.4391913414001465, 0.02361675351858139, 0.56246018409729, 0.4539531469345093, -0.7851154804229736, -0.2881862223148346, -0.5392249822616577, -0.5597189664840698, 0.5457475185394287, -0.2489911913871765, -0.4937061071395874, -0.4306695759296417, -0.532769501209259, 0.7822083234786987, -0.12144865840673447, 0.21809181571006775, 0.7817676067352295, -0.12662293016910553, -0.3490215241909027, 0.22435885667800903, -0.8456050157546997, 0.6807823181152344, -0.25171521306037903, -0.010571136139333248, -0.140506774187088, -0.44481176137924194, 0.30818334221839905, 0.0009560015751048923, -0.1485716998577118, 0.6312813758850098, 0.5530043840408325, -0.3728276789188385, -0.24239052832126617, 0.04198415204882622, 0.45742619037628174, -0.9181643128395081, 0.6061100959777832, 0.3250972628593445, -0.58074551820755, 0.18523766100406647, -0.49784213304519653, -0.6021300554275513, -0.221217542886734, -0.39775609970092773, 0.5491582155227661, 0.051885250955820084, -0.563112735748291, 0.10804198682308197, -0.3029511868953705, -0.6402366161346436]}
{"caption id": "8", "text": "Frass allows Mulder onto the scene at Eckerle 's residence .", "embeddings": [-0.27395445108413696, -0.8474937677383423, 0.24415723979473114, 0.8140149116516113, 0.27600333094596863, -0.43955668807029724, 0.2534126937389374, -0.47948890924453735, -0.38579005002975464, -0.44946545362472534, -0.381477415561676, 0.4014616012573242, 0.1694229692220688, -0.19347505271434784, -0.6424187421798706, 0.2197510451078415, -0.7994952201843262, -0.40237292647361755, 0.5949409008026123, 0.11284777522087097, -0.48338374495506287, 0.3404138684272766, -0.04219990596175194, 0.3200589418411255, 0.4479304850101471, -0.1668468564748764, -0.278995543718338, -0.28716224431991577, 0.08198843896389008, -0.42124927043914795, 0.5796931982040405, -0.26313140988349915, 0.6227615475654602, 0.5429431796073914, -0.5706665515899658, 0.011094018816947937, 0.24222692847251892, -0.5029696226119995, -0.411455363035202, -0.08250828832387924, 0.7670971155166626, -0.16056440770626068, 0.19905883073806763, -0.43833503127098083, 0.5383551120758057, 0.3310304582118988, 0.036548808217048645, -0.41164931654930115, 0.41419193148612976, -0.3780168294906616, -0.034929029643535614, 0.10897643864154816, -0.15936987102031708, 0.25567764043807983, -0.7283728122711182, -0.12445772439241409, -0.7166484594345093, -0.45114460587501526, -0.5687878131866455, -0.14590449631214142, 0.49294543266296387, -0.8612579107284546, -0.7501564025878906, 0.3878125250339508, 0.30186811089515686, -0.3421354293823242, 0.862379789352417, 0.3289295434951782, -0.048882126808166504, 0.8435724973678589, -0.5685454607009888, 0.19635571539402008, -0.21873006224632263, 0.62321937084198, -0.4026152193546295, 0.43669968843460083, -0.8169769048690796, -0.1515638381242752, -0.2346508800983429, -0.08518247306346893, -0.7948064208030701, 0.5988737940788269, -0.0816527009010315, 0.4657011032104492, 0.4605255424976349, -0.6461346745491028, -0.16791194677352905, 0.173756405711174, 0.48448508977890015, 0.6747558116912842, -0.6656834483146667, -0.4002581238746643, 0.44842562079429626, -0.7241238355636597, -0.6549002528190613, -0.18342190980911255, -0.5912860631942749, 0.8662357330322266, 0.14779621362686157, 0.46294164657592773, -0.6550644636154175, 0.35048413276672363, -0.8286395072937012, 0.29662972688674927, 0.48637109994888306, -0.24022942781448364, -0.22741228342056274, -0.3223065137863159, -0.025878341868519783, 0.07210805267095566, 0.4936405420303345, 0.30386489629745483, 0.39370784163475037, 0.12378498911857605, 0.14909830689430237, 0.21549035608768463, -0.39757242798805237, 0.7631485462188721, 0.7126274704933167, 0.2357923537492752, -0.3750341832637787, 0.4263477027416229, -0.3691299855709076, 0.13025203347206116, 0.4087132513523102, 0.010444853454828262, 0.13647520542144775, 0.33413010835647583, -0.16634266078472137, 0.28265953063964844, 0.393543541431427, -0.6344060301780701, -0.632792592048645, -0.18519914150238037, -0.33485859632492065, -0.7891638875007629, 0.07847285270690918, 0.2426675707101822, 0.4713735282421112, 0.053316257894039154, -0.3800601661205292, -0.28009629249572754, 0.6720743775367737, -0.19825482368469238, -0.5432883501052856, -0.6943349838256836, 0.06209663674235344, -0.7137196660041809, -0.5906596779823303, 0.4109433591365814, 0.7695432305335999, -0.6661779880523682, 0.71253901720047, 0.4372813403606415, 0.11290264874696732, 0.5437191724777222, 0.0695672407746315, 0.12635914981365204, 0.015885477885603905, 0.13659240305423737, -0.5379911065101624, 0.8259736895561218, -0.28245601058006287, 0.43828269839286804, 0.5568490624427795, -0.22280672192573547, 0.23511125147342682, -0.5336949229240417, -0.638597846031189, -0.5191165208816528, -0.07930964976549149, -0.6370633840560913, 0.5271820425987244, 0.33188188076019287, -0.701389491558075, -0.8163775205612183, 0.5857336521148682, -0.34517741203308105, -0.5060274600982666, -0.11689852178096771, -0.6738424897193909, -0.3140620291233063, 0.5679516792297363, -0.4484937787055969, -0.14780734479427338, 0.24188148975372314, 0.13609212636947632, 0.1137903705239296, -0.6321069002151489, -0.07738468050956726, 0.1208033636212349, -0.4709832966327667, 0.3498126268386841, 0.09901253879070282, 0.5277569890022278, 0.45884451270103455, -0.6692406535148621, 0.557433545589447, 0.28439345955848694, 0.30946964025497437, -0.17970246076583862, -0.010580477304756641, 0.4924156069755554, -0.4821038246154785, 0.4729192852973938, -0.1587538868188858, 0.4105026423931122, 0.31619441509246826, 0.24548377096652985, -0.41278332471847534, 0.6195459365844727, -0.254596471786499, -0.35496023297309875, 0.7411656379699707, -0.2968144416809082, 0.3379092812538147, 0.07831143587827682, -0.7035336494445801, -0.027988111600279808, -0.0404990017414093, -0.7025521993637085, 0.11454051733016968, 0.36912229657173157, 0.6120592355728149, -0.000962782942224294, 0.45795881748199463, 0.17226651310920715, 0.31013500690460205, 0.6475040912628174, 0.16814206540584564, 0.01091619860380888, 0.7173373699188232, 0.42048734426498413, 0.2523368000984192, -0.7737757563591003, 0.6220437288284302, -0.013602247461676598, 0.43956196308135986, -0.14676889777183533, -0.15841089189052582, -0.7821133732795715, 0.12358320504426956, 0.19063962996006012, -0.6215367317199707, 0.6244393587112427, -0.5962768793106079, -0.7826777100563049, -0.1896970421075821, 0.017416883260011673, 0.10370618849992752, -0.5778597593307495, 0.30527210235595703, 0.27961719036102295, -0.12815271317958832, 0.5805456638336182, -0.780888020992279, 0.3326055705547333, 0.8256480693817139, -0.4021587371826172, 0.5420033931732178, 0.25686386227607727, 0.26269295811653137, -0.10593324899673462, -0.5188311338424683, -0.3638276159763336, -0.011953222565352917, 0.6327836513519287, -0.3607064485549927, 0.7373665571212769, 0.16356615722179413, -0.6605348587036133, -0.6743414402008057, -0.5096613168716431, 0.3537917733192444, 0.0680144876241684, 0.20069056749343872, -0.39429807662963867, -0.389163613319397, -0.09963870048522949, 0.11037670075893402, 0.5679075717926025, 0.19991537928581238, -0.09371184557676315, 0.45544901490211487, 0.1308860331773758, 0.7147924900054932, 0.6214230060577393, -0.12708155810832977, -0.15717409551143646, -0.16857729852199554, 0.1794673353433609, -0.16782329976558685, 0.23571015894412994, -0.06443115323781967, 0.8420873880386353, -0.4897439777851105, -0.03356318920850754, -0.7837139368057251, -0.12760470807552338, -0.7792525291442871, -0.8731789588928223, 0.1982709765434265, -0.02251182310283184, 0.07110485434532166, -0.3245532214641571, -0.44278571009635925, -0.44674766063690186, -0.2058824598789215, 0.12709705531597137, 0.2045186161994934, 0.030048122629523277, 0.6291338205337524, 0.477399080991745, 0.36134061217308044, 0.46628254652023315, 0.7411997318267822, -0.5989125967025757, -0.11078917235136032, -0.08723676204681396, 0.04339700564742088, -0.7170029282569885, 0.19246087968349457, -0.2862389087677002, 0.1886363923549652, 0.09827273339033127, 0.32529574632644653, 0.2682201862335205, -0.7204676866531372, -0.3869604170322418, 0.1385834664106369, 0.712809681892395, -0.5126209259033203, -0.23195289075374603, -0.5795148611068726, -0.25152018666267395, 0.08766943961381912, -0.8776459097862244, -0.228369802236557, 0.3291850686073303, -0.25415244698524475, 0.774427592754364, 0.6775262951850891, -0.671303391456604, -0.5630265474319458, 0.22654731571674347, 0.5919212102890015, -0.3004610240459442, -0.3732895255088806, -0.8224903345108032, 0.23385564982891083, -0.34399959444999695, -0.012110558338463306, 0.09352800995111465, 0.1080881729722023, 0.6734693646430969, -0.4096865653991699, 0.3159838318824768, -0.3775007426738739, -0.43762728571891785, 0.16601385176181793, -0.1432287096977234, 0.3808538317680359, -0.8265736103057861, -0.6239433288574219, -0.506657063961029, 0.7333539724349976, -0.19970859587192535, -0.02905493602156639, 0.6899073123931885, 0.2753470838069916, 0.8310204744338989, -0.4853285253047943, 0.15797440707683563, -0.7238125801086426, 0.35085779428482056, 0.3171926438808441, -0.38311269879341125, -0.16452430188655853, -0.6225749254226685, 0.11722555011510849, -0.39124569296836853, -0.06746812909841537, 0.6189906597137451, 0.34681543707847595, 0.3558749556541443, 0.10198190063238144, 0.7317248582839966, -0.556462287902832, -0.4547172784805298, 0.19084139168262482, 0.4731023609638214, 0.6042524576187134, -0.341653048992157, -0.1409933716058731, -0.011198068037629128, -0.775331974029541, -0.04165838658809662, -0.011163140647113323, 0.6585958003997803, -0.9163058400154114, -0.14714960753917694, -0.3576444983482361, 0.2584114670753479, 0.6228195428848267, -0.7396954298019409, -0.35940808057785034, 0.025055786594748497, -0.1916329264640808, 0.6908214092254639, 0.11237120628356934, -0.9154932498931885, 0.09443685412406921, 0.4049079120159149, 0.47309809923171997, 0.35346484184265137, -0.09390046447515488, -0.6245666146278381, 0.7169806361198425, -0.2216392308473587, -0.78326815366745, 0.570235013961792, -0.6866756677627563, -0.06003158539533615, -0.3812943994998932, 0.466853529214859, -0.16693498194217682, 0.7020002603530884, -0.08758842200040817, -0.27601054310798645, 0.2503146827220917, -0.26336827874183655, -0.10745833069086075, -0.4522607624530792, -0.7519764304161072, 0.41455164551734924, 0.31142571568489075, -0.43896639347076416, -0.023856017738580704, -0.33265531063079834, 0.28814399242401123, 0.5846012830734253, 0.006234768312424421, -0.1754382699728012, -0.3347950577735901, 0.8361942768096924, -0.2512536644935608, 0.06783150136470795, 0.10544885694980621, 0.448946088552475, 0.5108175873756409, -0.5841884016990662, 0.057384490966796875, 0.4860004782676697, 0.40411341190338135, 0.035179875791072845, -0.18441122770309448, 0.11698424816131592, 0.4030693769454956, 0.7169731259346008, 0.49766144156455994, 0.8816490769386292, -0.021283665671944618, -0.3021719455718994, -0.5192533731460571, -0.047527723014354706, 0.6730871200561523, 0.8195021152496338, 0.4439157247543335, -0.20210516452789307, 0.6148069500923157, 0.7645969390869141, 0.36789995431900024, 0.5118379592895508, 0.2300168126821518, -0.1765054613351822, 0.4176400899887085, -0.168951153755188, -0.18699218332767487, 0.9117536544799805, 0.35044917464256287, 0.4345523416996002, -0.24629756808280945, 0.10884733498096466, -0.5107697248458862, -0.21509796380996704, 0.8517659306526184, -0.0324912928044796, -0.5952072739601135, -0.2681189477443695, -0.1638288050889969, -0.10315730422735214, 0.5287069082260132, -0.6596723794937134, -0.2521679997444153, 0.8720197677612305, 0.08831633627414703, -0.17119410634040833, 0.29413819313049316, -0.11840064823627472, -0.5484590530395508, 0.34251901507377625, 0.1425057351589203, -0.5221948623657227, -0.3152352571487427, 0.06096843630075455, 0.1398233324289322, 0.18623052537441254, 0.6215081214904785, 0.266876757144928, -0.6459943056106567, 0.5246107578277588, -0.5669364929199219, 0.3790709972381592, -0.6124476194381714, 0.19034595787525177, 0.33248186111450195, -0.1331021934747696, 0.6838521957397461, 0.929897665977478, -0.01929391548037529, 0.3667636215686798, 0.835334062576294, -0.19751733541488647, -0.12262898683547974, -0.40035903453826904, 0.19596560299396515, -0.1122252494096756, -0.17848239839076996, -0.1562306433916092, 0.7838877439498901, 0.4273776412010193, 0.4512767195701599, -0.13157878816127777, 0.10380059480667114, -0.8044700026512146, 0.07494281977415085, -0.21008531749248505, 0.14329209923744202, -0.06854740530252457, -0.058282654732465744, 0.18588261306285858, -0.4869832694530487, 0.30692291259765625, -0.23425161838531494, 0.8634324073791504, 0.3842368721961975, 0.47599610686302185, -0.09098535031080246, 0.3386216163635254, -0.012222767807543278, 0.8888031244277954, 0.32723286747932434, 0.2703842222690582, 0.6180675029754639, -0.17931999266147614, -0.21005745232105255, 0.5690140128135681, -0.33972689509391785, 0.7884418368339539, 0.2472732961177826, 0.23769468069076538, 0.4286858141422272, -0.560564398765564, 0.04822048917412758, -0.45392709970474243, -0.08329253643751144, -0.6094985604286194, -0.10703659057617188, -0.6309229135513306, -0.05598660558462143, -0.8176360130310059, 0.05836211144924164, -0.19663693010807037, -0.6187834143638611, 0.03479325398802757, 0.0014163024025037885, -0.8041521310806274, 0.17371301352977753, 0.14776909351348877, -0.43177464604377747, -0.49681806564331055, 0.5122298002243042, 0.5341856479644775, 0.20939816534519196, 0.22137218713760376, 0.3207437992095947, -0.3571642339229584, 0.3698474168777466, -0.010895316489040852, 0.5592612028121948, -0.48710310459136963, -0.9334683418273926, 0.3194271922111511, -0.6313304901123047, -0.4101063013076782, 0.9215763807296753, 0.6511424779891968, -0.8154866695404053, 0.7889254093170166, -0.40367579460144043, 0.30546826124191284, -0.05854438617825508, -0.03997500613331795, 0.33449384570121765, 0.12366659194231033, 0.00895137432962656, 0.3306317925453186, 0.11067907512187958, 0.3785637319087982, -0.4630005657672882, -0.49045732617378235, 0.17586658895015717, 0.21558526158332825, -0.6349530220031738, 0.18698114156723022, 0.25743380188941956, -0.19232675433158875, 0.11409899592399597, -0.042844951152801514, 0.03658706694841385, -0.16502262651920319, 0.0943940207362175, 0.05391555279493332, 0.04511575400829315, -0.5637962818145752, 0.10049088299274445, 0.06401080638170242, -0.1827019900083542, -0.30473461747169495, 0.3658186197280884, 0.5647309422492981, 0.24354277551174164, 0.42245033383369446, -0.3891836106777191, 0.5644150972366333, -0.5362309217453003, -0.6053788661956787, -0.41922158002853394, -0.553189754486084, -0.1349271833896637, -0.06767507642507553, -0.36796122789382935, -0.3279881477355957, 0.35277265310287476, -0.3997853696346283, 0.015373528003692627, -0.6899880170822144, -0.5579765439033508, -0.40024295449256897, 0.5912607908248901, 0.562036395072937, -0.7038917541503906, -0.4554615616798401, -0.004682330414652824, -0.5667886137962341, 0.5264950394630432, -0.2598244249820709, -0.013769129291176796, 0.38978904485702515, -0.6542259454727173, 0.6384258270263672, -0.6649908423423767, -0.052390024065971375, 0.6093224883079529, -0.49409210681915283, -0.13572807610034943, -0.6292551159858704, 0.016308065503835678, -0.8529024124145508, -0.3413630723953247, -0.23306876420974731, 0.10450541228055954, -0.7002626657485962, -0.37675750255584717, -0.6111804246902466, -0.018487922847270966, 0.5648759603500366, 0.42801544070243835, 0.7653666138648987, -0.8092074394226074, -0.8167722225189209, 0.17480143904685974, 0.286846786737442, 0.0802369937300682, -0.6894357800483704, 0.38373270630836487, 0.12514114379882812, -0.6426430940628052, 0.1944090723991394, 0.8048570156097412, -0.48156657814979553, 0.16226667165756226, 0.002226251410320401, -0.7660318613052368, -0.7318183183670044, -0.545467734336853, -0.48518121242523193, -0.4454798400402069, -0.2976733148097992, -0.5909534692764282, -0.47646352648735046, -0.6021806597709656, 0.27239367365837097, 0.12035303562879562, 0.30008745193481445, 0.45823442935943604, -0.6371362805366516, 0.25771957635879517, -0.3546096980571747, 0.26193782687187195, -0.36782893538475037, -0.3259669244289398, 0.62663733959198, -0.29806753993034363, -0.6284462213516235, 0.8028507232666016, 0.5255473852157593, 0.6830559372901917, -0.303924024105072, -0.22996167838573456, -0.34616610407829285, -0.44676458835601807, 0.4052142798900604, -0.23441699147224426, 0.1503271460533142, 0.3449697494506836, 0.42864447832107544, 0.6958147883415222, 0.509994387626648, -0.2763444185256958, -0.2536621689796448, 0.5199221968650818, -0.2850387990474701, -0.8597738146781921, 0.6625683307647705, 0.4880223274230957, 0.12326662987470627, 0.8090024590492249, 0.26741859316825867, -0.2784552574157715, 0.7365257740020752, -0.42977839708328247, 0.3815735876560211, 0.21291860938072205, 0.744283139705658, 0.24186325073242188, -0.5889407396316528, -0.8522387742996216, -0.7254927158355713, -0.08260799944400787, -0.48674413561820984, -0.5823487043380737, -0.42228010296821594, -0.6058377623558044, -0.8724749088287354, -0.3079211711883545, -0.8091265559196472, -0.2104470431804657, -0.021173205226659775, 0.3452732264995575, 0.4003444015979767, 0.09518787264823914, -0.3131629526615143, -0.45035046339035034, -0.7157009840011597, -0.1256754845380783, -0.8332405686378479, 0.25016164779663086, 0.3156803846359253, 0.1749291867017746, -0.5233468413352966, 0.19888170063495636, -0.21682432293891907, -0.6849880814552307, -0.5849738121032715, -0.32509976625442505, 0.17720723152160645, 0.2855517864227295, 0.5061371922492981, -0.4264339208602905, 0.27019813656806946, -0.2800140678882599, -0.45289376378059387, -0.26448681950569153, -0.2828417718410492, -0.46477752923965454, -0.688302755355835, 0.36477506160736084, -0.22614075243473053, -0.7897577285766602, -0.004221138544380665, -0.5001335144042969, -0.7776129245758057, -0.49794071912765503, 0.6048579216003418, 0.047632843255996704, -0.4658672511577606, -0.22283843159675598, -0.2604719400405884, 0.3351499140262604, 0.32477813959121704, 0.658226490020752, -0.48861512541770935, -0.4842626452445984, -0.03228405863046646, 0.39038002490997314, 0.5302914381027222, -0.42078065872192383, 0.8552731275558472, 0.5139004588127136, -0.1789211481809616, -0.10193413496017456, 0.002304589143022895, -0.5895794630050659, -0.5595421195030212, -0.5701415538787842, 0.0075827292166650295, 0.18810610473155975, 0.6527618765830994, 0.5285686254501343, -0.6941537261009216, -0.3739168643951416, -0.07604381442070007, -0.015383643098175526, 0.10122836381196976, -0.5471632480621338, 0.011594894342124462, 0.5807415246963501, -0.4385269284248352, -0.19659651815891266, 0.6268770098686218, -0.4618472456932068, -0.34586602449417114, 0.1309044063091278, 0.43317559361457825, 0.31366562843322754, 0.38613176345825195, -0.24009601771831512, -0.07299696654081345, 0.6205003261566162, 0.10940100252628326, -0.4243142306804657, 0.831500768661499, 0.28370529413223267, 0.1761084347963333, -0.13360057771205902, -0.7986047267913818, -0.20668955147266388, 0.30181440711021423, -0.03206491842865944, -0.7319869995117188, -0.9442212581634521, 0.4242115914821625, -0.8796340227127075, -0.08462553471326828, -0.2815966308116913, 0.0574495829641819, -0.43861904740333557, 0.6134825348854065, -0.5919629335403442, -0.12188847362995148, -0.3665764629840851, 0.47291359305381775, 0.8014475107192993, -0.17947641015052795, -0.43399983644485474, -0.10381390899419785, -0.2611721456050873, 0.5665209889411926, -0.5023614764213562, 0.47506579756736755, 0.001658709137700498, -0.2900528609752655, -0.32623744010925293, -0.15507051348686218, -0.11980973929166794, -0.2614724040031433, -0.32526257634162903, 0.2003706842660904, 0.48748672008514404, -0.46005940437316895, -0.8216143250465393, 0.295105516910553, -0.559411883354187, 0.29297560453414917, -0.0972914770245552, 0.4807613492012024, -0.18884576857089996, 0.1114179790019989, 0.3273605406284332, -0.3327263593673706, 0.3053106367588043, 0.39458465576171875, -0.07189299911260605, 0.683072566986084, -0.7924848794937134, 0.1415604203939438, 0.6712000370025635, 0.2617090344429016, 0.4071730077266693, 0.21319794654846191, -0.6772722005844116, -0.08455662429332733, 0.45998498797416687, 0.796055257320404, -0.2568039000034332, 0.1749885231256485, -0.23376287519931793, 0.2966602146625519, 0.19244304299354553, -0.02674943208694458, 0.9173716902732849, 0.17256811261177063, 0.3784054219722748, 0.1982991099357605, 0.3192937970161438, -0.45215141773223877, 0.11041934043169022, 0.3924868702888489, -0.3737735450267792, -0.8389220833778381, 0.6553915739059448, -0.26603981852531433, 0.23903332650661469, 0.35543394088745117, -0.6368945837020874, -0.01600005105137825, -0.004804285243153572, 0.5230616331100464, -0.2921399772167206, -0.17417708039283752, 0.5942974090576172, -0.4701472520828247, -0.3935104310512543, -0.35176536440849304, -0.08329516649246216, 0.33165454864501953, -0.734245777130127, 0.3876810371875763, 0.2062753438949585, 0.2040766328573227, -0.2587915360927582, 0.892292857170105, -0.09049128741025925, -0.09969450533390045, -0.42227768898010254, -0.6998357772827148, -0.4120450019836426, 0.6486552953720093, -0.6327224969863892, 0.3133518695831299, -0.2582111060619354, -0.2776333689689636, -0.7560086846351624, 0.4417978823184967, -0.404231995344162, 0.3575277626514435, -0.11996275931596756, -0.3452020287513733, 0.566352367401123, -0.4853822588920593, -0.16123764216899872, -0.4710839092731476, -0.18472081422805786, -0.1055799275636673, 0.5618962049484253, -0.16658830642700195, -0.5575001835823059, -0.5191410183906555, 0.44025519490242004, -0.42469003796577454, 0.02503175474703312, -0.01592053472995758, -0.2468833476305008, -0.2666538953781128, -0.41963785886764526, 0.5193822979927063, -0.3778004050254822, -0.9032139778137207, -0.508167028427124, 0.24135857820510864, -0.4954284131526947, 0.17086577415466309, -0.6839520931243896, 0.12153273820877075, 0.03914526477456093, -0.30285701155662537, -0.03280662000179291, 0.6487219333648682, -0.7769480347633362, 0.3460932672023773, -0.015735261142253876, -0.6707831621170044, -0.13653354346752167, 0.4940962791442871, 0.4213501214981079, 0.3981863558292389, 0.019356457516551018, -0.4261016547679901, 0.8398687839508057, 0.26324763894081116, -0.3743884861469269, -0.37145593762397766, -0.4467971622943878, -0.5323385000228882, -0.3190193176269531, -0.23385301232337952, 0.30409520864486694, -0.1352936327457428, 0.5024680495262146, -0.34833285212516785, 0.3672267496585846, -0.5783188939094543, 0.03449847549200058, -0.22578279674053192, -0.862809419631958, 0.08663906157016754, -0.30450621247291565, 0.2998323142528534, 0.537281334400177, -0.25264042615890503, 0.5790905952453613, -0.07153540849685669, -0.12217483669519424]}
{"text": "23 September 2016 Last updated at 14:12 BST\nThis was the third night of protests in the city, and the second with the National Guard on the streets, following the killing of Keith Lamont Scott on Tuesday.", "target": "Demonstrators and police have hugged and shaken hands with members of the National Guard during a night of protest in Charlotte, North Carolina.", "evaluation_predictions": [101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101]}
{"text": "The Met Office warning came as it said the weather had led to widespread ice on roads across Scotland.\nTwo police officers were taken to hospital after they were hit by a car while dealing with a road crash in icy conditions on the A77 near Kilmarnock.\nAlex Salmond thanked emergency staff and other workers for keeping the country running over Christmas.\nThe government's resilience committee is reviewing the latest information on weather-related problems.\nThe Met Office said rain and sleet showers had caused ice to form on roads across the Highlands and central Scotland.\nNorthern Constabulary said all Highland trunk roads were open, but the force warned the freezing temperatures overnight meant a \"significant risk\" of black ice.\nIn the first minister's Christmas message, Mr Salmond paid tribute to all those who have helped keep Scotland going during the \"extraordinary\" winter weather.\n\"In these extraordinary circumstances, I want to break with tradition to pay a personal tribute to those who keep Scotland moving, working and smiling,\" he said.\nBBC Travel online updates\nScotland-wide travel updates\nNational rail enquiries\nBBC weather updates\nMet Office weather warnings\nTraveline Scotland\nAdvice on protecting pipes\n\"The white-out began in late November and has more or less continued since then, making this month the coldest since records began in 1910.\n\"Coping with the weather has been one of Scotland's toughest challenges of recent times.\"\nThe male and female police officers were taken to Crosshouse Hospital in Kilmarnock.\nThe woman is believed to have had a broken arm and ankle, and her colleague received minor injuries.\nIt is not known if ice contributed to the collision, and a Strathclyde Police spokesman said: \"Inquiries are ongoing in respect of this.\"\nOn the railways, ScotRail urged train passengers to check services before travelling in the days ahead. It said it was constantly reviewing timetables and, where possible, it would run normal services.\nThere will be no rail services on Christmas Day and a limited Strathclyde service on Boxing Day. Latest updates will appear on the journey check website.\nSteve Montgomery, managing director of ScotRail, told BBC Scotland work was carrying on to keep trains free of ice and snow.\nHe said: \"Although it's not been snowing in the central belt, we've still seen quite significant snow in the Aberdeen and Inverness areas and trains are picking up a lot of snow, so we've still got to bring the trains back into the central belt and de-ice them.\n\"That's making a lot of work for over the weekend and we'll hopefully get most units sorted out for next Monday.\"", "target": "Drivers are being urged to take extra care, as sub-zero temperatures stretched into the Christmas weekend.", "evaluation_predictions": [101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101]}
{"text": "SNP leader Nicola Sturgeon said voters had \"48 hours to get the Tories out\".\nFormer Labour leader Gordon Brown, who was campaigning with Scottish Labour leader Jim Murphy, said the SNP stood for \"divide and rule\".\nThe Lib Dems said voters should stick with them and the Scottish Tories said a vote for them was a vote for the UK.\nDuring a visit to a nursery in Livingston, West Lothian, Ms Sturgeon criticised Prime Minister David Cameron who had warned the public they risked \"five long years\" of a minority Labour government reliant on \"bribes\" to smaller parties like the SNP.\nShe hit back saying: \"[There are] 48 hours to get the Tories out, to get an alternative to austerity and to make Scotland's voice heard.\n\"The fact of the matter is, if there's an anti-Tory majority on Friday morning, I want to see that anti-Tory majority come together to get the Tories out, but then make sure that it's replaced with something better.\nMs Sturgeon added: \"The SNP will be a positive, constructive and progressive force in the House of Commons but will stand up very firmly for the things we believe really matter.\"\nIn Glasgow, Mr Brown urged voters to reject the SNP and join what he called Labour's fight to reach the \"the mountaintop of social justice\".\nAnd he warned that the election was \"not just about the future of the UK but about the very existence of the UK\".\nIn an impassioned address, he said: \"While the SNP will talk only about deals and pacts and coalitions and bargains and hung parliaments, we will talk day after day, hour after hour, in this late stage of the campaign about only one thing - to end poverty, to end unemployment, to end injustice.\n\"Within days and hours of getting into government, Jim Murphy could be providing money for our foodbanks and we could be ending foodbank poverty. Delivered under a Labour government, with Labour MPs - undeliverable under a Conservative government, even with 59 SNP MPs.\n\"And within weeks, we could be providing the resources that the health service needs: 500 doctors, 1,000 more nurses - deliverable under a Labour government with Labour MPs - undeliverable under a Conservative government with 59 SNP MPs.\"\nScottish Liberal Democrat leader Willie Rennie said he wanted his party to continue to have influence on government at Westminster.\nHe said: \"Liberal Democrats have been at the heart of government over the last five years with 11 members of parliament in Scotland - many at the cabinet table giving a really powerful voice.\n\"Danny Alexander, right at the heart of the government, making it tick - delivering tax cuts, pension rise childcare expansion.\n\"I want that to continue, because Liberal Democrats can hold others back when they travel too fast.\"\nWhile on a visit to Aviemore, Scottish Conservative leader Ruth Davidson discussed the possible deals that could be done between parties after polls close and votes are counted.\nShe said: \"We have said from the very start that each and every MP elected across all parts of these islands has the same rights and voting as everybody else. But it is up to individual political parties who they do a deal with.\n\"The Scottish Conservatives will not do deals with any nationalist parties in Scotland, Wales or Northern Ireland who want to break up our United Kingdom.\n\"Each vote for the Scottish Conservatives is a vote to keep the UK intact.\"", "target": "With just two days until the polling stations open, all the Scottish party leaders are warning of the risks of backing their opponents.", "evaluation_predictions": [101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101]}
{"text": "The Commons opposed proposals to allow councils to extend opening hours by 317 votes to 286, as 27 Tories rebelled.\nMinisters had sought to limit the rebellion by promising to trial the changes in 12 areas but said afterwards they would respect MPs' views.\nCritics of the plans said they would \"chip away\" at Sunday's special status and put undue pressure on workers.\nIt is the Conservative government's second defeat in the House of Commons since it was elected last May.\nThe government had hoped to relax existing restrictions on Sunday trading, which limit large shops to opening for a maximum of six hours, by devolving responsibility to local councils. But their plans were thwarted by an unlikely alliance of Labour, the SNP and Conservative backbenchers.\nList of Conservative MPs who voted against the government\nBefore the vote, ministers indicated they would seek to amend their proposals in the House of Lords if MPs approved them in principle. But while blaming the SNP for the defeat, ministers conceded afterwards the plans would not be resurrected.\n\"We respect the view of the House of Parliament. The Commons has spoken and given a very clear view - we have to absolutely respect that,\" said the planning minister Brandon Lewis.\nIn the biggest proposed shake-up for 20 years, ministers wanted to give the 353 councils in England and 22 in Wales the freedom to determine opening hours for large shops in their area.\nDuring a three-hour debate, a succession of Conservative MPs spoke out against the changes - first announced by Mr Osborne in last year's Budget - and the way they were being introduced.\nAnalysis by the BBC's political editor Laura Kuenssberg\nThe reason the government lost by such a margin was not just because of staunch opposition from the Labour Party with its 'Keep Sunday Special' campaign, or the principled opposition from many Tory MPs who believe fervently that Sundays are indeed special and should be protected.\nThe government also lost because the SNP objected to their plans, even though in Scotland shops have opened for longer on Sundays for many years.\nIt is an embarrassing defeat for the government and particularly George Osborne, who must deliver the Budget a week today. But the SNP's involvement could have a longer term impact. Read more from Laura\nSir Gerald Howarth said the late offer of concessions had been \"shambolic\" and looked like they had been \"delivered by lastminute.com\" while Stewart Jackson said the \"dead hand\" of the Treasury was responsible for an \"egregious and unnecessary confrontation\" with Tory backbenchers.\nConservative MP David Burrowes, who tabled the successful rebel amendment, said the government had not made the economic case for such sweeping changes, which he said were opposed by businesses of all sizes, shop workers and faith groups.\nSpeaking after the vote, he told BBC News of his \"relief\", adding: \"The main thing out there is relief for shop workers, families and businesses who will really be pleased today.\"\nLabour said the government's approach had been \"tawdry\" and the House of Commons had spoken clearly on the \"contentious issue\".\nThe Federation of Small Businesses said the outcome was a \"major win\" for its members.\n\"Our members have been unconvinced of the economic case for relaxing Sunday trading rules and there has been no impact assessment to support the proposals,\" said the group's policy director, Mike Cherry.\n\"The current system can be seen as a great British compromise which allows families to spend time together, employees to work if they wish to, and provides much needed support for smaller retailers within their communities.\"\nThe proposed changes were not covered by new English Votes for English Laws provisions, which require the explicit consent of English and Welsh MPs for measures exclusively affecting them, because other parts of the Enterprise Bill apply to Scotland.", "target": "Plans to overhaul Sunday trading laws in England and Wales have been dropped after they were rejected by MPs.", "evaluation_predictions": [101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101]}
{"text": "The unnamed man was stopped at Turin Airport wearing a pilot's uniform and using forged ID cards, police said.\nHe was charged with endangering air transport security and impersonation.\nThe suspect led police to a garage containing neatly pressed white shirts with epaulets, black trousers and jackets, like those worn by pilots.\nNo motive for the man's actions was reported immediately.\nPolice have established he sat as \"third pilot\" in the cockpit of an Air Dolomiti plane which flew from Munich to Turin in April. He did not touch the controls, however.\nAir Dolomiti is part of the German airline Lufthansa, which gave no details when approached by the Associated Press news agency but insisted he could not have boarded the plane without a ticket.\nInvestigators are now trying to establish if the man flew on other planes.\nPolice had long been investigating the suspect, who had allegedly created a fake identity as a Lufthansa pilot named Andrea Sirlo, complete with a Facebook page which included fake flight attendant friends.\nThey said they had been alerted several months ago after he introduced himself as a captain to a civil aviation lieutenant, who became suspicious because he seemed too young for the job.\nPolice tracked him down from photos on his Facebook profile, in which he is apparently shown posing in uniform and sunglasses in front of planes.\nOfficers approached him in a bar outside Turin Airport's check-in area, dressed in a pilot's uniform with no company logo on it, and sipping coffee.\nIn the garage, officers also found fake IDs and fake flight theory manuals, the Italian news agency Ansa reports.\n\"On at least one occasion in 2012, pretending to be a pilot of a foreign commercial airline, and with a fake name, he succeeded in flying as the third pilot in the cockpit,\" police said in a statement.\nAccording to Ansa, a flight took place on 6 April.\nIn addition, a profile on a website where users can track their flights also shows a \"Pilot Andrea Sirlo\" flying from Munich Airport to Turin on 23 October last year.\nThe case has echoes of the 2002 Hollywood film Catch Me If You Can, in which Leonardo Di Caprio played Frank Abagnale, a real-life con-man who flew as a fake Pan American pilot in the 1960s.\nSirlo is the name of a flight corridor over Turin.", "target": "Police in Italy have arrested a jobless man who posed as an airline pilot, tricking his way into riding in the cockpit of at least one jet.", "evaluation_predictions": [101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101]}
{"text": "Richard Davies, 41, died of a single gunshot wound to the chest after firing at officers in St Neots, Cambridgeshire, in October 2015.\nHis widow Samantha said she had a text from her child saying they were tied up and begging her to \"call the police\".\nMr Davies was shot after firing a gun from the house. The inquest continues.\nThe father of three said he \"wanted to end his life\" after learning his marriage was over, the hearing in Peterborough was told earlier this week.\nMore news from Cambridgeshire\nGiving evidence at the hearing, Mrs Davies said she had initially believed her husband had \"some acceptance\" about the end of their relationship and said \"there wasn't an ounce of anger\" during their conversation earlier that day.\nHowever, he had made several trips to a nearby shop to buy alcohol and had been carrying a knife, the inquest heard.\nMrs Davies went to visit her sister and when her children returned to the family home their father tied them up.\nThe inquest then heard how the children managed to make 999 calls and alert their mother.\nShe received a text that read: \"Call the police. Get them to come to our house. Dad's going to kill himself. He's tied us up. I'm not joking.\"\nWhen Mrs Davies arrived, one child had managed to escape.\nShe said when Mr Davies came to the door \"he didn't really look like my husband\".\nHe returned a short time later with a knife pointed at his chest, she told the hearing.\nHer other children managed to escape and Mrs Davies was taken to a neighbour's house.\nMr Davies was shot dead by a police marksman after firing six shots from the house, the inquest heard.\nMrs Davies said she had never seen his home-made gun or ammunition before, and her family was \"forever changed\" by what happened.\nThe inquest continues.", "target": "The widow of a man shot dead by police has told an inquest of a desperate text sent by one of their children saying \"dad's going to kill himself\".", "evaluation_predictions": [101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101]}
{"text": "The black and white story sees Patrick Troughton's second Doctor battle robot yeti in the London Underground.\nAlso recovered is a complete version of Troughton's six-part story The Enemy of the World.\nIt is thought to be the largest haul of missing episodes recovered in the last three decades.\n\"It's thrilling,\" said Mark Gatiss, an actor and writer for the 21st Century incarnation of Doctor Who.\n\"Every single avenue seemed to have been exhausted, every now and then something turns up - but to have two virtually complete stories out of the blue is absolutely incredible.\"\nThe BBC destroyed many of the sci-fi drama's original transmission tapes in the 1960s and 1970s.\nHowever, many episodes were transferred on to film for sale to foreign broadcasters. It is often these prints found in other countries that are the source of retrieved episodes.\nIn this case, 11 Doctor Who episodes were discovered, nine of which were missing, in the Nigerian city of Jos.\nThe find was made by Philip Morris, director of a company called Television International Enterprises Archive.\nMr Morris said: \"The tapes had been left gathering dust in a storeroom at a television relay station in Nigeria. I remember wiping the dust off the masking tape on the canisters and my heart missed a beat as I saw the words, Doctor Who. When I read the story code I realised I'd found something pretty special.\"\nHe said it had been a \"lucky\" find given the high temperatures in the African country. \"Fortunately they had been kept in the optimum condition.\"\nOnly episode three of The Enemy of the World already existed in the BBC archive. The Nigerian discovery of episodes one, two, four, five and six complete the story.\nEpisode one of fan favourite The Web of Fear existed, with the rest thought lost forever. Now episodes two, four, five and six have been recovered.\nEpisode three is still missing, but has been reconstructed from stills to enable restored versions of both stories to be made available for sale via download on Friday.\nThe latest find means that the number of missing episodes of Doctor Who has dropped from 106 to 97.\nOne episode from each story - both last seen in 1968 - were shown at a special event in London on Thursday by BBC Worldwide, the BBC's commercial arm.\nAmong the guests were actors Frazer Hines and Deborah Watling, who played Troughton's Tardis companions Jamie McCrimmon and Victoria Waterfield.\nEpisode one of The Enemy of the World is a James Bond-style thriller complete with an exploding helicopter, a hovercraft, gun-toting henchmen and a foreign-accented villain, Salamander (also played by Troughton).\nThe story opens with the Tardis arriving on an Australian beach where the Doctor strips to his long johns and goes for a dip in the sea.\nThe Web of Fear is a claustrophobic tale that sees the Doctor battle his old foe, the Great Intelligence, and the yeti in the tunnels of the London tube system.\n\"It's the quintessential Doctor Who story,\" said Gatiss. \"It has the return of the Abominable Snowmen in an iconic location.\"\nHe said it showed Troughton \"at the height of his powers\".\nFrazer Hines recalled that the underground station sets had been so realistic that London Transport accused the BBC of filming at a tube station in secret.\nThe story also featured an appearance by Deborah Watling's real-life father Jack, reprising his role as Professor Travers.\nRecalling Troughton's \"wonderful sense of humour\" on set, Watling said: \"We all got on so well, we were like a family and Pat was always to me like another dad or an uncle. We had a chemistry and I think it showed.\"\nHow did she feel when she heard about the recovery of the lost episodes? \"I couldn't quite believe it. There had been hoaxes before. I thought it was just another hoax.\"\nHer only other complete story in the archive had been The Tomb of the Cybermen, all four instalments of which were discovered in Hong Kong in 1991.\nHines said: \"This now gives me hope that more stories of Patrick's will come out of the woodwork.\"\nThe latest find comes as Doctor Who celebrates its 50th birthday. A special episode featuring the current Doctor, Matt Smith, and his predecessor, David Tennant, will be shown on the programme's anniversary on 23 November.", "target": "Nine missing episodes of 1960s Doctor Who have been found at a TV station in Nigeria, including most of the classic story The Web of Fear.", "evaluation_predictions": [101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101, 101]}
{"feat_id": "13716782", "text": "Kelly: Oh! Oh! Can I pick the first question?\r\nJessica: Sure. Go for it!\r\nKelly: What's the scariest place you've been to!\r\nJessica: I'll start: Palermo in Italy.\r\nMickey: And what's so scary about that? Did you break your nail? :P\r\nJessica: Shut it, Mickey! No, there are the Capuchin Catacombs with 8000 corpses! \r\nKelly: Ewwww! Corpses? Rly?\r\nJessica: Yeah! And you can look at them like museum exhibits. I think they're divided somehow, but have no clue how!\r\nOllie: That's so cool! Do you get to see the bones or are they covered up?\r\nJessica: Well, partly. Most of them were exhibited in their clothes. Basically only skulls and hands. \r\nMickey: I'm writing this one down! That's so precious!\r\nOllie: Me too!", "target": "The scariest place for Jessica was the Capuchin Catacombs in Palermo.", "evaluation_predictions": [0, 16908, 65, 118, 12, 4826, 49, 51, 32, 16, 5308, 5, 290, 33, 4000, 2295, 77, 3431, 9, 9763, 7, 28, 3, 25129, 7527, 15, 7, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
{"feat_id": "13716592", "text": "Carrie: Just back from Fantastic Beast :)\r\nGina: and what do you think?\r\nCarrie: generally good - as usual nice special effect and visuals, an ok plot, a glimpse of the wizarding community in the US.\r\nAlex: Sounds cool. I was thinking of going this weekend with Lane, but I've seen some bad reviews.\r\nCarrie: Depends on what you expect really - I have a lot of sentiment towards Harry Potter so, I'm gonna like everything the do. But seriously the movie was decent. However, if you're expecting to have your mind blown, then no, it's not THAT good.\r\nGina: I agree. I saw it last week and basically I'm satisfied.\r\nAlex: No spoilers, girls.\r\nCarrie: no worries ;)\r\nCarrie: And Gina, what do you think about Eddie Redmayne as Newt?\r\nGina: I loved him <3 I loved how introverted and awkward he was and how caring he was towards the animals. And with all that he showed a lot of confidence in his beliefs and was a genuinely compassionate character\r\nCarrie: not your standard protagonist, that's for sure\r\nGina: and that's what I liked about him\r\nAlex: Maybe I'll go and see it sooner so we can all talk about it.\r\nCarrie: go see it. If' you're not expecting god-knows-what you're going to enjoy it ;)", "target": "Carrie and Gina saw \"Fantastic Beast\" and liked it. Ginna loved Eddie Redmayne as Newt. ", "evaluation_predictions": [0, 1184, 1753, 11, 5104, 33, 352, 12, 217, 96, 371, 288, 10057, 26695, 121, 48, 1851, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
{"feat_id": "13728528", "text": "Samantha: How are you doing today?\r\nRobyn: better, but I really exaggerated with bier last night\r\nSamantha: was it really only bier?\r\nRobyn: sure, why?\r\nSamantha: I don't know, your eyes, behaviour\r\nRobyn: you want to say I took drugs?\r\nSamantha: I'm only asking, I don't have anything against drugs\r\nRobyn: but I have and I never take them\r\nSamantha: ok, sorry, I didn't intend to offend you\r\nRobyn: I just drank too much, that's eat\r\nSamantha: much too much\r\nRobyn: yes, I lost control a bit\r\nRobyn: I am sorry for that\r\nSamantha: important that you feel better today", "target": "Robyn drank too much beer last night and lost control. She is feeling better today.", "evaluation_predictions": [0, 5376, 63, 29, 1215, 9, 6938, 920, 28, 2647, 49, 336, 706, 5, 451, 3, 26, 6254, 396, 231, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
{"feat_id": "13813429", "text": "Peyton: I have been asking you to bring that video game for me\r\nCameron: Honey, I am not having enough time to come home\r\nPeyton: When would you come home?\r\nCameron: I will have to stay out of town for another week i guess\r\nPeyton: Cant you just deliver that game through the courier? :P\r\nCameron: Dont be mean :/\r\nPeyton: Get the job done and come to home then. ASAP :P", "target": "Peyton is expecting Cameron to bring the video game. Cameron will probably be out for another week.", "evaluation_predictions": [0, 18501, 56, 43, 12, 1049, 91, 13, 1511, 21, 430, 471, 5, 216, 56, 2156, 8, 671, 467, 190, 8, 27961, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
{"feat_id": "13731477", "text": "Gene: Did you get the package I sent you\r\nJack: No, when did you send it?\r\nGene: on Friday\r\nJack: shit I should have gotten it by now\r\nJack: send me the tracking umber I;ll check whats up\r\nGene: 12345678900", "target": "Jack has not received yet the package Gene had sent him on Friday. She sent him the tracking number, so he could check the status of the shipment. ", "evaluation_predictions": [0, 6939, 1622, 4496, 3, 9, 2642, 30, 1701, 5, 4496, 225, 43, 1204, 34, 57, 230, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
{"feat_id": "13730896", "text": "Russ: Hi Gurdun, are you feeling better?\r\nGurdun: Hi Ross, a little bit better, yes, thank you.\r\nRuss: Do you think you'll be back at the uni this week?\r\nGurdun: Not tomorrow for sure, but I hope Wednesday maybe.\r\nRuss: Oh, that's fine.\r\nGurdun: Yeah. I'm feeling a bit weak still\r\nRuss: I guess that's pretty normal at this stage.\r\nGurdun: I believe so. And the muscle pain.\r\nRuss: I know what you mean. I had flu like that three months ago.\r\nGurdun: Luckily the headache's gone. It was absolutely awful.\r\nRuss: True enough. I had the same.\r\nGurdun: Anyway, how are things with you?\r\nRuss: Same old, same old, you know. Not much happening in the middle of term.\r\nGurdun: And the team?\r\nRuss: Oh yeah, we won the last match. It was a good game.\r\nGurdun: Great. Listen Russ, I need to run. Catch up later.\r\nRuss: OK, talk to you later.", "target": "Gurdun has the flu. He is feeling better. Gurdun hopes he'll be back at the uni on Wednesday. Russ and his team won the last match. ", "evaluation_predictions": [0, 20402, 26, 202, 19, 1829, 3, 9, 720, 5676, 11, 3, 88, 56, 36, 223, 44, 8, 73, 23, 30, 2875, 5, 2770, 7, 7, 141, 3, 9, 6720, 386, 767, 977, 5, 216, 65, 3, 9, 12085, 11, 3, 9, 5467, 1406, 5, 216, 751, 8, 336, 1588, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
{"feat_id": "13730348", "text": "Susan: Will you be home tomorrow?\r\nRob: Why do you ask?\r\nSusan: We could have dinner together if you have time after work\r\nRob: Sure! Sounds great\r\nSusan: Fantastic! I will cook something special then!", "target": "Rob will be home tomorrow. Rob and Susan will have dinner together after Rob's work. Susan will cook something special.", "evaluation_predictions": [0, 5376, 11, 10445, 56, 43, 2634, 544, 5721, 227, 161, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
{"feat_id": "13731077", "text": "Evan: Hi Dennis, I need to cancel my lesson tomorrow, sorry.\r\nDennis: Fine, what's up?\r\nEvan: Oh, got the flu, been off college since Tuesday. Should be ok for next Thurs.\r\nDennis: OK, just tell me in good time if you can't make it. Hope you feel better soon.\r\nEvan: Bye, Den! Thanks.", "target": "Evan can't come to his lesson tomorrow, because he's got the flu.", "evaluation_predictions": [0, 22743, 9179, 7, 112, 6114, 5721, 250, 3, 88, 65, 8, 6720, 5, 216, 56, 942, 28, 18563, 416, 26198, 7, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
{"feat_id": "13817550", "text": "Lorena: Hi, can you help me with something?\r\nMartin: Well, I can try.\r\nMartin: Depends what it is?\r\nLorena: I got a new desk and it comes with assembly instructions but I give up, I just can't do it.\r\nLorena: I'm illiterate when it comes to instructions, haha.\r\nLorena: So I could really use some help...\r\nMartin: Hmm, I can't today, but how about tomorrow? Shouldn't take long anyway.\r\nLorena: Yeah, it's fine! I just need it for the weekend, but tomorrow's great! Sorry for troubling you again.\r\nMartin: Don't mention it, we've known each other for so long it's almost like we're siblings, haha.\r\nLorena: Thanks a lot! I should be home by 6, so let me know when you can.", "target": "Martin is going to help Lorena assemble a new desk. He is coming to her house tomorrow.", "evaluation_predictions": [0, 8410, 35, 9, 523, 199, 28, 3, 30221, 3, 9, 126, 4808, 5, 3394, 56, 199, 160, 5721, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
{"feat_id": "13681441", "text": "Joanna: They are sending emails about Lewandowska.\r\nMerve: What happened?\r\nJoanna: <file_photo> \r\nMerve: Wooow!\r\nJoanna: She is hospitalized because she has measles.\r\nMerve: She had what?\r\nJoanna: Anyone who had contact with her within the last couple of days must get vaccinated.\r\nMerve: Luckily I didn't see her since the last semester...\r\nJoanna: I did, she is my thesis mentor :(\r\nMerve: What will you do?\r\nJoanna: They are organizing vaccinations in the main building from 17th until 19th.\r\nMerve: You have to go!\r\nJoanna: I know... And I just started working so I really don't have a lot of time.\r\nMerve: Come on, this is really important.\r\nJoanna: I will try to do it before work on 18th, hopefully I won't lose the entire day...", "target": "Lewandowska has measles. There are vaccinations in the main building from 17th until 19th for everyone who had contact with her. ", "evaluation_predictions": [0, 312, 3877, 15198, 10717, 19, 2833, 1601, 250, 255, 65, 140, 9, 7, 965, 5, 10476, 113, 141, 574, 28, 160, 441, 8, 336, 1158, 13, 477, 398, 129, 3, 8938, 11075, 1054, 5, 328, 33, 14308, 24639, 7, 16, 8, 711, 740, 45, 1003, 189, 552, 957, 189, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
{"feat_bid": 161, "feat_is_aggregate": false, "feat_source": "pinkmonkey", "feat_chapter_path": "all_chapterized_books/161-chapters/12.txt", "feat_summary_path": "finished_summaries/pinkmonkey/Sense and Sensibility/section_11_part_0.txt", "feat_book_id": "Sense and Sensibility.chapter 12", "feat_summary_id": "chapter 12", "feat_content": null, "feat_summary": "{\"name\": \"Chapter 12\", \"url\": \"https://web.archive.org/web/20180820034609/http://www.pinkmonkey.com/booknotes/monkeynotes/pmSenseSensibility27.asp\", \"summary\": \"Mrs. Dashwood and her daughters are busy attending parties and balls. Marianne is in her element. She is overjoyed in the company of Willoughby, who showers much affection and attention on her. Elinor even feels left out at times. Deprived of friends of her own age, she is often thrown in the company of Mrs. Jennings and Lady Middleton. At such times she welcomes the presence of Colonel Brandon. Brandon often talks of Marianne and asks Elinor about her sister's preferences.\", \"analysis\": \"Notes Jane Austen paints the picture of an eighteenth-century upper middle-class society. The Dashwoods and Middletons are shown to be busy attending parties and balls. Their main occupation is socializing, and they take pleasure in entertaining people. Every young girl waits for a respectable young man to woo her, and her parents hope for a match between them. They lead a leisurely life, perhaps unusual to the modern reader. Marianne is exhilarated by the looks and manners of her lover. She does not care to understand his essential nature. Obsessed with Willoughby, she ignores Colonel Brandon and unconsciously hurts him. Blinded by her infatuation for Willoughby, she is not able to realize the worth of the Colonel or detect the intensity of his feelings. This chapter again emphasizes the difference in attitudes between Willoughby and Colonel Brandon. Both men are attracted to Marianne. Willoughby displays his affection by wooing Marianne, like a dashing hero would, while Colonel Brandon admires his lady love from a distance and silently hopes to win her favor. Willoughby is interested only in flirting with Marianne, but the Colonel, like a sincere person, looks forward to a lasting relationship. CHAPTER 12 Summary Marianne gets carried away by Willoughby's showy gestures. When he offers her a horse, she accepts it readily and talks about it to her sister. Elinor is shocked to learn this and asks Marianne to decline the offer, as it would prove too costly for them. Elinor observes Willoughby's behavior towards her sister and detects a note of intimacy in it. Margaret tells Elinor about her suspicion of an engagement between Marianne and Willoughby. Later, at Mrs. Jennings' insistence, Margaret gives a hint about Elinor's attachment to Edward, much to Elinor's embarrassment. Notes The chapter hints at the extent of the involvement of Marianne with Willoughby. Willoughby tries to impress Marianne by offering her a horse as a gift, and Marianne foolishly accepts the offer without giving a thought to the expenditure involved. Willoughby's superficiality and Marianne's gullibility are exposed in this episode. Chapter 12 also reveals the character of the youngest of the Dashwood girls. Margaret, one of the minor characters in the novel, is otherwise ignored by Austen. Only a few chapters give a glimpse into her personality. Margaret, like a typical teenager, gets excited over little things and jumps to conclusions easily. She derives pleasure from revealing secrets. She informs Elinor about the impending marriage between Marianne and Willoughby because she saw the young man taking a lock of hair from her sister . At the Park, she gives hints about the relationship between Elinor and Edward to Mrs. Jennings, much to the embarrassment of her sister. Like a reckless teenager, she is always in a hurry to impart information not meant to be disclosed publicly. CHAPTER 13 Summary Everyone is eagerly looking forward to their picnic at Whitewell. However, on the morning of the outing, a letter arrives for Colonel Brandon and alters the situation. The letter disturbs Brandon, and he informs the others about his decision to leave immediately for the town. The picnic is canceled, much to the disappointment of all, since it is not possible to proceed to Whitewell without the assistance of the Colonel. Sir John Middleton suggests that they should go for a ride in the carriage around the countryside. Marianne and Willoughby take a separate carriage. They visit Allenham on the sly. When Elinor learns about their visit, she is angry with Marianne for not observing the rules of propriety. Marianne justifies her action. Notes An element of suspense is introduced in this chapter. After the Colonel reads the letter, he turns grave and decides to leave for the town immediately. He evades the questions of Mrs. Jennings and declines to postpone his visit. After he leaves, Mrs. Jennings hints at the possibility of his visiting his illegitimate daughter, Miss Williams. Through this bit of information, Austen arouses the curiosity of the reader regarding the mysterious past of Colonel Brandon. Marianne and Willoughby are insensitive to the feelings of the Colonel and fail to sympathize with his plight. They criticize Brandon for spoiling the afternoon. Colonel Brandon comes across as a man in control of his emotions. Even though he is disturbed by the contents of the letter, he does not reveal his misery to others. Like a gentleman, he excuses himself from the party and bows to Marianne before taking his leave. His silence speaks volumes. The chapter relates one more incident which creates a clash between the good sense of Elinor and the sensibility of Marianne. Marianne makes a secret visit to Allenham with Willoughby but does not feel guilty about what she has done. Elinor's sense of decorum causes her to condemn her sister's actions, as she does not approve of Marianne's visiting a stranger's house with a man to whom she is not even engaged, at least not openly.\"}", "text": "\n\nAs Elinor and Marianne were walking together the next morning the\nlatter communicated a piece of news to her sister, which in spite of\nall that she knew before of Marianne's imprudence and want of thought,\nsurprised her by its extravagant testimony of both. Marianne told her,\nwith the greatest delight, that Willoughby had given her a horse, one\nthat he had bred himself on his estate in Somersetshire, and which was\nexactly calculated to carry a woman. Without considering that it was\nnot in her mother's plan to keep any horse, that if she were to alter\nher resolution in favour of this gift, she must buy another for the\nservant, and keep a servant to ride it, and after all, build a stable\nto receive them, she had accepted the present without hesitation, and\ntold her sister of it in raptures.\n\n\"He intends to send his groom into Somersetshire immediately for it,\"\nshe added, \"and when it arrives we will ride every day. You shall\nshare its use with me. Imagine to yourself, my dear Elinor, the\ndelight of a gallop on some of these downs.\"\n\nMost unwilling was she to awaken from such a dream of felicity to\ncomprehend all the unhappy truths which attended the affair; and for\nsome time she refused to submit to them. As to an additional servant,\nthe expense would be a trifle; Mama she was sure would never object to\nit; and any horse would do for HIM; he might always get one at the\npark; as to a stable, the merest shed would be sufficient. Elinor then\nventured to doubt the propriety of her receiving such a present from a\nman so little, or at least so lately known to her. This was too much.\n\n\"You are mistaken, Elinor,\" said she warmly, \"in supposing I know very\nlittle of Willoughby. I have not known him long indeed, but I am much\nbetter acquainted with him, than I am with any other creature in the\nworld, except yourself and mama. It is not time or opportunity that is\nto determine intimacy;--it is disposition alone. Seven years would be\ninsufficient to make some people acquainted with each other, and seven\ndays are more than enough for others. I should hold myself guilty of\ngreater impropriety in accepting a horse from my brother, than from\nWilloughby. Of John I know very little, though we have lived together\nfor years; but of Willoughby my judgment has long been formed.\"\n\nElinor thought it wisest to touch that point no more. She knew her\nsister's temper. Opposition on so tender a subject would only attach\nher the more to her own opinion. But by an appeal to her affection for\nher mother, by representing the inconveniences which that indulgent\nmother must draw on herself, if (as would probably be the case) she\nconsented to this increase of establishment, Marianne was shortly\nsubdued; and she promised not to tempt her mother to such imprudent\nkindness by mentioning the offer, and to tell Willoughby when she saw\nhim next, that it must be declined.\n\nShe was faithful to her word; and when Willoughby called at the\ncottage, the same day, Elinor heard her express her disappointment to\nhim in a low voice, on being obliged to forego the acceptance of his\npresent. The reasons for this alteration were at the same time\nrelated, and they were such as to make further entreaty on his side\nimpossible. His concern however was very apparent; and after\nexpressing it with earnestness, he added, in the same low voice,--\"But,\nMarianne, the horse is still yours, though you cannot use it now. I\nshall keep it only till you can claim it. When you leave Barton to\nform your own establishment in a more lasting home, Queen Mab shall\nreceive you.\"\n\nThis was all overheard by Miss Dashwood; and in the whole of the\nsentence, in his manner of pronouncing it, and in his addressing her\nsister by her Christian name alone, she instantly saw an intimacy so\ndecided, a meaning so direct, as marked a perfect agreement between\nthem. From that moment she doubted not of their being engaged to each\nother; and the belief of it created no other surprise than that she, or\nany of their friends, should be left by tempers so frank, to discover\nit by accident.\n\nMargaret related something to her the next day, which placed this\nmatter in a still clearer light. Willoughby had spent the preceding\nevening with them, and Margaret, by being left some time in the parlour\nwith only him and Marianne, had had opportunity for observations,\nwhich, with a most important face, she communicated to her eldest\nsister, when they were next by themselves.\n\n\"Oh, Elinor!\" she cried, \"I have such a secret to tell you about\nMarianne. I am sure she will be married to Mr. Willoughby very soon.\"\n\n\"You have said so,\" replied Elinor, \"almost every day since they first\nmet on High-church Down; and they had not known each other a week, I\nbelieve, before you were certain that Marianne wore his picture round\nher neck; but it turned out to be only the miniature of our great\nuncle.\"\n\n\"But indeed this is quite another thing. I am sure they will be\nmarried very soon, for he has got a lock of her hair.\"\n\n\"Take care, Margaret. It may be only the hair of some great uncle of\nHIS.\"\n\n\"But, indeed, Elinor, it is Marianne's. I am almost sure it is, for I\nsaw him cut it off. Last night after tea, when you and mama went out\nof the room, they were whispering and talking together as fast as could\nbe, and he seemed to be begging something of her, and presently he took\nup her scissors and cut off a long lock of her hair, for it was all\ntumbled down her back; and he kissed it, and folded it up in a piece of\nwhite paper; and put it into his pocket-book.\"\n\nFor such particulars, stated on such authority, Elinor could not\nwithhold her credit; nor was she disposed to it, for the circumstance\nwas in perfect unison with what she had heard and seen herself.\n\nMargaret's sagacity was not always displayed in a way so satisfactory\nto her sister. When Mrs. Jennings attacked her one evening at the\npark, to give the name of the young man who was Elinor's particular\nfavourite, which had been long a matter of great curiosity to her,\nMargaret answered by looking at her sister, and saying, \"I must not\ntell, may I, Elinor?\"\n\nThis of course made every body laugh; and Elinor tried to laugh too.\nBut the effort was painful. She was convinced that Margaret had fixed\non a person whose name she could not bear with composure to become a\nstanding joke with Mrs. Jennings.\n\nMarianne felt for her most sincerely; but she did more harm than good\nto the cause, by turning very red and saying in an angry manner to\nMargaret,\n\n\"Remember that whatever your conjectures may be, you have no right to\nrepeat them.\"\n\n\"I never had any conjectures about it,\" replied Margaret; \"it was you\nwho told me of it yourself.\"\n\nThis increased the mirth of the company, and Margaret was eagerly\npressed to say something more.\n\n\"Oh! pray, Miss Margaret, let us know all about it,\" said Mrs.\nJennings. \"What is the gentleman's name?\"\n\n\"I must not tell, ma'am. But I know very well what it is; and I know\nwhere he is too.\"\n\n\"Yes, yes, we can guess where he is; at his own house at Norland to be\nsure. He is the curate of the parish I dare say.\"\n\n\"No, THAT he is not. He is of no profession at all.\"\n\n\"Margaret,\" said Marianne with great warmth, \"you know that all this is\nan invention of your own, and that there is no such person in\nexistence.\"\n\n\"Well, then, he is lately dead, Marianne, for I am sure there was such\na man once, and his name begins with an F.\"\n\nMost grateful did Elinor feel to Lady Middleton for observing, at this\nmoment, \"that it rained very hard,\" though she believed the\ninterruption to proceed less from any attention to her, than from her\nladyship's great dislike of all such inelegant subjects of raillery as\ndelighted her husband and mother. The idea however started by her, was\nimmediately pursued by Colonel Brandon, who was on every occasion\nmindful of the feelings of others; and much was said on the subject of\nrain by both of them. Willoughby opened the piano-forte, and asked\nMarianne to sit down to it; and thus amidst the various endeavours of\ndifferent people to quit the topic, it fell to the ground. But not so\neasily did Elinor recover from the alarm into which it had thrown her.\n\nA party was formed this evening for going on the following day to see a\nvery fine place about twelve miles from Barton, belonging to a\nbrother-in-law of Colonel Brandon, without whose interest it could not\nbe seen, as the proprietor, who was then abroad, had left strict orders\non that head. The grounds were declared to be highly beautiful, and\nSir John, who was particularly warm in their praise, might be allowed\nto be a tolerable judge, for he had formed parties to visit them, at\nleast, twice every summer for the last ten years. They contained a\nnoble piece of water; a sail on which was to a form a great part of the\nmorning's amusement; cold provisions were to be taken, open carriages\nonly to be employed, and every thing conducted in the usual style of a\ncomplete party of pleasure.\n\nTo some few of the company it appeared rather a bold undertaking,\nconsidering the time of year, and that it had rained every day for the\nlast fortnight;--and Mrs. Dashwood, who had already a cold, was\npersuaded by Elinor to stay at home.\n\n\n", "feat_chapter_length": 1559.0, "feat_summary_name": "Chapter 12", "feat_summary_url": "https://web.archive.org/web/20180820034609/http://www.pinkmonkey.com/booknotes/monkeynotes/pmSenseSensibility27.asp", "target": "Mrs. Dashwood and her daughters are busy attending parties and balls. Marianne is in her element. She is overjoyed in the company of Willoughby, who showers much affection and attention on her. Elinor even feels left out at times. Deprived of friends of her own age, she is often thrown in the company of Mrs. Jennings and Lady Middleton. At such times she welcomes the presence of Colonel Brandon. Brandon often talks of Marianne and asks Elinor about her sister's preferences.", "feat_summary_analysis": "Notes Jane Austen paints the picture of an eighteenth-century upper middle-class society. The Dashwoods and Middletons are shown to be busy attending parties and balls. Their main occupation is socializing, and they take pleasure in entertaining people. Every young girl waits for a respectable young man to woo her, and her parents hope for a match between them. They lead a leisurely life, perhaps unusual to the modern reader. Marianne is exhilarated by the looks and manners of her lover. She does not care to understand his essential nature. Obsessed with Willoughby, she ignores Colonel Brandon and unconsciously hurts him. Blinded by her infatuation for Willoughby, she is not able to realize the worth of the Colonel or detect the intensity of his feelings. This chapter again emphasizes the difference in attitudes between Willoughby and Colonel Brandon. Both men are attracted to Marianne. Willoughby displays his affection by wooing Marianne, like a dashing hero would, while Colonel Brandon admires his lady love from a distance and silently hopes to win her favor. Willoughby is interested only in flirting with Marianne, but the Colonel, like a sincere person, looks forward to a lasting relationship. CHAPTER 12 Summary Marianne gets carried away by Willoughby's showy gestures. When he offers her a horse, she accepts it readily and talks about it to her sister. Elinor is shocked to learn this and asks Marianne to decline the offer, as it would prove too costly for them. Elinor observes Willoughby's behavior towards her sister and detects a note of intimacy in it. Margaret tells Elinor about her suspicion of an engagement between Marianne and Willoughby. Later, at Mrs. Jennings' insistence, Margaret gives a hint about Elinor's attachment to Edward, much to Elinor's embarrassment. Notes The chapter hints at the extent of the involvement of Marianne with Willoughby. Willoughby tries to impress Marianne by offering her a horse as a gift, and Marianne foolishly accepts the offer without giving a thought to the expenditure involved. Willoughby's superficiality and Marianne's gullibility are exposed in this episode. Chapter 12 also reveals the character of the youngest of the Dashwood girls. Margaret, one of the minor characters in the novel, is otherwise ignored by Austen. Only a few chapters give a glimpse into her personality. Margaret, like a typical teenager, gets excited over little things and jumps to conclusions easily. She derives pleasure from revealing secrets. She informs Elinor about the impending marriage between Marianne and Willoughby because she saw the young man taking a lock of hair from her sister . At the Park, she gives hints about the relationship between Elinor and Edward to Mrs. Jennings, much to the embarrassment of her sister. Like a reckless teenager, she is always in a hurry to impart information not meant to be disclosed publicly. CHAPTER 13 Summary Everyone is eagerly looking forward to their picnic at Whitewell. However, on the morning of the outing, a letter arrives for Colonel Brandon and alters the situation. The letter disturbs Brandon, and he informs the others about his decision to leave immediately for the town. The picnic is canceled, much to the disappointment of all, since it is not possible to proceed to Whitewell without the assistance of the Colonel. Sir John Middleton suggests that they should go for a ride in the carriage around the countryside. Marianne and Willoughby take a separate carriage. They visit Allenham on the sly. When Elinor learns about their visit, she is angry with Marianne for not observing the rules of propriety. Marianne justifies her action. Notes An element of suspense is introduced in this chapter. After the Colonel reads the letter, he turns grave and decides to leave for the town immediately. He evades the questions of Mrs. Jennings and declines to postpone his visit. After he leaves, Mrs. Jennings hints at the possibility of his visiting his illegitimate daughter, Miss Williams. Through this bit of information, Austen arouses the curiosity of the reader regarding the mysterious past of Colonel Brandon. Marianne and Willoughby are insensitive to the feelings of the Colonel and fail to sympathize with his plight. They criticize Brandon for spoiling the afternoon. Colonel Brandon comes across as a man in control of his emotions. Even though he is disturbed by the contents of the letter, he does not reveal his misery to others. Like a gentleman, he excuses himself from the party and bows to Marianne before taking his leave. His silence speaks volumes. The chapter relates one more incident which creates a clash between the good sense of Elinor and the sensibility of Marianne. Marianne makes a secret visit to Allenham with Willoughby but does not feel guilty about what she has done. Elinor's sense of decorum causes her to condemn her sister's actions, as she does not approve of Marianne's visiting a stranger's house with a man to whom she is not even engaged, at least not openly.", "feat_summary_length": 81.0, "feat_analysis_length": 819.0, "evaluation_predictions": [0, 37, 416, 1379, 6, 10149, 4515, 817, 7, 1289, 77, 127, 24, 255, 65, 1204, 3, 9, 4952, 21, 160, 45, 1363, 5, 11, 8667, 5, 8540, 4607, 969, 5, 451, 19, 10693, 12, 911, 224, 3, 9, 1876, 6, 38, 34, 56, 995, 160, 12, 698, 8, 5565, 13, 7494, 28, 2003, 4607, 969, 16, 27362, 5718, 5, 1289, 77, 322, 405, 59, 734, 572, 255, 133, 1845, 224, 3, 25143, 45, 3, 9, 13037, 6, 68, 255, 7228, 24, 34, 19, 97, 42, 1004, 12, 2082, 31249, 5, 366, 79, 942, 541, 865, 24, 239, 6, 983, 6, 2003, 845, 24, 3, 88, 56, 453, 8, 4952, 552, 255, 54, 1988, 34, 116, 255, 6914, 12, 5286, 1534, 115, 31, 7, 629, 5, 5964, 644, 107, 20254, 147, 88, 291, 7, 48, 3634, 11, 3384, 7, 24, 70, 1675, 19, 78, 626, 24, 255, 3228, 7, 79, 33, 5908, 5, 10511, 24, 2272, 6, 16689, 817, 7, 160, 4806, 24, 255, 4054, 24, 10149, 4515, 56, 36, 4464, 1116, 5, 451, 92, 669, 7, 24, 2003, 1340, 326, 160, 307, 6081, 13, 1268, 6, 84, 47, 10422, 300, 160, 5378, 5, 100, 251, 13423, 7, 921, 6, 902, 8571, 4551, 8057, 6, 113, 8719, 7, 44, 135, 5, 71, 1088, 19, 5147, 12, 719, 3, 9, 4676, 684, 2052, 6, 4157, 57, 29388, 20446, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
{"feat_bid": 110, "feat_is_aggregate": false, "feat_source": "gradesaver", "feat_chapter_path": "all_chapterized_books/110-chapters/20.txt", "feat_summary_path": "finished_summaries/gradesaver/Tess of the D'Urbervilles/section_2_part_5.txt", "feat_book_id": "Tess of the D'Urbervilles.chapter 20", "feat_summary_id": "chapter 20", "feat_content": null, "feat_summary": "{\"name\": \"Chapter 20\", \"url\": \"https://web.archive.org/web/20210410060617/https://www.gradesaver.com/tess-of-the-durbervilles/study-guide/summary-phase-3-chapters-16-24\", \"summary\": \"Tess had never in her recent life been so happy and would possibly never be so happy again. She and Tess stand between predilection and love. For Angel, Tess represents a visionary essence of woman, and calls her Artemis, Demeter, and other fanciful names, but she insists that he call her simply Tess. Tess seems to exhibit a dignified largeness of disposition and physique. The two are always the first to awake at the dairy house, where they feel an impressive isolation, as if they are Adam and Eve.\", \"analysis\": \"Hardy makes explicit that Tess's time at Talbothays dairy is an idyllic respite from her normal toil and hardship, yet states that this happiness will be short-lived, foreshadowing greater adversity for Tess Durbeyfield. Hardy compares Angel and Tess to Adam and Eve in the mornings, thus foreshadowing a later fall from perfection. It is the idealism and perfection that Tess finds at Talbothays that leads to this shaky foundation for her happiness; Angel Clare adores Tess as a representation of perfection. To Angel, Tess is a goddess such as Artemis or Demeter, a symbol of perfection rather than a person with obvious faults and foibles. There is a great irony in Angel's adoration for Tess; Angel exalts Tess as a goddess for her strength and disposition, yet this perfection comes from the adversity stemming from her greatest weakness\"}", "text": "\n\nThe season developed and matured. Another year's instalment of\nflowers, leaves, nightingales, thrushes, finches, and such ephemeral\ncreatures, took up their positions where only a year ago others had\nstood in their place when these were nothing more than germs and\ninorganic particles. Rays from the sunrise drew forth the buds and\nstretched them into long stalks, lifted up sap in noiseless streams,\nopened petals, and sucked out scents in invisible jets and\nbreathings.\n\nDairyman Crick's household of maids and men lived on comfortably,\nplacidly, even merrily. Their position was perhaps the happiest of\nall positions in the social scale, being above the line at which\nneediness ends, and below the line at which the _convenances_ begin\nto cramp natural feelings, and the stress of threadbare modishness\nmakes too little of enough.\n\nThus passed the leafy time when arborescence seems to be the one\nthing aimed at out of doors. Tess and Clare unconsciously studied\neach other, ever balanced on the edge of a passion, yet apparently\nkeeping out of it. All the while they were converging, under an\nirresistible law, as surely as two streams in one vale.\n\nTess had never in her recent life been so happy as she was now,\npossibly never would be so happy again. She was, for one thing,\nphysically and mentally suited among these new surroundings. The\nsapling which had rooted down to a poisonous stratum on the spot of\nits sowing had been transplanted to a deeper soil. Moreover she, and\nClare also, stood as yet on the debatable land between predilection\nand love; where no profundities have been reached; no reflections\nhave set in, awkwardly inquiring, \"Whither does this new current tend\nto carry me? What does it mean to my future? How does it stand\ntowards my past?\"\n\nTess was the merest stray phenomenon to Angel Clare as yet--a rosy,\nwarming apparition which had only just acquired the attribute of\npersistence in his consciousness. So he allowed his mind to be\noccupied with her, deeming his preoccupation to be no more than a\nphilosopher's regard of an exceedingly novel, fresh, and interesting\nspecimen of womankind.\n\nThey met continually; they could not help it. They met daily in that\nstrange and solemn interval, the twilight of the morning, in the\nviolet or pink dawn; for it was necessary to rise early, so very\nearly, here. Milking was done betimes; and before the milking came\nthe skimming, which began at a little past three. It usually fell\nto the lot of some one or other of them to wake the rest, the first\nbeing aroused by an alarm-clock; and, as Tess was the latest arrival,\nand they soon discovered that she could be depended upon not to sleep\nthough the alarm as others did, this task was thrust most frequently\nupon her. No sooner had the hour of three struck and whizzed,\nthan she left her room and ran to the dairyman's door; then up the\nladder to Angel's, calling him in a loud whisper; then woke her\nfellow-milkmaids. By the time that Tess was dressed Clare was\ndownstairs and out in the humid air. The remaining maids and the\ndairyman usually gave themselves another turn on the pillow, and did\nnot appear till a quarter of an hour later.\n\nThe gray half-tones of daybreak are not the gray half-tones of the\nday's close, though the degree of their shade may be the same. In\nthe twilight of the morning, light seems active, darkness passive;\nin the twilight of evening it is the darkness which is active and\ncrescent, and the light which is the drowsy reverse.\n\nBeing so often--possibly not always by chance--the first two persons\nto get up at the dairy-house, they seemed to themselves the first\npersons up of all the world. In these early days of her residence\nhere Tess did not skim, but went out of doors at once after rising,\nwhere he was generally awaiting her. The spectral, half-compounded,\naqueous light which pervaded the open mead impressed them with\na feeling of isolation, as if they were Adam and Eve. At this\ndim inceptive stage of the day Tess seemed to Clare to exhibit a\ndignified largeness both of disposition and physique, an almost\nregnant power, possibly because he knew that at that preternatural\ntime hardly any woman so well endowed in person as she was likely to\nbe walking in the open air within the boundaries of his horizon; very\nfew in all England. Fair women are usually asleep at mid-summer\ndawns. She was close at hand, and the rest were nowhere.\n\nThe mixed, singular, luminous gloom in which they walked along\ntogether to the spot where the cows lay often made him think of the\nResurrection hour. He little thought that the Magdalen might be\nat his side. Whilst all the landscape was in neutral shade his\ncompanion's face, which was the focus of his eyes, rising above the\nmist stratum, seemed to have a sort of phosphorescence upon it. She\nlooked ghostly, as if she were merely a soul at large. In reality\nher face, without appearing to do so, had caught the cold gleam of\nday from the north-east; his own face, though he did not think of\nit, wore the same aspect to her.\n\nIt was then, as has been said, that she impressed him most deeply.\nShe was no longer the milkmaid, but a visionary essence of woman--a\nwhole sex condensed into one typical form. He called her Artemis,\nDemeter, and other fanciful names half teasingly, which she did not\nlike because she did not understand them.\n\n\"Call me Tess,\" she would say askance; and he did.\n\nThen it would grow lighter, and her features would become simply\nfeminine; they had changed from those of a divinity who could confer\nbliss to those of a being who craved it.\n\nAt these non-human hours they could get quite close to the waterfowl.\nHerons came, with a great bold noise as of opening doors and\nshutters, out of the boughs of a plantation which they frequented at\nthe side of the mead; or, if already on the spot, hardily maintained\ntheir standing in the water as the pair walked by, watching them by\nmoving their heads round in a slow, horizontal, passionless wheel,\nlike the turn of puppets by clockwork.\n\nThey could then see the faint summer fogs in layers, woolly, level,\nand apparently no thicker than counterpanes, spread about the meadows\nin detached remnants of small extent. On the gray moisture of the\ngrass were marks where the cows had lain through the night--dark-green\nislands of dry herbage the size of their carcasses, in the general\nsea of dew. From each island proceeded a serpentine trail, by which\nthe cow had rambled away to feed after getting up, at the end of\nwhich trail they found her; the snoring puff from her nostrils, when\nshe recognized them, making an intenser little fog of her own amid\nthe prevailing one. Then they drove the animals back to the barton,\nor sat down to milk them on the spot, as the case might require.\n\nOr perhaps the summer fog was more general, and the meadows lay like\na white sea, out of which the scattered trees rose like dangerous\nrocks. Birds would soar through it into the upper radiance, and\nhang on the wing sunning themselves, or alight on the wet rails\nsubdividing the mead, which now shone like glass rods. Minute\ndiamonds of moisture from the mist hung, too, upon Tess's eyelashes,\nand drops upon her hair, like seed pearls. When the day grew quite\nstrong and commonplace these dried off her; moreover, Tess then\nlost her strange and ethereal beauty; her teeth, lips, and eyes\nscintillated in the sunbeams and she was again the dazzlingly fair\ndairymaid only, who had to hold her own against the other women of\nthe world.\n\nAbout this time they would hear Dairyman Crick's voice, lecturing the\nnon-resident milkers for arriving late, and speaking sharply to old\nDeborah Fyander for not washing her hands.\n\n\"For Heaven's sake, pop thy hands under the pump, Deb! Upon my soul,\nif the London folk only knowed of thee and thy slovenly ways, they'd\nswaller their milk and butter more mincing than they do a'ready; and\nthat's saying a good deal.\"\n\nThe milking progressed, till towards the end Tess and Clare, in\ncommon with the rest, could hear the heavy breakfast table dragged\nout from the wall in the kitchen by Mrs Crick, this being the\ninvariable preliminary to each meal; the same horrible scrape\naccompanying its return journey when the table had been cleared.\n\n\n", "feat_chapter_length": 1349.0, "feat_summary_name": "Chapter 20", "feat_summary_url": "https://web.archive.org/web/20210410060617/https://www.gradesaver.com/tess-of-the-durbervilles/study-guide/summary-phase-3-chapters-16-24", "target": "Tess had never in her recent life been so happy and would possibly never be so happy again. She and Tess stand between predilection and love. For Angel, Tess represents a visionary essence of woman, and calls her Artemis, Demeter, and other fanciful names, but she insists that he call her simply Tess. Tess seems to exhibit a dignified largeness of disposition and physique. The two are always the first to awake at the dairy house, where they feel an impressive isolation, as if they are Adam and Eve.", "feat_summary_analysis": "Hardy makes explicit that Tess's time at Talbothays dairy is an idyllic respite from her normal toil and hardship, yet states that this happiness will be short-lived, foreshadowing greater adversity for Tess Durbeyfield. Hardy compares Angel and Tess to Adam and Eve in the mornings, thus foreshadowing a later fall from perfection. It is the idealism and perfection that Tess finds at Talbothays that leads to this shaky foundation for her happiness; Angel Clare adores Tess as a representation of perfection. To Angel, Tess is a goddess such as Artemis or Demeter, a symbol of perfection rather than a person with obvious faults and foibles. There is a great irony in Angel's adoration for Tess; Angel exalts Tess as a goddess for her strength and disposition, yet this perfection comes from the adversity stemming from her greatest weakness", "feat_summary_length": 89.0, "feat_analysis_length": 138.0, "evaluation_predictions": [0, 2351, 215, 65, 2804, 5, 37, 3, 29, 291, 52, 1016, 817, 7, 178, 24, 48, 19, 8, 97, 116, 66, 8, 3652, 11, 3231, 33, 13081, 53, 6, 11, 34, 31, 7, 114, 79, 31, 60, 652, 1065, 12, 281, 91, 139, 8, 2141, 5, 2255, 7, 2452, 11, 9908, 15, 33, 321, 78, 1095, 230, 24, 79, 54, 31, 17, 1190, 2508, 81, 284, 119, 5, 328, 278, 31, 17, 129, 590, 182, 168, 6, 68, 79, 103, 43, 3, 9, 534, 1675, 5, 555, 239, 6, 2255, 7, 2260, 7178, 7, 95, 778, 16, 8, 1379, 11, 1550, 1067, 12, 942, 9908, 15, 5, 216, 2103, 7, 24, 255, 1416, 96, 122, 12675, 120, 121, 11, 744, 31, 17, 1727, 12, 734, 376, 5, 451, 3088, 376, 1261, 12641, 42, 374, 4401, 11, 3, 88, 3088, 160, 1261, 12641, 250, 255, 405, 59, 734, 376, 44, 66, 5, 486, 175, 648, 6, 79, 54, 217, 8, 20735, 30, 8, 5956, 11, 320, 44, 8, 9321, 7, 5, 94, 31, 7, 1134, 964, 24, 132, 31, 7, 424, 352, 30, 344, 135, 5, 366, 8, 1969, 2347, 1282, 6, 79, 2561, 323, 12, 3281, 70, 3702, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
{"feat_bid": 1232, "feat_is_aggregate": false, "feat_source": "shmoop", "feat_chapter_path": "all_chapterized_books/1232-chapters/09.txt", "feat_summary_path": "finished_summaries/shmoop/The Prince/section_9_part_0.txt", "feat_book_id": "The Prince.chapter 9", "feat_summary_id": "chapter 9", "feat_content": null, "feat_summary": "{\"name\": \"Chapter 9\", \"url\": \"https://web.archive.org/web/20210420060055/https://www.shmoop.com/study-guides/literature/prince-machiavelli/summary/chapter-9\", \"summary\": \"Rulers that come to power because of the support of the people are the total opposite of bloody conquers. Everyone loves 'em. They're not too smart, or even extra lucky, but just enough to get by. Our new ruler has three options for his new place: a monarchy where power goes to the nobles, a republic where power goes to the people, and anarchy. In monarchies, either the nobles or the people decide to concentrate all the power in one person, the king. Seems simple enough, but a king who comes to power because of the nobles will have a hard time. After all, the nobles have lots of power to throw around, too. Remember, you don't want anyone who can compete with you around, and these are the people with the weapons. What are the regular people going to do to you? Poke you with their potatoes? Bottom line: be friends with the people, because the nobles have too many tricks up their sleeves. More on nobles. There are two kinds, those who are totally 100% loyally part of your fan club and those who aren't. Out of those who aren't, there are two kinds. Those who are just scaredy-cats , and those who are planning something. The latter are the ones to watch out for because they will turn on you at the drop of a hat. Okay, back to the people. You need to be on their side. It's pretty easy, actually, because they basically just don't want to be oppressed and tortured. Also, if they thought you were going to be super mean, and you turn out to be okay, they will love you even more than if they loved you from the start. They're easy to please. Some people say that it's a bad idea to depend on the support of the people. Machiavelli just doesn't agree--he says that's only the case if you're stupid and think they'll fight for you or rescue you. That's not going to happen. But they can support you and not turn against you. Problems for the ruler supported by the people? When they want to become an absolute ruler, they need either give direct command or rule though other people who they give power to. The problem is, these people aren't always the most trustworthy--before you know it, everything is up in flames. So, make sure your people always need not only your government , but you specifically, and everything will be okay.\", \"analysis\": \"\"}", "text": "\nBut coming to the other point--where a leading citizen becomes the\nprince of his country, not by wickedness or any intolerable violence,\nbut by the favour of his fellow citizens--this may be called a civil\nprincipality: nor is genius or fortune altogether necessary to attain to\nit, but rather a happy shrewdness. I say then that such a principality\nis obtained either by the favour of the people or by the favour of the\nnobles. Because in all cities these two distinct parties are found,\nand from this it arises that the people do not wish to be ruled nor\noppressed by the nobles, and the nobles wish to rule and oppress the\npeople; and from these two opposite desires there arises in cities one\nof three results, either a principality, self-government, or anarchy.\n\nA principality is created either by the people or by the nobles,\naccordingly as one or other of them has the opportunity; for the nobles,\nseeing they cannot withstand the people, begin to cry up the reputation\nof one of themselves, and they make him a prince, so that under his\nshadow they can give vent to their ambitions. The people, finding\nthey cannot resist the nobles, also cry up the reputation of one of\nthemselves, and make him a prince so as to be defended by his authority.\nHe who obtains sovereignty by the assistance of the nobles maintains\nhimself with more difficulty than he who comes to it by the aid of\nthe people, because the former finds himself with many around him who\nconsider themselves his equals, and because of this he can neither rule\nnor manage them to his liking. But he who reaches sovereignty by popular\nfavour finds himself alone, and has none around him, or few, who are not\nprepared to obey him.\n\nBesides this, one cannot by fair dealing, and without injury to others,\nsatisfy the nobles, but you can satisfy the people, for their object is\nmore righteous than that of the nobles, the latter wishing to oppress,\nwhile the former only desire not to be oppressed. It is to be added also\nthat a prince can never secure himself against a hostile people, because\nof there being too many, whilst from the nobles he can secure himself,\nas they are few in number. The worst that a prince may expect from a\nhostile people is to be abandoned by them; but from hostile nobles he\nhas not only to fear abandonment, but also that they will rise against\nhim; for they, being in these affairs more far-seeing and astute, always\ncome forward in time to save themselves, and to obtain favours from him\nwhom they expect to prevail. Further, the prince is compelled to live\nalways with the same people, but he can do well without the same nobles,\nbeing able to make and unmake them daily, and to give or take away\nauthority when it pleases him.\n\nTherefore, to make this point clearer, I say that the nobles ought to\nbe looked at mainly in two ways: that is to say, they either shape their\ncourse in such a way as binds them entirely to your fortune, or they do\nnot. Those who so bind themselves, and are not rapacious, ought to be\nhonoured and loved; those who do not bind themselves may be dealt\nwith in two ways; they may fail to do this through pusillanimity and a\nnatural want of courage, in which case you ought to make use of them,\nespecially of those who are of good counsel; and thus, whilst in\nprosperity you honour them, in adversity you do not have to fear them.\nBut when for their own ambitious ends they shun binding themselves, it\nis a token that they are giving more thought to themselves than to you,\nand a prince ought to guard against such, and to fear them as if they\nwere open enemies, because in adversity they always help to ruin him.\n\nTherefore, one who becomes a prince through the favour of the people\nought to keep them friendly, and this he can easily do seeing they\nonly ask not to be oppressed by him. But one who, in opposition to\nthe people, becomes a prince by the favour of the nobles, ought, above\neverything, to seek to win the people over to himself, and this he may\neasily do if he takes them under his protection. Because men, when they\nreceive good from him of whom they were expecting evil, are bound more\nclosely to their benefactor; thus the people quickly become more devoted\nto him than if he had been raised to the principality by their favours;\nand the prince can win their affections in many ways, but as these vary\naccording to the circumstances one cannot give fixed rules, so I omit\nthem; but, I repeat, it is necessary for a prince to have the people\nfriendly, otherwise he has no security in adversity.\n\nNabis,(*) Prince of the Spartans, sustained the attack of all Greece,\nand of a victorious Roman army, and against them he defended his country\nand his government; and for the overcoming of this peril it was only\nnecessary for him to make himself secure against a few, but this would\nnot have been sufficient had the people been hostile. And do not let any\none impugn this statement with the trite proverb that \"He who builds on\nthe people, builds on the mud,\" for this is true when a private citizen\nmakes a foundation there, and persuades himself that the people will\nfree him when he is oppressed by his enemies or by the magistrates;\nwherein he would find himself very often deceived, as happened to the\nGracchi in Rome and to Messer Giorgio Scali(+) in Florence. But granted\na prince who has established himself as above, who can command, and is\na man of courage, undismayed in adversity, who does not fail in other\nqualifications, and who, by his resolution and energy, keeps the whole\npeople encouraged--such a one will never find himself deceived in them,\nand it will be shown that he has laid his foundations well.\n\n (*) Nabis, tyrant of Sparta, conquered by the Romans under\n Flamininus in 195 B.C.; killed 192 B.C.\n\n (+) Messer Giorgio Scali. This event is to be found in\n Machiavelli's \"Florentine History,\" Book III.\n\nThese principalities are liable to danger when they are passing from the\ncivil to the absolute order of government, for such princes either rule\npersonally or through magistrates. In the latter case their government\nis weaker and more insecure, because it rests entirely on the goodwill\nof those citizens who are raised to the magistracy, and who, especially\nin troubled times, can destroy the government with great ease, either\nby intrigue or open defiance; and the prince has not the chance amid\ntumults to exercise absolute authority, because the citizens and\nsubjects, accustomed to receive orders from magistrates, are not of\na mind to obey him amid these confusions, and there will always be in\ndoubtful times a scarcity of men whom he can trust. For such a prince\ncannot rely upon what he observes in quiet times, when citizens have\nneed of the state, because then every one agrees with him; they all\npromise, and when death is far distant they all wish to die for him;\nbut in troubled times, when the state has need of its citizens, then\nhe finds but few. And so much the more is this experiment dangerous,\ninasmuch as it can only be tried once. Therefore a wise prince ought to\nadopt such a course that his citizens will always in every sort and\nkind of circumstance have need of the state and of him, and then he will\nalways find them faithful.\n\n\n\n", "feat_chapter_length": 1217.0, "feat_summary_name": "Chapter 9", "feat_summary_url": "https://web.archive.org/web/20210420060055/https://www.shmoop.com/study-guides/literature/prince-machiavelli/summary/chapter-9", "target": "Rulers that come to power because of the support of the people are the total opposite of bloody conquers. Everyone loves 'em. They're not too smart, or even extra lucky, but just enough to get by. Our new ruler has three options for his new place: a monarchy where power goes to the nobles, a republic where power goes to the people, and anarchy. In monarchies, either the nobles or the people decide to concentrate all the power in one person, the king. Seems simple enough, but a king who comes to power because of the nobles will have a hard time. After all, the nobles have lots of power to throw around, too. Remember, you don't want anyone who can compete with you around, and these are the people with the weapons. What are the regular people going to do to you? Poke you with their potatoes? Bottom line: be friends with the people, because the nobles have too many tricks up their sleeves. More on nobles. There are two kinds, those who are totally 100% loyally part of your fan club and those who aren't. Out of those who aren't, there are two kinds. Those who are just scaredy-cats , and those who are planning something. The latter are the ones to watch out for because they will turn on you at the drop of a hat. Okay, back to the people. You need to be on their side. It's pretty easy, actually, because they basically just don't want to be oppressed and tortured. Also, if they thought you were going to be super mean, and you turn out to be okay, they will love you even more than if they loved you from the start. They're easy to please. Some people say that it's a bad idea to depend on the support of the people. Machiavelli just doesn't agree--he says that's only the case if you're stupid and think they'll fight for you or rescue you. That's not going to happen. But they can support you and not turn against you. Problems for the ruler supported by the people? When they want to become an absolute ruler, they need either give direct command or rule though other people who they give power to. The problem is, these people aren't always the most trustworthy--before you know it, everything is up in flames. So, make sure your people always need not only your government , but you specifically, and everything will be okay.", "feat_summary_analysis": null, "feat_summary_length": 414.0, "feat_analysis_length": 1.0, "evaluation_predictions": [0, 86, 48, 5800, 6, 8, 27526, 1140, 3, 9453, 149, 151, 582, 22277, 7, 13, 70, 684, 5, 216, 2284, 4062, 45, 8, 3385, 11, 6781, 892, 13, 175, 192, 3218, 2197, 12, 3209, 149, 79, 764, 12, 36, 5, 37, 17243, 7, 482, 46, 7064, 63, 250, 79, 1178, 3, 12436, 1452, 30, 8, 151, 117, 8, 151, 241, 12, 22566, 8, 17243, 7, 78, 24, 79, 54, 2485, 579, 147, 135, 5, 71, 8454, 19, 990, 57, 8, 151, 893, 57, 8, 380, 13, 8, 151, 31, 7, 8675, 42, 57, 8, 199, 13, 273, 113, 1663, 12, 3356, 34, 5, 506, 192, 2251, 33, 435, 16, 66, 3119, 10, 8, 151, 278, 31, 17, 241, 12, 36, 21893, 15, 26, 42, 22566, 15, 26, 68, 8, 17243, 904, 241, 12, 3356, 11, 24584, 8, 151, 5, 1029, 175, 192, 10720, 53, 15147, 6, 132, 7931, 7, 386, 772, 10, 8925, 3, 9, 3218, 6726, 6, 1044, 18, 19585, 6, 42, 46, 11508, 63, 5, 37, 166, 741, 19, 24, 8, 151, 43, 150, 1046, 16, 271, 3, 16718, 42, 4840, 23790, 15, 26, 57, 80, 13, 135, 5, 37, 511, 741, 19, 116, 8, 151, 253, 1452, 28, 186, 300, 135, 113, 1099, 1452, 70, 4081, 7, 5, 100, 598, 24, 8, 5169, 103, 59, 241, 12, 619, 365, 8, 2860, 13, 8, 17243, 348, 5, 328, 92, 12676, 95, 96, 532, 4948, 13, 80, 2448, 121, 11, 143, 376, 139, 3, 9, 22277, 5, 156, 8, 151, 653, 12, 8891, 8, 17243, 1076, 6, 79, 56, 3725, 3098, 581, 8, 22277, 5, 5309, 6, 8, 163, 194, 21, 3, 9, 9027, 12, 2451, 2448, 581, 24550, 151, 19, 190, 2725, 4945, 5, 611, 6, 3, 88, 405, 59, 43, 12, 3516, 81, 5489, 112, 293, 5015, 38, 307, 38, 3, 88, 1342, 28, 8, 1017, 151, 5, 94, 19, 1316, 21, 224, 3, 9, 568, 12, 453, 8, 151, 2609, 5, 242, 677, 6, 1823, 11514, 6, 8, 9027, 13, 13063, 17, 152, 6, 47, 3, 179, 12, 11220, 112, 684, 383, 8, 3211, 30, 12263, 5, 299, 437, 8, 151, 141, 118, 24550, 6, 255, 133, 59, 43, 19653, 376, 45, 20550, 135, 5, 4063, 6, 3, 99, 3, 9, 388, 2992, 3, 9, 2488, 190, 8, 4971, 13, 8, 2449, 6, 3, 2544, 1288, 19, 12, 1369, 8, 9812, 13, 8, 20286, 6, 258, 921, 225, 2019, 376, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
{"feat_bid": 23042, "feat_is_aggregate": false, "feat_source": "sparknotes", "feat_chapter_path": "all_chapterized_books/23042-chapters/4.txt", "feat_summary_path": "finished_summaries/sparknotes/The Tempest/section_4_part_0.txt", "feat_book_id": "The Tempest.act ii.scene ii", "feat_summary_id": "act ii, scene ii", "feat_content": null, "feat_summary": "{\"name\": \"Act II, scene ii\", \"url\": \"https://web.archive.org/web/20210131162607/https://www.sparknotes.com/shakespeare/tempest/section5/\", \"summary\": \"Caliban enters with a load of wood, and thunder sounds in the background. Caliban curses and describes the torments that Prospero's spirits subject him to: they pinch, bite, and prick him, especially when he curses. As he is thinking of these spirits, Caliban sees Trinculo and imagines him to be one of the spirits. Hoping to avoid pinching, he lies down and covers himself with his cloak. Trinculo hears the thunder and looks about for some cover from the storm. The only thing he sees is the cloak-covered Caliban on the ground. He is not so much repulsed by Caliban as curious. He cannot decide whether Caliban is a \\\"man or a fish\\\" . He thinks of a time when he traveled to England and witnessed freak-shows there. Caliban, he thinks, would bring him a lot of money in England. Thunder sounds again and Trinculo decides that the best shelter in sight is beneath Caliban's cloak, and so he joins the man-monster there. Stephano enters singing and drinking. He hears Caliban cry out to Trinculo, \\\"Do not torment me! O!\\\" . Hearing this and seeing the four legs sticking out from the cloak, Stephano thinks the two men are a four-legged monster with a fever. He decides to relieve this fever with a drink. Caliban continues to resist Trinculo, whom he still thinks is a spirit tormenting him. Trinculo recognizes Stephano's voice and says so. Stephano, of course, assumes for a moment that the monster has two heads, and he promises to pour liquor in both mouths. Trinculo now calls out to Stephano, and Stephano pulls his friend out from under the cloak. While the two men discuss how they arrived safely on shore, Caliban enjoys the liquor and begs to worship Stephano. The men take full advantage of Caliban's drunkenness, mocking him as a \\\"most ridiculous monster\\\" as he promises to lead them around and show them the isle.\", \"analysis\": \"Analysis Trinculo and Stephano are the last new characters to be introduced in the play. They act as comic foils to the main action, and will in later acts become specific parodies of Antonio and Sebastian. At this point, their role is to present comically some of the more serious issues in the play concerning Prospero and Caliban. In Act I, scene ii, Prospero calls Caliban a \\\"slave\\\" , \\\"thou earth\\\" , \\\"Filth\\\" , and \\\"Hag-seed\\\" . Stephano and Trinculo's epithet of choice in Act II, scene ii and thereafter is \\\"monster.\\\" But while these two make quite clear that Caliban is seen as less than human by the Europeans on the island, they also treat him more humanely than Prospero does. Stephano and Trinculo, a butler and a jester respectively, remain at the low end of the social scale in the play, and have little difficulty finding friendship with the strange islander they meet. \\\" Misery acquaints a man with strange bedfellows,\\\" says Trinculo , and then hastens to crawl beneath Caliban's garment in order to get out of the rain. The similarity, socially and perhaps physically as well, between Trinculo and Caliban is further emphasized when Stephano, drunk, initially mistakes the two for a single monster: \\\"This is some monster of the isle with four legs\\\" . More important than the emphasis on the way in which Caliban seems to others more monster than man, is the way in which this scene dramatizes the initial encounter between an almost completely isolated, \\\"primitive\\\" culture and a foreign, \\\"civilized\\\" one. The reader discovers during Caliban and Prospero's confrontation in Act I, scene ii that Prospero initially \\\"made much of\\\" Caliban ; that he gave Caliban \\\"Water with berries in't\\\" ; that Caliban showed him around the island; and that Prospero later imprisoned Caliban, after he had taken all he could take from him. The reader can see these events in Act II, scene ii, with Trinculo and Stephano in the place of Prospero. Stephano calls Caliban a \\\"brave monster,\\\" as they set off singing around the island. In addition, Stephano and Trinculo give Caliban wine, which Caliban finds to be a \\\"celestial liquor\\\" . Moreover, Caliban initially mistakes Stephano and Trinculo for Prospero's spirits, but alcohol convinces him that Stephano is a \\\"brave god\\\" and decides unconditionally to \\\"kneel to him\\\" . This scene shows the foreign, civilized culture as decadent and manipulative: Stephano immediately plans to \\\"inherit\\\" the island , using Caliban to show him all its virtues. Stephano and Trinculo are a grotesque, parodic version of Prospero upon his arrival twelve years ago. Godlike in the eyes of the native, they slash and burn their way to power. By this point, Caliban has begun to resemble a parody of himself. Whereas he would \\\"gabble like / A thing most brutish\\\" upon Prospero's arrival, because he did not know language, he now is willfully inarticulate in his drunkenness. Immediately putting aside his fear that these men are spirits sent to do him harm, Caliban puts his trust in them for all the wrong reasons. What makes Caliban's behavior in this scene so tragic is that we might expect him, especially after his eloquent curses of Prospero in Act I, scene ii, to know better.\"}", "text": "SCENE II.\n\n_Another part of the island._\n\n _Enter CALIBAN with a burden of wood. A noise of thunder heard._\n\n_Cal._ All the infections that the sun sucks up\nFrom bogs, fens, flats, on Prosper fall, and make him\nBy inch-meal a disease! His spirits hear me,\nAnd yet I needs must curse. But they'll nor pinch,\nFright me with urchin-shows, pitch me i' the mire, 5\nNor lead me, like a firebrand, in the dark\nOut of my way, unless he bid 'em: but\nFor every trifle are they set upon me;\nSometime like apes, that mow and chatter at me,\nAnd after bite me; then like hedgehogs, which 10\nLie tumbling in my barefoot way, and mount\nTheir pricks at my footfall; sometime am I\nAll wound with adders, who with cloven tongues\nDo hiss me into madness.\n\n _Enter TRINCULO._\n\n Lo, now, lo!\nHere comes a spirit of his, and to torment me 15\nFor bringing wood in slowly. I'll fall flat;\nPerchance he will not mind me.\n\n_Trin._ Here's neither bush nor shrub, to bear off any\nweather at all, and another storm brewing; I hear it sing i'\nthe wind: yond same black cloud, yond huge one, looks 20\nlike a foul bombard that would shed his liquor. If it should\nthunder as it did before, I know not where to hide my head:\nyond same cloud cannot choose but fall by pailfuls. What\nhave we here? a man or a fish? dead or alive? A fish: he\nsmells like a fish; a very ancient and fish-like smell; a kind 25\nof not of the newest Poor-John. A strange fish! Were I\nin England now, as once I was, and had but this fish\npainted, not a holiday fool there but would give a piece of\nsilver: there would this monster make a man; any strange\nbeast there makes a man: when they will not give a doit to 30\nrelieve a lame beggar, they will lay out ten to see a dead\nIndian. Legged like a man! and his fins like arms! Warm\no' my troth! I do now let loose my opinion; hold it no\nlonger: this is no fish, but an islander, that hath lately\nsuffered by a thunderbolt. [_Thunder._] Alas, the storm is come 35\nagain! my best way is to creep under his gaberdine; there\nis no other shelter hereabout: misery acquaints a man with\nstrange bed-fellows. I will here shroud till the dregs of the\nstorm be past.\n\n _Enter STEPHANO, singing: a bottle in his hand._\n\n_Ste._ I shall no more to sea, to sea, 40\n Here shall I die a-shore,--\n\nThis is a very scurvy tune to sing at a man's funeral: well,\nhere's my comfort. [_Drinks._\n\n\n[_Sings._ The master, the swabber, the boatswain, and I,\n The gunner, and his mate, 45\n Loved Mall, Meg, and Marian, and Margery,\n But none of us cared for Kate;\n For she had a tongue with a tang,\n Would cry to a sailor, Go hang!\n She loved not the savour of tar nor of pitch; 50\n Yet a tailor might scratch her where'er she did itch.\n Then, to sea, boys, and let her go hang!\n\nThis is a scurvy tune too: but here's my comfort. [_Drinks._\n\n_Cal._ Do not torment me:--O!\n\n_Ste._ What's the matter? Have we devils here? Do 55\nyou put tricks upon 's with savages and men of Ind, ha? I\nhave not scaped drowning, to be afeard now of your four\nlegs; for it hath been said, As proper a man as ever went\non four legs cannot make him give ground; and it shall be\nsaid so again, while Stephano breathes at's nostrils. 60\n\n_Cal._ The spirit torments me:--O!\n\n_Ste._ This is some monster of the isle with four legs, who\nhath got, as I take it, an ague. Where the devil should he\nlearn our language? I will give him some relief, if it be\nbut for that. If I can recover him, and keep him tame, and 65\nget to Naples with him, he's a present for any emperor that\never trod on neat's-leather.\n\n_Cal._ Do not torment me, prithee; I'll bring my wood\nhome faster.\n\n_Ste._ He's in his fit now, and does not talk after the 70\nwisest. He shall taste of my bottle: if he have never drunk\nwine afore, it will go near to remove his fit. If I can recover\nhim, and keep him tame, I will not take too much for\nhim; he shall pay for him that hath him, and that soundly.\n\n_Cal._ Thou dost me yet but little hurt; thou wilt anon, I 75\nknow it by thy trembling: now Prosper works upon thee.\n\n_Ste._ Come on your ways; open your mouth; here is that\nwhich will give language to you, cat: open your mouth; this\nwill shake your shaking, I can tell you, and that soundly:\nyou cannot tell who's your friend: open your chaps again. 80\n\n_Trin._ I should know that voice: it should be--but he\nis drowned; and these are devils:--O defend me!\n\n_Ste._ Four legs and two voices,--a most delicate monster!\nHis forward voice, now, is to speak well of his friend;\nhis backward voice is to utter foul speeches and to detract. 85\nIf all the wine in my bottle will recover him, I will help\nhis ague. Come:--Amen! I will pour some in thy other\nmouth.\n\n_Trin._ Stephano!\n\n_Ste._ Doth thy other mouth call me? Mercy, mercy! 90\nThis is a devil, and no monster: I will leave him; I have\nno long spoon.\n\n_Trin._ Stephano! If thou beest Stephano, touch me,\nand speak to me; for I am Trinculo,--be not afeard,--thy\ngood friend Trinculo. 95\n\n_Ste._ If thou beest Trinculo, come forth: I'll pull thee\nby the lesser legs: if any be Trinculo's legs, these are they.\nThou art very Trinculo indeed! How earnest thou to be\nthe siege of this moon-calf? can he vent Trinculos?\n\n_Trin._ I took him to be killed with a thunder-stroke. 100\nBut art thou not drowned, Stephano? I hope, now, thou\nart not drowned. Is the storm overblown? I hid me\nunder the dead moon-calf's gaberdine for fear of the storm.\nAnd art thou living, Stephano? O Stephano, two Neapolitans\nscaped! 105\n\n_Ste._ Prithee, do not turn me about; my stomach is not\nconstant.\n\n_Cal._ [_aside_] These be fine things, an if they be not sprites.\nThat's a brave god, and bears celestial liquor:\nI will kneel to him. 110\n\n_Ste._ How didst thou 'scape? How camest thou hither?\nswear, by this bottle, how thou camest hither. I escaped\nupon a butt of sack, which the sailors heaved o'erboard, by\nthis bottle! which I made of the bark of a tree with mine\nown hands, since I was cast ashore. 115\n\n_Cal._ I'll swear, upon that bottle, to be thy true subject;\nfor the liquor is not earthly.\n\n_Ste._ Here; swear, then, how thou escapedst.\n\n_Trin._ Swum ashore, man, like a duck: I can swim\nlike a duck, I'll be sworn. 120\n\n_Ste._ Here, kiss the book. Though thou canst swim\nlike a duck, thou art made like a goose.\n\n_Trin._ O Stephano, hast any more of this?\n\n_Ste._ The whole butt, man: my cellar is in a rock by\nthe sea-side, where my wine is hid. How now, moon-calf! 125\nhow does thine ague?\n\n_Cal._ Hast thou not dropp'd from heaven?\n\n_Ste._ Out o' the moon, I do assure thee: I was the man\ni' the moon when time was.\n\n_Cal._ I have seen thee in her, and I do adore thee: 130\nMy mistress show'd me thee, and thy dog, and thy bush.\n\n_Ste._ Come, swear to that; kiss the book: I will furnish\nit anon with new contents: swear.\n\n_Trin._ By this good light, this is a very shallow monster!\nI afeard of him! A very weak monster! The 135\nman i' the moon! A most poor credulous monster! Well\ndrawn, monster, in good sooth!\n\n_Cal._ I'll show thee every fertile inch o' th' island;\nAnd I will kiss thy foot: I prithee, be my god.\n\n_Trin._ By this light, a most perfidious and drunken 140\nmonster! when's god's asleep, he'll rob his bottle.\n\n_Cal._ I'll kiss thy foot; I'll swear myself thy subject.\n\n_Ste._ Come on, then; down, and swear.\n\n_Trin._ I shall laugh myself to death at this puppy-headed\nmonster. A most scurvy monster! I could find in 145\nmy heart to beat him,--\n\n_Ste._ Come, kiss.\n\n_Trin._ But that the poor monster's in drink: an abominable\nmonster!\n\n_Cal._ I'll show thee the best springs; I'll pluck thee berries; 150\nI'll fish for thee, and get thee wood enough.\nA plague upon the tyrant that I serve!\nI'll bear him no more sticks, but follow thee,\nThou wondrous man.\n\n_Trin._ A most ridiculous monster, to make a wonder 155\nof a poor drunkard!\n\n_Cal._ I prithee, let me bring thee where crabs grow;\nAnd I with my long nails will dig thee pig-nuts;\nShow thee a jay's nest, and instruct thee how\nTo snare the nimble marmoset; I'll bring thee 160\nTo clustering filberts, and sometimes I'll get thee\nYoung scamels from the rock. Wilt thou go with me?\n\n_Ste._ I prithee now, lead the way, without any more\ntalking. Trinculo, the king and all our company else being\ndrowned, we will inherit here: here; bear my bottle: fellow 165\nTrinculo, we'll fill him by and by again.\n\n_Cal. sings drunkenly._] Farewell, master; farewell, farewell!\n\n_Trin._ A howling monster; a drunken monster!\n\n_Cal._ No more dams I'll make for fish;\n Nor fetch in firing 170\n At requiring;\n Nor scrape trencher, nor wash dish:\n 'Ban, 'Ban, Cacaliban\n Has a new master:--get a new man.\n\nFreedom, hey-day! hey-day, freedom! freedom, hey-day, 175\nfreedom!\n\n_Ste._ O brave monster! Lead the way. [_Exeunt._\n\n\n Notes: II, 2.\n\n 4: _nor_] F1 F2. _not_ F3 F4.\n 15: _and_] _now_ Pope. _sent_ Edd. conj. (so Dryden).\n 21: _foul_] _full_ Upton conj.\n 35: [Thunder] Capell.\n 38: _dregs_] _drench_ Collier MS.\n 40: SCENE III. Pope.\n [a bottle in his hand] Capell.]\n 46: _and Marian_] _Mirian_ Pope.\n 56: _savages_] _salvages_ Ff.\n 60: _at's nostrils_] Edd. _at 'nostrils_ F1. _at nostrils_ F2 F3 F4.\n _at his nostrils_ Pope.\n 78: _you, cat_] _you Cat_ Ff. _a cat_ Hanmer. _your cat_ Edd. conj.\n 84: _well_] F1 om. F2 F3 F4.\n 115, 116: Steevens prints as verse, _I'll ... thy True ... earthly._\n 118: _swear, then, how thou escapedst_] _swear then: how escapedst\n thou?_ Pope.\n 119: _Swum_] _Swom_ Ff.\n 131: _and thy dog, and thy bush_] _thy dog and bush_ Steevens.\n 133: _new_] F1. _the new_ F2 F3 F4.\n 135: _weak_] F1. _shallow_ F2 F3 F4.\n 138: _island_] F1. _isle_ F2 F3 F4.\n 150-154, 157-162, printed as verse by Pope (after Dryden).\n 162: _scamels_] _shamois_ Theobald. _seamalls, stannels_ id. conj.\n 163: Ste.] F1. Cal. F2 F3 F4.\n 165: Before _here; bear my bottle_ Capell inserts [To Cal.].\n See note (XII).\n 172: _trencher_] Pope (after Dryden). _trenchering_ Ff.\n 175: _hey-day_] Rowe. _high-day_ Ff.\n\n\n\n\n\n", "feat_chapter_length": 2642.0, "feat_summary_name": "Act II, scene ii", "feat_summary_url": "https://web.archive.org/web/20210131162607/https://www.sparknotes.com/shakespeare/tempest/section5/", "target": "Caliban enters with a load of wood, and thunder sounds in the background. Caliban curses and describes the torments that Prospero's spirits subject him to: they pinch, bite, and prick him, especially when he curses. As he is thinking of these spirits, Caliban sees Trinculo and imagines him to be one of the spirits. Hoping to avoid pinching, he lies down and covers himself with his cloak. Trinculo hears the thunder and looks about for some cover from the storm. The only thing he sees is the cloak-covered Caliban on the ground. He is not so much repulsed by Caliban as curious. He cannot decide whether Caliban is a \"man or a fish\" . He thinks of a time when he traveled to England and witnessed freak-shows there. Caliban, he thinks, would bring him a lot of money in England. Thunder sounds again and Trinculo decides that the best shelter in sight is beneath Caliban's cloak, and so he joins the man-monster there. Stephano enters singing and drinking. He hears Caliban cry out to Trinculo, \"Do not torment me! O!\" . Hearing this and seeing the four legs sticking out from the cloak, Stephano thinks the two men are a four-legged monster with a fever. He decides to relieve this fever with a drink. Caliban continues to resist Trinculo, whom he still thinks is a spirit tormenting him. Trinculo recognizes Stephano's voice and says so. Stephano, of course, assumes for a moment that the monster has two heads, and he promises to pour liquor in both mouths. Trinculo now calls out to Stephano, and Stephano pulls his friend out from under the cloak. While the two men discuss how they arrived safely on shore, Caliban enjoys the liquor and begs to worship Stephano. The men take full advantage of Caliban's drunkenness, mocking him as a \"most ridiculous monster\" as he promises to lead them around and show them the isle.", "feat_summary_analysis": "Analysis Trinculo and Stephano are the last new characters to be introduced in the play. They act as comic foils to the main action, and will in later acts become specific parodies of Antonio and Sebastian. At this point, their role is to present comically some of the more serious issues in the play concerning Prospero and Caliban. In Act I, scene ii, Prospero calls Caliban a \"slave\" , \"thou earth\" , \"Filth\" , and \"Hag-seed\" . Stephano and Trinculo's epithet of choice in Act II, scene ii and thereafter is \"monster.\" But while these two make quite clear that Caliban is seen as less than human by the Europeans on the island, they also treat him more humanely than Prospero does. Stephano and Trinculo, a butler and a jester respectively, remain at the low end of the social scale in the play, and have little difficulty finding friendship with the strange islander they meet. \" Misery acquaints a man with strange bedfellows,\" says Trinculo , and then hastens to crawl beneath Caliban's garment in order to get out of the rain. The similarity, socially and perhaps physically as well, between Trinculo and Caliban is further emphasized when Stephano, drunk, initially mistakes the two for a single monster: \"This is some monster of the isle with four legs\" . More important than the emphasis on the way in which Caliban seems to others more monster than man, is the way in which this scene dramatizes the initial encounter between an almost completely isolated, \"primitive\" culture and a foreign, \"civilized\" one. The reader discovers during Caliban and Prospero's confrontation in Act I, scene ii that Prospero initially \"made much of\" Caliban ; that he gave Caliban \"Water with berries in't\" ; that Caliban showed him around the island; and that Prospero later imprisoned Caliban, after he had taken all he could take from him. The reader can see these events in Act II, scene ii, with Trinculo and Stephano in the place of Prospero. Stephano calls Caliban a \"brave monster,\" as they set off singing around the island. In addition, Stephano and Trinculo give Caliban wine, which Caliban finds to be a \"celestial liquor\" . Moreover, Caliban initially mistakes Stephano and Trinculo for Prospero's spirits, but alcohol convinces him that Stephano is a \"brave god\" and decides unconditionally to \"kneel to him\" . This scene shows the foreign, civilized culture as decadent and manipulative: Stephano immediately plans to \"inherit\" the island , using Caliban to show him all its virtues. Stephano and Trinculo are a grotesque, parodic version of Prospero upon his arrival twelve years ago. Godlike in the eyes of the native, they slash and burn their way to power. By this point, Caliban has begun to resemble a parody of himself. Whereas he would \"gabble like / A thing most brutish\" upon Prospero's arrival, because he did not know language, he now is willfully inarticulate in his drunkenness. Immediately putting aside his fear that these men are spirits sent to do him harm, Caliban puts his trust in them for all the wrong reasons. What makes Caliban's behavior in this scene so tragic is that we might expect him, especially after his eloquent curses of Prospero in Act I, scene ii, to know better.", "feat_summary_length": 321.0, "feat_analysis_length": 546.0, "evaluation_predictions": [0, 37, 5536, 3256, 12, 1590, 6, 11, 1336, 15534, 3478, 19, 3, 6319, 12, 253, 8596, 5, 216, 1616, 7, 8, 1345, 13, 26783, 6, 11, 2204, 7, 12, 7387, 365, 3, 9, 2195, 16, 455, 12, 1792, 34, 5, 2702, 29, 1071, 32, 2058, 7, 28, 3, 9, 2437, 4002, 13, 1679, 6, 11, 116, 3, 88, 217, 7, 8, 11604, 6, 3, 88, 19375, 7, 376, 21, 112, 2136, 13, 8596, 5, 366, 3, 88, 3384, 7, 24, 8, 19744, 19, 59, 3, 9, 2495, 6, 983, 6, 3104, 23, 3478, 1112, 112, 809, 10, 3, 88, 317, 7, 8, 19744, 398, 36, 46, 3368, 49, 113, 65, 1310, 8151, 45, 3, 9, 31250, 5, 621, 6663, 128, 2013, 6, 7872, 32, 3475, 6, 8782, 3, 9, 2324, 81, 1687, 30, 8, 2608, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
{"source": "Andre Hoffmann hopes after the 2:2 to kick off the season against Braunschweig that the optimisation of the defence formation will bring points in Aue.", "target": "Andre Hoffmann hofft nach dem 2:2 zum Saisonauftakt gegen Braunschweig, dass die Optimierung der Abwehrformation in Aue Punkte bringt.", "evaluation_predictions": [58100, 34697, 30929, 24474, 96, 5603, 217, 25, 38482, 9, 7191, 481, 28861, 2, 87, 11, 14402, 9, 19283, 18714, 4573, 5, 2927, 18, 1812, 80, 3, 0, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100]}
{"source": "Bradshaw hugs Marbaugh, the man in the suit who played the head Klansman.", "target": "Bradshaw umarmt Marbaugh, den Mann im Anzug, der das Clanmitglied gespielt hat.", "evaluation_predictions": [58100, 17589, 6123, 631, 91, 5393, 46, 1173, 1829, 7626, 2, 25, 1155, 49, 31148, 2, 9, 25, 2840, 14251, 34, 6, 524, 11402, 109, 3, 0, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100]}
{"source": "Even the top Bundesliga clubs have recognised this, and are getting more and more involved in this area.", "target": "Das haben auch die ersten Bundesligavereine erkannt, die sich zunehmend in diesem Bereich engagieren.", "evaluation_predictions": [58100, 1095, 11, 1519, 13, 41614, 19013, 13, 26935, 6, 114, 11, 6, 11122, 10, 31461, 63, 353, 185, 5, 275, 732, 3, 0, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100]}
{"source": "And he was right.", "target": "Er sollte Recht behalten.", "evaluation_predictions": [58100, 228, 110, 513, 820, 3, 0, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100]}
{"source": "But it matters.", "target": "Aber es ist wichtig.", "evaluation_predictions": [58100, 529, 65, 29, 1725, 3, 0, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100, 58100]}
{"texts": ["Single-locus control of saccharin intake in BXD/Ty recombinant inbred (RI) mice: some methodological implications for RI strain analysis.", "\nThe sac locus, with a major effect on saccharin preference, was discovered by Fuller (1974) in C57BL/6J (B6), DBA/2J (D2), and derived crosses, and is now supported in the BXD/Ty recombinant inbred (RI) series by a marked bimodal distribution in saccharin preference among 20 strains. ", "The B6 allele led to increased saccharin preference compared to the D2 allele. ", "Since the search for bimodal distributions reflecting major gene loci is an essential part of RI strain analysis, a new statistical method is proposed to test for bimodality, and comparisons are made to previously proposed methods. ", "Another new RI method, quantitative trait loci (QTL) analysis, allows provisional detection and mapping of minor as well as major gene loci. ", "Using this method as a screen, significant associations with saccharin preference were suggested with marker loci on portions of six chromosomes. ", "One of these, the D12nyu1 locus on chromosome 12, was independently supported in a panel of standard (non-RI) inbred strains also tested for saccharin preference. ", "It is unclear whether this reflects the sac locus."], "meta": {"pile_set_name": "PubMed Abstracts"}, "scores": [0.0007404371281154454, 0.0006493862019851804, 0.001083863782696426, 0.0005679519381374121, 0.0006150567205622792, 0.0006647288682870567, 0.0006601297063753009, 0.0005715194274671376], "avg_score": 0.0006941342217032798, "num_sents": 8}
{"texts": ["--\n-- CREATE_SEQUENCE\n--\n\nCREATE SEQUENCE fkey_table_seq\n INCREMENT BY 1\n MINVALUE 0\n MAXVALUE 1000000\n START 10\n CACHE 10\n CYCLE;\n"], "meta": {"pile_set_name": "Github"}, "scores": [0.0010887592798098922], "avg_score": 0.0010887592798098922, "num_sents": 1}
{"texts": ["WHVT\n\nWHVT (90.5 FM) is a radio station broadcasting a Christian radio format. ", "Licensed to Clyde, Ohio, United States, the station is currently owned by the Clyde Educational Broadcasting Foundation.", "\n\nWHVT is also heard in Findlay, Ohio through a translator on 94.1 FM.", "\n\nReferences\n\nExternal links\n\nHVT"], "meta": {"pile_set_name": "Wikipedia (en)"}, "scores": [0.001762524712830782, 0.00070046610198915, 0.0007304201717488468, 0.0007820845930837095], "avg_score": 0.000993873894913122, "num_sents": 4}
{"texts": ["PCCTS\n\nPCCTS may refer to:\n\nPurdue Compiler Construction Tool Set, the predecessor of the ANTLR parser generator\nPauperes commilitones Christi Templique Solomonici, the Knights Templar"], "meta": {"pile_set_name": "Wikipedia (en)"}, "scores": [0.0007102170493453741], "avg_score": 0.0007102170493453741, "num_sents": 1}
{"texts": ["The effect of acetazolamide on myocardial carbon dioxide space.", "\nCarbon dioxide, water and vascular space were measured in the heart muscle of the dog before and after the administration of acetazolamide. ", "In contrast to the skeletal muscle whose CO2 space was markedly reduced by acetazolamide, cardiac muscle CO2 space was only minimally reduced. ", "This suggests that cardiac muscle does not have extravascular carbonic anhydrase. ", "Its presence in skeletal muscle and absence in cardiac muscle probably relates to the differences in cell size between the two types of muscle and their differing degree of vascularity."], "meta": {"pile_set_name": "PubMed Abstracts"}, "scores": [0.003840510966256261, 0.0008605114999227226, 0.0008273759740404785, 0.00174036156386137, 0.0006871124496683478], "avg_score": 0.001591174490749836, "num_sents": 5}
{"texts": ["#header {\n color: #333333;\n border-left: 1px;\n border-right: 2px;\n}\n#footer {\n color: #114411;\n border-color: #842210;\n}\n"], "meta": {"pile_set_name": "Github"}, "scores": [0.0009919698350131512], "avg_score": 0.0009919698350131512, "num_sents": 1}
{"id": "7", "translation": {"en": "The sky of the first inhabitants A contemporary vison of the Universe Astronomy for everyone", "fr": "Le ciel des premiers habitants La vision contemporaine de l'Univers L'astronomie pour tous"}}
{"context": "Provided is a universal Ku band LNB (9.75/10.600 GHz) which is fitted at the end of the dish and pointed at the correct satellite constellation; most digital receivers will receive the free to air channels. Some broadcasts are free-to-air and unencrypted, some are encrypted but do not require a monthly subscription (known as free-to-view), some are encrypted and require a monthly subscription, and some are pay-per-view services. To view the encrypted content a VideoGuard UK equipped receiver (all of which are dedicated to the Sky service, and cannot be used to decrypt other services) needs to be used. Unofficial CAMs are now available to view the service, although use of them breaks the user's contract with Sky and invalidates the user's rights to use the card.", "question": "What is the universal band that digital recievers will receive free to air channels on?", "answers.text": ["9.75/10.600 GHz", "universal Ku band", "Ku band"], "answers.answer_start": [37, 14, 24], "feat_id": ["57096c95200fba1400367fbe", "57096c95200fba1400367fbe", "57096c95200fba1400367fbe"], "feat_title": ["Sky_(United_Kingdom)", "Sky_(United_Kingdom)", "Sky_(United_Kingdom)"], "start_logits": [-0.5751953125, -8.5546875, -8.8515625, -8.8515625, -8.7109375, -9.0, -9.1953125, -8.9375, -9.1796875, -9.1328125, -8.921875, -9.109375, -8.9140625, -9.125, -9.265625, -8.96875, -8.6328125, -9.1015625, -7.3515625, -7.34765625, -2.345703125, -2.001953125, -0.61572265625, 2.9921875, 3.9296875, 8.0234375, -5.12890625, -0.47509765625, -2.96484375, -4.046875, -2.80859375, -7.1015625, -6.109375, -4.89453125, -5.0859375, -6.46484375, -6.5390625, -1.85546875, -1.0927734375, -6.18359375, -7.45703125, -6.1328125, -7.6796875, -7.8203125, -7.72265625, -8.4765625, -7.74609375, -5.12109375, -8.25, -6.6953125, -7.7578125, -7.06640625, -7.54296875, -7.54296875, -2.51171875, -3.95703125, -5.6171875, -7.7265625, -8.2109375, -8.203125, -7.95703125, -8.2734375, -7.640625, -8.65625, -8.515625, -6.078125, -5.12109375, -7.21484375, -8.3984375, -8.703125, -8.390625, -8.90625, -9.3515625, -9.0078125, -9.28125, -9.0078125, -9.1796875, -9.0390625, -9.1171875, -9.2421875, -9.1640625, -9.4375, -9.3046875, -9.2890625, -9.484375, -9.4375, -9.375, -9.5546875, -9.7578125, -9.359375, -9.375, -9.28125, -9.359375, -9.3125, -9.6640625, -9.5234375, -9.7578125, -9.953125, -9.375, -9.1875, -9.6171875, -9.375, -9.4765625, -9.3828125, -9.6328125, -9.9453125, -9.734375, -9.2109375, -9.234375, -9.1328125, -9.1875, -9.375, -9.5546875, -9.5078125, -9.890625, -7.63671875, -8.8515625, -8.5546875, -8.6328125, -8.7734375, -8.828125, -8.296875, -8.5078125, -8.5, -9.2578125, -9.6640625, -9.3203125, -8.90625, -8.84375, -8.5390625, -8.78125, -8.9140625, -8.765625, -8.7265625, -8.8203125, -8.828125, -9.171875, -9.4609375, -9.140625, -8.765625, -8.7734375, -8.8984375, -8.78125, -8.796875, -8.9453125, -9.125, -9.125, -8.9609375, -8.9296875, -8.9765625, -8.953125, -8.609375, -9.1875, -9.046875, -9.2421875, -9.171875, -9.2109375, -9.1484375, -9.234375, -9.25, -9.0390625, -9.03125, -8.71875, -8.8203125, -9.1484375, -8.9140625, -8.5703125, -8.8984375, -8.8359375, -8.734375, -8.6875, -8.984375, -9.09375, -9.1640625, -9.1015625, -9.1953125, -9.2109375, -9.1796875, -9.2421875, -8.8203125, -9.078125, -9.1953125, -9.09375, -9.0234375, -8.8671875, -8.71875, -8.0, -7.34765625, -7.34765625, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125, -9.125], "end_logits": [-0.1090087890625, -7.796875, -7.93359375, -8.046875, -8.0703125, -7.734375, -7.625, -8.171875, -8.015625, -7.984375, -8.0, -8.0546875, -8.1875, -7.984375, -7.89453125, -8.0703125, -7.984375, -7.7265625, -3.580078125, -3.580078125, -5.44140625, -4.05859375, -5.28125, -3.48046875, -2.853515625, -0.33056640625, 0.75732421875, 0.7744140625, 5.0, -2.15625, -2.30078125, -3.84375, -3.193359375, -3.994140625, -2.98828125, -4.55078125, -2.515625, 7.65234375, 9.4921875, -3.962890625, -7.1953125, -6.3046875, -7.08203125, -7.46484375, -6.234375, -7.3515625, -6.87109375, -4.078125, -6.5078125, -6.4453125, -6.57421875, -7.453125, -6.015625, -4.58203125, 0.8388671875, -1.8701171875, -6.6640625, -7.98046875, -7.02734375, -7.78125, -7.79296875, -7.859375, -7.796875, -7.91796875, -7.66796875, -6.375, -4.41796875, -7.90234375, -7.78125, -7.90625, -8.1953125, -7.83984375, -7.546875, -7.7890625, -7.6171875, -7.84765625, -7.671875, -7.42578125, -7.0, -7.34375, -7.7109375, -7.41015625, -7.63671875, -7.59375, -7.34765625, -7.52734375, -7.7421875, -7.4140625, -6.9609375, -7.62109375, -7.5234375, -7.65234375, -7.69140625, -7.671875, -7.296875, -7.4375, -6.95703125, -4.84765625, -7.234375, -7.69140625, -7.203125, -7.640625, -7.5, -7.69140625, -7.19140625, -6.45703125, -6.23046875, -6.64453125, -7.0078125, -7.4453125, -7.4765625, -7.375, -7.0859375, -7.1484375, -6.76953125, -4.4765625, -5.2890625, -8.5703125, -8.546875, -8.3984375, -8.1640625, -8.328125, -8.4921875, -8.3046875, -7.71484375, -7.09765625, -7.59765625, -7.90234375, -8.3125, -8.5234375, -8.40625, -8.3125, -8.4609375, -8.3984375, -8.359375, -8.3515625, -7.86328125, -7.21875, -7.984375, -8.3671875, -8.4375, -8.296875, -8.3984375, -8.3203125, -8.1171875, -7.9921875, -7.6953125, -8.203125, -8.21875, -8.1484375, -8.15625, -8.21875, -8.046875, -8.1484375, -7.94140625, -7.859375, -8.0, -8.0546875, -7.97265625, -7.85546875, -8.1796875, -8.234375, -8.484375, -8.2109375, -8.0390625, -8.3125, -8.6328125, -8.328125, -8.3671875, -8.4140625, -8.4921875, -8.125, -8.0234375, -7.8984375, -8.0078125, -7.7265625, -7.88671875, -7.9921875, -7.91796875, -8.3515625, -7.96875, -7.9140625, -7.734375, -8.109375, -8.328125, -8.3359375, -7.81640625, -3.580078125, -3.580078125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125, -8.1953125]}
{"context": "At the beginning of the 20th century, important advancement in geological science was facilitated by the ability to obtain accurate absolute dates to geologic events using radioactive isotopes and other methods. This changed the understanding of geologic time. Previously, geologists could only use fossils and stratigraphic correlation to date sections of rock relative to one another. With isotopic dates it became possible to assign absolute ages to rock units, and these absolute dates could be applied to fossil sequences in which there was datable material, converting the old relative ages into new absolute ages.", "question": "What did using fossils help change for scientists?", "answers.text": [""], "answers.answer_start": [-1], "feat_id": ["5a57f487770dc0001aeefefd"], "feat_title": ["Geology"], "start_logits": [-0.33154296875, -9.0859375, -8.78125, -9.0625, -9.1796875, -8.609375, -8.0390625, -8.9140625, -9.1875, -9.296875, -9.1953125, -8.7109375, -7.69921875, -6.7109375, -4.37890625, -6.296875, -6.515625, -5.7578125, -8.078125, -2.109375, -2.5078125, -1.482421875, -3.08984375, -7.17578125, -6.890625, -4.79296875, -3.607421875, -1.404296875, 0.0064697265625, 2.6640625, 2.5703125, 0.43017578125, -0.0098876953125, -4.4453125, -6.640625, -6.5703125, -8.3203125, -7.0859375, -7.640625, -3.1640625, -3.32421875, -2.16796875, -7.45703125, -7.40625, -8.0078125, -7.26953125, 0.1417236328125, -2.65625, -0.147216796875, 2.837890625, 4.1484375, 4.96484375, -5.74609375, 1.0673828125, -6.4609375, -0.5419921875, -0.6845703125, 2.6171875, -2.0859375, -4.54296875, -6.05859375, -4.56640625, -5.26953125, -4.9453125, -5.91015625, -6.15234375, -5.375, -8.21875, -8.2109375, -3.50390625, -4.00390625, -2.41796875, -7.1171875, -8.1328125, -7.21875, -8.6015625, -8.78125, -7.84375, -3.1015625, -3.046875, -3.693359375, -7.46875, -8.4375, -7.796875, -6.78515625, -7.37109375, -7.4765625, -8.03125, -8.046875, -8.859375, -9.1328125, -9.015625, -8.6171875, -8.3046875, -8.453125, -6.0390625, -6.4453125, -6.4140625, -7.30859375, -7.296875, -7.42578125, -6.92578125, -6.7421875, -7.5625, -7.3359375, -8.109375, -7.58984375, -7.27734375, -7.7421875, -7.7734375, -8.578125, -4.61328125, -6.91796875, -2.201171875, -6.76171875, -7.03125, -8.3671875, -8.7578125, -8.34375, -8.078125, -8.5390625, -3.46875, -4.65234375, -8.8046875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875, -8.6875], "end_logits": [0.23095703125, -7.51953125, -7.93359375, -7.90625, -7.70703125, -7.8828125, -7.96484375, -7.8515625, -7.65625, -7.32421875, -7.90234375, -8.3046875, -7.81640625, -7.85546875, -7.140625, -8.1953125, -7.984375, -7.671875, -7.14453125, -4.9765625, -7.921875, -7.3984375, -7.58203125, -7.85546875, -7.2578125, -7.265625, -8.921875, -6.765625, -7.1015625, -6.71875, -5.66015625, -6.6484375, -6.265625, -6.95703125, -7.0859375, -5.921875, -6.1640625, -6.703125, -5.97265625, -4.6640625, -5.51171875, -5.375, -5.00390625, -4.58203125, -4.37890625, -3.03125, 0.388916015625, -0.136962890625, -6.5390625, -4.15625, -4.5625, -1.9052734375, -4.00390625, -3.755859375, -2.03515625, 5.17578125, 2.41796875, -3.134765625, -5.390625, -7.84375, -6.9765625, -6.0703125, -6.3203125, -6.828125, -7.45703125, -7.42578125, -8.4921875, -7.73046875, -7.5078125, -5.33984375, -7.04296875, -7.30859375, -5.96875, -7.3671875, -6.20703125, -5.421875, -5.84375, -5.29296875, 0.81201171875, 0.32568359375, -7.8046875, -8.34375, -7.953125, -8.0703125, -8.7109375, -7.95703125, -7.828125, -8.0859375, -8.1796875, -7.8046875, -7.4921875, -7.609375, -7.796875, -6.734375, -7.12109375, -8.0546875, -8.984375, -8.7421875, -8.46875, -8.3515625, -8.3828125, -7.5703125, -8.640625, -8.296875, -7.875, -8.0625, -8.484375, -8.4609375, -8.4453125, -7.48828125, -6.72265625, -4.0546875, -6.07421875, -7.29296875, -8.5, -7.72265625, -7.21484375, -6.390625, -7.1953125, -7.1640625, -6.515625, -0.884765625, 0.169677734375, -5.65234375, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875, -8.4921875]}
{"context": "Packet mode communication may be implemented with or without intermediate forwarding nodes (packet switches or routers). Packets are normally forwarded by intermediate network nodes asynchronously using first-in, first-out buffering, but may be forwarded according to some scheduling discipline for fair queuing, traffic shaping, or for differentiated or guaranteed quality of service, such as weighted fair queuing or leaky bucket. In case of a shared physical medium (such as radio or 10BASE5), the packets may be delivered according to a multiple access scheme.", "question": "If there is no radio or 10BASE5, how are the packets delivered?", "answers.text": [""], "answers.answer_start": [-1], "feat_id": ["5a66797c846392001a1e1c4b"], "feat_title": ["Packet_switching"], "start_logits": [-0.0369873046875, -7.62109375, -7.515625, -8.4140625, -7.62890625, -7.578125, -9.078125, -9.109375, -9.171875, -9.09375, -8.7265625, -8.9609375, -8.609375, -8.9453125, -9.015625, -9.1484375, -9.109375, -9.0, -5.2265625, -5.2265625, -8.2265625, -8.546875, -8.6953125, -8.7734375, -9.0078125, -8.90625, -8.7890625, -8.5625, -8.9375, -8.3203125, -7.8984375, -8.53125, -8.6953125, -8.6171875, -8.3828125, -8.8359375, -8.703125, -8.8828125, -7.29296875, -6.60546875, -6.65625, -7.765625, -7.234375, -6.35546875, -3.79296875, -7.7421875, -7.81640625, -8.578125, -7.60546875, -8.1484375, -8.1015625, -7.5859375, -7.89453125, -7.86328125, -8.46875, -8.8359375, -8.8125, -8.6953125, -8.6875, -8.8828125, -9.0234375, -7.4921875, -8.9140625, -7.71484375, -8.0, -7.9453125, -7.2578125, -8.8359375, -8.7109375, -8.7109375, -8.0234375, -8.4375, -8.4140625, -8.5, -9.046875, -9.1875, -9.0390625, -9.0078125, -9.28125, -9.28125, -9.0546875, -8.6015625, -8.9765625, -8.875, -8.9375, -9.2109375, -9.4140625, -8.265625, -9.5625, -9.2265625, -8.6875, -7.62109375, -8.9140625, -9.1484375, -9.171875, -9.0703125, -7.25390625, -9.0234375, -5.7890625, -5.22265625, 2.166015625, -1.51171875, -3.955078125, -2.51171875, 0.52001953125, -3.9296875, -2.955078125, -6.359375, -6.66015625, -6.5390625, -4.12109375, -6.66796875, -7.53515625, -8.4921875, -8.2578125, -5.62109375, -1.3330078125, 0.6142578125, -2.72265625, -4.68359375, -4.69140625, 2.974609375, 1.001953125, -4.83984375, -1.12890625, 5.234375, -6.359375, -1.95703125, -5.2265625, -5.2265625, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125, -9.078125], "end_logits": [0.560546875, -8.7265625, -8.6328125, -7.9453125, -8.34375, -8.0859375, -7.609375, -7.7109375, -7.86328125, -7.95703125, -7.453125, -7.515625, -7.59765625, -7.7109375, -7.68359375, -7.6640625, -7.4765625, -7.62109375, -0.305419921875, -0.30615234375, -8.390625, -8.1171875, -8.0078125, -7.8203125, -8.125, -8.2578125, -8.296875, -8.515625, -8.15625, -8.6796875, -8.75, -7.94140625, -7.68359375, -8.4609375, -8.5703125, -8.3125, -8.1640625, -8.0546875, -6.8203125, -6.51171875, -8.71875, -8.703125, -9.046875, -9.109375, -7.953125, -8.0, -8.0546875, -7.43359375, -6.984375, -7.43359375, -7.640625, -7.16796875, -7.546875, -8.296875, -8.1953125, -7.9921875, -7.59375, -7.59375, -7.9765625, -7.8515625, -6.99609375, -5.03515625, -6.65234375, -8.65625, -8.84375, -8.8671875, -8.5, -7.890625, -8.140625, -8.234375, -8.515625, -8.1015625, -8.40625, -8.453125, -8.1015625, -7.921875, -8.0234375, -7.984375, -7.61328125, -7.59375, -7.6015625, -8.1953125, -7.97265625, -8.125, -7.98828125, -7.41015625, -7.47265625, -5.84765625, -6.8828125, -7.71875, -8.296875, -8.71875, -8.0, -7.65625, -7.42578125, -7.64453125, -8.4765625, -7.75, -4.8828125, -2.16796875, -5.4921875, -7.81640625, -8.1328125, -7.7265625, -5.4375, -4.71875, 0.9931640625, -7.21484375, -8.3359375, -8.0859375, -6.94140625, -7.62109375, -8.0078125, -7.46875, -7.109375, -5.62109375, -3.880859375, -6.25, -6.46875, -5.54296875, -6.421875, -3.8828125, -2.57421875, -3.48046875, -3.591796875, -2.716796875, 0.304931640625, 8.3203125, -0.3076171875, -0.306640625, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875, -8.1875]}
{"context": "Many complexity classes are defined using the concept of a reduction. A reduction is a transformation of one problem into another problem. It captures the informal notion of a problem being at least as difficult as another problem. For instance, if a problem X can be solved using an algorithm for Y, X is no more difficult than Y, and we say that X reduces to Y. There are many different types of reductions, based on the method of reduction, such as Cook reductions, Karp reductions and Levin reductions, and the bound on the complexity of reductions, such as polynomial-time reductions or log-space reductions.", "question": "What are two examples of different types of reduction?", "answers.text": ["Karp reductions and Levin reductions", "Cook reductions, Karp reductions"], "answers.answer_start": [469, 452], "feat_id": ["56e1c9bfe3433e1400423195", "56e1c9bfe3433e1400423195"], "feat_title": ["Computational_complexity_theory", "Computational_complexity_theory"], "start_logits": [-0.1717529296875, -9.2578125, -9.375, -9.2890625, -9.265625, -9.328125, -9.0390625, -9.125, -9.03125, -8.6796875, -9.328125, -3.53515625, -9.203125, -9.0, -7.7421875, -7.96484375, -8.5234375, -7.61328125, -7.40625, -7.3671875, -6.41796875, -7.73046875, -7.33984375, -3.94921875, -5.125, -3.296875, -3.310546875, -1.9140625, 0.477783203125, 0.0234375, -5.375, -3.1796875, -6.03125, -6.7109375, -7.48828125, -2.95703125, -5.6328125, -2.29296875, -5.3828125, -5.8046875, -5.921875, -5.33984375, -5.6328125, -5.39453125, -5.37890625, -6.62109375, -7.09375, -7.1015625, -7.17578125, -6.2421875, -7.4921875, -7.01171875, -3.16796875, -3.53515625, -2.515625, -2.732421875, -2.21484375, -0.58935546875, -6.5, -6.3671875, -6.29296875, -7.73828125, -7.80078125, -7.328125, -7.62890625, -7.37109375, -5.92578125, -7.2734375, -5.375, -7.3125, -5.67578125, -8.2109375, -7.9296875, -8.3671875, -7.609375, -8.3046875, -5.3359375, -7.14453125, -5.26171875, -5.63671875, -5.55078125, -5.421875, -2.04296875, -6.05859375, -7.74609375, -0.611328125, -1.3076171875, -2.123046875, -5.62890625, -5.07421875, -2.40625, -3.38671875, -5.11328125, -0.85986328125, -2.337890625, 0.293701171875, -2.08984375, 0.97265625, 0.45263671875, -7.23828125, -1.705078125, 0.20166015625, 3.806640625, 0.490478515625, 9.265625, -7.04296875, -6.59765625, -5.67578125, -7.26171875, -5.41796875, -6.0859375, -4.58203125, -0.74560546875, -4.5234375, -5.23046875, -2.412109375, -1.0595703125, -7.546875, -6.73828125, -4.8359375, -7.4921875, -3.3984375, -4.453125, -1.390625, -3.4453125, 9.5390625, -7.2265625, -7.6640625, -7.45703125, -7.20703125, -5.0859375, -6.953125, 2.1015625, -7.78515625, -7.43359375, -0.76318359375, -3.53515625, -8.8671875, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125, -9.03125], "end_logits": [0.461669921875, -7.17578125, -7.0390625, -7.0859375, -7.07421875, -7.42578125, -7.6796875, -7.41796875, -7.73046875, -7.66015625, -7.1328125, 2.392578125, -7.97265625, -7.8828125, -8.2734375, -7.890625, -8.3125, -8.4453125, -8.7890625, -8.859375, -8.4296875, -8.59375, -8.59375, -6.98828125, -6.01953125, -7.53125, -7.32421875, -8.6875, -7.453125, -6.62109375, -8.0390625, -7.3203125, -6.71484375, -7.109375, -5.31640625, -1.66796875, -1.9833984375, -7.36328125, -8.3828125, -8.859375, -8.1171875, -8.71875, -9.0859375, -8.921875, -8.375, -8.65625, -8.140625, -8.421875, -8.1640625, -6.69921875, -7.63671875, -6.44921875, -3.1015625, 2.39453125, -7.203125, -5.8671875, -7.40234375, -7.72265625, -8.8515625, -8.2578125, -7.703125, -8.3359375, -8.296875, -8.046875, -8.25, -8.515625, -7.6484375, -8.359375, -7.61328125, -8.3671875, -8.03125, -8.2578125, -8.1328125, -7.74609375, -7.5234375, -7.60546875, -6.73828125, -7.51171875, -7.78125, -8.2265625, -8.046875, -8.203125, -6.55859375, -6.11328125, -5.8984375, -0.3662109375, -1.3642578125, -4.203125, -6.9921875, -7.14453125, -5.75390625, -6.296875, -7.4375, -4.9375, -4.40234375, -3.845703125, -3.111328125, -3.986328125, -2.70703125, -4.33984375, 0.30615234375, -1.212890625, -1.7392578125, -2.298828125, -0.86181640625, 0.73388671875, 0.68408203125, -2.99609375, -1.4404296875, 5.58203125, 3.041015625, -0.369384765625, 10.1015625, 2.626953125, -1.1650390625, -5.34375, -5.34765625, -4.67578125, -4.56640625, 0.65869140625, -1.9443359375, 4.8125, 0.71142578125, -1.7958984375, -3.423828125, -1.310546875, -4.16015625, -3.798828125, -4.53515625, -3.4453125, 4.140625, 1.6337890625, -4.3828125, -2.962890625, -0.6640625, 9.7265625, 2.39453125, -0.221435546875, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125, -8.0703125]}
{"context": "In 1096, Crusaders passing by the siege of Amalfi were joined by Bohemond of Taranto and his nephew Tancred with an army of Italo-Normans. Bohemond was the de facto leader of the Crusade during its passage through Asia Minor. After the successful Siege of Antioch in 1097, Bohemond began carving out an independent principality around that city. Tancred was instrumental in the conquest of Jerusalem and he worked for the expansion of the Crusader kingdom in Transjordan and the region of Galilee.[citation needed]", "question": "When did Tancred lay siege to Antioch?", "answers.text": [""], "answers.answer_start": [-1], "feat_id": ["5ad4017a604f3c001a3ffd1f"], "feat_title": ["Normans"], "start_logits": [-0.919921875, -8.84375, -8.5703125, -8.84375, -9.0, -8.9140625, -8.8984375, -8.984375, -9.0234375, -8.5078125, -9.0078125, -7.5859375, -8.6171875, -6.93359375, -3.728515625, -5.12890625, -8.140625, -8.5234375, -8.75, -8.6015625, -8.390625, -7.76171875, -7.69921875, -8.328125, -7.19140625, -8.453125, -7.703125, -8.4453125, -8.359375, -8.2421875, -8.03125, -8.8203125, -8.703125, -7.88671875, -8.03125, -8.09375, -8.2421875, -8.2421875, -8.2265625, -8.5234375, -8.578125, -8.3125, -8.484375, -8.53125, -8.8359375, -8.3046875, -8.8984375, -9.0546875, -8.8828125, -6.0078125, -7.86328125, -6.984375, -8.3125, -8.15625, -8.421875, -8.5390625, -8.7734375, -7.9375, -8.5390625, -8.484375, -7.83203125, -8.3046875, -8.4921875, -8.015625, -8.296875, -5.62109375, -5.5, -4.734375, -1.3515625, -1.4619140625, -2.1796875, -2.4765625, -5.5078125, 1.0478515625, -1.1669921875, 6.2109375, -0.467041015625, -6.71875, -7.33984375, -8.453125, -8.6875, -8.6484375, -9.15625, -8.90625, -8.8515625, -8.5, -8.8359375, -8.859375, -8.765625, -5.19140625, -4.51171875, -8.1015625, -8.7578125, -8.859375, -8.7265625, -8.6953125, -8.9453125, -8.796875, -8.6640625, -8.9375, -5.78515625, -8.78125, -8.53125, -8.7890625, -8.8515625, -8.7890625, -8.53125, -8.6875, -8.3984375, -7.8828125, -8.9296875, -8.7734375, -8.53125, -9.2109375, -8.796875, -9.2421875, -9.0859375, -9.265625, -9.1875, -7.8984375, -6.46484375, -8.3046875, -9.0, -8.8125, -7.61328125, -7.5859375, -7.58203125, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875, -8.96875], "end_logits": [-0.75390625, -7.73046875, -8.0703125, -8.2421875, -8.0390625, -8.03125, -8.015625, -7.78125, -7.9140625, -7.90234375, -7.73046875, -5.10546875, -8.5703125, -8.578125, -7.171875, -4.234375, -7.609375, -8.3828125, -8.2265625, -8.109375, -8.3203125, -8.6796875, -8.53125, -8.359375, -8.6328125, -8.1328125, -7.1953125, -8.3515625, -8.3828125, -8.5390625, -8.5, -7.9921875, -8.203125, -8.1171875, -7.58203125, -8.5859375, -8.6484375, -7.7421875, -8.46875, -8.390625, -8.171875, -8.4296875, -8.5, -8.2265625, -8.1953125, -8.4453125, -8.09375, -7.99609375, -7.85546875, -6.609375, -7.69921875, -8.2734375, -7.8984375, -8.5078125, -8.359375, -8.2109375, -8.0234375, -8.3828125, -8.4140625, -8.40625, -7.8515625, -8.203125, -8.3515625, -8.2109375, -8.109375, -7.859375, -5.84375, -4.98046875, -6.54296875, -6.4921875, -5.4609375, -6.1875, -7.0, -4.33984375, -6.03515625, -1.693359375, 5.5859375, -3.23828125, -7.62109375, -6.9375, -7.6640625, -7.76171875, -7.3984375, -7.75, -7.3828125, -7.02734375, -6.8671875, -7.03515625, -7.1015625, -4.9765625, -1.4228515625, -7.55078125, -7.91796875, -7.47265625, -8.0, -8.265625, -7.98828125, -8.1796875, -8.15625, -7.8203125, -7.61328125, -7.88671875, -8.1640625, -8.2578125, -8.125, -8.234375, -8.2734375, -8.296875, -8.4609375, -7.765625, -7.35546875, -7.76953125, -7.98828125, -7.62109375, -7.0546875, -7.4609375, -7.734375, -7.50390625, -7.515625, -7.16015625, -5.05859375, -5.828125, -7.6171875, -7.71484375, -7.64453125, -5.10546875, -5.10546875, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625, -8.390625]}
{"context": "In October 2010, the open-access scientific journal PLoS Pathogens published a paper by a multinational team who undertook a new investigation into the role of Yersinia pestis in the Black Death following the disputed identification by Drancourt and Raoult in 1998. They assessed the presence of DNA/RNA with Polymerase Chain Reaction (PCR) techniques for Y. pestis from the tooth sockets in human skeletons from mass graves in northern, central and southern Europe that were associated archaeologically with the Black Death and subsequent resurgences. The authors concluded that this new research, together with prior analyses from the south of France and Germany, \". . . ends the debate about the etiology of the Black Death, and unambiguously demonstrates that Y. pestis was the causative agent of the epidemic plague that devastated Europe during the Middle Ages\".", "question": "What scientific journal in France published a prior analysis of the Black Death?", "answers.text": [""], "answers.answer_start": [-1], "feat_id": ["5a2eca47a83784001a7d2484"], "feat_title": ["Black_Death"], "start_logits": [-0.1685791015625, -8.6796875, -8.9765625, -8.953125, -8.90625, -8.59375, -9.0546875, -9.015625, -8.9296875, -8.859375, -8.8359375, -8.890625, -9.046875, -9.15625, -9.0546875, -7.38671875, -7.38671875, -6.60546875, -5.01953125, -4.01953125, -3.97265625, -2.552734375, -1.8203125, -7.1015625, -6.37890625, -4.31640625, -2.103515625, 3.130859375, -7.0625, -4.3671875, -8.5859375, -8.96875, -8.4453125, -9.2109375, -9.1015625, -8.7890625, -8.890625, -9.4765625, -9.3671875, -9.015625, -9.28125, -8.734375, -8.8515625, -8.546875, -8.6796875, -8.515625, -8.0859375, -9.1796875, -9.6328125, -9.6875, -9.953125, -9.453125, -9.078125, -9.1953125, -9.1796875, -8.71875, -8.6015625, -8.875, -8.7265625, -9.2890625, -9.0859375, -9.28125, -9.4296875, -9.171875, -9.3125, -9.1796875, -9.0390625, -2.4140625, -6.9296875, -6.5703125, -7.234375, -7.8046875, -8.1015625, -8.3515625, -8.015625, -9.1484375, -8.78125, -9.1171875, -8.796875, -9.2421875, -9.203125, -9.2578125, -9.2109375, -9.1328125, -8.640625, -9.0390625, -9.1953125, -8.3828125, -8.46875, -8.3828125, -8.890625, -9.1484375, -8.890625, -8.5859375, -8.3359375, -8.4765625, -8.734375, -8.8125, -8.5078125, -8.5625, -8.6953125, -8.6484375, -8.84375, -8.609375, -8.7109375, -8.8984375, -8.8515625, -8.9921875, -8.6640625, -7.25, -8.7578125, -8.5546875, -8.3671875, -8.390625, -8.6015625, -8.3046875, -8.3046875, -8.6015625, -8.828125, -8.6171875, -8.765625, -7.33203125, -5.15625, -8.328125, -7.35546875, -6.26171875, -6.515625, -6.38671875, -6.296875, -6.1875, -5.12890625, -6.01171875, -5.1171875, -4.83203125, -4.07421875, -3.220703125, -4.40234375, -4.66796875, -4.8984375, -6.921875, -4.58984375, -6.6640625, -0.57373046875, -5.69921875, -6.59765625, -7.3828125, -6.73046875, -5.42578125, -8.390625, -7.52734375, -8.25, -7.98828125, -8.015625, -8.75, -8.5859375, -8.3359375, -8.546875, -5.90234375, -8.6484375, -6.890625, -6.1328125, -8.609375, -7.828125, -6.4765625, -6.70703125, -7.078125, -8.6640625, -8.9296875, -8.953125, -8.2265625, -8.25, -8.4375, -9.1953125, -8.4296875, -8.875, -8.859375, -9.0703125, -9.0703125, -9.4453125, -9.1953125, -7.83203125, -8.9765625, -8.8828125, -8.6875, -2.76953125, -3.669921875, -7.38671875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875, -8.7421875], "end_logits": [0.249755859375, -8.046875, -7.87890625, -7.98828125, -7.9921875, -7.6953125, -7.69921875, -8.0703125, -8.1484375, -8.2109375, -8.1171875, -8.1015625, -8.1328125, -7.8984375, -7.796875, -5.75, -5.75, -7.8671875, -6.97265625, -4.98046875, -4.3828125, -6.83203125, -6.2109375, -7.50390625, -4.80078125, -6.05078125, -4.96484375, -3.087890625, -2.193359375, 5.55859375, -4.94140625, -7.421875, -7.859375, -7.5546875, -7.66796875, -7.5859375, -7.14453125, -7.3828125, -7.55078125, -7.91015625, -7.60546875, -8.046875, -8.140625, -8.375, -8.1875, -8.359375, -8.28125, -7.4296875, -5.46875, -3.947265625, -3.919921875, -7.28125, -7.73046875, -7.57421875, -6.6171875, -7.92578125, -8.3515625, -7.859375, -7.921875, -7.734375, -8.03125, -7.8046875, -7.5546875, -7.9140625, -7.5234375, -6.67578125, -7.64453125, -4.31640625, -6.4375, -8.828125, -8.9609375, -9.0546875, -8.78125, -8.6953125, -8.5859375, -7.890625, -8.03125, -7.87890625, -8.046875, -7.91796875, -7.92578125, -7.56640625, -7.33984375, -8.0546875, -8.3359375, -7.97265625, -7.66796875, -8.3046875, -8.5703125, -8.5859375, -8.1875, -7.75, -8.0625, -8.4921875, -8.828125, -8.5625, -8.421875, -8.3984375, -8.5078125, -8.375, -8.3671875, -8.3828125, -8.1328125, -8.4609375, -8.3671875, -8.40625, -8.390625, -8.3125, -8.125, -7.47265625, -8.1953125, -8.5625, -8.421875, -8.3671875, -8.2890625, -8.71875, -8.6796875, -8.390625, -7.72265625, -8.46875, -8.203125, -8.0859375, -6.92578125, -7.3984375, -8.2421875, -7.6171875, -8.1640625, -8.59375, -8.0, -7.9296875, -7.9296875, -7.45703125, -7.265625, -8.3203125, -7.64453125, -6.67578125, -7.265625, -8.21875, -6.96484375, -7.83984375, -7.08984375, -7.1328125, -2.111328125, -5.33203125, -7.52734375, -7.1171875, -7.46484375, -8.21875, -8.3515625, -7.59765625, -8.40625, -8.84375, -8.109375, -7.4921875, -8.2421875, -8.3046875, -7.734375, -5.59375, -7.4140625, -8.625, -8.875, -8.3984375, -8.5390625, -9.0, -9.3203125, -8.625, -8.0, -7.4921875, -7.76953125, -8.5859375, -8.359375, -7.8671875, -7.328125, -6.7734375, -7.82421875, -7.875, -7.20703125, -6.76953125, -7.296875, -7.35546875, -7.2265625, -7.38671875, -7.296875, -6.2421875, -2.056640625, -3.666015625, -5.75, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875, -8.6171875]}
{"long": "Demographics\n", "short": "People\n"}
{"long": "ORGANIZATION@1 !\n", "short": "ORGANIZATION@2 !\n"}
{"long": "In NUMBER@1 , during the period of its highest splendour , the city made itself independent from the bishops of LOCATION@1 .\n", "short": "LOCATION@1 .\n"}
{"long": "The mills contributed to the growth of LOCATION@1 .\n", "short": "LOCATION@1 .\n"}
{"long": "Apart from being a member of the ORGANIZATION@1 , he is also a Foreign Associate of the ORGANIZATION@2 of the LOCATION@1 , -LSB- -RSB- and of the ORGANIZATION@3 .\n", "short": "ORGANIZATION@1 .\n"}
{"long": "PERSON@1 as PERSON@2 : A former sergeant on the losing side of the Unification War , he struggles to survive free and independent of the Alliance .\n", "short": "PERSON@2 .\n"}
{"long": "ORGANIZATION@1 is a MISC@1 based distribution specifically made for handling GIS information .\n", "short": "MISC@2 .\n"}
{"long": "ORGANIZATION@1 is one of the NUMBER@1 ORGANIZATION@2 in the LOCATION@1 .\n", "short": "ORGANIZATION@3 .\n"}
{"long": "PERSON@1 , wife of PERSON@2 .\n", "short": "PERSON@3 .\n"}
{"texts": ["US Judge into sex, guns and drugs\n\nRelated Links\n\nAtlanta - A 67-year-old federal judge's wild relationship with a stripper started with a lap dance, prosecutors said, and quickly escalated into escapades of prostitution and gun-toting drug deals for cocaine and prescription pills.", "\n\nSenior Judge Jack T Camp, a veteran jurist who had achieved a status that allowed him a lighter case-load, now finds himself in a peculiar position, in front of one of his peers, and with lawyers combing through his decisions, wondering whether they have grounds to challenge them.", "\n\n\"I don't know whether the allegations are true or whether they infected the decision making, but it's incumbent upon me to raise these issues,\" said Gerry Weber, a civil rights attorney who is readying an appeal in a case that Camp ruled on in June.", "\n\nCamp, a Vietnam War veteran who was appointed by Republican President Ronald Reagan in the 1980s, built a reputation for handing out stiff sentences, including for drug convictions. ", "He could face years behind bars on drug and gun charges.", "\n\nThe judge's attorney has said he intends to plead not guilty.", "\n\nThe stripper, who previously had a felony drug trafficking conviction, had been secretly working with the FBI since the spring to build a case against the judge. ", "In exchange, prosecutors pledged not to charge her.", "\n\nCamp's relationship with the dancer, who was not identified in court documents, began earlier this year.", "\n\nSex on the tab\n\nA day after receiving his first dance, he returned to the Goldrush Showbar for more dances, and added sex and cocaine to his tab, authorities said.", "\n\nOver the next few months, the two used cocaine and other drugs together, sometimes at the strip club, and the judge would pay $40 to $50 to join her getting high, according to a sworn statement.", "\n\nIn June, the judge followed the stripper to a house in the Atlanta suburb of Marietta to buy drugs, carrying a semi-automatic handgun with him he later told her he brought to protect her, the affidavit said.", "\n\nThe relationship finally unravelled on Friday. ", "Camp, who is married with two grown children, told the stripper he would try to help with her criminal record and advised her to tell a potential employer who had rejected her application that \"it was a minor offence and that one of the judges on the court can explain that to him,\" according to the affidavit.", "\n\nA few hours later, the dancer asked Camp to follow her to a grocery store parking lot to meet a drug dealer.", "\n\nCamp then gave the stripper $160 to buy the drugs from an undercover officer. ", "About ten minutes later, FBI agents swarmed the judge's car when he drove to a nearby night club.", "\n\nConflict of interest\n\nThey recovered the plastic bag containing blue pills and a white substance, along with two guns from his front seat.", "\n\nNot only has the case shocked the legal community, it has created a conflict of interest mess. ", "For Camp's bail hearing, prosecutors were flown in from Washington and a magistrate travelled from Alabama because the local judges recused themselves from the case.", "\n\nCamp supervised several cases while he was being investigated, including an April trial involving a pilot charged with shipping cocaine for drug traffickers. ", "A jury acquitted the pilot after a trial in which prosecutors carted out 174kg of cocaine in front of the jury several times.", "\n\nIt's unclear whether any of the judge's decisions will be revisited.", "\n\n\"If you could establish that a judge was under the influence of some substance at the time he presided or ruled, then you could conceive of a basis for a challenge,\" said Pete Donaldson, a criminal defence attorney based in Albany, Georgia.", "\n\n\"You can envision all manner of circumstances where that might come into play.\"", "\n\nTell us a bit about yourself:\n\nSaving your profile\n\nSettings\n\nNews24 allows you to edit the display of certain components based on a location.", "\nIf you wish to personalise the page based on your preferences, please select a\nlocation for each component and click \"Submit\" in order for the changes to\ntake affect.", "\n\nYour Location*\n\nWeather*\n\nAlways remember my setting\n\nSaving your settings\n\nFacebook Sign-In\n\nHi News addict,\n\nJoin the News24 Community to be involved in breaking the news.", "\n\nLog in with Facebook to comment and personalise news, weather and listings."], "meta": {"pile_set_name": "Pile-CC"}, "scores": [0.030435800552368164, 0.0007006566738709807, 0.0006049307412467897, 0.001057017594575882, 0.14495420455932617, 0.0008530892082490027, 0.01075231283903122, 0.0010561449453234673, 0.0006003778544254601, 0.28662681579589844, 0.010985507629811764, 0.001695057493634522, 0.0006164733786135912, 0.0024027409963309765, 0.0009779409738257527, 0.03238430246710777, 0.0009513634140603244, 0.0010494571179151535, 0.0006720225792378187, 0.0005574902170337737, 0.0008209128282032907, 0.006946972105652094, 0.0005808142595924437, 0.0005913188215345144, 0.0005739891203120351, 0.0006000732537358999, 0.0005426714778877795, 0.0006228407146409154, 0.0006751337205059826], "avg_score": 0.018685808045998346, "num_sents": 29}
{"texts": ["\ncreate or replace function\ninsert_package_delta(n_in in varchar)\nreturns numeric\nas\n$$\ndeclare\n name_id numeric;\nbegin\n name_id := nextval('rhn_packagedelta_id_seq');\n\n insert into rhnPackageDelta(id, label)\n values (name_id, n_in)\n on conflict do nothing;\n\n select id\n into strict name_id\n from rhnpackagedelta\n where label = n_in;\n\n return name_id;\nend;\n$$ language plpgsql;\n"], "meta": {"pile_set_name": "Github"}, "scores": [0.0013729478232562542], "avg_score": 0.0013729478232562542, "num_sents": 1}
{"texts": ["As the water temps drop, everyones wearing wetsuits. ", "What about your feet???? ", "Mine get pretty numb, and then I crash a lot cause I cant feel my feet. ", "Is there anybody that makes wetsuit socks that fit into bindings? ", "I found a few on ebay, but they had soles, mainly for surfing. ", "Any help would be appreciated. ", "thanks"], "meta": {"pile_set_name": "Pile-CC"}, "scores": [0.0010955793550238013, 0.02909574657678604, 0.021184291690587997, 0.0028005142230540514, 0.0006170368869788945, 0.0005353752057999372, 0.0007007452077232301], "avg_score": 0.008004184163707708, "num_sents": 7}
{"image id": "https://ih1.redbubble.net/image.565376033.2953/ssrco,classic_tee,womens,322e3f:696a94a5d4,front,square_product,x600-bg,f8f8f8.1u1.jpg", "embeddings": [0.002839810447767377, 0.028849784284830093, -0.048300761729478836, 0.009614916518330574, 0.018553541973233223, -0.058081403374671936, 0.056644946336746216, -0.014525345526635647, 0.03481951728463173, 0.02852868288755417, 0.030627122148871422, 0.010904273018240929, 0.04521724209189415, -0.05140867829322815, 0.01155837532132864, 0.007234187331050634, 0.06020154803991318, 0.05863633379340172, 0.013700543902814388, -0.03509184345602989, -0.024593666195869446, -0.026708023622632027, 0.008477022871375084, -0.05079549551010132, 0.005577136296778917, 0.04640910401940346, -0.013528714887797832, -0.01643647626042366, 0.05141442269086838, -0.02141951210796833, 0.025948552414774895, -0.005376455374062061, -0.003033965826034546, -0.0506342276930809, -0.020923880860209465, -0.04750446230173111, -0.017390945926308632, 0.06645313650369644, -0.07484439015388489, 0.005151448305696249, -0.03420339524745941, -0.020402714610099792, -0.05056624114513397, -0.02097158133983612, -0.032256752252578735, -0.031445879489183426, 0.011794917285442352, -0.013464132323861122, -0.06851547956466675, -0.03066185861825943, 0.037765003740787506, -0.020840683951973915, 0.007158474065363407, 0.007897919043898582, -0.02730502560734749, -0.014592080377042294, 0.03366382420063019, 0.0381673239171505, -0.03044854663312435, -0.0019627008587121964, 0.006069882772862911, -0.031140847131609917, 0.002056770259514451, 0.04772031679749489, -0.005077395588159561, -0.04838667809963226, 0.0064719184301793575, -0.0077056316658854485, 0.002767141442745924, 0.021181831136345863, 0.002841751091182232, -0.01611868478357792, -0.014520486816763878, 0.0047626434825360775, -0.008388033136725426, -0.0026863107923418283, -0.027696462348103523, -0.020645374432206154, -0.06448180228471756, -0.010505545884370804, -0.05662287399172783, -0.02102263830602169, -0.03293437138199806, 0.01077085081487894, 0.02637592703104019, -0.002615251811221242, -0.06273077428340912, -0.06738337874412537, 0.0007849197136238217, -0.017309818416833878, 0.04049894958734512, 0.025756409391760826, -0.5362943410873413, 0.06182058900594711, -0.042046014219522476, 0.05904103443026543, -0.020589321851730347, -0.004093464929610491, 0.0006079473532736301, 0.01679389178752899, -0.0016605900600552559, -0.052275609225034714, -0.008206016384065151, 0.03873683884739876, 0.03277704492211342, -0.010200109332799911, 0.05510614812374115, 0.02890070714056492, -0.002757755108177662, 0.03192269057035446, -0.009356527589261532, 0.020106645300984383, -0.0845918357372284, -0.013386278413236141, -0.031116504222154617, 0.03592366352677345, -0.03589776158332825, -0.02410373091697693, -0.02084098756313324, 0.04975224658846855, -0.0044259256683290005, 0.028264619410037994, 0.0017681504832580686, -0.0693749412894249, -0.013915125280618668, 0.020687125623226166, -0.03616216033697128, 0.03155705705285072, -0.01973709650337696, 0.001500127138569951, -0.0004968676366843283, 0.023127546533942223, 0.03795827180147171, 0.08760825544595718, 0.029910679906606674, 0.04966437444090843, -0.1056416928768158, -8.456993236904964e-05, -0.019361477345228195, -0.021152514964342117, -0.027473432943224907, 0.014485535211861134, -0.005222196690738201, 0.011203194968402386, -0.005200530402362347, 0.019664108753204346, 0.0323658250272274, 0.08415450155735016, -0.017280610278248787, 0.02638823539018631, 0.009041023440659046, 0.025734972208738327, 0.12839022278785706, -0.038696225732564926, 0.006440437398850918, 0.008567508310079575, -0.01260475441813469, 0.002234805142506957, 0.06408508121967316, 0.055015284568071365, -0.007485812064260244, 0.0212984811514616, 0.044079508632421494, -0.013157928362488747, 0.027361789718270302, -0.02959119901061058, 0.045109108090400696, -0.02264786884188652, -0.02946038544178009, 0.035691987723112106, -0.04212556406855583, 0.017131544649600983, 0.04725944250822067, -0.009772295132279396, 0.023554602637887, -0.012885022908449173, 0.05734383687376976, 0.014729676768183708, 0.01964636705815792, -0.045987751334905624, 0.0492902472615242, 0.05581628531217575, 0.000773110834416002, -0.005388200748711824, 0.04482274875044823, 0.043164897710084915, 0.003926430828869343, 0.030695516616106033, 0.00014852076128590852, 0.025027461349964142, -0.037170473486185074, -0.048254773020744324, -0.007642717566341162, 0.025989297777414322, 0.05485309660434723, -0.008162394165992737, 0.01608378440141678, 0.014195183292031288, 0.023029085248708725, 0.026656465604901314, -0.02946706861257553, 0.010952486656606197, 0.006714572198688984, -0.014644968323409557, -0.028660636395215988, 0.014981722459197044, -0.09757574647665024, 0.013493925333023071, -0.02605178952217102, 0.06774097681045532, 0.009454253129661083, 0.056942448019981384, -0.021549269556999207, 0.006560281850397587, -0.007469274569302797, -0.0077534946613013744, 0.035955529659986496, 0.04989182576537132, 0.034504763782024384, 0.02432340942323208, -0.026288818567991257, -0.12336515635251999, 0.06350675970315933, 0.02707965113222599, 0.004294244106858969, 0.031061789020895958, 0.016078606247901917, -0.07146965712308884, 0.0015535918064415455, 0.03283858671784401, -0.004184269346296787, -0.015007912181317806, 0.01575835794210434, 0.08086469769477844, -0.026662157848477364, -0.09968982636928558, 0.049211375415325165, -0.026225075125694275, 0.012872393243014812, -0.006100035272538662, 0.0299021378159523, 0.00956257525831461, -0.05209079757332802, -0.052410729229450226, -0.02140023559331894, -0.05169887840747833, -0.035217445343732834, 0.06331084668636322, -0.00272013945505023, -0.04803312197327614, 0.02418452315032482, -0.014102984219789505, 0.0035015041939914227, 0.02403281070291996, 0.05558756738901138, 0.035911835730075836, 0.06524510681629181, 0.0008651237585581839, -0.05757578834891319, 0.02050144411623478, -0.002945512533187866, -0.008050106465816498, 0.03981103003025055, -0.122953400015831, -0.01084080245345831, -0.026568476110696793, 0.024754922837018967, -0.008115534670650959, 0.02437172830104828, -0.01906638778746128, -0.03175787627696991, 0.03777261823415756, -0.02332080714404583, -0.013623509556055069, 0.005059562623500824, 0.01272294670343399, -0.02038649097084999, -0.03792914003133774, -0.021044539287686348, -0.019030030816793442, 0.008546377532184124, -0.007783945649862289, -0.014526676386594772, 0.0022934593725949526, -0.043689072132110596, -0.030396606773138046, 0.023880403488874435, -0.0094396211206913, -0.04650655388832092, -0.010935443453490734, -0.060485124588012695, -0.02408752590417862, 0.004385154694318771, 0.006747462321072817, -0.030327551066875458, 0.01935301162302494, -0.08296879380941391, 0.024652697145938873, 0.0140950633212924, 0.02989351563155651, -0.016875792294740677, -0.02999059483408928, 0.0077670118771493435, 0.006792557891458273, 0.0017157145775854588, -0.011350239627063274, 0.03488476946949959, -0.0010370060335844755, -0.062020573765039444, 0.006917225196957588, -0.06304624676704407, 0.0636981800198555, 0.08740334957838058, 0.03531888872385025, -0.011268223635852337, -0.023452363908290863, 0.03441668674349785, -0.0640808492898941, -0.010251243598759174, -0.011167732998728752, 0.03723529726266861, 0.0909786969423294, 0.029673680663108826, -0.07244644314050674, -0.02064329758286476, -0.06484803557395935, 0.04857085272669792, -0.0075133261270821095, 0.028662394732236862, -0.02012566849589348, 0.060315102338790894, -0.009565216489136219, -0.07110586017370224, -0.06697116047143936, -0.0426672101020813, -0.016687531024217606, -0.02023949660360813, -0.004408224951475859, -0.05021095275878906, -0.025740524753928185, -0.075579434633255, 0.011115126311779022, 0.0056825014762580395, 0.00404308270663023, 0.023802880197763443, -0.04411631077528, 0.00511452229693532, -0.05670810490846634, -0.007544592954218388, 0.038184165954589844, 0.02975999191403389, -0.0937337577342987, 0.006893272045999765, 0.0038779748138040304, 0.009054934605956078, 0.026644473895430565, -0.03295472636818886, 0.10226327180862427, 0.008032345212996006, -0.024969933554530144, 0.10438809543848038, -0.044299714267253876, -0.03165971115231514, -0.04563372582197189, -0.07856552302837372, 0.009234050288796425, -0.03122786059975624, 0.09468276053667068, -0.006067182868719101, -0.011607799679040909, 0.05429067462682724, 0.038982536643743515, 0.017097117379307747, 0.004798579961061478, -0.01830671727657318, -0.04640451446175575, -0.004926431458443403, 0.034417130053043365, -0.0038636447861790657, 0.01841074973344803, -0.034389786422252655, -0.03424165025353432, -0.03182828798890114, -0.057244397699832916, -0.07287076115608215, 0.012960058636963367, 0.04226081818342209, 0.030259644612669945, -0.030498068779706955, -0.023320836946368217, -0.04402083531022072, 0.019060255959630013, 0.02809852734208107, -0.018735703080892563, -0.012025609612464905, 0.018233569338917732, -0.038054633885622025, -4.00197968701832e-05, -0.052763957530260086, 0.02175823412835598, -0.017434189096093178, 0.019833795726299286, 0.09641712158918381, -0.011830801144242287, 0.04171104356646538, 0.012725409120321274, -0.02333115227520466, 0.010499690659344196, 0.014512307941913605, -0.029003428295254707, -0.04718909412622452, 0.02595423348248005, -0.017771778628230095, -0.049052894115448, -0.027677485719323158, 0.04675137251615524, 0.04130681976675987, -0.0014288924867287278, -0.037218574434518814, -0.03235189989209175, 0.026220310479402542, -0.020517434924840927, -0.008636422455310822, 0.1167115867137909, 0.01399971079081297, 0.011959314346313477, 0.020886635407805443, -0.006597616709768772, -0.053688716143369675, 0.012619810178875923, -0.010114438831806183, 0.02043839544057846, 0.0033537789713591337, 0.026638291776180267, -0.020513338968157768, -0.052412208169698715, -0.018287306651473045, 0.015140794217586517, -0.01151934452354908, 0.024292724207043648, -0.012905132956802845, 0.016678350046277046, -0.0023185075260698795, 0.004667512606829405, -0.003138572908937931, -0.0070006875321269035, 0.007601721212267876, -0.024742765352129936, -0.04081575199961662, 0.03652702644467354, 0.010621972382068634, -0.01820441521704197, -0.003291176864877343, -0.03417592868208885, -0.06367596983909607, -0.020145615562796593, 0.018047325313091278, -0.013076926581561565, 0.049978915601968765, 0.06911550462245941, 0.004571931902319193, 0.006544784642755985, 0.010549564845860004, 0.04392106086015701, -0.026669582352042198, 0.03873267024755478, 0.041267722845077515, 0.015339277684688568, -0.025035075843334198, -0.006367585621774197, -0.015440772287547588, -0.031811539083719254, -0.017723457887768745, -0.02103838138282299, 0.021643055602908134, -0.0134397828951478, 0.009513618424534798, 0.025532016530632973, 0.03668960928916931, -0.04555395618081093, -0.06049739941954613, 0.01832735352218151, 0.04455730319023132, 0.024128708988428116, -0.025501957163214684, 0.056650832295417786, 0.007766466587781906, -0.017337793484330177, 0.0013627265579998493, -0.0792427659034729, 0.0018277886556461453, 0.028421057388186455, -0.0562853142619133, -0.030924014747142792, 0.011820287443697453, -0.04035978391766548, -0.013109441846609116, -0.03409791737794876, 0.022852888330817223, -0.0411544144153595, 0.0011486405273899436, -0.05113090202212334, 0.0016217174706980586, -0.03407680243253708, -0.011418411508202553, 0.009581469930708408, -0.017341315746307373, 0.009697996079921722, 0.005042383447289467, 0.11833497136831284, -0.09439283609390259, 0.03527752682566643]}
{"image id": "https://ih1.redbubble.net/image.15697305.0175/ssrco,unisex_tshirt,womens,462445:542506a2a5,front,square_product,x600-bg,f8f8f8.jpg", "embeddings": [-0.0083458311855793, -0.006077690050005913, -0.003789846785366535, -0.021312057971954346, 0.04128134250640869, 0.0013160783564671874, 0.0228190366178751, 0.029011620208621025, -0.009210944175720215, 0.011521875858306885, 0.03846072778105736, -0.010175486095249653, 0.025974642485380173, -0.031616389751434326, 0.002871499862521887, -0.027302725240588188, -0.018941324204206467, 0.03727353736758232, -0.02501046657562256, -0.054417967796325684, 0.03666636720299721, -0.044921740889549255, 0.028987737372517586, -0.07458920776844025, -0.017432473599910736, 0.019164973869919777, 0.03556230291724205, -0.02138126641511917, 0.012987073510885239, -0.006192560773342848, 0.004562589805573225, -0.007834923453629017, -0.022339830175042152, -0.050567664206027985, 0.0008605786715634167, -0.04793184995651245, -0.06386225670576096, 0.10307864844799042, -0.022119859233498573, 0.018439939245581627, 0.04737337306141853, -0.004459692165255547, 0.03230294957756996, 0.013204362243413925, -0.03269149363040924, 0.10835187882184982, 0.045276012271642685, -0.019308453425765038, -0.024949347600340843, -0.009864402934908867, 0.03203022852540016, 0.005343555938452482, -0.033798713237047195, 0.014998897910118103, -0.05145273730158806, -0.012301845476031303, 0.03423839807510376, 0.0006769373430870473, 0.0035694970283657312, 0.007358389440923929, 0.008968017064034939, 0.008684167638421059, 0.003580991644412279, 0.042354803532361984, -0.016970468685030937, 0.022730659693479538, -0.0033270614221692085, -0.023514486849308014, -0.008998552337288857, 0.060990072786808014, -0.059644460678100586, -0.024364568293094635, -0.04199133813381195, 0.008847720921039581, 0.01637198217213154, 0.018688427284359932, -0.005870326422154903, -0.02843913622200489, -0.029781853780150414, 0.011756001971662045, -0.003345494857057929, -0.026083527132868767, -0.006546767894178629, 0.06215427815914154, 0.010765615850687027, 0.028673287481069565, -0.07734426110982895, -0.03461296111345291, -0.002953574527055025, 0.020143073052167892, 0.002767751459032297, 0.009322562254965305, -0.5794904828071594, 0.0661262646317482, -0.029051175341010094, 0.07083827257156372, -0.040497273206710815, 0.006673404015600681, -0.01113958191126585, -0.0005733232828788459, -0.05987343192100525, -0.024360036477446556, 0.03724812716245651, -0.021667052060365677, -0.005932164844125509, 0.04830256476998329, 0.06060490757226944, -0.030774855986237526, -0.003327150596305728, 0.032135009765625, -0.020448915660381317, 0.03326861187815666, -0.05354469642043114, -0.011996886692941189, 0.02487199380993843, 0.01977619156241417, -0.03202460706233978, -0.019624274224042892, -0.03432198613882065, 0.02022470161318779, 0.019058071076869965, -0.05098283290863037, 0.009407862089574337, -0.07111968845129013, 0.0061026266776025295, 0.020595941692590714, -0.035249825567007065, 0.03638302534818649, -0.022916698828339577, 0.019473381340503693, 0.01756829023361206, -0.0058919508010149, -0.026399411261081696, 0.09208590537309647, 0.061233703047037125, 0.03122245892882347, -0.03108948841691017, 0.044556695967912674, -0.021852165460586548, -0.030776193365454674, -0.019348828122019768, -0.001946542994119227, 0.002310817362740636, -0.013255858793854713, -0.03820822760462761, 0.00786953791975975, -0.04580434039235115, 0.001129377749748528, -0.025597617030143738, 0.016625823453068733, -0.018821461126208305, 0.014537482522428036, 0.1266016960144043, 0.04778509959578514, -0.002460696967318654, 0.05458703264594078, 0.011549292132258415, 0.002762826159596443, 0.023411117494106293, 0.07771909981966019, -0.045194342732429504, -0.00980904046446085, 0.030371168628335, 0.01996680349111557, -0.02291797660291195, 0.014464573934674263, 0.03066115826368332, -0.028008807450532913, -0.00707890372723341, 0.01811913028359413, 0.005862404592335224, 0.006952654104679823, 0.031104344874620438, 0.004550551995635033, -0.007326378021389246, 0.019271815195679665, 0.0431913360953331, 0.020873913541436195, -0.004353847820311785, -0.06591659039258957, 0.07072827219963074, -0.0025406144559383392, 0.02711443603038788, 0.010862931609153748, -0.026337066665291786, -0.03234666958451271, 0.024336978793144226, -0.04513796791434288, -0.005939244758337736, 0.033486492931842804, 0.029398642480373383, -0.009946244768798351, 0.01485554687678814, 0.01728617586195469, 0.0293508842587471, -0.022362738847732544, 0.06548207998275757, 0.008293705992400646, 0.0197884663939476, 0.024829309433698654, -0.03167201578617096, -0.023398984223604202, -0.0270596444606781, 0.011963021010160446, -0.02214762195944786, -0.024592507630586624, -0.06455370783805847, 0.018017150461673737, -0.03227046877145767, 0.045655008405447006, -0.05642188340425491, 0.03453453630208969, 0.013407823629677296, -0.04256017506122589, -0.04502385854721069, -0.02521115355193615, -0.03162957727909088, 0.02757345139980316, 0.01571335829794407, -0.01833699643611908, 0.029095148667693138, -0.10203028470277786, 0.03006667084991932, -0.022880902513861656, 0.024265289306640625, 0.031775034964084625, 0.052544884383678436, -0.011249695904552937, -0.045394424349069595, -0.027277346700429916, 0.0004775580018758774, -0.011413013562560081, -0.0035100786481052637, 0.07498984038829803, -0.0392080694437027, -0.03960307314991951, 0.06180955842137337, 0.004360133782029152, 0.018021805211901665, -0.0017859407234936953, -0.00915954727679491, 0.03880120441317558, -0.013745460659265518, -0.04430463910102844, -0.053436554968357086, -0.02370111271739006, -0.01976037584245205, 0.028155459091067314, 0.036929938942193985, 0.033338453620672226, 0.04561752453446388, -0.05926116183400154, -0.006231935229152441, -0.005889595486223698, 0.024823429062962532, 0.016745755448937416, 0.008850818499922752, 0.021459348499774933, -0.1724970042705536, 0.04608738794922829, 0.01570143550634384, 0.0033950121141970158, 0.033519525080919266, -0.04108830541372299, 0.005319830030202866, -0.06371311843395233, 0.0036013415083289146, -0.015127042308449745, -0.02140296995639801, -0.0064695472829043865, -0.06569267064332962, 0.03245263174176216, -0.024247804656624794, -0.05924142524600029, 0.0203456562012434, 0.02015405334532261, 0.00824290793389082, 0.021570714190602303, -0.03559619188308716, 0.028582649305462837, -0.046815261244773865, 0.007823792286217213, -0.07035475969314575, 0.007487940602004528, -0.04085702449083328, -0.0074481661431491375, -0.05376950278878212, -0.0015080486191436648, -0.035095926374197006, -0.03015236184000969, -0.020233776420354843, 0.003708281321451068, -0.00991758145391941, -0.025289135053753853, -0.0349898524582386, 0.015160695649683475, -0.04186450317502022, 0.0386061929166317, -0.004247772507369518, 0.07163900136947632, -0.013618913479149342, -0.04162168502807617, 0.07743188738822937, -0.0176592618227005, 0.013898646458983421, 0.03187716379761696, -0.007523019332438707, -0.049455780535936356, 0.038071658462285995, -0.00841730646789074, -0.06570681929588318, 0.03403356298804283, 0.09198722243309021, 0.03415986895561218, 0.0028681138064712286, -0.017565971240401268, 0.06745682656764984, -0.03986014798283577, 0.011765155009925365, -0.0007363465265370905, -0.0008683481719344854, 0.10775355249643326, -0.008671379648149014, -0.049681972712278366, -0.03178301081061363, -0.027864782139658928, 0.0005036623333580792, 0.003801757236942649, 0.02639690227806568, -0.012328315526247025, 0.025467831641435623, -0.02225559949874878, -0.06885236501693726, -0.06466101855039597, -0.0027103025931864977, -0.03809409588575363, 0.023331306874752045, -0.01869150623679161, -0.004186839796602726, -0.01777820847928524, -0.03921341523528099, -0.029568618163466454, 0.0018011361826211214, 0.05332381650805473, -0.031815703958272934, 0.04771241918206215, -0.001442442648112774, -0.01131008006632328, 0.017487885430455208, 0.02779490314424038, 0.0311130341142416, -0.016346683725714684, -0.01894553005695343, -0.04151900112628937, 0.007212562020868063, 0.024736355990171432, -0.02325623668730259, 0.06173843517899513, -0.03920106589794159, -0.018635360524058342, 0.08550649881362915, -0.06373641639947891, -0.03173453360795975, -0.06115642935037613, -0.028721123933792114, -0.014331839047372341, -0.025761453434824944, 0.06930006295442581, -0.018251219764351845, 0.0008177685085684061, 0.02729758247733116, 0.02728879451751709, 0.08346029371023178, -0.014996054582297802, 0.0066522518172860146, -0.047658734023571014, 0.01940351352095604, 0.022101955488324165, -0.03227842599153519, 0.004634477663785219, 0.009052795358002186, -0.07808811217546463, -0.021931564435362816, -0.03550933673977852, -0.013586273416876793, 0.042126357555389404, 0.016619544476270676, 0.023161912336945534, -0.012148561887443066, -0.08902997523546219, -0.01754479669034481, -0.0019368710927665234, -0.007188485469669104, 0.043167296797037125, -0.06354494392871857, -0.009339695796370506, -0.04383645951747894, -0.0063368184491992, -0.006947194691747427, 0.01939009316265583, 0.03910227119922638, 0.03195974603295326, 0.11512592434883118, -0.06295298039913177, 0.021799728274345398, -0.001931746257469058, -0.039656080305576324, 0.05060217157006264, 0.06349935382604599, 0.041000016033649445, -0.01195099949836731, 0.022455941885709763, -0.06683462113142014, -0.01487521082162857, -0.02903839386999607, 0.06495669484138489, 0.06201035901904106, 0.0045951916836202145, -0.014016837812960148, -0.0008873774786479771, 0.02614530175924301, -0.015451674349606037, -0.009329457767307758, 0.10623559355735779, 0.026121053844690323, -0.016083968803286552, -0.01133737899363041, -0.022426068782806396, -0.06536462157964706, -0.00969456322491169, -0.028900112956762314, 0.014237630181014538, 0.08129166811704636, 0.020820049569010735, 0.007485357113182545, -0.002402231330052018, 0.019088495522737503, -0.004031151533126831, 0.009811308234930038, -0.01941797137260437, -0.022165972739458084, 0.01926896907389164, 0.027078313753008842, -0.010159817524254322, 0.06896243244409561, -0.03604936972260475, 0.027574501931667328, -0.0016540915239602327, -0.05330789089202881, 0.008557124994695187, 0.03824806213378906, 0.006045065820217133, 0.016425617039203644, -0.01218926440924406, 0.008779428899288177, 0.033677492290735245, -0.025412611663341522, -0.028327113017439842, -0.0028728065080940723, 0.02448248118162155, 0.006206770893186331, -0.013655191287398338, -0.028616029769182205, 0.025145193561911583, -0.06883212178945541, -0.01458047702908516, -0.0005554052186198533, 0.031522590667009354, -0.004505924880504608, 0.01651371642947197, -0.0022892674896866083, -0.0322391502559185, 0.012252471409738064, -0.061231303960084915, -0.004361484199762344, 0.0005090378690510988, -0.0298524871468544, 0.02857414074242115, -0.018818028271198273, 0.03967348858714104, -0.015080483630299568, 0.015973202884197235, 0.05086526647210121, 0.014798889867961407, -0.004213509615510702, 0.012092037126421928, -0.03202088549733162, -0.007500659208744764, -0.0014437949284911156, -0.07401382178068161, 0.01167964469641447, 0.00933076161891222, 0.0015464377356693149, -0.013635111041367054, -0.039293792098760605, -0.01828819327056408, 0.02593800611793995, -0.029509127140045166, 0.0095455851405859, 0.0217050239443779, -0.0007496201433241367, 0.034288108348846436, 0.01070311013609171, -0.0173642598092556, 0.03115726448595524, 0.01742466725409031, -0.02955118753015995, 0.014775817282497883, 0.01524421852082014, 0.05400069057941437, -0.04084828495979309, 0.050207678228616714]}
{"input_ids": [504, 1639, 492, 4513, 199, 504, 1639, 14, 1018, 14, 3924, 492, 8505, 199, 504, 1639, 14, 1018, 14, 11346, 492, 4107, 63, 5464, 199, 504, 1639, 14, 697, 492, 1709, 199, 504, 1639, 14, 1208, 492, 13804, 465, 2022, 199, 504, 1639, 14, 1208, 14, 505, 492, 4021, 2246, 199, 504, 1639, 14, 1208, 14, 6893, 492, 10366, 63, 6395, 465, 485, 199, 199, 504, 3945, 11737, 14, 3351, 14, 955, 492, 4840, 2821, 792, 199, 504, 3945, 11737, 14, 1208, 14, 5189, 492, 20738, 3585, 199, 504, 3945, 11737, 14, 11346, 492, 5458, 8640, 12, 2022, 63, 11034, 199, 3, 504, 3945, 11737, 14, 992, 14, 955, 14, 8327, 492, 627, 421, 199, 533, 5458, 792, 8, 992, 14, 6254, 304, 199, 198, 624, 33, 520, 533, 1705, 6254, 64, 1314, 365, 16468, 543, 282, 520, 533, 5026, 4231, 8640, 2313, 1124, 3306, 4542, 1124, 2297, 3306, 4542, 436, 1124, 7817, 1040, 911, 506, 3032, 1901, 314, 11822, 1159, 14538, 1041, 199, 198, 318, 636, 826, 721, 277, 12, 2040, 29, 403, 12, 2153, 3306, 29, 403, 12, 11153, 29, 549, 12, 627, 589, 12, 1011, 958, 304, 507, 198, 4792, 8, 4231, 792, 12, 291, 2843, 826, 9308, 589, 12, 1011, 958, 9, 507, 198, 277, 14, 11346, 14, 740, 8, 4231, 8640, 8, 3306, 12, 2153, 3306, 12, 11153, 430, 421, 199, 533, 4840, 4311, 8, 785, 304, 199, 198, 318, 636, 826, 721, 277, 12, 901, 304, 507, 198, 277, 14, 698, 275, 901, 8299, 198, 318, 636, 362, 721, 277, 12, 1256, 12, 5771, 304, 507, 198, 692, 1256, 365, 488, 26, 686, 198, 3730, 4281, 327, 5805, 9068, 198, 692, 291, 14, 698, 14, 354, 440, 315, 1256, 855, 807, 10651, 686, 198, 1001, 63, 875, 275, 2519, 8, 842, 12, 291, 14, 698, 14, 13651, 9, 686, 198, 842, 855, 807, 12298, 277, 14, 698, 14, 354, 61, 275, 2022, 14, 3640, 8, 1001, 63, 875, 9, 9068, 198, 1107, 1256, 855, 807, 12298, 277, 14, 698, 14, 354, 61, 8299, 198, 318, 636, 409, 721, 277, 12, 1256, 12, 574, 304, 507, 198, 842, 855, 807, 12298, 277, 14, 698, 14, 354, 61, 275, 574, 507, 198, 10202, 8, 842, 12, 291, 14, 698, 14, 13651, 12, 2022, 14, 4180, 8, 585, 430, 8299, 198, 318, 636, 1807, 721, 277, 12, 1256, 304, 507, 198, 2264, 8, 842, 855, 807, 12298, 277, 14, 698, 14, 354, 566, 507, 198, 10202, 8, 842, 12, 291, 14, 698, 14, 13651, 12, 2022, 14, 4180, 8, 403, 430, 421, 199, 533, 4840, 792, 8, 992, 14, 6254, 304, 199, 198, 624, 33, 520, 533, 1705, 6254, 64, 1314, 14086, 2399, 574, 641, 314, 1402, 1256, 465, 282, 2366, 909, 436, 14086, 2399, 574, 315, 314, 3050, 465, 4840, 14, 4821, 972, 543, 520, 1532, 5026, 1001, 63, 11034, 17105, 199, 198, 885, 63, 11346, 275, 359, 1001, 63, 11034, 61, 8299, 198, 318, 664, 63, 13651, 8, 277, 304, 507, 198, 1107, 2071, 83, 63, 1001, 2, 450, 291, 14, 354, 8299, 198, 318, 28567, 63, 475, 63, 533, 8, 277, 12, 843, 12, 536, 304, 507, 198, 4792, 8, 30796, 12, 291, 680, 388, 999, 63, 475, 63, 533, 8, 1886, 12, 536, 9, 507, 198, 10202, 8, 1886, 12, 536, 12, 4840, 4311, 8, 277, 430, 507, 198, 992, 14, 10458, 14, 657, 63, 826, 14, 2242, 8, 277, 14, 970, 63, 826, 63, 12745, 12, 8904, 29, 1886, 9, 8299, 198, 318, 5325, 63, 826, 63, 12745, 8, 277, 12, 8904, 12, 1249, 12, 2074, 12, 1011, 4653, 63, 958, 304, 507, 198, 3, 6184, 2127, 3032, 315, 465, 291, 14, 354, 365, 10826, 370, 11492, 687, 282, 9146, 436, 507, 198, 3, 911, 506, 10184, 465, 282, 2022, 1059, 14, 507, 198, 692, 291, 14, 354, 315, 2074, 26, 686, 198, 585, 275, 2074, 14, 1935, 8, 277, 14, 354, 9, 26140, 198, 3, 30802, 370, 2429, 314, 2748, 9146, 1159, 7252, 402, 298, 2307, 2, 686, 198, 692, 574, 365, 488, 26, 1585, 198, 585, 275, 283, 2307, 7, 26140, 198, 958, 59, 277, 14, 13651, 61, 275, 574, 8299, 198, 318, 21388, 8, 277, 12, 627, 589, 12, 1011, 958, 304, 507, 198, 958, 905, 964, 63, 533, 937, 275, 4840, 2821, 792, 507, 198, 1107, 1613, 8, 30796, 12, 291, 680, 20015, 2031, 589, 12, 1011, 958, 9, 421, 199, 533, 428, 32047, 8433, 15792, 8, 992, 14, 792, 304, 199, 198, 624, 4759, 470, 282, 7267, 402, 3663, 2974, 543, 3747, 5340, 85, 458, 315, 314, 1824, 402, 282, 10029, 13, 12794, 769, 14, 6121, 19428, 4212, 370, 6657, 2429, 520, 533, 1705, 10899, 3585, 25502, 308, 3032, 315, 465, 3415, 1041, 199, 198, 363, 6577, 363, 275, 1709, 14, 2610, 698, 1563, 199, 198, 1802, 275, 3824, 25732, 13, 12794, 8889, 901, 531, 8299, 198, 318, 664, 63, 4672, 63, 466, 8, 277, 304, 507, 198, 1107, 298, 6254, 2, 8299, 198, 318, 370, 63, 1548, 8, 277, 12, 574, 304, 507, 198, 692, 440, 574, 26, 686, 198, 1107, 942, 9068, 198, 692, 1228, 8, 585, 12, 769, 304, 686, 198, 1107, 574, 9068, 198, 1107, 574, 14, 1294, 11917, 8299, 198, 318, 664, 63, 10837, 63, 585, 8, 277, 12, 574, 304, 507, 198, 1107, 12814, 904, 8, 585, 9, 8299, 198, 318, 21388, 8, 277, 12, 1011, 958, 304, 507, 198, 3, 961, 365, 5784, 2952, 1639, 7508, 13, 6021, 31906, 15792, 367, 7645, 543, 3415, 14, 507, 198, 4322, 275, 469, 686, 198, 7, 3440, 356, 4513, 14, 26366, 32331, 12, 686, 198, 7, 4577, 356, 291, 14, 362, 63, 4577, 8, 2613, 63, 2500, 29, 797, 395, 686, 198, 7, 1302, 356, 4021, 2246, 8, 277, 14, 3832, 63, 354, 395, 686, 198, 3984, 1087, 356, 440, 291, 14, 2500, 12, 686, 198, 7, 3437, 63, 505, 356, 291, 14, 3437, 63, 505, 507, 198, 93, 507, 198, 692, 291, 14, 1989, 63, 885, 837, 686, 198, 692, 4550, 8, 277, 14, 885, 304, 1585, 198, 4322, 459, 2747, 418, 275, 291, 14, 885, 1585, 198, 4322, 459, 2384, 63, 5642, 63, 2747, 418, 275, 715, 686, 198, 2836, 26, 1585, 198, 4322, 459, 2747, 418, 275, 291, 14, 362, 63, 885, 342, 9068, 198, 509, 1022, 315, 2074, 14, 1612, 837, 686, 198, 692, 1022, 440, 315, 661, 14141, 297, 283, 1667, 63, 585, 297, 283, 4577, 297, 283, 2427, 297, 5264, 283, 3440, 297, 283, 1302, 297, 283, 2747, 297, 283, 3437, 63, 505, 297, 5264, 283, 705, 63, 3431, 297, 283, 2384, 63, 5642, 63, 2747, 735, 1585, 198, 2264, 2074, 59, 75, 61, 9068, 198, 4322, 14, 873, 8, 958, 9, 507, 198, 964, 63, 533, 275, 4513, 14, 22193, 8433, 15792, 507, 198, 1107, 1824, 63, 533, 3682, 4322, 9, 8299, 198, 318, 4107, 8, 277, 12, 574, 12, 1402, 63, 842, 304, 507, 198, 3197, 63, 1459, 275, 942, 507, 198, 509, 1139, 315, 574, 26, 686, 198, 893, 26, 1585, 198, 3502, 63, 5464, 8, 637, 9, 686, 198, 2590, 8505, 26, 1585, 198, 3197, 63, 1459, 14, 740, 8, 637, 9, 9068, 198, 692, 3866, 63, 1459, 26, 686, 198, 3, 1077, 7710, 1852, 282, 3537, 1245, 14, 686, 198, 3730, 8505, 8, 277, 14, 705, 63, 3431, 459, 3197, 63, 5095, 418, 450, 3866, 63, 1459, 9, 8299, 198, 318, 485, 362, 63, 4577, 8, 277, 304, 507, 198, 692, 1228, 8, 277, 423, 4577, 12, 20738, 3585, 304, 686, 198, 1107, 291, 423, 4577, 14, 1574, 342, 507, 198, 4164, 2688, 8, 277, 423, 4577, 12, 283, 2184, 735, 686, 198, 4577, 12, 291, 423, 4577, 275, 7975, 14, 15557, 8, 277, 423, 4577, 9, 686, 198, 1107, 3415, 507, 198, 2836, 26, 686, 198, 1107, 291, 423, 4577, 199, 198, 4577, 275, 3324, 1547, 362, 63, 4577, 9, 421, 199, 893, 26, 199, 198, 504, 12919, 14, 992, 26047, 492, 1050, 63, 21627, 63, 4423, 199, 2590, 3545, 26, 199, 198, 1529, 199, 2836, 26, 199, 198, 525, 63, 21627, 63, 4423, 8798, 2097, 62, 10909, 320, 4537, 992, 4537, 955, 4537, 15554, 8433, 15792, 3135, 199, 198, 525, 63, 21627, 63, 4423, 8798, 2097, 62, 10909, 320, 4537, 992, 4537, 955, 4537, 4231, 792, 3135, 199, 198, 525, 63, 21627, 63, 4423, 8798, 2097, 62, 10909, 320, 4537, 992, 4537, 955, 4537, 30796, 3135], "ratio_char_token": 3.560888252148997}
{"input_ids": [646, 2680, 465, 980, 199, 646, 10634, 465, 6454, 199, 504, 10634, 492, 12403, 12, 10071, 199, 504, 7026, 14, 11679, 492, 6033, 199, 646, 8027, 14, 13563, 465, 4488, 199, 199, 504, 6357, 14, 4201, 492, 6249, 24078, 199, 504, 6357, 492, 7186, 199, 504, 6357, 14, 12281, 14, 3356, 63, 4679, 492, 1852, 63, 21893, 199, 504, 6357, 14, 21402, 492, 9739, 24274, 199, 504, 6357, 492, 22706, 221, 327, 25266, 199, 504, 6357, 14, 6759, 492, 26314, 63, 3642, 199, 199, 646, 2022, 199, 199, 646, 19184, 14, 10807, 465, 18133, 199, 504, 3778, 492, 17397, 199, 199, 533, 23285, 8, 785, 304, 339, 347, 636, 826, 721, 277, 304, 267, 4362, 275, 788, 3670, 63, 3333, 297, 283, 827, 63, 3333, 297, 283, 988, 63, 3333, 297, 283, 3670, 63, 2063, 297, 283, 827, 63, 2063, 297, 283, 988, 63, 2063, 297, 283, 521, 297, 283, 71, 8244, 1673, 344, 418, 267, 291, 14, 576, 275, 10071, 8, 3406, 29, 3406, 9, 267, 291, 14, 1430, 275, 942, 272, 768, 4639, 272, 347, 23421, 8, 335, 12, 1083, 12, 4382, 12, 2396, 304, 267, 408, 267, 14767, 314, 2396, 1245, 14, 2779, 1159, 314, 849, 3233, 1083, 267, 520, 635, 682, 26, 4215, 2973, 267, 520, 635, 1083, 26, 4215, 2973, 267, 520, 635, 4382, 26, 4215, 2973, 267, 520, 635, 2396, 26, 314, 1245, 267, 520, 1107, 26, 267, 408, 267, 327, 2246, 781, 664, 314, 4840, 687, 2396, 398, 327, 1129, 1104, 340, 652, 1159, 1777, 402, 314, 12778, 316, 1566, 398, 327, 692, 12778, 316, 1566, 365, 9709, 12, 781, 421, 199, 692, 636, 354, 363, 508, 2560, 973, 3706, 272, 327, 781, 3272, 4346, 1862, 272, 9141, 63, 13509, 275, 29202, 272, 9141, 63, 11139, 275, 31308, 272, 428, 1510, 1149, 275, 650, 272, 428, 7855, 1206, 63, 16553, 275, 1695, 272, 19539, 63, 1102, 275, 283, 10419, 14, 1479, 14, 1367, 14, 7507, 7, 272, 4126, 63, 354, 275, 283, 20842, 63, 576, 7, 272, 327, 4260, 1536, 603, 49, 1481, 22148, 272, 17397, 14, 954, 8, 1825, 63, 354, 29, 1825, 63, 354, 12, 3058, 29, 10108, 12, 1102, 29, 8334, 63, 1102, 9], "ratio_char_token": 3.980769230769231}
{"input_ids": [3168, 13, 1837, 2803, 26, 1624, 13, 24, 1882, 199, 646, 900, 421, 199, 318, 10086, 8, 4508, 29, 19, 12, 2653, 29, 17, 304, 272, 408, 26604, 6587, 104, 17109, 244, 165, 237, 116, 12586, 225, 15280, 117, 13201, 250, 12609, 10770, 236, 8400, 244, 624, 272, 347, 7531, 8, 1532, 304, 267, 347, 485, 5029, 2031, 589, 12, 1011, 829, 304, 288, 15115, 12, 7269, 275, 378, 12, 378, 288, 1830, 7269, 665, 5431, 26, 355, 7269, 847, 413, 355, 862, 26, 490, 372, 2562, 2031, 589, 12, 1011, 829, 9, 355, 871, 26, 490, 15115, 847, 2653, 490, 340, 7269, 665, 5431, 26, 717, 900, 14, 4532, 8, 6796, 9, 267, 372, 485, 5029, 272, 372, 7531, 421, 199, 318, 2701, 63, 1317, 63, 10937, 8, 4508, 29, 19, 12, 2653, 29, 18, 304, 272, 408, 22747, 236, 15013, 243, 24971, 30413, 119, 8106, 13201, 250, 12609, 10770, 236, 8400, 244, 624, 272, 347, 7531, 8, 1532, 304, 267, 347, 485, 5029, 2031, 589, 12, 1011, 829, 304, 288, 15115, 12, 7269, 275, 378, 12, 378, 288, 1830, 7269, 665, 5431, 26, 355, 7269, 847, 413, 355, 2203, 275, 2562, 2031, 589, 12, 1011, 829, 9, 355, 340, 2203, 26, 490, 372, 2203, 355, 15115, 847, 2653, 355, 900, 14, 4532, 8, 6796, 9, 267, 372, 485, 5029, 272, 372, 7531, 421, 199, 318, 675, 63, 4806, 8, 1896, 304, 272, 408, 15280, 100, 32549, 12211, 8106, 29655, 228, 166, 99, 109, 162, 248, 102, 624, 272, 347, 7531, 8, 1532, 304, 267, 870, 2562, 855, 354, 363, 267, 347, 4975, 2031, 589, 12, 1011, 958, 304, 288, 340, 2166, 508, 298, 4050, 582, 355, 870, 1689, 1896, 2689, 83, 12, 450, 83, 365, 3879, 2, 450, 334, 1896, 12, 2562, 855, 354, 8964, 288, 916, 2166, 508, 298, 815, 582, 355, 870, 1689, 1896, 2689, 83, 12, 450, 83, 365, 3879, 2, 450, 334, 1896, 12, 2562, 855, 354, 8964, 288, 372, 2562, 2031, 589, 12, 1011, 958, 9, 267, 372, 4975, 272, 372, 7531, 199, 199, 692, 636, 354, 363, 508, 4396, 973, 5727, 272, 768, 1180, 63, 4806, 8, 1896, 628, 4050, 531, 272, 347, 3925, 8, 354, 534, 1421, 735, 267, 870, 480, 73, 8140, 450, 83, 2, 450, 536, 9, 272, 3925, 342], "ratio_char_token": 3.863517060367454}
{"input_ids": [624, 202, 199, 12360, 1116, 8608, 1379, 570, 367, 4514, 1104, 402, 17101, 19, 24408, 3555, 14, 202, 199, 12360, 1116, 2999, 199, 6090, 1678, 26, 7829, 15, 614, 15, 13859, 2999, 199, 5831, 202, 199, 13715, 202, 199, 6906, 282, 9284, 2690, 503, 2075, 20796, 1298, 370, 511, 314, 17101, 19, 24408, 3555, 14, 2999, 199, 1918, 503, 5609, 5544, 1911, 315, 511, 570, 2387, 26, 1128, 446, 491, 18, 308, 810, 728, 78, 653, 50, 2979, 334, 25, 26, 18, 653, 50, 2979, 402, 491, 324, 285, 27166, 1933, 425, 9, 1128, 446, 10113, 867, 8747, 293, 4523, 4236, 2075, 334, 36, 1092, 9, 1128, 446, 11017, 351, 21600, 4236, 2075, 1128, 446, 491, 18, 5444, 3294, 4236, 2075, 202, 199, 624, 2999, 199, 3, 11940, 17101, 19, 24408, 4514, 2999, 199, 646, 8027, 14, 13563, 465, 4488, 202, 199, 646, 2680, 465, 980, 202, 199, 504, 28753, 492, 6204, 465, 399, 202, 199, 504, 17101, 19, 24408, 492, 664, 1610, 63, 2944, 19, 24408, 12, 19843, 12, 19843, 16644, 2999, 199, 504, 1115, 317, 1810, 293, 14, 656, 18245, 492, 662, 19677, 12, 3930, 265, 2999, 199, 3, 662, 19677, 13, 3716, 265, 2656, 4382, 202, 199, 75, 17, 275, 662, 19677, 14, 75, 14, 475, 8, 85, 14, 14595, 538, 19, 1182, 399, 14, 83, 538, 18, 680, 585, 202, 199, 75, 18, 275, 3930, 265, 14, 75, 14, 475, 8, 85, 14, 14595, 538, 19, 1182, 399, 14, 83, 538, 18, 680, 585, 202, 199, 82, 713, 275, 29772, 17592, 14, 1020, 10905, 221, 327, 662, 19677, 13, 3716, 265, 6033, 2999, 199, 3, 8354, 17101, 19, 24408, 2735, 6236, 338, 764, 1338, 202, 199, 6553, 12, 1022, 495, 12, 634, 495, 12, 307, 495, 12, 373, 495, 12, 302, 495, 275, 664, 1610, 63, 2944, 19, 24408, 8, 75, 17, 12, 1022, 18, 12, 519, 713, 9, 8065, 199, 3, 1553, 491, 324, 285, 27166, 1933, 425, 4236, 2075, 446, 1749, 26, 18, 653, 50, 2979, 2999, 199, 624, 202, 199, 1918, 503, 2075, 365, 282, 653, 2210, 13, 21561, 280, 6676, 869, 12201, 4236, 2075, 334, 17774, 2979, 9, 6818, 314, 491, 18, 491, 643, 2527, 5653, 202, 199, 1403, 402, 314, 662, 19677, 13, 3716, 265, 2656, 14, 710, 503, 2075, 26568, 2348, 365, 282, 308, 810, 728, 78, 202, 199, 954, 13, 6606, 402, 314, 491, 18, 13, 17774, 2979, 14, 961, 503, 2075, 365, 1749, 26, 18, 522, 265, 867, 503, 2075, 1094, 828, 590, 663, 202, 199, 305, 314, 7627, 503, 2075, 367, 314, 491, 324, 285, 27166, 1933, 425, 334, 26515, 13, 39, 680, 22940, 2797, 202, 199, 25, 26, 18, 522, 265, 867, 3967, 282, 4601, 32342, 3955, 4890, 1749, 503, 5609, 315, 314, 653, 50, 2979, 367, 202, 199, 14287, 499, 19465, 285, 5794, 334, 83, 4040, 590, 3365, 687, 19465, 285, 503, 2075, 6247, 680, 2999, 199, 1918, 5835, 503, 2075, 279, 4008, 26568, 2348, 787, 687, 314, 10576, 728, 1159, 4389, 21429, 14, 202, 199, 1918, 503, 2075, 6363, 4898, 15884, 6617, 1824, 9519, 24886, 1627, 315, 7750, 202, 199, 12635, 14, 437, 9284, 787, 2741, 5084, 26, 2999, 199, 2891, 26, 2816, 1175, 510, 9804, 26, 27166, 28505, 4236, 2075, 5822, 26, 437, 1448, 1346, 7514, 4114, 28497, 653, 50, 2979, 1128, 10944, 12643, 17928, 446, 653, 1179, 33, 12, 20312, 202, 199, 2891, 26, 8303, 30363, 367, 21766, 13, 2719, 19622, 27507, 29410, 21311, 641, 21128, 3626, 1985, 1128, 5773, 11019, 2029, 83, 446, 510, 1096, 12, 7494, 1697, 436, 481, 393, 502, 2999, 199, 1918, 653, 50, 2979, 787, 1007, 6606, 402, 314, 869, 12201, 503, 5609, 14, 710, 283, 46, 2210, 13, 21561, 280, 6676, 7, 6707, 12477, 202, 199, 504, 314, 7437, 579, 951, 972, 1174, 402, 314, 503, 2075, 11201, 316, 282, 5578, 869, 12201, 14, 869, 12201, 202, 199, 269, 5609, 4781, 315, 1006, 7795, 512, 13, 6676, 325, 783, 773, 28430, 4501, 491, 17, 12, 44, 18, 436, 491, 19, 14, 9322, 4781, 202, 199, 262, 282, 4092, 402, 21169, 334, 15336, 78, 436, 308, 810, 728, 78, 9, 7037, 370, 30246, 402, 17101, 19, 24408, 14, 202, 199, 624, 2999, 199, 3, 1749, 26, 18, 491, 18, 308, 810, 728, 653, 50, 2979, 503, 2075, 202, 199, 82, 16, 275, 980, 14, 1144, 4038, 17, 14, 996, 11501, 7582, 1477, 2182, 14622, 12, 378, 12, 446, 16, 14, 12894, 15672, 3934, 202, 199, 86, 16, 275, 980, 14, 1144, 779, 16, 12, 446, 16, 14, 709, 1398, 14585, 10806, 13443, 1690, 12, 378, 566, 202, 199, 3249, 275, 413, 14, 6576, 1479, 11065, 2819, 1184, 28163, 2999, 199, 3, 1329, 402, 4501, 370, 5137, 202, 199, 46, 6003, 275, 9601, 202, 199, 475, 2319, 275, 980, 14, 11649, 8, 16, 12, 2833, 12, 653, 6003, 9, 2999, 199, 3, 19843, 314, 1300, 30595, 202, 199, 3941, 12, 373, 70, 275, 19843, 8, 6553, 12, 519, 16, 12, 373, 16, 12, 370, 2319, 12, 10561, 29, 17, 69, 13, 845, 9, 2999, 199, 3, 299, 320, 1337, 503, 2075, 202, 199, 3941, 275, 980, 14, 1144, 8, 3941, 9, 2999, 199, 592, 275, 4488, 14, 8941, 342, 202, 199, 1219, 275, 4488, 14, 6402, 8, 16539, 628, 19, 68, 531, 202, 199, 1219, 14, 409, 63, 1977, 63, 18658, 8, 1128, 334, 1590, 14, 541, 80, 8, 3941, 3981, 378, 2522, 980, 14, 541, 80, 8, 3941, 3981, 413, 2522, 980, 14, 541, 80, 8, 3941, 3981, 499, 2459, 202, 199, 9, 221, 327, 17435, 10463, 365, 413, 26, 17, 26, 17, 315, 666, 4601, 202, 199, 3, 299, 320, 1337, 314, 1303, 265, 202, 199, 1219, 14, 2798, 19, 36, 8, 17, 446, 8504, 12, 378, 12, 378, 12, 298, 745, 531, 202, 199, 1219, 14, 409, 63, 1213, 480, 44, 18, 428, 810, 728, 78, 653, 50, 2979, 531, 202, 199, 1219, 14, 409, 63, 14168, 480, 88, 13, 3127, 359, 977, 12523, 202, 199, 1219, 14, 409, 63, 13849, 480, 89, 13, 3127, 359, 977, 12523, 202, 199, 1219, 14, 409, 63, 90, 1302, 480, 90, 13, 3127, 359, 977, 12523, 2999, 199, 1219, 14, 2798, 19, 36, 8, 3941, 3981, 378, 467, 17781, 3981, 413, 467, 17781, 3981, 499, 467, 298, 66, 531, 202, 199, 6003, 14, 2384, 342, 8065, 199, 624, 202, 199, 2422, 1163, 503, 5609, 315, 642, 3420, 787, 9235, 687, 9519, 24886, 2808, 202, 199, 262, 598, 264, 22856, 1159, 26728, 436, 11308, 36, 314, 2316, 14, 5311, 5548, 282, 18794, 16212, 663, 402, 3102, 202, 199, 475, 4526, 4750, 402, 314, 12160, 18745, 503, 5609, 473, 1172, 26568, 2348, 14, 2900, 402, 202, 199, 1589, 77, 675, 14460, 78, 1009, 21940, 3102, 1314, 787, 440, 5966, 6366, 315, 642, 202, 199, 4342, 14, 2999, 199, 2891, 26, 29087, 27186, 13873, 25705, 948, 1549, 14662, 1621, 2334, 9003, 35, 3038, 14880, 50, 6196, 1149, 16296, 23708, 3611, 34, 25847, 1128, 1663, 19525, 2507, 12969, 2296, 491, 1734, 689, 428, 1877, 40, 3625, 906, 5099, 2111, 2962, 1128, 446, 577, 14, 39, 264, 22856, 8315, 334, 12288, 314, 2316, 9, 202, 199, 2891, 26, 377, 2847, 5550, 5347, 11758, 3203, 1621, 2334, 662, 689, 2080, 13, 2679, 615, 20859, 1128, 2401, 491, 1734, 689, 428, 1877, 40, 3625, 906, 5099, 2111, 2962, 1128, 446, 577, 14, 39, 264, 22856, 7129, 334, 5663, 36, 477, 407, 425, 9, 202, 199, 624, 8065, 199, 3, 1553, 577, 1092, 503, 2075, 2999, 199, 3, 577, 1092, 503, 2075, 6363, 2999, 199, 82, 16, 275, 980, 14, 1144, 779, 16, 14, 2277, 11870, 966, 2942, 9908, 10875, 12, 378, 12, 378, 566, 202, 199, 86, 16, 275, 980, 14, 1144, 779, 16, 12, 378, 14, 1477, 1349, 13067, 12034, 975, 25459, 12, 378, 566, 202, 199, 3249, 275, 650, 14, 22, 11565, 1479, 966, 1272, 1342, 2167, 2999, 199, 3, 1329, 402, 4501, 370, 5137, 202, 199, 46, 6003, 275, 9601, 202, 199, 475, 2319, 275, 980, 14, 11649, 8, 16, 12, 2833, 12, 653, 6003, 9, 2999, 199, 3, 19843, 314, 1300, 30595, 202, 199, 3941, 12, 373, 70, 275, 19843, 8, 6553, 12, 519, 16, 12, 373, 16, 12, 370, 2319, 12, 10561, 29, 17, 69, 13, 845, 9, 8065, 199, 3, 299, 320, 1337, 503, 2075, 202, 199, 3941, 275, 980, 14, 1144, 8, 3941, 9, 2999, 199, 592, 275, 4488, 14, 8941, 342, 202, 199, 1219, 275, 4488, 14, 6402, 8, 16539, 628, 19, 68, 531, 202, 199, 1219, 14, 409, 63, 1977, 63, 18658, 8, 1128, 334, 1590, 14, 541, 80, 8, 3941, 3981, 378, 2522, 980, 14, 541, 80, 8, 3941, 3981, 413, 2522, 980, 14, 541, 80, 8, 3941, 3981, 499, 2459, 202, 199, 9, 221, 327, 17435, 10463, 365, 413, 26, 17, 26, 17, 315, 666, 4601, 202, 199, 3, 299, 320, 1337, 314, 1303, 265, 202, 199, 1219, 14, 2798, 19, 36, 8, 17, 446, 8504, 12, 378, 12, 378, 12, 298, 745, 531, 202, 199, 1219, 14, 409, 63, 1213, 480, 12012, 867, 799, 24627, 4523, 503, 2075, 334, 36, 1092, 6320, 202, 199, 1219, 14, 409, 63, 14168, 480, 88, 13, 3127, 359, 977, 12523, 202, 199, 1219, 14, 409, 63, 13849, 480, 89, 13, 3127, 359, 977, 12523, 202, 199, 1219, 14, 409, 63, 90, 1302, 480, 90, 13, 3127, 359, 977, 12523, 2999, 199, 1219, 14, 2798, 19, 36, 8, 3941, 3981, 378, 467, 17781, 3981, 413, 467, 17781, 3981, 499, 467, 298, 77, 531, 202, 199, 6003, 14, 2384, 342, 8065, 199, 3, 1553, 11017, 351, 21600, 503, 2075, 2999, 199, 3, 11017, 351, 21600, 503, 2075, 6363, 2999, 199, 82, 16, 275, 980, 14, 1144, 779, 17, 14, 21088, 14732, 709, 1138, 1887, 1641, 12, 378, 12, 378, 14, 1196, 1355, 17241, 713, 2194, 1081, 1184, 566, 202, 199, 86, 16, 275, 980, 14, 1144, 779, 16, 12, 446, 16, 14, 1780, 2905, 13011, 8488, 1641, 708, 1876, 12, 378, 566, 202, 199, 3249, 275, 499, 14, 23, 14927, 1876, 966, 1477, 2333, 1082, 2999, 199, 3, 1329, 402, 4501, 370, 5137, 202, 199, 46, 6003, 275, 9601, 202, 199, 475, 2319, 275, 980, 14, 11649, 8, 16, 12, 2833, 12, 653, 6003, 9, 2999, 199, 3, 19843, 314, 1300, 30595, 202, 199, 3941, 12, 373, 70, 275, 19843, 8, 6553, 12, 519, 16, 12, 373, 16, 12, 370, 2319, 12, 10561, 29, 17, 69, 13, 845, 9, 2999, 199, 3, 299, 320, 1337, 503, 2075, 202, 199, 3941, 275, 980, 14, 1144, 8, 3941, 9, 2999, 199, 592, 275, 4488, 14, 8941, 342, 202, 199, 1219, 275, 4488, 14, 6402, 8, 16539, 628, 19, 68, 531, 202, 199, 1219, 14, 409, 63, 1977, 63, 18658, 8, 1128, 334, 1590, 14, 541, 80, 8, 3941, 3981, 378, 2522, 980, 14, 541, 80, 8, 3941, 3981, 413, 2522, 980, 14, 541, 80, 8, 3941, 3981, 499, 2459, 202, 199, 9, 221, 327, 17435, 10463, 365, 413, 26, 17, 26, 17, 315, 666, 4601, 202, 199, 3, 299, 320, 1337, 314, 1303, 265, 202, 199, 1219, 14, 2798, 19, 36, 8, 17, 446, 8504, 12, 378, 12, 378, 12, 298, 745, 531, 202, 199, 1219, 14, 409, 63, 1213, 480, 34, 18404, 21600, 503, 2075, 531, 202, 199, 1219, 14, 409, 63, 14168, 480, 88, 13, 3127, 359, 977, 12523, 202, 199, 1219, 14, 409, 63, 13849, 480, 89, 13, 3127, 359, 977, 12523, 202, 199, 1219, 14, 409, 63, 90, 1302, 480, 90, 13, 3127, 359, 977, 12523, 2999, 199, 1219, 14, 2798, 19, 36, 8, 3941, 3981, 378, 467, 17781, 3981, 413, 467, 17781, 3981, 499, 467, 298, 82, 531, 202, 199, 6003, 14, 2384, 342, 8065, 199, 3, 1553, 5444, 3294, 503, 2075, 2999, 199, 3, 5444, 3294, 503, 2075, 6363, 2999, 199, 82, 16, 275, 980, 14, 1144, 779, 16, 14, 24081, 2333, 1020, 1407, 1367, 1789, 1272, 12, 378, 12, 378, 14, 2658, 772, 1398, 15464, 2114, 8867, 19, 566, 202, 199, 86, 16, 275, 980, 14, 1144, 779, 16, 12, 378, 14, 1229, 1465, 1081, 1349, 20454, 1257, 2766, 12, 378, 566, 202, 199, 3249, 275, 1227, 14, 1085, 1602, 1555, 1367, 713, 1196, 1477, 2999, 199, 3, 1329, 402, 4501, 370, 5137, 202, 199, 46, 6003, 275, 9601, 202, 199, 475, 2319, 275, 980, 14, 11649, 8, 16, 12, 2833, 12, 653, 6003, 9, 2999, 199, 3, 19843, 314, 1300, 30595, 202, 199, 3941, 12, 373, 70, 275, 19843, 8, 6553, 12, 519, 16, 12, 373, 16, 12, 370, 2319, 12, 10561, 29, 17, 69, 13, 845, 9, 2999, 199, 3, 299, 320, 1337, 503, 2075, 202, 199, 3941, 275, 980, 14, 1144, 8, 3941, 9, 2999, 199, 592, 275, 4488, 14, 8941, 342, 202, 199, 1219, 275, 4488, 14, 6402, 8, 16539, 628, 19, 68, 531, 202, 199, 1219, 14, 409, 63, 1977, 63, 18658, 8, 1128, 334, 1590, 14, 541, 80, 8, 3941, 3981, 378, 2522, 980, 14, 541, 80, 8, 3941, 3981, 413, 2522, 980, 14, 541, 80, 8, 3941, 3981, 499, 2459, 202, 199, 9, 221, 327, 17435, 10463, 365, 413, 26, 17, 26, 17, 315, 666, 4601, 202, 199, 3, 299, 320, 1337, 314, 1303, 265, 202, 199, 1219, 14, 2798, 19, 36, 8, 17, 446, 8504, 12, 378, 12, 378, 12, 298, 745, 531, 202, 199, 1219, 14, 409, 63, 1213, 480, 44, 18, 5444, 3294, 503, 2075, 531, 202, 199, 1219, 14, 409, 63, 14168, 480, 88, 13, 3127, 359, 977, 12523, 202, 199, 1219, 14, 409, 63, 13849, 480, 89, 13, 3127, 359, 977, 12523, 202, 199, 1219, 14, 409, 63, 90, 1302, 480, 90, 13, 3127, 359, 977, 12523, 2999, 199, 1219, 14, 2798, 19, 36, 8, 3941, 3981, 378, 467, 17781, 3981, 413, 467, 17781, 3981, 499, 467, 298, 71, 531, 202, 199, 6003, 14, 2384, 342, 8065, 199, 3, 1553, 2165, 1606, 4384, 45, 2999, 199, 3, 19843, 1300, 30595, 543, 1174, 13, 14143, 13, 3642, 202, 199, 16644, 16, 275, 980, 14, 15240, 8, 22, 9, 202, 199, 3941, 12, 373, 70, 12, 4384, 45, 275, 19843, 16644, 8, 6553, 12, 519, 16, 12, 373, 16, 12, 4384, 45, 16, 12, 370, 2319, 12, 10561, 29, 17, 69, 13, 845, 9, 2999, 199, 3, 4384, 45, 365, 282, 3634, 402, 7417, 28059, 1314, 787, 1202, 315, 7053, 1860, 13, 50, 439, 72, 834, 202, 199, 3, 3102, 367, 30595, 12899, 1223], "ratio_char_token": 2.626359832635983}
{"input_ids": [3381, 2647, 15, 1393, 15, 1813, 2366, 199, 3, 1882, 2803, 26, 2774, 13, 24, 1882, 199, 199, 504, 7876, 14, 7697, 290, 492, 627, 199, 199, 533, 25225, 8666, 8, 31305, 290, 304, 339, 347, 511, 63, 1661, 2750, 63, 1530, 63, 65, 63, 466, 8, 277, 304, 267, 652, 275, 2740, 8, 1842, 8, 17, 12, 22, 430, 398, 3141, 275, 378, 398, 367, 1967, 315, 652, 26, 288, 3141, 847, 1967, 398, 291, 14, 629, 8, 1046, 2360, 3141, 9, 339, 347, 511, 63, 1661, 1958, 63, 1045, 63, 2184, 8, 277, 304, 267, 24490, 275, 2740, 2941, 4468, 1673, 5683, 1673, 7325, 1105, 398, 862, 26, 288, 291, 14, 629, 360, 4468, 297, 2163, 8, 30646, 430, 288, 2163, 8, 30646, 9, 288, 291, 14, 629, 360, 7325, 297, 2163, 8, 30646, 430, 288, 2163, 8, 30646, 9, 267, 871, 10852, 465, 444, 26, 288, 2329, 63, 1328, 275, 283, 50, 290, 734, 402, 10615, 7, 398, 291, 14, 31132, 8, 1508, 63, 1328, 12, 283, 50, 290, 734, 358, 339, 327, 5620, 306, 339, 347, 1050, 63, 724, 8, 277, 12, 1242, 304, 267, 372, 1242, 435, 1616, 339, 347, 511, 63, 1130, 63, 15133, 63, 5527, 63, 1618, 63, 65, 63, 513, 8, 277, 304, 267, 5412, 275, 359, 17, 12, 499, 12, 650, 61, 267, 9994, 63, 3610, 275, 769, 342, 398, 4412, 275, 2341, 8, 277, 14, 525, 63, 724, 12, 5412, 9, 398, 291, 14, 7418, 8, 513, 12, 4412, 855, 533, 3368, 267, 291, 14, 629, 8, 1130, 12, 4412, 855, 533, 3368, 267, 327, 1010, 2018, 650, 6137, 315, 6122, 18805, 372, 6076, 2455, 2251, 267, 327, 3140, 402, 5548, 398, 367, 1242, 315, 4412, 26, 288, 9994, 63, 3610, 14, 740, 8, 1053, 9, 398, 291, 14, 629, 779, 845, 12, 3144, 12, 4944, 467, 9994, 63, 3610, 9, 398, 327, 3390, 12, 6122, 3102, 5965, 372, 2251, 402, 2740, 730, 315, 267, 327, 2366, 650, 14, 1010, 2366, 499, 2341, 342, 3955, 8120, 1265, 282, 769, 14, 339, 347, 511, 63, 1541, 63, 2416, 83, 63, 20226, 63, 1744, 63, 504, 63, 65, 63, 513, 8, 277, 304, 267, 347, 365, 63, 12056, 8, 1053, 304, 288, 372, 334, 1053, 450, 499, 9, 508, 378, 398, 5412, 275, 359, 17, 12, 499, 12, 650, 12, 841, 12, 959, 12, 1227, 61, 267, 2755, 63, 10548, 275, 769, 342, 398, 367, 1242, 315, 2457, 8, 374, 63, 12056, 12, 5412, 304, 288, 2755, 63, 10548, 14, 740, 8, 1053, 9, 398, 291, 14, 629, 779, 18, 12, 20, 12, 22, 467, 2755, 63, 10548, 9, 339, 347, 511, 63, 4764, 63, 1107, 63, 2246, 63, 1053, 63, 4214, 8, 277, 304, 267, 347, 365, 63, 5076, 63, 354, 8, 1053, 304, 288, 372, 822, 8, 1053, 9, 690, 841, 398, 1561, 275, 2097, 42, 1017, 401, 298, 34, 778, 401, 298, 12086, 4646, 401, 298, 36, 810, 71, 401, 298, 37, 317, 937, 267, 536, 275, 488, 398, 6122, 275, 2457, 8, 374, 63, 5076, 63, 354, 12, 1561, 9, 267, 862, 26, 288, 536, 275, 2163, 8, 5778, 9, 267, 871, 10852, 26, 288, 1499, 275, 283, 50, 290, 734, 402, 7282, 1561, 7, 398, 291, 14, 629, 480, 12086, 4646, 401, 536, 9, 2378, 327, 5620, 306, 339, 347, 1050, 8, 277, 12, 13223, 12, 1053, 304, 267, 372, 11162, 435, 1242, 339, 347, 21699, 8, 277, 12, 13223, 12, 1053, 304, 267, 372, 11162, 627, 1242, 339, 347, 511, 63, 5270, 63, 14117, 63, 66, 674, 63, 12695, 63, 77, 688, 8, 277, 304, 267, 492, 9143, 267, 327, 3709, 402, 2018, 650, 7114, 342, 965, 2757, 14779, 471, 687, 282, 6762, 805, 267, 327, 370, 314, 9143, 859, 14, 398, 754, 275, 9143, 14, 5270, 8, 277, 14, 525, 12, 359, 18, 12, 650, 12, 841, 566, 267, 291, 14, 629, 8, 442, 12, 754, 855, 533, 3368, 267, 327, 30778, 342, 6302, 365, 2011, 465, 2018, 499, 398, 291, 14, 629, 8, 25, 12, 754, 9, 398, 754, 18, 275, 9143, 14, 5270, 8, 277, 14, 13710, 12, 359, 18, 12, 650, 12, 841, 467, 413, 9, 267, 291, 14, 629, 8, 1194, 12, 754, 18, 9, 398, 327, 11177, 30473, 26, 267, 327, 28571, 1235, 315, 2195, 5705, 5932, 4052, 7114, 1630, 14, 339, 327, 5620, 306, 339, 347, 511, 63, 1180, 63, 1529, 63, 509, 63, 13570, 63, 1045, 63, 889, 63, 2030, 8, 277, 304, 267, 367, 1967, 315, 1425, 8, 17, 12, 21, 304, 288, 986, 398, 291, 14, 629, 8, 20, 12, 1967, 9, 339, 327, 5620, 306, 339, 347, 511, 63, 452, 63, 12575, 63, 2474, 63, 800, 63, 265, 63, 1629, 63, 4041, 63, 1397, 63, 4764, 63, 6717, 8, 277, 304, 267, 327, 13114, 83, 787, 376, 6076, 3414, 267, 754, 275, 2341, 8, 277, 14, 525, 63, 724, 12, 1425, 8, 17, 12, 20, 430, 267, 291, 14, 629, 779, 845, 12, 3144, 12, 4944, 467, 769, 8, 1099, 430, 398, 862, 26, 288, 570, 275, 1551, 480, 2694, 63, 493, 14, 2424, 531, 953, 862, 26, 355, 347, 1852, 63, 384, 2546, 8, 604, 304, 490, 372, 1004, 14, 1913, 1252, 4142, 342, 355, 1536, 2546, 63, 1278, 275, 2341, 8, 1875, 63, 384, 2546, 12, 570, 14, 9684, 1012, 355, 291, 14, 629, 5234, 24571, 401, 298, 1311, 401, 298, 33, 401, 298, 2864, 937, 2360, 769, 8, 384, 2546, 63, 1278, 430, 288, 3753, 26, 355, 327, 29560, 12, 642, 365, 23761, 14, 355, 327, 2136, 911, 9658, 734, 4212, 370, 5325, 642, 2945, 14, 355, 570, 14, 1600, 342, 267, 871, 5925, 26, 288, 327, 1077, 7078, 5992, 288, 291, 14, 1633, 342, 199], "ratio_char_token": 4.112159329140461}
{"input_ids": [504, 2986, 63, 1069, 492, 13986, 199, 504, 4884, 492, 21248, 199, 504, 2877, 12891, 492, 16853, 12891, 421, 199, 533, 428, 1895, 8, 11467, 12891, 304, 272, 347, 636, 826, 721, 277, 12, 1211, 7822, 267, 1613, 8, 277, 855, 533, 3108, 291, 2843, 826, 721, 807, 4602, 339, 768, 3744, 272, 347, 2342, 8, 1886, 12, 1862, 29, 403, 304, 267, 340, 1862, 365, 488, 26, 288, 1862, 275, 1211, 342, 267, 1177, 275, 843, 8, 7394, 14, 1250, 360, 16175, 15, 5506, 63, 8515, 297, 1862, 430, 267, 372, 1177, 14, 8515, 339, 768, 3744, 272, 347, 769, 8, 1886, 12, 1862, 29, 403, 304, 267, 340, 1862, 365, 488, 26, 288, 1862, 275, 1211, 342, 267, 1177, 275, 843, 8, 7394, 14, 1250, 360, 16175, 15, 513, 63, 16175, 297, 1862, 430, 267, 372, 1177, 14, 8515, 63, 4705, 339, 347, 32219, 8, 277, 12, 1862, 29, 403, 304, 267, 340, 1862, 365, 488, 26, 288, 1862, 275, 1211, 342, 267, 340, 2688, 8, 277, 12, 283, 604, 1053, 63, 344, 735, 288, 1862, 459, 604, 1053, 63, 344, 418, 275, 291, 14, 604, 1053, 63, 344, 288, 1166, 275, 283, 16175, 15, 18440, 63, 604, 1053, 7, 267, 916, 2688, 8, 277, 12, 283, 5404, 63, 344, 735, 288, 1862, 459, 5404, 63, 344, 418, 275, 291, 14, 5404, 63, 344, 288, 1166, 275, 283, 16175, 15, 18440, 63, 5404, 7, 267, 587, 26, 288, 1862, 459, 8515, 63, 344, 418, 275, 291, 14, 8515, 63, 344, 288, 1166, 275, 283, 16175, 15, 18440, 63, 5404, 7, 267, 372, 428, 1895, 8, 7394, 14, 1250, 8, 633, 12, 1862, 430, 339, 347, 3631, 8, 277, 12, 1862, 29, 403, 304, 267, 340, 1862, 365, 488, 26, 288, 1862, 275, 1211, 342, 267, 340, 2688, 8, 277, 12, 283, 604, 1053, 63, 344, 735, 288, 1862, 459, 604, 1053, 63, 344, 418, 275, 291, 14, 604, 1053, 63, 344, 288, 372, 13986, 14, 1250, 360, 16175, 15, 2379, 63, 604, 1053, 63, 6794, 5985, 297, 1862, 9, 267, 916, 2688, 8, 277, 12, 283, 8515, 63, 344, 735, 288, 4702, 63, 604, 1744, 275, 21248, 14, 2682, 8, 277, 9, 288, 340, 1211, 8, 2682, 63, 604, 1744, 304, 355, 754, 275, 1211, 342, 355, 284, 275, 378, 355, 367, 1022, 12, 373, 315, 4702, 63, 604, 1744, 14, 1744, 837, 490, 1004, 1053, 63, 344, 275, 373, 490, 1862, 275, 791, 604, 1053, 63, 344, 356, 1004, 1053, 63, 344, 93, 490, 754, 59, 73, 61, 275, 13986, 14, 1250, 360, 16175, 15, 2379, 63, 604, 1053, 63, 6794, 5985, 297, 1862, 9, 490, 284, 847, 413, 355, 1177, 275, 469, 298, 1310, 63, 600, 582, 298, 3593, 401, 2490, 298, 1310, 63, 1188, 582, 620, 8, 552, 8, 1099, 430, 435, 298, 1004, 1744, 15248, 8792, 2, 355, 789, 288, 587, 26, 355, 1177, 275, 469, 490, 298, 1310, 63, 600, 582, 298, 4609, 4047, 401, 490, 298, 1310, 63, 1188, 582, 298, 1944, 4702, 5344, 5985, 1004, 1744, 2, 355, 789, 267, 587, 26, 288, 1177, 275, 469, 298, 1310, 63, 600, 582, 298, 4609, 4047, 401, 2079, 298, 1310, 63, 1188, 582, 298, 2765, 1083, 883, 1454, 506, 2797, 641, 282, 13590, 503, 1004, 1053, 2, 288, 789, 267, 372, 428, 1895, 8, 1310, 9, 339, 347, 4702, 8, 277, 304, 267, 4702, 63, 604, 1744, 275, 21248, 14, 2682, 8, 277, 9, 267, 340, 1211, 8, 2682, 63, 604, 1744, 304, 288, 754, 275, 1211, 342, 288, 284, 275, 378, 288, 367, 1022, 12, 373, 315, 4702, 63, 604, 1744, 14, 1744, 837, 355, 1004, 1053, 63, 344, 275, 373, 355, 754, 59, 73, 61, 275, 1004, 1053, 63, 344, 355, 284, 847, 413, 288, 1177, 275, 469, 298, 1310, 63, 600, 582, 298, 10401, 401, 586, 298, 1310, 63, 1188, 582, 620, 8, 552, 8, 1099, 430, 435, 298, 4702, 5344, 5985, 1004, 1744, 2, 288, 789, 267, 587, 26, 288, 1177, 275, 469, 355, 298, 1310, 63, 600, 582, 298, 4609, 4047, 2266, 1310, 63, 1188, 582, 355, 298, 1944, 4702, 5344, 5985, 1004, 1744, 2, 288, 789, 267, 372, 428, 1895, 8, 1310, 9, 339, 347, 3721, 8, 277, 12, 1862, 29, 403, 304, 267, 340, 1862, 365, 488, 26, 288, 1862, 275, 1211, 342, 267, 1862, 459, 8515, 63, 344, 418, 275, 291, 14, 8515, 63, 344, 267, 372, 428, 1895, 8, 7394, 14, 1250, 360, 16175, 15, 981, 63, 3349, 297, 1862, 430, 339, 347, 15924, 8, 277, 12, 1862, 29, 403, 304, 267, 340, 1862, 365, 488, 26, 288, 1862, 275, 1211, 342, 267, 1862, 459, 8515, 63, 344, 418, 275, 291, 14, 8515, 63, 344, 267, 372, 428, 1895, 8, 7394, 14, 1250, 360, 16175, 15, 1657, 63, 3319, 1915, 297, 1862, 430, 199], "ratio_char_token": 4.235}
{"input_ids": [646, 2022, 199, 646, 747, 199, 199, 504, 7209, 492, 1056, 12, 486, 12, 3795, 63, 1160, 12, 1852, 63, 1310, 12, 23819, 12, 7232, 199, 504, 10897, 14, 1773, 63, 6520, 492, 664, 63, 344, 12, 3877, 63, 1001, 63, 475, 63, 493, 199, 504, 10897, 14, 2634, 492, 664, 63, 2634, 199, 504, 2022, 63, 5538, 492, 4840, 7506, 199, 504, 2446, 492, 1145, 199, 504, 21878, 492, 13503, 3041, 12, 2552, 421, 199, 5293, 275, 747, 14, 515, 14, 3475, 8, 736, 14, 515, 14, 4832, 3460, 493, 8964, 421, 199, 3, 3272, 3050, 1950, 199, 318, 4907, 63, 1258, 837, 272, 408, 8631, 83, 370, 13503, 1890, 624, 272, 862, 26, 267, 372, 13503, 3041, 8, 571, 14, 888, 459, 2846, 63, 5449, 995, 1109, 8, 571, 14, 888, 459, 2846, 63, 3657, 5156, 272, 871, 2552, 14, 3225, 6782, 465, 325, 26, 267, 746, 325, 421, 199, 318, 664, 63, 697, 837, 272, 408, 8631, 83, 370, 13503, 3050, 624, 272, 340, 440, 2688, 8, 71, 12, 283, 9217, 63, 1258, 735, 267, 486, 14, 9217, 63, 1258, 275, 4907, 63, 1258, 342, 267, 486, 14, 9217, 63, 697, 275, 2519, 8, 71, 14, 9217, 63, 1258, 12, 1145, 14, 888, 459, 2846, 63, 2339, 1105, 267, 486, 14, 2634, 63, 3627, 275, 486, 14, 9217, 63, 697, 59, 736, 14, 2314, 14, 362, 360, 2846, 63, 27544, 63, 29374, 5440, 272, 372, 486, 14, 9217, 63, 697, 199, 199, 32, 571, 14, 15236, 63, 571, 1100, 199, 318, 4002, 63, 697, 8, 705, 304, 272, 408, 3337, 874, 1950, 543, 13503, 1890, 624, 272, 340, 2688, 8, 71, 12, 283, 9217, 63, 1258, 735, 267, 486, 14, 9217, 63, 1258, 14, 1600, 342, 199, 199, 3, 25754, 2455, 15777, 199, 32, 571, 14, 4449, 7825, 199, 32, 571, 14, 4449, 2336, 1080, 6217, 199, 318, 1478, 837, 272, 408, 44, 460, 316, 2034, 367, 16578, 2480, 624, 272, 372, 3795, 63, 1160, 480, 1080, 14, 1360, 531, 199, 199, 32, 571, 14, 4449, 2336, 667, 81, 6217, 199, 318, 1433, 81, 837, 272, 408, 2078, 49, 2034, 367, 16578, 2480, 624, 272, 372, 3795, 63, 1160, 480, 667, 81, 14, 1360, 531, 199, 199, 32, 571, 14, 4449, 2336, 18498, 3576, 6217, 199, 318, 23092, 3576, 837, 272, 408, 2553, 669, 3576, 2034, 367, 16578, 2480, 624, 272, 664, 63, 697, 342, 272, 4652, 275, 664, 63, 2634, 8, 71, 14, 2634, 63, 3627, 9, 272, 372, 3795, 63, 1160, 480, 18498, 3576, 14, 1360, 401, 4652, 29, 2634, 9, 199, 199, 32, 571, 14, 4449, 2336, 4073, 297, 3102, 2968, 4030, 1105, 199, 318, 18249, 63, 6520, 837, 272, 408, 3735, 6037, 16756, 12330, 9772, 2631, 3495, 315, 1592, 339, 520, 1107, 26, 2004, 1233, 14785, 1553, 2631, 440, 3451, 12, 1980, 13071, 272, 520, 1107, 26, 2004, 1233, 1784, 1553, 2631, 2575, 3495, 12, 5978, 13071, 272, 408, 272, 1592, 275, 664, 63, 697, 342, 272, 1347, 63, 2227, 275, 1056, 14, 964, 14, 362, 360, 2227, 358, 272, 340, 1592, 14, 1773, 14, 1623, 3252, 2227, 356, 1347, 63, 2227, 21385, 835, 837, 267, 372, 7232, 8, 1205, 29, 1797, 9, 272, 587, 26, 267, 372, 7232, 8, 1205, 29, 6686, 9, 199, 199, 32, 571, 14, 4449, 2336, 19813, 358, 199, 318, 8281, 11442, 837, 272, 408, 2390, 1061, 20078, 316, 2034, 367, 18112, 15, 11235, 69, 4007, 23242, 624, 272, 340, 1056, 14, 765, 508, 283, 2970, 356, 267, 372, 3795, 63, 1160, 480, 19813, 14, 1360, 531, 199, 199, 32, 571, 14, 4449, 2336, 1773, 297, 3102, 2968, 4030, 1105, 199, 318, 3066, 63, 6520, 837, 272, 408, 3735, 6037, 367, 11482, 1337, 3066, 9772, 666, 339, 520, 1107, 26, 2004, 1233, 25766, 446, 3866, 4840, 503, 3866, 1056, 730, 272, 520, 1107, 26, 2004, 1233, 8290, 446, 16313, 1564, 13, 466, 503, 3866, 19704, 272, 520, 1107, 26, 2004, 1233, 1784, 446, 9512, 13071, 272, 408, 272, 327, 7523, 2963, 1159, 1564, 13, 466, 365, 3748, 272, 340, 1056, 14, 2139, 459, 1317, 13, 466, 418, 508, 283, 3578, 15, 1001, 356, 267, 327, 7523, 666, 365, 282, 1686, 4840, 267, 862, 26, 288, 922, 63, 12542, 275, 2022, 14, 3640, 8, 1069, 14, 576, 9, 267, 871, 1722, 26, 288, 372, 7232, 8, 1205, 29, 15770, 9, 267, 327, 3550, 20746, 367, 892, 2397, 267, 1747, 275, 664, 63, 344, 342, 267, 327, 3877, 12467, 4840, 315, 3066, 4887, 267, 570, 63, 515, 275, 747, 14, 515, 14, 904, 8, 717, 869, 28106, 12, 717, 283, 1773, 63, 4749, 83, 297, 717, 620, 8, 1535, 9, 490, 776, 267, 3877, 63, 1001, 63, 475, 63, 493, 8, 751, 63, 12542, 12, 570, 63, 515, 9, 267, 327, 4926, 13071, 370, 7614, 436, 372, 3591, 1712, 685, 267, 1592, 275, 664, 63, 697, 342, 267, 7614, 63, 1310, 275, 4840, 7506, 8, 751, 63, 12542, 12, 1592, 29, 697, 12, 485, 344, 29, 1535, 680, 7275, 342, 267, 372, 7614, 63, 1310, 339, 327, 2876, 16930, 376, 16313, 1564, 13, 466, 272, 587, 26, 267, 372, 7232, 8, 1205, 29, 5303, 9, 199, 199, 17577, 11768, 26, 8362, 3137, 503, 23872, 1572, 32113, 31, 13383, 327, 2869, 6786, 641, 314, 10876, 2034, 199, 17577, 11768, 26, 2654, 1824, 6411, 199, 32, 571, 14, 4449, 2336, 1069, 1222, 923, 3678, 3102, 2968, 4030, 1105, 199, 318, 1056, 63, 1222, 63, 923, 837, 272, 327, 29225, 13071, 1824, 666, 436, 9275, 3031, 1245, 272, 666, 275, 1056, 14, 1001, 272, 1499, 275, 298, 7700, 368, 965, 1056, 626, 1265, 1050, 469, 923, 63, 354, 93, 370, 314, 23092, 3576, 971, 267, 4652, 14, 710, 4652, 10691, 365, 469, 923, 63, 7360, 93, 436, 314, 11482, 351, 883, 971, 267, 506, 13075, 737, 469, 7275, 351, 63, 2123, 5565, 1674, 908, 8, 4490, 1572, 63, 354, 29, 576, 459, 1222, 63, 923, 63, 354, 995, 4490, 1572, 63, 7360, 29, 576, 459, 1222, 63, 923, 63, 7360, 995, 4490, 11482, 351, 63, 2123, 29, 576, 459, 7275, 351, 63, 2123, 1105, 272, 372, 7232, 8, 1205, 29, 1840, 9, 272, 1449, 272, 862, 26, 267, 3031, 8, 288, 5420, 628, 29231, 2480, 26, 437, 892, 1572, 965, 2757, 5839, 401, 288, 26226, 628, 889, 13, 8102, 32, 551, 10811, 14, 20923, 14, 2308, 401, 288, 370, 534, 8210, 651, 32, 551, 10811, 14, 20923, 14, 2308, 297, 288, 1499, 29, 1328, 9, 267, 372, 7232, 8, 1205, 29, 1840, 9, 272, 871, 26, 267, 372, 7232, 8, 1205, 29, 5783, 9, 272, 1449, 199, 199, 3, 4520, 8297, 199, 32, 571, 14, 705, 2232, 8, 5188, 9, 199, 318, 440, 63, 4214, 8, 705, 304, 272, 372, 1852, 63, 1310, 8, 1001, 2021, 8, 469, 283, 705, 356, 283, 3276, 2832, 2643, 7, 789, 2318, 7901, 9, 199, 199, 32, 571, 14, 705, 2232, 8, 15770, 9, 199, 318, 1083, 63, 1397, 63, 6541, 8, 705, 304, 272, 372, 1852, 63, 1310, 8, 1001, 2021, 8, 469, 283, 705, 356, 283, 3767, 2832, 27301, 7, 789, 2318, 25766, 9], "ratio_char_token": 3.98303647158609}
{"text": "Diesel model Winnie Harlow, who suffers from vitiligo, the same rare skin condition that singer Michael Jackson was diagnosed with, has been pictured enjoying a cozy night on the town with albino fashion star Shaun Ross. The pair attended a launch event for Popular magazine at Siren Studios in Hollywood, California, on Tuesday night, and were snapped holding hands while making their way into the venue. Winnie, 19, who was unveiled as one of the newest faces of fashion label Diesel earlier this year, was wearing a short and simple black and gold mini dress, which she accessorized with a pair of gold strappy heels. Scroll down for video . Looking cozy: Winnie Harlow, 19, who suffers from the same rare skin condition as Michael Jackson, was pictured hand-in-hand with albino model Shaun Ross on Tuesday night . Out on the town: The duo were attending the launch for Popular magazine at Hollywood venue Siren Studios . Skingraft black and gold dress . Get it from Pasar here . Visit site . This look is all types of yes. Winnie Harlow looks incredible in her leather tunic dress which features striking gold trims on the sleeves and hemline. The loose fit creates a flattering silhouette too. Winnie's dress is from LA-based fashion house Skingraft, and you can still buy it by clicking right to Paser's website now. It'll be your go-to party piece! It is however, slightly pricey coming in at $750, so if you want to add a golden standard to your style for less, why not check out these various finds below? We are particularly dazzled by this Mynt 1792 number at Nordstrom. A pair of strappy metallic heels will finish off your look to perfection! Choice's black and gold stamping dress . Visit site . Mynt 1792 color block dress at Nordstrom . Visit site . Maykool black and gold dress . Visit site . Dailylook fit and flare dress . Visit site . Meanwhile Shaun, 23, opted for a more low-key look, wearing an all-black ensemble, which he topped off with a unique tall baseball hat and a pair of leather sneaker-style boots. And while it appears to be the first time that the duo have been spotted enjoying an evening out together, it is likely not the first occasion that they have met. Both stars have made regular appearances on the catwalks at various Fashion Weeks, while Shaun has also starred in campaigns for the likes of Alexander McQueen and Givenchy. Coincidentally, the models also each had a helping hand from fellow fashion star Tyra Banks. Fashion stars: While Evan opted for an all-black ensemble, topped off with a bizarre baseball cap, Winnie wore a black and gold mini dress and strappy sandals . Rising stars: Both Shaun and Winnie have each achieved global recognition in the fashion indsutry, appearing in numerous high-profile fashion campaigns . Strut your stuff: Both Winnie (L), pictured at the Desigual fall/winter 2015 show, and Shaun (R), pictured on the catwalk in February, boast impressive runway credentials . Winnie, whose real name is Chantelle Brown-Young, was one of the contestants on Tyra's hit reality series America's Next Top Model, while Shaun made an appearance on the former model's eponymous talk show in 2009. Despite their cozy appearance, it's not thought that the two are dating - however Shaun did take the time to post a heartwarming message to the model on his Instagram account, just hours after the pair attended the Popular magazine event. Alongside an image of the two of them, Shaun wrote: 'So much fun last night @winnieharlow keep up the good work. From an original believer in you.' And it seems his sweet sentiments were reciprocated by Winnie, who posted a similar image on her own account, saying: 'Sweet nothings with my fly friend @shaundross'", "target": "Winnie, 19, was diagnosed with the rare condition when she was four-years-old .\nCondition causes a lack of melanin which forms white patches on the skin .", "feat_id": "12adad0b14c3207056f1bdcae1bf71d48ae85813", "evaluation_predictions": [0, 44982, 108, 7604, 15735, 135, 76881, 108, 109, 310, 2822, 769, 1436, 120, 2180, 4766, 140, 6878, 122, 110, 107, 106, 78555, 108, 7801, 117, 142, 75712, 861, 170, 148, 2893, 115, 4515, 118, 70891, 111, 7414, 41435, 110, 107, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
{"text": "(CNN)When Melissa Atkins Wardy, author of \"Redefining Girly\" and a passionate advocate for fighting gender stereotypes, heard from a frustrated mom on Facebook, she knew she needed to do something. So she shared the mom's story. In a blog post, Wardy told how the mom, Veronica of Richland, Washington, wanted to buy \"Big Hero 6\" fabric to make pillows for her two children. The problem? The fabric didn't include two of the heroes from the movie: the female characters, Honey Lemon and GoGo. So Veronica decided to send an email to Springs Creative, the company that makes the fabric, saying that as a woman and an engineer, she was offended. She got an answer from the company but it didn't help. Girl empowerment ads like GoldieBlox: Do they work? A licensing manager for Springs Creative responded that the company has found that boys don't want girl characters on their things. \"Eeeww girls! Yuck! Haha,\" the licensing manager wrote. It will come as no surprise that Veronica was none too pleased to receive that response. \"I was frustrated and disgusted that a manager, and a female manager too, would laugh off my initial contact with the company. It was unprofessional. So I responded,\" Veronica told CNN. She asked that we not use her last name, in order to maintain her privacy. In an email back to the company, Veronica wrote, \"By eliminating the women in your fabric design, you are telling boys that it's OK to think girls are yucky, unworthy and less than a boy. \"You are also telling girls they are unworthy, unwanted and that it's un-cool to be smart and confident.\" What happened next shows that parents, aided by social media outrage, may have more leverage to combat gender stereotyping in our culture than they realize. And the \"Big Hero 6\" example -- along with a similar recent one involving TOMS, the shoes retailer -- suggests that manufacturers may be finally getting it, too. First, the rest of the story about Springs Creative and the \"Big Hero\" fabric: After sharing Veronica's story with her readers and her 6,700 Twitter followers, Wardy encouraged people to give Springs Creative a piece of their mind. She also invited them to tweet their own stories with the hashtag #IncludeTheGirls. Women responded in droves, pointing out how Black Widow, the female character in the popular \"Avengers\" superhero movie franchise, is often excluded from merchandise and how cereal boxes rarely include female characters. \"This sends the direct message to both boys and girls that females are forgettable, unimportant, undesirable. What a horrible thing to teach our children!\" said Wardy, who is also the founder and chief executive officer of Pigtail Pals & Ballcap Buddies, a company that makes empowering clothing for boys and girls. \"The prevailing theory is, 1. boys are the default audience, and 2. boys won't want an item with a girl on it,\" Wardy said. \"Yet, I talk with thousands of parents every week who say otherwise.\" Why trying to make our kids happy can backfire . Those parents are clearly making their voices heard. Because not too long after Veronica received her initial response from Springs Creative, Wardy said she got a call from the company, asking her to post a statement from Springs Creative on her site. \"It is sometimes difficult to hear negative feedback but the message was clear and we intend to act upon your message,\" the statement read. \"Most importantly, Springs Creative does not condone sexism in any shape or form and does not design products to shine a negative light on females OR males.\" The company said it would be talking with Disney \"immediately\" about additional designs for \"Big Hero 6\" that would incorporate all the characters. \"We would never intentionally offend any segment of the population. We are a strong company with positive morals and values and we respect and see both genders equally,\" said the statement. Springs Creative told CNN it would have no further comment. Veronica said she was surprised the company responded so quickly. \"I do not believe this would have happened without the Pigtail Pals and Ballcap Buddies community also raising their voices.\" The real March Madness: When will women's teams get equal buzz? Around the same time, Wardy heard from another follower about an issue with TOMS and wrote about it on her site. On the normally progressive retailer's Web landing page for kids were photos that some parents felt played into gender stereotypes. One photo suggested \"Playtime Approved\" shoes for boys, and the other, this one on a pink background, included the caption \"Little Ladies: adorn their feet for spring.\" \"Really, TOMS? Girls are not ornaments we adorn. Girls play, too!\" Wardy wrote on her Facebook page. Two hours later, Wardy received a comment from TOMS on her Facebook page, saying that the company completely agrees and that the wording has been changed to now say \"new arrivals for kids.\" \"We're really grateful whenever our community brings something like this to our attention,\" said Doug Piwinski, senior vice president, global marketing and communications for TOMS. \"Perhaps as much or more than any other brand, I mean we really listen to our customers in our community.\" So, here's my question: Are the two speedy responses from companies after women spoke out on social media more a sign that companies are truly getting it about gender stereotypes and girl and boy empowerment, or more a sign of the power of parents? Or are they a mixture of both? How to Super Bowl #LikeAGirl . Wardy said there's no doubt that companies are in business to protect their bottom line, and that will always be a motivator. But she said these back-to-back incidents show what can happen when parents make it clear they won't buy products from companies that sell gender stereotypes. \" 'Be not silent' is my mantra. Speak up!\" Wardy said. \"The success with Springs Creative and TOMS and other wins we've had in the past is an example of the power of parents (moms and dads) and children's advocates aggregating their voices to say, 'Enough is enough.' \" Veronica said it's a sign of the power of parents becoming \"more aware, reactive and using social media to make their voices heard by companies that market to children.\" She added, \"One voice can be dismissed; the hailstorm of voices collectively cannot be ignored so easily.\" It is clear, from these two examples, that parents using their voices online and with their wallets can encourage companies to change. There's no question that raising awareness about stereotypes helps, said Wardy. \"If companies aren't paying attention by now, they most certainly should be.\" Pink, princess-y and sexy too soon . Do you think more companies are getting the message to include girl characters on merchandise? Share your thoughts with Kelly Wallace on Twitter or CNN Living on Facebook.", "target": "A mom of two got upset when \"Big Hero 6\" fabric didn't include the two female characters .\nAnother mom called attention to gender stereotypes on a TOMS Web page .\nIn both cases, the companies responded quickly to answer parents' concerns .", "feat_id": "c38564e99702e22f2815b2c1cee4e9e797d286b0", "evaluation_predictions": [0, 7069, 649, 198, 9907, 11119, 22430, 2296, 595, 131, 144, 444, 12348, 15110, 111, 1859, 4598, 110, 107, 106, 5900, 5548, 243, 3185, 272, 131, 144, 245, 2092, 1918, 124, 153, 341, 110, 107, 106, 21775, 108, 23440, 141, 525, 636, 23139, 108, 218, 133, 154, 7043, 112, 5311, 4336, 78730, 110, 107, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
{"text": "(CNN)Blinky and Pinky on the Champs Elysees? Inky and Clyde running down Broadway? Power pellets on the Embarcadero? Leave it to Google to make April Fools' Day into throwback fun by combining Google Maps with Pac-Man. The massive tech company is known for its impish April Fools' Day pranks, and Google Maps has been at the center of a few, including a Pokemon Challenge and a treasure map. This year the company was a day early to the party, rolling out the Pac-Man game Tuesday. It's easy to play: Simply pull up Google Maps on your desktop browser, click on the Pac-Man icon on the lower left, and your map suddenly becomes a Pac-Man course. Twitterers have been tickled by the possibilities, playing Pac-Man in Manhattan, on the University of Illinois quad, in central London and down crooked Lombard Street in San Francisco, among many locations: .", "target": "Google Maps has a temporary Pac-Man function .\nGoogle has long been fond of April Fools' Day pranks and games .\nMany people are turning their cities into Pac-Man courses .", "feat_id": "5776732bfe072fcac0a9cbe14162992255d0ad26", "evaluation_predictions": [0, 1058, 10900, 3043, 960, 48232, 131, 1066, 190, 16524, 121, 6456, 546, 110, 107, 106, 21224, 137, 462, 109, 389, 141, 6769, 164, 1058, 10900, 111, 3927, 124, 109, 16524, 121, 6456, 4217, 110, 107, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
{"text": "(CNN)Would you want a TV program about your family history to include details of a distant, long-deceased relative who had owned slaves? Seriously, who in their right mind would want to be tarnished by the sins of an ancestor you had no connection to other than a remote bloodline? I wouldn't, and neither did Ben Affleck, who lobbied producers of a PBS show, \"Finding Your Roots,\" to remove any reference to his great-great-great grandfather Benjamin Cole, a Georgia slave owner in the mid-1800's, in an episode that looked at Affleck's family history. (Affleck revealed Cole's name Wednesday night.) Here's the thing that might surprise many, given the tendency of the media to exploit any potentially scandalous material: The show's producer, Harvard professor Henry Louis Gates Jr., apparently acquiesced to Affleck's request, because when the episode aired in October 2014, there was no mention of the star's slave-owning ancestor. Affleck's attempt to alter the content of the program only publicly became known a few days ago after WikiLeaks released hacked emails revealing an exchange between Gates and Sony Pictures chief Michael Lynton. When Gates asked how he should respond to Affleck's request to delete the material, Lynton responded, \"all things being equal, I would definitely take it out.\" And on Tuesday, Affleck, via Facebook, admitted that he had urged Gates to excise any reference to his slave-owning relative. Affleck explained, \"I didn't want any television show about my family to include a guy who owned slaves. I was embarrassed. The very thought left a bad taste in my mouth.\" Now Gates has publicly denied that he made his decision about the content of the program based on Affleck's request, but it seems likely that he did. After all, Affleck noted as much in his Facebook post, writing that Gates \"agreed with me on the slave owner but made other choices I disagreed with.\" And three other celebrities profiled on the series last season were shown to have been related to slave owners. So it's unlikely that it was simply happenstance that it left out any reference to Affleck's familial slave ownership connection. In any event, PBS has launched an internal review to determine if the show violated its own editorial standards. Whatever the results of the review, Affleck and Gates did the right thing. Let's be clear: \"Finding Your Roots\" is not an investigative news show; it's an entertainment program. In fact, as Affleck noted, much of the material is provided directly by the celebrity being profiled. It's not \"60 Minutes\" but more in the nature of a sophisticated profile of celebrities, using their marquee names to attract viewers. There's not even a hint that Affleck strong-armed the producers or made any type of threats against them if they included the information. In the emails between Gates and Lynton, which they presumably believed at the time were confidential and would remain so, there was no mention of undue pressure by Affleck. Instead, Gates simply noted that Affleck \"asked us to edit out something.\" After the emails were revealed, Gates issued a statement, saying, \"Ultimately, I maintain editorial control on all of my projects and, with my producers, decide what will make for the most compelling program. In the case of Mr. Affleck we focused on what we felt were the most interesting aspects of his ancestry -- including a Revolutionary War ancestor, a third great-grandfather who was an occult enthusiast, and his mother who marched for civil rights during the Freedom Summer of 1964.\" My view would be different if Affleck had a history of uttering racist remarks or engaging in racist conduct. That would have made the information truly newsworthy. But instead we have a man known for championing progressive causes, which I'm sure made him even more acutely sensitive that some on the right might possibly use this information against him in the future. Perhaps that's what Affleck meant in his Facebook post when he wrote that this information made him feel \"vulnerable.\" Affleck has noted that he regrets asking PBS to not include information about his \"distant relative.\" That's a nice gesture, but it was not needed. Affleck had every right to ask for the information about a long-deceased distant relative to be left out of the show. And PBS had the choice to include it or leave it out. I applaud PBS for doing the right thing at a time when media outlets rarely show any restraint on the lives of people in the public eye.", "target": "Ben Affleck admits he asked PBS show \"Finding Your Roots\" to avoid mentioning his slave-owning ancestor .\nDean Obeidallah says the actor and the show were right to leave the detail out .", "feat_id": "75fdaee82f6d0545a86b9d28b947186ce4b2a088", "evaluation_predictions": [0, 3703, 65797, 58485, 5758, 113, 114, 22777, 403, 108, 198, 16509, 673, 24616, 745, 112, 1639, 189, 2334, 112, 169, 13876, 121, 70063, 4632, 110, 107, 106, 91006, 982, 5552, 5587, 151, 65797, 196, 290, 268, 112, 854, 118, 109, 257, 160, 169, 9234, 4632, 112, 129, 518, 165, 113, 109, 403, 110, 107, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}
{"text": "let fact (n: int): float = let rec helper n (acc: float): float = if n=0 then acc else helper (n-1) ((float_of_int n) *. acc) in if n < 0 then domain() else helper n 1. ;;"}
{"text": "let binomial (n: int) (k: int) : float = if k > n || n<0 || k<0 then domain () else (fact n) /. ((fact k) *. (fact (n - k))) ;;"}
{"text": "let distance ((x1, y1): (int * int)) ((x2, y2): (int * int)) : float = if x1<0 || y1<0 || x2<0 || y2<0 then domain () else let dx = float_of_int (x2 - x1) in let dy = float_of_int (y2 - y1) in sqrt ( (dx *. dx) +. (dy *. dy) ) ;;"}
{"text": "let rec fact (n: int): float = match n with | 0 -> 1. | _ -> (float_of_int(n) *. fact (n - 1)) ;;"}
{"text": "let binomial (n: int) (k: int) = fact n /. (fact k *. fact (n - k));;"}