text
stringlengths
13
30k
{"code": "# Copyright (c) 2015, Max Fillinger <max@max-fillinger.net>\n# \n# Permission to use, copy, modify, and/or distribute this software for any\n# purpose with or without fee is hereby granted, provided that the above\n# copyright notice and this permission notice appear in all copies.\n# \n# THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\n# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\n# AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\n# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\n# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\n# OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\n# PERFORMANCE OF THIS SOFTWARE.\n\n# The epub format specification is available at http://idpf.org/epub/201\n\n'''Contains the EpubBuilder class to build epub2.0.1 files with the getebook\nmodule.'''\n\nimport html\nimport re\nimport datetime\nimport getebook\nimport os.path\nimport re\nimport zipfile\n\n__all__ = ['EpubBuilder', 'EpubTOC', 'Author']\n\ndef _normalize(name):\n '''Transform \"Firstname [Middlenames] Lastname\" into\n \"Lastname, Firstname [Middlenames]\".'''\n split = name.split()\n if len(split) == 1:\n return name\n return split[-1] + ', ' + ' '.join(name[0:-1])\n\ndef _make_starttag(tag, attrs):\n 'Write a starttag.'\n out = '<' + tag\n for key in attrs:\n out += ' {}=\"{}\"'.format(key, html.escape(attrs[key]))\n out += '>'\n return out\n\ndef _make_xml_elem(tag, text, attr = []):\n 'Write a flat xml element.'\n out = ' <' + tag\n for (key, val) in attr:\n out += ' {}=\"{}\"'.format(key, val)\n if text:\n out += '>{}</{}>\\n'.format(text, tag)\n else:\n out += ' />\\n'\n return out\n\nclass EpubTOC(getebook.TOC):\n 'Table of contents.'\n _head = ((\n '<?xml version=\"1.0\" encoding=\"UTF-8\"?>\\n'\n '<ncx xmlns=\"http://www.daisy.org/z3986/2005/ncx/\" version=\"2005-1\" xml:lang=\"en-US\">\\n'\n ' <head>\\n'\n ' <meta name=\"dtb:uid\" content=\"{}\" />\\n'\n ' <meta name=\"dtb:depth\" content=\"{}\" />\\n'\n ' <meta name=\"dtb:totalPageCount\" content=\"0\" />\\n'\n ' <meta name=\"dtb:maxPageNumber\" content=\"0\" />\\n'\n ' </head>\\n'\n ' <docTitle>\\n'\n ' <text>{}</text>\\n'\n ' </docTitle>\\n'\n ))\n _doc_author = ((\n ' <docAuthor>\\n'\n ' <text>{}</text>\\n'\n ' </docAuthor>\\n'\n ))\n _navp = ((\n '{0}<navPoint id=\"nav{1}\">\\n'\n '{0} <navLabel>\\n'\n '{0} <text>{2}</text>\\n'\n '{0} </navLabel>\\n'\n '{0} <content src=\"{3}\" />\\n'\n ))\n\n def _navp_xml(self, entry, indent_lvl):\n 'Write xml for an entry and all its subentries.'\n xml = self._navp.format(' '*indent_lvl, str(entry.no), entry.text,\n entry.target)\n for sub in entry.entries:\n xml += self._navp_xml(sub, indent_lvl+1)\n xml += ' '*indent_lvl + '</navPoint>\\n'\n return xml\n\n def write_xml(self, uid, title, authors):\n 'Write the xml code for the table of contents.'\n xml = self._head.format(uid, self.max_depth, title)\n for aut in authors:\n xml += self._doc_author.format(aut)\n xml += ' <navMap>\\n'\n for entry in self.entries:\n xml += self._navp_xml(entry, 2)\n xml += ' </navMap>\\n</ncx>'\n return xml\n\nclass _Fileinfo:\n 'Information about a component file of an epub.'\n def __init__(self, name, in_spine = True, guide_title = None,\n guide_type = None):\n '''Initialize the object. If the file does not belong in the\n reading order, in_spine should be set to False. If it should\n appear in the guide, set guide_title and guide_type.'''\n self.name = name\n (self.ident, ext) = os.path.splitext(name)\n name_split = name.rsplit('.', 1)\n self.ident = name_split[0]\n self.in_spine = in_spine\n self.guide_title = guide_title\n self.guide_type = guide_type\n # Infer media-type from file extension\n ext = ext.lower()\n if ext in ('.htm', '.html', '.xhtml'):\n self.media_type = 'application/xhtml+xml'\n elif ext in ('.png', '.gif', '.jpeg'):\n self.media_type = 'image/' + ext\n elif ext == '.jpg':\n self.media_type = 'image/jpeg'\n elif ext == '.css':\n self.media_type = 'text/css'\n elif ext == '.ncx':\n self.media_type = 'application/x-dtbncx+xml'\n else:\n raise ValueError('Can\\'t infer media-type from extension: %s' % ext)\n def manifest_entry(self):\n 'Write the XML element for the manifest.'\n return _make_xml_elem('item', '',\n [\n ('href', self.name),\n ('id', self.ident),\n ('media-type', self.media_type)\n ])\n def spine_entry(self):\n '''Write the XML element for the spine.\n (Empty string if in_spine is False.)'''\n if self.in_spine:\n return _make_xml_elem('itemref', '', [('idref', self.ident)])\n else:\n return ''\n def guide_entry(self):\n '''Write the XML element for the guide.\n (Empty string if no guide title and type are given.)'''\n if self.guide_title and self.guide_type:\n return _make_xml_elem('reference', '',\n [\n ('title', self.guide_title),\n ('type', self.guide_type),\n ('href', self.name)\n ])\n else:\n return ''\n\nclass _EpubMeta:\n 'Metadata entry for an epub file.'\n def __init__(self, tag, text, *args):\n '''The metadata entry is an XML element. *args is used for\n supplying the XML element's attributes as (key, value) pairs.'''\n self.tag = tag\n self.text = text\n self.attr = args\n def write_xml(self):\n 'Write the XML element.'\n return _make_xml_elem(self.tag, self.text, self.attr)\n def __repr__(self):\n 'Returns the text.'\n return self.text\n def __str__(self):\n 'Returns the text.'\n return self.text\n\nclass _EpubDate(_EpubMeta):\n 'Metadata element for the publication date.'\n _date_re = re.compile('^([0-9]{4})(-[0-9]{2}(-[0-9]{2})?)?$')\n def __init__(self, date):\n '''date must be a string of the form \"YYYY[-MM[-DD]]\". If it is\n not of this form, or if the date is invalid, ValueError is\n raised.'''\n m = self._date_re.match(date) \n if not m:\n raise ValueError('invalid date format')\n year = int(m.group(1))\n try:\n mon = int(m.group(2)[1:])\n if mon < 0 or mon > 12:\n raise ValueError('month must be in 1..12')\n except IndexError:\n pass\n try:\n day = int(m.group(3)[1:])\n datetime.date(year, mon, day) # raises ValueError if invalid\n except IndexError:\n pass\n self.tag = 'dc:date'\n self.text = date\n self.attr = ()\n\nclass _EpubLang(_EpubMeta):\n 'Metadata element for the language of the book.'\n _lang_re = re.compile('^[a-z]{2}(-[A-Z]{2})?$')\n def __init__(self, lang):\n '''lang must be a lower-case two-letter language code,\n optionally followed by a \"-\" and a upper-case two-letter country\n code. (e.g., \"en\", \"en-US\", \"en-UK\", \"de\", \"de-DE\", \"de-AT\")'''\n if self._lang_re.match(lang):\n self.tag = 'dc:language'\n self.text = lang\n self.attr = ()\n else:\n raise ValueError('invalid language format')\n\nclass Author(_EpubMeta):\n '''To control the file-as and role attribute for the authors, pass\n an Author object to the EpubBuilder instead of a string. The file-as\n attribute is a form of the name used for sorting. The role attribute\n describes how the person was involved in the work.\n\n You ONLY need this if an author's name is not of the form\n \"Given-name Family-name\", or if you want to specify a role other\n than author. Otherwise, you can just pass a string.\n\n The value of role should be a MARC relator, e.g., \"aut\" for author\n or \"edt\" for editor. See http://www.loc.gov/marc/relators/ for a\n full list.'''\n def __init__(self, name, fileas = None, role = 'aut'):\n '''Initialize the object. If the argument \"fileas\" is not given,\n \"Last-name, First-name\" is used for the file-as attribute. If\n the argument \"role\" is not given, \"aut\" is used for the role\n attribute.'''\n if not fileas:\n fileas = _normalize(name)\n self.tag = 'dc:creator'\n self.text = name\n self.attr = (('opf:file-as', fileas), ('opf:role', role))\n\nclass _OPFfile:\n '''Class for writing the OPF (Open Packaging Format) file for an\n epub file. The OPF file contains the metadata, a manifest of all\n component files in the epub, a \"spine\" which specifies the reading\n order and a guide which points to important components of the book\n such as the title page.'''\n\n _opf = (\n '<?xml version=\"1.0\" encoding=\"UTF-8\"?>\\n'\n '<package version=\"2.0\" xmlns=\"http://www.idpf.org/2007/opf\" unique_identifier=\"uid_id\">\\n'\n ' <metadata xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:opf=\"http://www.idpf.org/2007/opf\">\\n'\n '{}'\n ' </metadata>\\n'\n ' <manifest>\\n'\n '{}'\n ' </manifest>\\n'\n ' <spine toc=\"toc\">\\n'\n '{}'\n ' </spine>\\n'\n ' <guide>\\n'\n '{}'\n ' </guide>\\n'\n '</package>\\n'\n )\n def __init__(self):\n 'Initialize.'\n self.meta = []\n self.filelist = []\n def write_xml(self):\n 'Write the XML code for the OPF file.'\n metadata = ''\n for elem in self.meta:\n metadata += elem.write_xml()\n manif = ''\n spine = ''\n guide = ''\n for finfo in self.filelist:\n manif += finfo.manifest_entry()\n spine += finfo.spine_entry()\n guide += finfo.guide_entry()\n return self._opf.format(metadata, manif, spine, guide)\n\nclass EpubBuilder:\n '''Builds an epub2.0.1 file. Some of the attributes of this class\n (title, uid, lang) are marked as \"mandatory\" because they represent\n metadata that is required by the epub specification. If these\n attributes are left unset, default values will be used.'''\n\n _style_css = (\n 'h1, h2, h3, h4, h5, h6 {\\n'\n ' text-align: center;\\n'\n '}\\n'\n 'p {\\n'\n ' text-align: justify;\\n'\n ' margin-top: 0.125em;\\n'\n ' margin-bottom: 0em;\\n'\n ' text-indent: 1.0em;\\n'\n '}\\n'\n '.getebook-tp {\\n'\n ' margin-top: 8em;\\n'\n '}\\n'\n '.getebook-tp-authors {\\n'\n ' font-size: 2em;\\n'\n ' text-align: center;\\n'\n ' margin-bottom: 1em;\\n'\n '}\\n'\n '.getebook-tp-title {\\n'\n ' font-weight: bold;\\n'\n ' font-size: 3em;\\n'\n ' text-align: center;\\n'\n '}\\n'\n '.getebook-tp-sub {\\n'\n ' text-align: center;\\n'\n ' font-weight: normal;\\n'\n ' font-size: 0.8em;\\n'\n ' margin-top: 1em;\\n'\n '}\\n'\n '.getebook-false-h {\\n'\n ' font-weight: bold;\\n'\n ' font-size: 1.5em;\\n'\n '}\\n'\n '.getebook-small-h {\\n'\n ' font-style: normal;\\n'\n ' font-weight: normal;\\n'\n ' font-size: 0.8em;\\n'\n '}\\n'\n )\n\n _container_xml = (\n '<?xml version=\"1.0\"?>\\n'\n '<container version=\"1.0\" xmlns=\"urn:oasis:names:tc:opendocument:xmlns:container\">\\n'\n ' <rootfiles>\\n'\n ' <rootfile full-path=\"package.opf\" media-type=\"application/oebps-package+xml\"/>\\n'\n ' </rootfiles>\\n'\n '</container>\\n'\n )\n\n _html = (\n '<?xml version=\"1.0\" encoding=\"utf-8\"?>\\n'\n '<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.1//EN\" \"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd\">\\n'\n '<html xmlns=\"http://www.w3.org/1999/xhtml\">\\n'\n ' <head>\\n'\n ' <title>{}</title>\\n'\n ' <meta http-equiv=\"content-type\" content=\"application/xtml+xml; charset=utf-8\" />\\n'\n ' <link href=\"style.css\" rel=\"stylesheet\" type=\"text/css\" />\\n'\n ' </head>\\n'\n ' <body>\\n{}'\n ' </body>\\n'\n '</html>\\n'\n )\n\n _finalized = False\n\n def __init__(self, epub_file):\n '''Initialize the EpubBuilder instance. \"epub_file\" is the\n filename of the epub to be created.'''\n self.epub_f = zipfile.ZipFile(epub_file, 'w', zipfile.ZIP_DEFLATED)\n self.epub_f.writestr('mimetype', 'application/epub+zip')\n self.epub_f.writestr('META-INF/container.xml', self._container_xml)\n self.toc = EpubTOC()\n self.opf = _OPFfile()\n self.opf.filelist.append(_Fileinfo('toc.ncx', False))\n self.opf.filelist.append(_Fileinfo('style.css', False))\n self._authors = []\n self.opt_meta = {} # Optional metadata (other than authors)\n self.content = ''\n self.part_no = 0\n self.cont_filename = 'part%03d.html' % self.part_no\n\n def __enter__(self):\n 'Return self for use in with ... as ... statement.'\n return self\n\n def __exit__(self, except_type, except_val, traceback):\n 'Call finalize() and close the file.'\n try:\n self.finalize()\n finally:\n # Close again in case an exception happened in finalize()\n self.epub_f.close()\n return False\n\n @property\n def uid(self):\n '''Unique identifier of the ebook. (mandatory)\n\n If this property is left unset, a pseudo-random string will be\n generated which is long enough for collisions with existing\n ebooks to be extremely unlikely.'''\n try:\n return self._uid\n except AttributeError:\n import random\n from string import (ascii_letters, digits)\n alnum = ascii_letters + digits\n self.uid = ''.join([random.choice(alnum) for i in range(15)])\n return self._uid\n @uid.setter\n def uid(self, val):\n self._uid = _EpubMeta('dc:identifier', str(val), ('id', 'uid_id'))\n\n @property\n def title(self):\n '''Title of the ebook. (mandatory)\n\n If this property is left unset, it defaults to \"Untitled\".'''\n try:\n return self._title\n except AttributeError:\n self.title = 'Untitled'\n return self._title\n @title.setter\n def title(self, val):\n # If val is not a string, raise TypeError now rather than later.\n self._title = _EpubMeta('dc:title', '' + val)\n\n @property\n def lang(self):\n '''Language of the ebook. (mandatory)\n\n The language must be given as a lower-case two-letter code, optionally\n followed by a \"-\" and an upper-case two-letter country code.\n (e.g., \"en\", \"en-US\", \"en-UK\", \"de\", \"de-DE\", \"de-AT\")\n\n If this property is left unset, it defaults to \"en\".'''\n try:\n return self._lang\n except AttributeError:\n self.lang = 'en'\n return self._lang\n @lang.setter\n def lang(self, val):\n self._lang = _EpubLang(val)\n\n @property\n def author(self):\n '''Name of the author. (optional)\n \n If there are multiple authors, pass a list of strings.\n\n To control the file-as and role attribute, use author objects instead\n of strings; file-as is an alternate form of the name used for sorting.\n For a description of the role attribute, see the docstring of the\n author class.'''\n if len(self._authors) == 1:\n return self._authors[0]\n return tuple([aut for aut in self._authors])\n @author.setter\n def author(self, val):\n if isinstance(val, Author) or isinstance(val, str):\n authors = [val]\n else:\n authors = val\n for aut in authors:\n try:\n self._authors.append(Author('' + aut))\n except TypeError:\n # aut is not a string, so it should be an Author object\n self._authors.append(aut)\n @author.deleter\n def author(self):\n self._authors = []\n\n @property\n def date(self):\n '''Publication date. (optional)\n \n Must be given in \"YYYY[-MM[-DD]]\" format.'''\n try:\n return self.opt_meta['date']\n except KeyError:\n return None\n @date.setter\n def date(self, val):\n self.opt_meta['date'] = _EpubDate(val)\n @date.deleter\n def date(self):\n del self._date\n\n @property\n def rights(self):\n 'Copyright/licensing information. (optional)'\n try:\n return self.opt_meta['rights']\n except KeyError:\n return None\n @rights.setter\n def rights(self, val):\n self.opt_meta['rights'] = _EpubMeta('dc:rights', '' + val)\n @rights.deleter\n def rights(self):\n del self._rights\n\n @property\n def publisher(self):\n 'Publisher name. (optional)'\n try:\n return self.opt_meta['publisher']\n except KeyError:\n return None\n @publisher.setter\n def publisher(self, val):\n self.opt_meta['publisher'] = _EpubMeta('dc:publisher', '' + val)\n @publisher.deleter\n def publisher(self):\n del self._publisher\n \n @property\n def style_css(self):\n '''CSS stylesheet for the files that are generated by the EpubBuilder\n instance. Can be overwritten or extended, but not deleted.'''\n return self._style_css\n @style_css.setter\n def style_css(self, val):\n self._style_css = '' + val\n\n def titlepage(self, main_title = None, subtitle = None):\n '''Create a title page for the ebook. If no main_title is given,\n the title attribute of the EpubBuilder instance is used.'''\n tp = '<div class=\"getebook-tp\">\\n'\n if len(self._authors) >= 1:\n if len(self._authors) == 1:\n aut_str = str(self._authors[0])\n else:\n aut_str = ', '.join(str(self._authors[0:-1])) + ', and ' \\\n + str(self._authors[-1])\n tp += '<div class=\"getebook-tp-authors\">%s</div>\\n' % aut_str\n if not main_title:\n main_title = str(self.title)\n tp += '<div class=\"getebook-tp-title\">%s' % main_title\n if subtitle:\n tp += '<div class=\"getebook-tp-sub\">%s</div>' % subtitle\n tp += '</div>\\n</div>\\n'\n self.opf.filelist.insert(0, _Fileinfo('title.html',\n guide_title = 'Titlepage', guide_type = 'title-page'))\n self.epub_f.writestr('title.html', self._html.format(self.title, tp))\n\n def headingpage(self, heading, subtitle = None, toc_text = None):\n '''Create a page containing only a (large) heading, optionally\n with a smaller subtitle. If toc_text is not given, it defaults\n to the heading.'''\n self.new_part()\n tag = 'h%d' % min(6, self.toc.depth)\n self.content += '<div class=\"getebook-tp\">'\n self.content += '<{} class=\"getebook-tp-title\">{}'.format(tag, heading)\n if subtitle:\n self.content += '<div class=\"getebook-tp-sub\">%s</div>' % subtitle\n self.content += '</%s>\\n' % tag\n if not toc_text:\n toc_text = heading\n self.toc.new_entry(toc_text, self.cont_filename)\n self.new_part()\n\n def insert_file(self, name, in_spine = False, guide_title = None,\n guide_type = None, arcname = None):\n '''Include an external file into the ebook. By default, it will\n be added to the archive under its basename; the argument\n \"arcname\" can be used to specify a different name.'''\n if not arcname:\n arcname = os.path.basename(name)\n self.opf.filelist.append(_Fileinfo(arcname, in_spine, guide_title,\n guide_type))\n self.epub_f.write(name, arcname)\n\n def add_file(self, arcname, str_or_bytes, in_spine = False,\n guide_title = None, guide_type = None):\n '''Add the string or bytes instance str_or_bytes to the archive\n under the name arcname.'''\n self.opf.filelist.append(_Fileinfo(arcname, in_spine, guide_title,\n guide_type))\n self.epub_f.writestr(arcname, str_or_bytes)\n\n def false_heading(self, elem):\n '''Handle a \"false heading\", i.e., text that appears in heading\n tags in the source even though it is not a chapter heading.'''\n elem.attrs['class'] = 'getebook-false-h'\n elem.tag = 'p'\n self.handle_elem(elem)\n\n def _heading(self, elem):\n '''Write a heading.'''\n # Handle paragraph heading if we have one waiting (see the\n # par_heading method). We don\\'t use _handle_par_h here because\n # we merge it with the subsequent proper heading.\n try:\n par_h = self.par_h\n del self.par_h\n except AttributeError:\n toc_text = elem.text\n else:\n # There is a waiting paragraph heading, we merge it with the\n # new heading.\n toc_text = par_h.text + '. ' + elem.text\n par_h.tag = 'div'\n par_h.attrs['class'] = 'getebook-small-h'\n elem.children.insert(0, par_h)\n # Set the class attribute value.\n elem.attrs['class'] = 'getebook-chapter-h'\n self.toc.new_entry(toc_text, self.cont_filename)\n # Add heading to the epub.\n tag = 'h%d' % min(self.toc.depth, 6)\n self.content += _make_starttag(tag, elem.attrs)\n for elem in elem.children:\n self.handle_elem(elem)\n self.content += '</%s>\\n' % tag\n\n def par_heading(self, elem):\n '''Handle a \"paragraph heading\", i.e., a chaper heading or part\n of a chapter heading inside paragraph tags. If it is immediately\n followed by a heading, they will be merged into one.'''\n self.par_h = elem\n\n def _handle_par_h(self):\n 'Check if there is a waiting paragraph heading and handle it.'\n try:\n self._heading(self.par_h)\n except AttributeError:\n pass\n\n def handle_elem(self, elem):\n 'Handle html element as supplied by getebook.EbookParser.'\n try:\n tag = elem.tag\n except AttributeError:\n # elem should be a string\n is_string = True\n tag = None\n else:\n is_string = False\n if tag in getebook._headings:\n self._heading(elem)\n else:\n # Handle waiting par_h if necessary (see par_heading)\n try:\n self._heading(self.par_h)\n except AttributeError:\n pass\n if is_string:\n self.content += elem\n elif tag == 'br':\n self.content += '<br />\\n'\n elif tag == 'img':\n self.content += self._handle_image(elem.attrs) + '\\n'\n elif tag == 'a' or tag == 'noscript':\n # Ignore tag, just write child elements\n for child in elem.children:\n self.handle_elem(child)\n else:\n self.content += _make_starttag(tag, elem.attrs)\n for child in elem.children:\n self.handle_elem(child)\n self.content += '</%s>' % tag\n if tag == 'p':\n self.content += '\\n'\n\n def _handle_image(self, attrs):\n 'Returns the alt text of an image tag.'\n try:\n return attrs['alt']\n except KeyError:\n return ''\n\n def new_part(self):\n '''Begin a new part of the epub. Write the current html document\n to the archive and begin a new one.'''\n # Handle waiting par_h (see par_heading)\n try:\n self._heading(self.par_h)\n except AttributeError:\n pass\n if self.content:\n html = self._html.format(self.title, self.content)\n self.epub_f.writestr(self.cont_filename, html)\n self.part_no += 1\n self.content = ''\n self.cont_filename = 'part%03d.html' % self.part_no\n self.opf.filelist.append(_Fileinfo(self.cont_filename))\n\n def finalize(self):\n 'Complete and close the epub file.'\n # Handle waiting par_h (see par_heading)\n if self._finalized:\n # Avoid finalizing twice. Otherwise, calling finalize inside\n # a with-block would lead to an exception when __exit__\n # calls finalize again.\n return\n try:\n self._heading(self.par_h)\n except AttributeError:\n pass\n if self.content:\n html = self._html.format(self.title, self.content)\n self.epub_f.writestr(self.cont_filename, html)\n self.opf.meta = [self.uid, self.lang, self.title] + self._authors\n self.opf.meta += self.opt_meta.values()\n self.epub_f.writestr('package.opf', self.opf.write_xml())\n self.epub_f.writestr('toc.ncx',\n self.toc.write_xml(self.uid, self.title, self._authors))\n self.epub_f.writestr('style.css', self._style_css)\n self.epub_f.close()\n self._finalized = True\n", "repo_name": "mfil/getebook", "path": "getebook/epub.py", "language": "Python", "license": "isc", "size": 25314}
{"code": "import numpy as np\nimport pandas as pd\nfrom pandas import Series, DataFrame\nfrom scipy.spatial import distance\nimport matplotlib.pyplot as plt\n\nfrom sklearn.cluster import DBSCAN\nfrom sklearn import metrics\nfrom sklearn.datasets.samples_generator import make_blobs\nfrom sklearn.preprocessing import StandardScaler\nfrom sklearn import decomposition # PCA\nfrom sklearn.metrics import confusion_matrix\n\nimport json\n\nimport ml.Features as ft\nfrom utils import Utils\n\nclass Identifier(object):\n\n def __init__(self):\n columns = ['mean_height', 'min_height', 'max_height', 'mean_width', 'min_width', 'max_width', 'time', 'girth','id']\n self.data = DataFrame(columns=columns)\n self.event = []\n @staticmethod\n def subscribe(ch, method, properties, body):\n \"\"\"\n prints the body message. It's the default callback method\n :param ch: keep null\n :param method: keep null\n :param properties: keep null\n :param body: the message\n :return:\n \"\"\"\n #first we get the JSON from body\n\n #we check if it's part of the walking event\n\n #if walking event is completed, we\n\n\nif __name__ == '__main__':\n # we setup needed params\n MAX_HEIGHT = 203\n MAX_WIDTH = 142\n SPEED = 3\n SAMPLING_RATE = 8\n mq_host = '172.26.56.122'\n queue_name = 'door_data'\n # setting up MQTT subscriber\n Utils.sub(queue_name=queue_name,callback=subscribe,host=mq_host)", "repo_name": "banacer/door-wiz", "path": "src/identification/Identifier.py", "language": "Python", "license": "mit", "size": 1449}
{"code": "\"\"\"\r\n********************************************************************\r\n Test file for implementation check of CR3BP library.\r\n********************************************************************\r\n\r\nLast update: 21/01/2022\r\n\r\nDescription\r\n-----------\r\nContains a few sample orbit propagations to test the CR3BP library.\r\n\r\nThe orbits currently found in test file include:\r\n - L2 southern NRHO (9:2 NRHO of Lunar Gateway Station)\r\n - Distant Retrograde Orbit (DRO)\r\n - Butterfly Orbit\r\n - L2 Vertical Orbit\r\n\"\"\"\r\n\r\n# Testing CR3BP implementation\r\n\r\nimport matplotlib.pyplot as plt\r\nimport numpy as np\r\nfrom astropy import units as u\r\nfrom CR3BP import getChar_CR3BP, propagate, propagateSTM\r\n\r\nfrom poliastro.bodies import Earth, Moon\r\n\r\n# Earth-Moon system properties\r\nk1 = Earth.k.to(u.km**3 / u.s**2).value\r\nk2 = Moon.k.to(u.km**3 / u.s**2).value\r\nr12 = 384747.99198 # Earth-Moon distance\r\n\r\n# Compute CR3BP characterisitic values\r\nmu, kstr, lstr, tstr, vstr, nstr = getChar_CR3BP(k1, k2, r12)\r\n\r\n\r\n# -- Lunar Gateway Station Orbit - 9:2 NRHO\r\n\r\n\"\"\"\r\nThe orbit is a Near-Rectilinear Halo Orbit (NRHO) around the L2 Lagragian\r\npoint of the Earth-Moon system. The orbit presented here is a southern\r\nsub-family of the L2-NRHO. This orbit is 9:2 resonant orbit currenly set\r\nas the candidate orbit for the Lunar Gateway Station (LOP-G). Its called\r\n9:2 resonant since a spacecraft would complete 9 orbits in the NRHO for\r\nevery 2 lunar month (slightly different from lunar orbit period).\r\n\r\nThe exact orbital elements presented here are from the auther's simulations.\r\nThe orbit states were obtained starting form guess solutions given in various\r\nreferences. A few are provided below:\r\n\r\nRef: White Paper: Gateway Destination Orbit Model: A Continuous 15 Year NRHO\r\n Reference Trajectory - NASA, 2019\r\nRef: Strategies for Low-Thrust Transfer Design Based on Direct Collocation\r\n Techniques - Park, Howell and Folta\r\n\r\nThe NRHO are subfamily of the Halo orbits. The 'Near-Rectilinear' term comes\r\nfrom the very elongated state of the orbit considering a regular Halo. Halo\r\norbits occur in all three co-linear equilibrum points L1,L2 and L3. They occur\r\nin a pair of variants (nothern and southern) due to symmetry of CR3BP.\r\n\"\"\"\r\n\r\n# 9:2 L2 souther NRHO orbit\r\nr0 = np.array([[1.021881345465263, 0, -0.182000000000000]])\r\nv0 = np.array([0, -0.102950816739606, 0])\r\ntf = 1.509263667286943\r\n\r\n# number of points to plot\r\nNplt = 300\r\ntofs = np.linspace(0, tf, Nplt)\r\n\r\n# propagate the base trajectory\r\nrf, vf = propagate(mu, r0, v0, tofs, rtol=1e-11)\r\n\r\n# ploting orbit\r\nrf = np.array(rf)\r\n\r\nfig = plt.figure()\r\nax = plt.axes(projection=\"3d\")\r\nax.set_box_aspect(\r\n (np.ptp(rf[:, 0]), np.ptp(rf[:, 1]), np.ptp(rf[:, 2]))\r\n) # aspect ratio is 1:1:1 in data space\r\n# ploting the moon\r\nax.plot3D(1 - mu, 0, 0, \"ok\")\r\nax.set_title(\"L2 Southern NRHO\")\r\nax.set_xlabel(\"x-axis [nd]\")\r\nax.set_ylabel(\"y-axis [nd]\")\r\nax.set_zlabel(\"z-axis [nd]\")\r\n\r\nax.plot3D(rf[:, 0], rf[:, 1], rf[:, 2], \"b\")\r\nplt.show()\r\n\r\n\r\n\"\"\"\r\nAll other orbits in this section are computed from guess solutions available\r\nin Grebow's Master and PhD thesis. He lists a quite detailed set of methods\r\nto compute most of the major periodic orbits I have presented here. All of\r\nthem use differntial correction methods which are not yet implemented in this\r\nlibrary.\r\n\r\nRef: GENERATING PERIODIC ORBITS IN THE CIRCULAR RESTRICTED THREEBODY PROBLEM\r\n WITH APPLICATIONS TO LUNAR SOUTH POLE COVERAGE\r\n - D.Grebow 2006 (Master thesis)\r\nRef: TRAJECTORY DESIGN IN THE EARTH-MOON SYSTEM\r\n AND LUNAR SOUTH POLE COVERAGE\r\n - D.Grebow 2010 (PhD desertation)\r\n\"\"\"\r\n\r\n\r\n# -- DRO orbit\r\n\r\n# DRO orbit states\r\n\r\nr0 = np.array([0.783390492345344, 0, 0])\r\nv0 = np.array([0, 0.548464515316651, 0])\r\ntf = 3.63052604667440\r\n\r\n# number of points to plot\r\nNplt = 300\r\ntofs = np.linspace(0, tf, Nplt)\r\n\r\n# propagate the base trajectory\r\nrf, vf = propagate(mu, r0, v0, tofs, rtol=1e-11)\r\n\r\n\r\n# ploting orbit\r\nrf = np.array(rf)\r\n\r\nfig = plt.figure()\r\nax = plt.axes(projection=\"3d\")\r\nax.set_box_aspect(\r\n (np.ptp(rf[:, 0]), np.ptp(rf[:, 1]), np.ptp(rf[:, 2]))\r\n) # aspect ratio is 1:1:1 in data space\r\n# ploting the moon\r\nax.plot3D(1 - mu, 0, 0, \"ok\")\r\nax.set_title(\"Distant Restrograde orbit (DRO)\")\r\nax.set_xlabel(\"x-axis [nd]\")\r\nax.set_ylabel(\"y-axis [nd]\")\r\nax.set_zlabel(\"z-axis [nd]\")\r\n\r\nax.plot3D(rf[:, 0], rf[:, 1], rf[:, 2], \"m\")\r\nplt.show()\r\n\r\n\r\n# -- Butterfly orbit\r\n\r\n# Butterfly orbit states\r\n\r\nr0 = np.array([1.03599510774957, 0, 0.173944812752286])\r\nv0 = np.array([0, -0.0798042160573269, 0])\r\ntf = 2.78676904546834\r\n\r\n# number of points to plot\r\nNplt = 300\r\ntofs = np.linspace(0, tf, Nplt)\r\n\r\n# propagate the base trajectory\r\nrf, vf = propagate(mu, r0, v0, tofs, rtol=1e-11)\r\n\r\n# ploting orbit\r\nrf = np.array(rf)\r\n\r\nfig = plt.figure()\r\nax = plt.axes(projection=\"3d\")\r\nax.set_box_aspect(\r\n (np.ptp(rf[:, 0]), np.ptp(rf[:, 1]), np.ptp(rf[:, 2]))\r\n) # aspect ratio is 1:1:1 in data space\r\n# ploting the moon\r\nax.plot3D(1 - mu, 0, 0, \"ok\")\r\nax.set_title(\"Butterfly orbit\")\r\nax.set_xlabel(\"x-axis [nd]\")\r\nax.set_ylabel(\"y-axis [nd]\")\r\nax.set_zlabel(\"z-axis [nd]\")\r\n\r\nax.plot3D(rf[:, 0], rf[:, 1], rf[:, 2], \"r\")\r\nplt.show()\r\n\r\n\r\n# -- Vertical orbit\r\n\r\n# Vertical orbit states\r\n\r\nr0 = np.array([0.504689989562366, 0, 0.836429774762193])\r\nv0 = np.array([0, 0.552722840538063, 0])\r\ntf = 6.18448756121754\r\n\r\n# number of points to plot\r\nNplt = 300\r\ntofs = np.linspace(0, tf, Nplt)\r\n\r\n# propagate the base trajectory\r\nrf, vf = propagate(mu, r0, v0, tofs, rtol=1e-11)\r\n\r\n# ploting orbit\r\nrf = np.array(rf)\r\n\r\nfig = plt.figure()\r\nax = plt.axes(projection=\"3d\")\r\nax.set_box_aspect(\r\n (np.ptp(rf[:, 0]), np.ptp(rf[:, 1]), np.ptp(rf[:, 2]))\r\n) # aspect ratio is 1:1:1 in data space\r\n# ploting the moon\r\nax.plot3D(1 - mu, 0, 0, \"ok\")\r\nax.set_title(\"L2 Vertical orbit\")\r\nax.set_xlabel(\"x-axis [nd]\")\r\nax.set_ylabel(\"y-axis [nd]\")\r\nax.set_zlabel(\"z-axis [nd]\")\r\n\r\nax.plot3D(rf[:, 0], rf[:, 1], rf[:, 2], \"g\")\r\nplt.show()\r\n\r\n\r\n# -- Propage STM\r\n\r\n# propagate base trajectory with state-transition-matrix\r\nSTM0 = np.eye(6)\r\nrf, vf, STM = propagateSTM(mu, r0, v0, STM0, tofs, rtol=1e-11)\r\n\r\n# STM is a matrix of partial derivatives which are used in Newton-Raphson\r\n# methods for trajectory design\r\n", "repo_name": "poliastro/poliastro", "path": "contrib/CR3BP/test_run_CR3BP.py", "language": "Python", "license": "mit", "size": 6277}
{"code": "#!/usr/bin/env python\n# -*- coding: utf-8 -*-\n\nfrom runner.koan import *\n\nclass AboutIteration(Koan):\n\n def test_iterators_are_a_type(self):\n it = iter(range(1,6))\n\n total = 0\n\n for num in it:\n total += num\n\n self.assertEqual(15 , total)\n\n def test_iterating_with_next(self):\n stages = iter(['alpha','beta','gamma'])\n\n try:\n self.assertEqual('alpha', next(stages))\n next(stages)\n self.assertEqual('gamma', next(stages))\n next(stages)\n except StopIteration as ex:\n err_msg = 'Ran out of iterations'\n\n self.assertRegex(err_msg, 'Ran out')\n\n # ------------------------------------------------------------------\n\n def add_ten(self, item):\n return item + 10\n\n def test_map_transforms_elements_of_a_list(self):\n seq = [1, 2, 3]\n mapped_seq = list()\n\n mapping = map(self.add_ten, seq)\n\n self.assertNotEqual(list, mapping.__class__)\n self.assertEqual(map, mapping.__class__)\n # In Python 3 built in iterator funcs return iterable view objects\n # instead of lists\n\n for item in mapping:\n mapped_seq.append(item)\n\n self.assertEqual([11, 12, 13], mapped_seq)\n\n # Note, iterator methods actually return objects of iter type in\n # python 3. In python 2 map() would give you a list.\n\n def test_filter_selects_certain_items_from_a_list(self):\n def is_even(item):\n return (item % 2) == 0\n\n seq = [1, 2, 3, 4, 5, 6]\n even_numbers = list()\n\n for item in filter(is_even, seq):\n even_numbers.append(item)\n\n self.assertEqual([2,4,6], even_numbers)\n\n def test_just_return_first_item_found(self):\n def is_big_name(item):\n return len(item) > 4\n\n names = [\"Jim\", \"Bill\", \"Clarence\", \"Doug\", \"Eli\"]\n name = None\n\n iterator = filter(is_big_name, names)\n try:\n name = next(iterator)\n except StopIteration:\n msg = 'Ran out of big names'\n\n self.assertEqual(\"Clarence\", name)\n\n\n # ------------------------------------------------------------------\n\n def add(self,accum,item):\n return accum + item\n\n def multiply(self,accum,item):\n return accum * item\n\n def test_reduce_will_blow_your_mind(self):\n import functools\n # As of Python 3 reduce() has been demoted from a builtin function\n # to the functools module.\n\n result = functools.reduce(self.add, [2, 3, 4])\n self.assertEqual(int, result.__class__)\n # Reduce() syntax is same as Python 2\n\n self.assertEqual(9, result)\n\n result2 = functools.reduce(self.multiply, [2, 3, 4], 1)\n self.assertEqual(24, result2)\n\n # Extra Credit:\n # Describe in your own words what reduce does.\n\n # ------------------------------------------------------------------\n\n def test_use_pass_for_iterations_with_no_body(self):\n for num in range(1,5):\n pass\n\n self.assertEqual(4, num)\n\n # ------------------------------------------------------------------\n\n def test_all_iteration_methods_work_on_any_sequence_not_just_lists(self):\n # Ranges are an iterable sequence\n result = map(self.add_ten, range(1,4))\n self.assertEqual([11, 12, 13], list(result))\n\n try:\n file = open(\"example_file.txt\")\n\n try:\n def make_upcase(line):\n return line.strip().upper()\n upcase_lines = map(make_upcase, file.readlines())\n self.assertEqual([\"THIS\", \"IS\", \"A\", \"TEST\"] , list(upcase_lines))\n finally:\n # Arg, this is ugly.\n # We will figure out how to fix this later.\n file.close()\n except IOError:\n # should never happen\n self.fail()\n", "repo_name": "bohdan7/python_koans", "path": "python3/koans/about_iteration.py", "language": "Python", "license": "mit", "size": 3923}
{"code": "from api_request import Api\nfrom util import Util\nfrom twocheckout import Twocheckout\n\n\nclass Sale(Twocheckout):\n def __init__(self, dict_):\n super(self.__class__, self).__init__(dict_)\n\n @classmethod\n def find(cls, params=None):\n if params is None:\n params = dict()\n response = cls(Api.call('sales/detail_sale', params))\n return response.sale\n\n @classmethod\n def list(cls, params=None):\n if params is None:\n params = dict()\n response = cls(Api.call('sales/list_sales', params))\n return response.sale_summary\n\n def refund(self, params=None):\n if params is None:\n params = dict()\n if hasattr(self, 'lineitem_id'):\n params['lineitem_id'] = self.lineitem_id\n url = 'sales/refund_lineitem'\n elif hasattr(self, 'invoice_id'):\n params['invoice_id'] = self.invoice_id\n url = 'sales/refund_invoice'\n else:\n params['sale_id'] = self.sale_id\n url = 'sales/refund_invoice'\n return Sale(Api.call(url, params))\n\n def stop(self, params=None):\n if params is None:\n params = dict()\n if hasattr(self, 'lineitem_id'):\n params['lineitem_id'] = self.lineitem_id\n return Api.call('sales/stop_lineitem_recurring', params)\n elif hasattr(self, 'sale_id'):\n active_lineitems = Util.active(self)\n if dict(active_lineitems):\n result = dict()\n i = 0\n for k, v in active_lineitems.items():\n lineitem_id = v\n params = {'lineitem_id': lineitem_id}\n result[i] = Api.call('sales/stop_lineitem_recurring', params)\n i += 1\n response = { \"response_code\": \"OK\",\n \"response_message\": str(len(result)) + \" lineitems stopped successfully\"\n }\n else:\n response = {\n \"response_code\": \"NOTICE\",\n \"response_message\": \"No active recurring lineitems\"\n }\n else:\n response = { \"response_code\": \"NOTICE\",\n \"response_message\": \"This method can only be called on a sale or lineitem\"\n }\n return Sale(response)\n\n def active(self):\n active_lineitems = Util.active(self)\n if dict(active_lineitems):\n result = dict()\n i = 0\n for k, v in active_lineitems.items():\n lineitem_id = v\n result[i] = lineitem_id\n i += 1\n response = { \"response_code\": \"ACTIVE\",\n \"response_message\": str(len(result)) + \" active recurring lineitems\"\n }\n else:\n response = {\n \"response_code\": \"NOTICE\",\"response_message\":\n \"No active recurring lineitems\"\n }\n return Sale(response)\n\n def comment(self, params=None):\n if params is None:\n params = dict()\n params['sale_id'] = self.sale_id\n return Sale(Api.call('sales/create_comment', params))\n\n def ship(self, params=None):\n if params is None:\n params = dict()\n params['sale_id'] = self.sale_id\n return Sale(Api.call('sales/mark_shipped', params))\n", "repo_name": "2Checkout/2checkout-python", "path": "twocheckout/sale.py", "language": "Python", "license": "mit", "size": 3388}
{"code": "import json\nimport os\n\nfrom flask import request, g, render_template, make_response, jsonify, Response\nfrom helpers.raw_endpoint import get_id, store_json_to_file\nfrom helpers.groups import get_groups\nfrom json_controller import JSONController\nfrom main import app\nfrom pymongo import MongoClient, errors\n\n\nHERE = os.path.dirname(os.path.abspath(__file__))\n\n\n# setup database connection\ndef connect_client():\n \"\"\"Connects to Mongo client\"\"\"\n try:\n return MongoClient(app.config['DB_HOST'], int(app.config['DB_PORT']))\n except errors.ConnectionFailure as e:\n raise e\n\n\ndef get_db():\n \"\"\"Connects to Mongo database\"\"\"\n if not hasattr(g, 'mongo_client'):\n g.mongo_client = connect_client()\n g.mongo_db = getattr(g.mongo_client, app.config['DB_NAME'])\n g.groups_collection = g.mongo_db[os.environ.get('DB_GROUPS_COLLECTION')]\n return g.mongo_db\n\n@app.teardown_appcontext\ndef close_db(error):\n \"\"\"Closes connection with Mongo client\"\"\"\n if hasattr(g, 'mongo_client'):\n g.mongo_client.close()\n\n# Begin view routes\n@app.route('/')\n@app.route('/index/')\ndef index():\n \"\"\"Landing page for SciNet\"\"\"\n return render_template(\"index.html\")\n\n@app.route('/faq/')\ndef faq():\n \"\"\"FAQ page for SciNet\"\"\"\n return render_template(\"faq.html\")\n\n@app.route('/leaderboard/')\ndef leaderboard():\n \"\"\"Leaderboard page for SciNet\"\"\"\n get_db()\n groups = get_groups(g.groups_collection)\n return render_template(\"leaderboard.html\", groups=groups)\n\n@app.route('/ping', methods=['POST'])\ndef ping_endpoint():\n \"\"\"API endpoint determines potential article hash exists in db\n\n :return: status code 204 -- hash not present, continue submission\n :return: status code 201 -- hash already exists, drop submission\n \"\"\"\n db = get_db()\n target_hash = request.form.get('hash')\n if db.raw.find({'hash': target_hash}).count():\n return Response(status=201)\n else:\n return Response(status=204)\n\n@app.route('/articles')\ndef ArticleEndpoint():\n \"\"\"Eventual landing page for searching/retrieving articles\"\"\"\n if request.method == 'GET':\n return render_template(\"articles.html\")\n\n@app.route('/raw', methods=['POST'])\ndef raw_endpoint():\n \"\"\"API endpoint for submitting raw article data\n\n :return: status code 405 - invalid JSON or invalid request type\n :return: status code 400 - unsupported content-type or invalid publisher\n :return: status code 201 - successful submission\n \"\"\"\n # Ensure post's content-type is supported\n if request.headers['content-type'] == 'application/json':\n # Ensure data is a valid JSON\n try:\n user_submission = json.loads(request.data)\n except ValueError:\n return Response(status=405)\n # generate UID for new entry\n uid = get_id()\n # store incoming JSON in raw storage\n file_path = os.path.join(\n HERE,\n 'raw_payloads',\n str(uid)\n )\n store_json_to_file(user_submission, file_path)\n # hand submission to controller and return Resposne\n db = get_db()\n controller_response = JSONController(user_submission, db=db, _id=uid).submit()\n return controller_response\n\n # User submitted an unsupported content-type\n else:\n return Response(status=400)\n\n#@TODO: Implicit or Explicit group additions? Issue #51 comments on the issues page\n#@TODO: Add form validation\n@app.route('/requestnewgroup/', methods=['POST'])\ndef request_new_group():\n # Grab submission form data and prepare email message\n data = request.json\n msg = \"Someone has request that you add {group_name} to the leaderboard \\\n groups. The groups website is {group_website} and the submitter can \\\n be reached at {submitter_email}.\".format(\n group_name=data['new_group_name'],\n group_website=data['new_group_website'],\n submitter_email=data['submitter_email'])\n return Response(status=200)\n '''\n try:\n email(\n subject=\"SciNet: A new group has been requested\",\n fro=\"no-reply@scinet.osf.io\",\n to='harry@scinet.osf.io',\n msg=msg)\n return Response(status=200)\n except:\n return Response(status=500)\n '''\n\n# Error handlers\n@app.errorhandler(404)\ndef not_found(error):\n return make_response(jsonify( { 'error': 'Page Not Found' } ), 404)\n\n@app.errorhandler(405)\ndef method_not_allowed(error):\n return make_response(jsonify( { 'error': 'Method Not Allowed' } ), 405)", "repo_name": "CenterForOpenScience/scinet", "path": "scinet/views.py", "language": "Python", "license": "mit", "size": 4696}
{"url": "https://garuda.kemdikbud.go.id/documents/detail/2110807", "title": "Analisis Konten Media Sosial Twitter Sarana Pendidikan di Indonesia Study Kasus Ruang Guru", "authors": {"name": ["Aziz Reza Randisa", "achmad nurmandi"], "affiliation": ["(Unknown)", "(Unknown)"]}, "journal": "Jurnal Ilmiah Tata Sejuta STIA Mataram", "publisher": "Sekolah Tinggi Ilmu Administrasi Mataram", "publish_date": "10 Sep 2020", "keywords_original": {"id": null, "en": null}, "keywords_generated": {"en": ["indonesia", "twitter", "sosial", "social", "twet"], "id": null}, "articles": {"en": "Twitter users in Indonesia are one of the biggest twitter users in the World. The use of Twitter in Indonesia, is often used in various activities, one of which is in the field of education. The @ruangguru account is a twitter account that is used to deliver content related to the Teacher's Room application. In Indonesia, Ruang Guru is the largest educational platform that can be enjoyed by the people of Indonesia, so the research objective is to analyze @ruangguru's Twitter content as a means of education in Indonesia, and what form of content or twet delivered by the @ruangguru account to users and other communities. This type of research uses descriptive qualitative research, with data collection methods used, namely with data capture containing content from the @ruangguru twitter account, and then analyzed using the Nvivo 12 application. The results of the research address the social media content Twitter @ruangguru containing information as an alternative learning in encouraging the provision of educational facilities in Indonesia. Ruang Guru received a good response from active twitter users who followed the @ruangguru account in providing or expanding access to quality education through technology that is not limited by time and place and can encourage quality education in Indonesia.", "id": null}, "download_url": null}
{"url": "https://garuda.kemdikbud.go.id/documents/detail/2110808", "title": "Strategi Pengelolaan Objek Wisata Mangrove Pandansari Sebagai Salah Satu Pendapatan Asli Daerah Kabupaten Brebes", "authors": {"name": ["Dwian Hartomi Akta Padma Eldo", "Azra Fadila Prabowo"], "affiliation": ["(Unknown)", "(Unknown)"]}, "journal": "Jurnal Ilmiah Tata Sejuta STIA Mataram", "publisher": "Sekolah Tinggi Ilmu Administrasi Mataram", "publish_date": "10 Sep 2020", "keywords_original": {"id": null, "en": null}, "keywords_generated": {"en": ["pengelolaan", "daerah", "governments", "stakeholders", "community"], "id": null}, "articles": {"en": "This paper aims to see how the local government of Brebes Regency manages the Mangrove Sari tourist sites by using the Planning, Organizing, Actuating, Controlling (POAC). The research method in this paper uses a descriptive qualitative approach. The author conducted interviews directly with stakeholders such as the Brebes local government and also the community that manages the Sari Mangrove tourism site. The aim is to see how the strategies carried out by local governments and also the practice in the field whether it is going according to plan or not. The results showed that the local government has not been maximized in optimizing Pandansari Tourism Objects as one of the original revenue of the Brebes Regency. In addition the local government in this case the Department of Tourism and Culture is still not effective in carrying out coordination and direction for future development with the management of the tourism object in this case the local community group. Therefore, some input that can be given is to improve coordination with the management of attractions and to draft long-term and short-term development plans for Pandansari Mangrove Tourism Objects.", "id": null}, "download_url": null}
{"url": "https://garuda.kemdikbud.go.id/documents/detail/2110809", "title": "Pola Komunikasi Pemerintahan Kabupaten Kulon Progo dalam Meningkatkan Pendapatan Asli Daerah Tahun 2014-2018", "authors": {"name": ["sarmito mito", "Dyah Mutiarin", "Achmad Nurmandi"], "affiliation": ["(Unknown)", "(Unknown)", "(Unknown)"]}, "journal": "Jurnal Ilmiah Tata Sejuta STIA Mataram", "publisher": "Sekolah Tinggi Ilmu Administrasi Mataram", "publish_date": "10 Sep 2020", "keywords_original": {"id": null, "en": null}, "keywords_generated": {"en": ["research", "analyzed", "communication", "komunikasi", "indicators"], "id": null}, "articles": {"en": "This study aims to determine how the communication patterns carried out by the government of Kulon Progo to increase local revenue (PAD). This research uses descriptive qualitative method, how many indicators in this study were analyzed using Nvivo 12 Plus software. Data collection is done through observation, interview, and documentation. This research was conducted in Kulon Progo Regency, Provision of the Special Region of Yogyakarta, involving the Regent, TAPD, BAPPEDA, BKAD, and DPRD. The results of this study show a positive trend in increasing PAD kulon progo from the period 2014-2018. Good communication is carried out by the Kulon Progo government to increase PAD, by conducting internal and external communication. Internal communication between institutions that are leading sectors in the effort to increase PAD, and external communication with the community to form a joint commitment to the success of efforts to increase PAD, and with the private sector through a Memorandum of Understanding (MoU), this is done as a means and supporting infrastructure in efforts to increase PAD.", "id": null}, "download_url": null}
{"url": "https://garuda.kemdikbud.go.id/documents/detail/2110805", "title": "Studi Komparasi Survei Kepuasan Masyarakat (SKM) Terhadap Pelayanan Publik Tahun 2019 (Studi di Dinas Dukcapil Kota Mataram dan Dukcapil Kabupaten Lombok Barat)", "authors": {"name": ["rahmad hidayat hidayat", "M. Taufik Rahcman", "M. Rahmatul Burhan"], "affiliation": ["(Unknown)", "(Unknown)", "(Unknown)"]}, "journal": "Jurnal Ilmiah Tata Sejuta STIA Mataram", "publisher": "Sekolah Tinggi Ilmu Administrasi Mataram", "publish_date": "10 Sep 2020", "keywords_original": {"id": null, "en": null}, "keywords_generated": {"en": ["indonesia", "services", "service", "public", "pelayanan"], "id": null}, "articles": {"en": "Public services that should have been better in every country, in every province and even in every region to the villages, but apparently our minds still see and lead to a complicated and complex public service process. This shows that the condition of public services in Indonesia is still far from the expectations of the community. As for the formulation of the problem in this study, namely: How do the comparisons / comparisons of the Community Satisfaction Survey (SKM) Against Public Services in 2019 (Study at the Mataram City Dukcapil and Dukcapil Services in West Lombok Regency)? and what are the inhibiting and supporting factors in public services conducted by the Mataram City Dukcapil Office and West Lombok Dukcapil District ?. This research is a type of survey research. Based on the results of the study note the comparison / comparison of the Community Satisfaction Survey (SKM) on Public Services in 2019 in the West Lombok Regency Dukcapil and Mataram City Dukcapil Services obtained the value of service quality with the category \"B\" which indicates the community satisfaction in the Population and Civil Registry Office of West Lombok Regency get the title \"good\". Whereas in the Department of Population and Civil Registry, the City of Mataram also received a good title but with a higher value. The inhibiting and supporting factors in public services conducted by the West Lombok Regency Dukcapil and the Mataram City Dukcapil Office are related to the variety of service time perceived to be quite long. In addition, even though the tariff has been free, it still gets a maximum score.", "id": null}, "download_url": null}
{"text": "Prints from an Important Chicago Collection"}
{"text": "We can assist with getting hired."}
{"text": "This is the most important thing and we have to be able to tell the truth. We can only aspire to better peace of mind and security by applying ourselves in something that we enjoy. It might seem like a neat trick to do some uninspiring task for a few hours each day but have you considered what you are missing out on? Have you thought about doing this for the rest of your life? What kind of life do you want? So whatever we have to do to get by is one thing, but when it comes to building your personal vision you need to think about you."}
{"text": "<@ } @> <@ if (typeof productSameNextDayDelMsg != \"undefined\" && productSameNextDayDelMsg != \"\" && productSameNextDayDelMsg=='orderblock.productNextDayDelMsg'){ @>"}
{"text": "Afghanistan Albania Algeria American Samoa Andorra Angola Anguilla Antarctica Antigua and Barbuda Argentina Armenia Aruba Australia Austria Azerbaijan Bahamas Bahrain Bangladesh Barbados Belarus Belgium Belize Benin Bermuda Bhutan Bolivia Bosnia and Herzegovina Botswana Bouvet Island Brazil British Indian Ocean Territory Brunei Darussalam Bulgaria Burkina Faso Burundi Cambodia Cameroon Canada Cape Verde Cayman Islands Central African Republic Chad Chile China Christmas Island Cocos (Keeling) Islands Colombia Comoros Congo Congo, The Democratic Republic of the Cook Islands Costa Rica Cote d'Ivoire Croatia Cuba Cyprus Czech Republic Djibouti Dominica Dominican Republic Ecuador Egypt El Salvador Equatorial Guinea Eritrea Estonia Ethiopia Europe Falkland Islands (Malvinas) Fiji France French Guiana French Polynesia French Southern Territories Gabon Gambia Georgia Germany Ghana Gibraltar Greece Grenada Guadeloupe Guam Guatemala Guernsey Guinea Guinea-Bissau Guyana Haiti Heard Island and McDonald Islands Holy See (Vatican City State) Honduras Hong Kong Hungary Iceland India Indonesia Iran, Islamic Republic of Iraq Ireland Isle of Man Israel Italy Jamaica Japan Jersey Jordan Kazakhstan Kenya Kiribati Korea, Democratic People's Republic of Korea, Republic of Kuwait Kyrgyzstan Lao People's Democratic Republic Latvia Lebanon Lesotho Liberia Libyan Arab Jamahiriya Liechtenstein Lithuania Luxembourg Macao Macedonia Madagascar Malawi Malaysia Maldives Mali Malta Marshall Islands Martinique Mauritania Mauritius Mayotte Mexico Micronesia, Federated States of Moldova, Republic of Monaco Mongolia Montenegro Montserrat Morocco Mozambique Myanmar Namibia Nauru Nepal Netherlands Netherlands Antilles New Caledonia New Zealand Nicaragua Niger Nigeria Niue Norfolk Island Northern Mariana Islands Norway Oman Pakistan Palau Palestinian Territory Panama Papua New Guinea Paraguay Peru Philippines Pitcairn Poland Portugal Puerto Rico Qatar Reunion Romania Russian Federation Rwanda Saint Helena Saint Kitts and Nevis Saint Lucia Saint Pierre and Miquelon Saint Vincent and the Grenadines Samoa San Marino Sao Tome and Principe Saudi Arabia Senegal Serbia Seychelles Sierra Leone Singapore Slovakia Slovenia Solomon Islands Somalia South Africa South Georgia and the South Sandwich Islands Spain Sri Lanka Sudan Suriname Svalbard and Jan Mayen Swaziland Sweden Switzerland Syrian Arab Republic Taipei Tajikistan Tanzania, United Republic of Thailand Timor-Leste Togo Tokelau Tonga Trinidad and Tobago Tunisia Turkey Turks and Caicos Islands Tuvalu Uganda Ukraine United Arab Emirates United Kingdom United States Uruguay Uzbekistan Vanuatu Venezuela Vietnam Virgin Islands, British Virgin Islands, U.S. Wallis and Futuna Yemen Zambia Zimbabwe"}
{"text": "Marianne Musgrove says:\t"}
{"text": "PolyPro 4000D"}
{"text": "They hung a sign up in our town\nIf you live it up, you wont live it down\nSo she left Monte Rio, son\nJust like a bullet leaves a gun\nWith her charcoal eyes and Monroe hips\nShe went and took that California trip\nOh, the moon was gold, her hair like wind\nSaid, Dont look back, just come on, Jim\nOh, you got to hold on, hold on\nYou gotta hold on\nTake my hand, Im standing right here\nYou gotta hold on\nWell, he gave her a dimestore watch\nAnd a ring made from a spoon\nEveryones looking for someone to blame\nWhen you share my bed, you share my name\nWell, go ahead and call the cops\nYou dont meet nice girls in coffee shops\nShe said, Baby, I still love you\nSometimes theres nothin left to do\nOh, but you got to hold on, hold on\nBabe, you gotta hold on\nAnd take my hand, Im standing right here\nYou gotta hold on\nWell, God bless your crooked little heart\nSt. Louis got the best of me\nI miss your broken china voice\nHow I wish you were still here with me\nOh, you build it up, you wreck it down\nThen you burn your mansion to the ground\nOh, theres nothing left to keep you here\nBut when youre falling behind in this big blue world\nOh, youve got to hold on, hold on\nBabe, you gotta hold on\nTake my hand, Im standing right here\nYou gotta hold on\nDown by the Riverside motel\nIts 10 below and falling\nBy a 99-cent store\nShe closed her eyes and started swaying\nBut its so hard to dance that way\nWhen its cold and theres no music\nOh, your old hometowns so far away\nBut inside your head theres a record thats playing\nA song called Hold On, hold on\nBabe, you gotta hold on\nTake my hand, Im standing right there\nYou gotta hold on\nYou gotta hold on, hold on\nBabe, you gotta hold on\nTake my hand, Im standing right there\nYou gotta hold on\nYou gotta hold on, hold on\nBabe, you gotta hold on\nAnd take my hand, Im standing right here\nYou gotta hold on\nYou gotta hold on, hold on\nBabe, you gotta hold on\nAnd take my hand, Im standing right here\nYou gotta hold on\nYou gotta hold on\nYou gotta hold on\nYou gotta hold on\nYou gotta hold on\nYou gotta hold on, baby\nYou gotta hold on, girl\nYou gotta hold on\nYou gotta hold on"}
{"text": "Well I remember it as though it were a meal ago\nSaid Tommy the Cat as he reeled back to clear whatever foreign matter may have nestled its way into his mighty throat\nMany a fat alley rat had met its demise while staring point blank down the cavernous barrel of this awesome prowling machine\nTruly a wonder of nature this urban predator. Tommy the cat had many a story to tell, but it was a rare occasion such as this that he did\nShe came asliding on down the alleyway like butter drippin off a hot biscuit\nThe aroma, the mean scent, was enough to arouse suspicion in even the oldest of tigers that hung around the hot spot in those days\nThe sight was beyond belief. Many a head snapped for double even triple, takes as this vivacious feline made her her way into the delta of the alleyway where the most virile of the young tabbys were known to hang out. They hung out in droves\nSuch a multitude of masculinity could only be found in one place... and that was OMalleys Alley.\nThe air was thick with catcalls \nBut not even a muscle in her neck did twitch as she sauntered straight to behind the alleyway. She knew what she wanted. She was looking for that stud bull\nShe was looking for that He-cat. And that was me\nTommy the Cat is my name and I say unto thee:\nSay baby do you wanna lay down with me?\nSay baby do you wanna lay down by my side?\nAh baby do you wanna lay down with me?\nSay baby\nSay baby\nSay baby do you wanna lay down with me?\nSay baby do you wanna lay down by my side?\nAh baby do you wanna lay down with me?\nSay baby, say baby\nSay baby do you wanna lay down with me?\nSay baby do you wanna lay down by my side?\nAh baby do you wanna lay down with me?\nSay b-b-b-b-b-b-b-baby\nSay baby do you wanna lay down with me?\nSay baby do you wanna lay down by my side?\nAh baby do you wanna lay down with me?\nSay baby!\nSay baby!\nSay baby do you wanna lay down with me?\nSay baby do you wanna lay down by my side?\nAh baby do you wanna lay down with me?\nSay baby!\nSay baby!\nSay baby do you wanna lay down with me?\nSay baby do you wanna lay down by my side?\nAh baby do you wanna lay down with me?\nSay baby!\nSay baby!"}
{"text": "Whats he building in there?\nWhat the hell is he building in there?\nHe has subscriptions to those magazines\nHe never waves when he goes by\nHes hiding something from the rest of us\nHes all to himself, I think I know why\nHe took down the tire swing from the pepper tree\nHe has no children of his own, you see\nHe has no dog, he has no friends and his lawn is dying\nAnd what about all those packages he sends?\nWhats he building in there?\nWith that hook light on the stairs\nWhats he building in there?\nIll tell you one thing: hes not building a playhouse for the children\nWhats he building in there?\nNow whats that sound from underneath the door?\nHes pounding nails into a hardwood floor\nAnd I swear to God I heard someone moaning low\nAnd I keep seeing the blue light of a TV show\nHe has a router and a table saw\nAnd you wont believe what Mr. Sticha saw!\nTheres poison underneath the sink, of course\nBut theres also enough formaldehyde to choke a horse\nWhats he building in there?\nWhat the hell is he building in there?\nI heard he has an ex-wife\nIn some place called Mayors Income, Tennessee\nAnd he used to have a consulting business in Indonesia\nBut whats he building in there?\nHe has no friends, but he gets a lot of mail\nIll bet he spent a little time in jail\nI heard he was up on the roof last night signaling with a flashlight\nAnd whats that tune hes always whistling?\nWhats he building in there?\nWhats he building in there?\nWe have a right to know!"}
{"text": "Operator, number please, its been so many years\nWill she remember my old voice while I fight the tears?\nHello, hello there, is this Martha? This is old Tom Frost\nAnd I am calling long distance, dont worry about the cost\nCause its been forty years or more, now Martha please recall\nMeet me out for coffee where well talk about it all\nAnd those were the days of roses, of poetry and prose\nAnd Martha all I had was you and all you had was me\nThere was no tomorrows, we packed away our sorrows\nAnd we saved them for a rainy day\nAnd I feel so much older now, youre much older too\nHows your husband? And hows your kids?\nYou know that I got married too\nLucky that you found someone to make you feel secure\nCause we were all so young and foolish, now we are mature\nAnd those were the days of roses, of poetry and prose\nAnd Martha, all I had was you and all you had was me\nThere was no tomorrows, we packed away our sorrows\nAnd we saved them for a rainy day\nAnd I was always so impulsive, I guess that I still am\nAnd all that really mattered then was that I was a man\nI guess that our being together was never meant to be\nBut Martha, Martha, I love you, cant you see?\nAnd those were the days of roses, of poetry and prose\nAnd Martha all I had was you and all you had was me\nThere was no tomorrows, we packed away our sorrows\nAnd we saved them for a rainy day\nAnd I remember quiet evenings, trembling close to you"}
{"text": "Hey Charlie, Im pregnant and living on 9th Street\nRight above a dirty bookstore off Euclid Avenue\nAnd I stopped takin dope, and I quit drinkin whiskey\nAnd my old man plays the trombone and works out at the track\nHe says that he loves me even though its not his baby\nHe says that hell raise him up like he would his own son\nAnd he gave me a ring that was worn by his mother\nAnd he takes me out dancin every Saturday night\nAnd hey Charlie, I think about you every time I pass a fillin station\nOn account of all the grease you used to wear in your hair\nAnd I still have that record of Little Anthony and the Imperials\nBut someone stole my record player--now, how do you like that?\nHey Charlie, I almost went crazy after Mario got busted\nI went back to Omaha to live with my folks\nBut everyone I used to know was either dead or in prison\nSo I came back to Minneapolis, this time I think Im gonna stay\nHey Charlie, I think Im happy for the first time since my accident\nI wish I had all the money we used to spend on dope\nId buy me a used car lot, and I wouldnt sell any of em\nId just drive a different car every day, dependin on how I feel\nHey Charlie, for chrissakes, if you want to know the truth of it\nI dont have a husband, he dont play the trombone\nI need to borrow money to pay this lawyer, and Charlie, hey\nIll be eligible for parole come Valentines day"}
{"text": "Edna Milton in a drop-dead suit\nDutch Pink on a downtown train\nTwo-dollar pistol but the gun wont shoot\nIm in the corner on the pouring rain\nSixteen men on a deadmans chest\nAnd Ive been drinking from a broken cup\nTwo pairs of pants and a mohair vest\nIm full of bourbon, I cant stand up\nHey little bird, fly away home\nYour house is on fire, your children are alone\nHey little bird, fly away home\nYour house is on fire, your children are alone\nSchiffer broke a bottle on Morgans head\nAnd Ive been stepping on the devils tail\nAcross the stripes of a full moons head\nThrough the bars of a Cuban jail\nBloody fingers on a purple knife\nA flamingo drinking from a cocktail glass\nIm on the lawn with someone elses wife\nAdmire the view from up on top of the mast\nHey little bird, fly away home\nYour house is on fire, your children are alone\nHey little bird, fly away home\nYour house is on fire, your children are alone\nHey little bird, fly away home\nYour house is on fire, your children are alone\nHey little bird, fly away home\nYour house is on fire, your children are alone\nYellow sheets on a Hong Kong bed\nStazybo horn and a Slingerland ride\nTo the carnival is what she said\nA hundred dollars makes it dark inside\nEdna Milton in a drop-dead suit\nDutch Pink on a downtown train\nTwo-dollar pistol but the gun wont shoot\nIm in the corner on the pouring rain\nHey little bird, fly away home\nYour house is on fire, your children are alone\nHey little bird, fly away home\nYour house is on fire, your children are alone"}
{"text": "Well, my time went so quickly\nI went lickety-splitly out to my ol fifty-five\nAs I pulled away slowly, feeling so holy\nGod knows I was feeling alive\nNow the suns coming up\nIm riding with Lady Luck\nFreeway cars and trucks\nStars beginning to fade\nAnd I lead the parade\nJust a-wishing Id stayed a little longer\nOh Lord, let me tell you that the feeling getting stronger\nAnd its six in the morning\nGave me no warning, I had to be on my way\nWell, theres trucks all a-passing me, and the lights all a-flashin\nIm on my way home from your place\nAnd now the suns coming up\nIm riding with Lady Luck\nFreeway cars and trucks\nStars beginning to fade\nAnd I lead the parade\nJust a-wishing Id stayed a little longer\nOh Lord, let me tell you the feeling getting stronger\nAnd my time went so quickly\nI went lickety-splitly out to my ol fifty-five\nAs I pulled away slowly, feeling so holy\nGod knows I was feeling alive\nAnd now the suns coming up\nIm riding with Lady Luck\nFreeway cars and trucks\nFreeway cars and trucks\nFreeway cars and trucks"}
{"text": "Outside another yellow moon\nPunched a hole in the nighttime, yes\nI climb through the window and down to the street\nIm shining like a new dime\nThe downtown trains are full\nWith all those Brooklyn girls\nThey try so hard to break out of their little worlds\nYou wave your hand and they scatter like crows\nThey have nothing that will ever capture your heart\nTheyre just thorns without the rose\nBe careful of them in the dark\nOh if I was the one you chose to be your only one\nOh baby cant you hear me now?\nCant you hear me now?\nWill I see you tonight\nOn a downtown train?\nEvery night its just the same\nYou leave me lonely, now\nI know your window and I know its late\nI know your stairs and your doorway\nI walk down your street and past your gate\nI stand by the light at the four-way\nYou watch em as they fall\nOh baby, they all have heart attacks\nThey stay at the carnival\nBut theyll never win you back\nWill I see you tonight\nOn a downtown train?\nWhere every night, every night is just the same\nOh baby\nWill I see you tonight\nOn a downtown train?\nAll of my dreams just fall like rain\nOh, baby, on a downtown train\nWill I see you tonight\nOn a downtown train?\nWhere every night, every night is just the same\nOh baby\nWill I see you tonight\nOn a downtown train?\nAll of my dreams just fall like rain\nOh, on a downtown train\nOh, on a downtown train\nOh, on a downtown train\nOh, on a downtown train\nDowntown train"}
{"text": "0 Switzerland world_cup_appearance 11_(first_in_1934)"}
{"text": "0 Switzerland world_cup_Quarter-finals 7th_place"}
{"text": "0 Switzerland has_player Yann_Sommer"}
{"text": "0 Yann_Sommer caps 47"}
{"abstract": "Tachycardiomyopathy (TCM) is a largely reversible form of non-ischemic heart failure. The underlying mechanism are, however, still today poorly understood. Recent data indicate distinct changes in mitochondrial distribution in these patients, compared to other non-ischemic cardiomyopathies.This study investigated underlying mechanisms in mitochondrial dynamics in endomyocardial biopsy samples (EMB) from patients with TCM and compared them to patients with dilated cardiomyopathy (DCM), which show similar clinical features.", "country": "Germany"}
{"abstract": "Oxidative modifications of low-density lipoprotein (ox-LDL) play a key role in initial steps of atheroprogression possibly via specific scavenger receptors on inflammatory and endothelial cells. Amongst others, CD68 might play a crucial role in this leading to fatty streak formation.", "country": "Germany"}
{"abstract": "Hepatocellular carcinoma (HCC) represents the second most common cause of cancer-related deaths worldwide, not least due to its high chemoresistance. The long non-coding RNA nuclear paraspeckle assembly transcript 1 (NEAT1), localised in nuclear paraspeckles, has been shown to enhance chemoresistance in several cancer types. Since data on NEAT1 in HCC chemosensitivity are completely lacking and chemoresistance is linked to poor prognosis, we aimed to study NEAT1 expression in HCC chemoresistance and its link to HCC prognosis.", "country": "Germany"}
{"abstract": "Endothelial cells exposed to the Random Positioning Machine (RPM) reveal three different phenotypes. They grow as a two-dimensional monolayer and form three-dimensional (3D) structures such as spheroids and tubular constructs. As part of the ESA-SPHEROIDS project we want to understand how endothelial cells (ECs) react and adapt to long-term microgravity.", "country": "Germany"}
{"abstract": "Recently, we have demonstrated that episodic hypoxia occurs in kidneys of mice challenged repetitively with the immunosuppressant cyclosporine A (CsA), in analogy to humans on CsA treatment. However, the molecular consequences of episodic hypoxia remain poorly defined, as is its impact on cell survival. Here, we systematically study cell response to episodic, as compared to single course hypoxia.", "country": "Germany"}
{"abstract": "Adipocyte hypertrophy in obesity is associated with inflammation and adipose tissue fibrosis which both contribute to metabolic diseases. Mechanisms regulating lipid droplet expansion are poorly understood. Knock down of the scaffold protein beta 2 syntrophin (SNTB2) increases lipid droplet size of 3T3-L1 adipocytes and the physiological relevance of SNTB2 in adipose tissue morphology and metabolic health was analyzed herein.", "country": "Germany"}
{"abstract": "The two-pore-domain potassium channel TASK-1 regulates atrial action potential duration. Due to the atrium-specific expression of TASK-1 in the human heart and the functional upregulation of TASK-1 currents in atrial fibrillation (AF), TASK-1 represents a promising target for the treatment of AF. Therefore, detailed knowledge of the molecular determinants of TASK-1 inhibition may help to identify new drugs for the future therapy of AF. In the current study, the molecular determinants of TASK-1 inhibition by the potent and antiarrhythmic compound A293 (AVE1231) were studied in detail.", "country": "Germany"}
{"abstract": "Different approaches have been considered to improve heart reconstructive medicine and direct delivery of pluripotent stem cell-derived cardiomyocytes (PSC-CMs) appears to be highly promising in this context. However, low cell persistence post-transplantation remains a bottleneck hindering the approach. Here, we present a novel strategy to overcome the low engraftment of PSC-CMs during the early post-transplantation phase into the myocardium of both healthy and cryoinjured syngeneic mice.", "country": "Germany"}
{"age": 63, "sex": 1, "cp": 1, "trestbps": 145, "chol": 233, "fbs": 1, "restecg": 2, "thalach": 150, "exang": 0, "oldpeak": 2.3, "slope": 3, "ca": 0, "thal": "fixed", "target": 0}
{"age": 67, "sex": 1, "cp": 4, "trestbps": 160, "chol": 286, "fbs": 0, "restecg": 2, "thalach": 108, "exang": 1, "oldpeak": 1.5, "slope": 2, "ca": 3, "thal": "normal", "target": 1}
{"age": 67, "sex": 1, "cp": 4, "trestbps": 120, "chol": 229, "fbs": 0, "restecg": 2, "thalach": 129, "exang": 1, "oldpeak": 2.6, "slope": 2, "ca": 2, "thal": "reversible", "target": 0}
{"age": 37, "sex": 1, "cp": 3, "trestbps": 130, "chol": 250, "fbs": 0, "restecg": 0, "thalach": 187, "exang": 0, "oldpeak": 3.5, "slope": 3, "ca": 0, "thal": "normal", "target": 0}
{"age": 41, "sex": 0, "cp": 2, "trestbps": 130, "chol": 204, "fbs": 0, "restecg": 2, "thalach": 172, "exang": 0, "oldpeak": 1.4, "slope": 1, "ca": 0, "thal": "normal", "target": 0}
{"age": 56, "sex": 1, "cp": 2, "trestbps": 120, "chol": 236, "fbs": 0, "restecg": 0, "thalach": 178, "exang": 0, "oldpeak": 0.8, "slope": 1, "ca": 0, "thal": "normal", "target": 0}
{"age": 62, "sex": 0, "cp": 4, "trestbps": 140, "chol": 268, "fbs": 0, "restecg": 2, "thalach": 160, "exang": 0, "oldpeak": 3.6, "slope": 3, "ca": 2, "thal": "normal", "target": 1}
{"age": 57, "sex": 0, "cp": 4, "trestbps": 120, "chol": 354, "fbs": 0, "restecg": 0, "thalach": 163, "exang": 1, "oldpeak": 0.6, "slope": 1, "ca": 0, "thal": "normal", "target": 0}
{"age": 63, "sex": 1, "cp": 4, "trestbps": 130, "chol": 254, "fbs": 0, "restecg": 2, "thalach": 147, "exang": 0, "oldpeak": 1.4, "slope": 2, "ca": 1, "thal": "reversible", "target": 1}
{"age": 53, "sex": 1, "cp": 4, "trestbps": 140, "chol": 203, "fbs": 1, "restecg": 2, "thalach": 155, "exang": 1, "oldpeak": 3.1, "slope": 3, "ca": 0, "thal": "reversible", "target": 0}
{"id": 0, "verse_text": "with pale blue berries. in these peaceful shades--", "label": 1}
{"id": 1, "verse_text": "it flows so long as falls the rain,", "label": 2}
{"id": 2, "verse_text": "and that is why, the lonesome day,", "label": 0}
{"id": 3, "verse_text": "when i peruse the conquered fame of heroes, and the victories of mighty generals, i do not envy the generals,", "label": 3}
{"id": 4, "verse_text": "of inward strife for truth and liberty.", "label": 3}
{"id": 5, "verse_text": "the red sword sealed their vows!", "label": 3}
{"id": 6, "verse_text": "and very venus of a pipe.", "label": 2}
{"id": 7, "verse_text": "who the man, who, called a brother.", "label": 2}
{"id": 8, "verse_text": "and so on. then a worthless gaud or two,", "label": 0}
{"id": 9, "verse_text": "to hide the orb of truth--and every throne", "label": 2}
{"id": "13", "label": 40, "text": "tijd om te gaan slapen olly", "label_text": "iot_hue_lightoff"}
{"title": "Video monitoring and alarm verification technology "}
{"title": "System and method for alarm signaling during alarm system destruction "}
{"title": "Alarm system with two-way voice "}
{"title": "Alarm signaling technology "}
{"title": "Remote device control and energy monitoring by analyzing and applying rules "}
{"title": "Drone detection systems "}
{"title": "Video monitoring and alarm verification technology "}
{"title": "Monitoring system control technology using multiple sensors, cameras, lighting devices, and a thermostat "}
{"title": "Alarm probability "}
{"text": "Microsoft slaps down Intel #39;s Itanium chip THE CINDERELLA of Intel #39;s chips, the Itanium, has been told it can #39;t go to the Microsoft #39;s supercomputer ball. That #39;s according to a report on Infoworld, which claims that the software giant will only support ", "inputs": {"text": "Microsoft slaps down Intel #39;s Itanium chip THE CINDERELLA of Intel #39;s chips, the Itanium, has been told it can #39;t go to the Microsoft #39;s supercomputer ball. That #39;s according to a report on Infoworld, which claims that the software giant will only support "}, "prediction": null, "prediction_agent": null, "annotation": "Sci/Tech", "annotation_agent": "XPS-15", "multi_label": false, "explanation": null, "id": "00015158-f6f6-4422-9f5c-fa6195388160", "metadata": {"split": "test"}, "status": "Validated", "event_timestamp": null, "metrics": {"text_length": 271}}
{"text": "Kerry-Kerrey Confusion Trips Up Campaign (AP) AP - John Kerry, Bob Kerrey. It's easy to get confused.", "inputs": {"text": "Kerry-Kerrey Confusion Trips Up Campaign (AP) AP - John Kerry, Bob Kerrey. It's easy to get confused."}, "prediction": null, "prediction_agent": null, "annotation": "World", "annotation_agent": "XPS-15", "multi_label": false, "explanation": null, "id": "00035500-fc2c-4c2b-9e87-82e078f4bcf7", "metadata": {"split": "test"}, "status": "Validated", "event_timestamp": null, "metrics": {"text_length": 101}}
{"text": "Hey mate, we're moving offshore too! Australia's IT News reports the findings of a recent survey in which more than 20 percent of company execs said they were considering or recommending offshore outsourcing. Outsourcing Blog", "inputs": {"text": "Hey mate, we're moving offshore too! Australia's IT News reports the findings of a recent survey in which more than 20 percent of company execs said they were considering or recommending offshore outsourcing. Outsourcing Blog"}, "prediction": null, "prediction_agent": null, "annotation": "Sci/Tech", "annotation_agent": "XPS-15", "multi_label": false, "explanation": null, "id": "000a30e7-2a2d-4eb2-834d-7f67867fc6b2", "metadata": {"split": "test"}, "status": "Validated", "event_timestamp": null, "metrics": {"text_length": 225}}
{"text": "Nepal blockade 'blow to tourism' Nepal tour operators say tourists cancelled millions of dollars of bookings due to the rebel blockade of Kathmandu.", "inputs": {"text": "Nepal blockade 'blow to tourism' Nepal tour operators say tourists cancelled millions of dollars of bookings due to the rebel blockade of Kathmandu."}, "prediction": null, "prediction_agent": null, "annotation": "Business", "annotation_agent": "XPS-15", "multi_label": false, "explanation": null, "id": "000c57dd-0672-4d81-a60c-309ba17a8d5c", "metadata": {"split": "test"}, "status": "Validated", "event_timestamp": null, "metrics": {"text_length": 149}}
{"text": "GAME DAY RECAP Sunday, August 22 Aramis Ramirez hit a three-run homer, Moises Alou also homered and the Chicago Cubs beat the Houston Astros 11-6 on Sunday in the testy conclusion of a three-game series between the NL Central rivals.", "inputs": {"text": "GAME DAY RECAP Sunday, August 22 Aramis Ramirez hit a three-run homer, Moises Alou also homered and the Chicago Cubs beat the Houston Astros 11-6 on Sunday in the testy conclusion of a three-game series between the NL Central rivals."}, "prediction": null, "prediction_agent": null, "annotation": "Sports", "annotation_agent": "XPS-15", "multi_label": false, "explanation": null, "id": "00113763-a2e2-4b0b-8077-bcfd766a3368", "metadata": {"split": "test"}, "status": "Validated", "event_timestamp": null, "metrics": {"text_length": 233}}
{"text": "Unilever Cuts Profit Forecasts on Sluggish Sales (Update3) Unilever, the world #39;s largest maker of food and soap, cut its full-year earnings forecast after sales of ice cream and cold drinks slumped in Europe and demand for beauty and laundry products slowed.", "inputs": {"text": "Unilever Cuts Profit Forecasts on Sluggish Sales (Update3) Unilever, the world #39;s largest maker of food and soap, cut its full-year earnings forecast after sales of ice cream and cold drinks slumped in Europe and demand for beauty and laundry products slowed."}, "prediction": null, "prediction_agent": null, "annotation": "Business", "annotation_agent": "XPS-15", "multi_label": false, "explanation": null, "id": "00179266-405e-4d94-8694-97846a8cf0f8", "metadata": {"split": "test"}, "status": "Validated", "event_timestamp": null, "metrics": {"text_length": 262}}
{"text": "Scotch Whisky eyes Asian and Eastern European markets (AFP) AFP - A favourite tipple among connoisseurs the world over, whisky is treated with almost religious reverence on the Hebridean island of Islay, home to seven of Scotland's single malt distilleries.", "inputs": {"text": "Scotch Whisky eyes Asian and Eastern European markets (AFP) AFP - A favourite tipple among connoisseurs the world over, whisky is treated with almost religious reverence on the Hebridean island of Islay, home to seven of Scotland's single malt distilleries."}, "prediction": null, "prediction_agent": null, "annotation": "World", "annotation_agent": "XPS-15", "multi_label": false, "explanation": null, "id": "00233e0d-941c-429b-b945-4b4bd8fbcee2", "metadata": {"split": "test"}, "status": "Validated", "event_timestamp": null, "metrics": {"text_length": 257}}
{"text": "Ig Nobel awards honor weird science advances If a herring asks you to pull his finger, be very afraid. Thats one of the lessons derived from this years Ig Nobel awards ceremony, an event that honors offbeat scientific achievements.", "inputs": {"text": "Ig Nobel awards honor weird science advances If a herring asks you to pull his finger, be very afraid. Thats one of the lessons derived from this years Ig Nobel awards ceremony, an event that honors offbeat scientific achievements."}, "prediction": null, "prediction_agent": null, "annotation": "Sci/Tech", "annotation_agent": "XPS-15", "multi_label": false, "explanation": null, "id": "0025085a-fec2-4430-b7e2-8621ce42f2bb", "metadata": {"split": "test"}, "status": "Validated", "event_timestamp": null, "metrics": {"text_length": 231}}
{"text": "Livewire: Fantasy Sports Leagues Thrive Online (Reuters) Reuters - Take 15 million armchair athletes,\\add a steady stream of statistics and mix in a healthy dollop\\of trash talk. Post it all on the Internet and you've got a #36;3\\billion industry built around imaginary sports teams.", "inputs": {"text": "Livewire: Fantasy Sports Leagues Thrive Online (Reuters) Reuters - Take 15 million armchair athletes,\\add a steady stream of statistics and mix in a healthy dollop\\of trash talk. Post it all on the Internet and you've got a #36;3\\billion industry built around imaginary sports teams."}, "prediction": null, "prediction_agent": null, "annotation": "Sci/Tech", "annotation_agent": "XPS-15", "multi_label": false, "explanation": null, "id": "0031e9aa-21b5-42a9-893c-6f72a09b0e10", "metadata": {"split": "test"}, "status": "Validated", "event_timestamp": null, "metrics": {"text_length": 284}}
{"text": "Dream TV Screen, Now in Size Large The most desired electronic gift item for this holiday season is a plasma TV. You might, however, want to consider something that wasn't even in the running: L.C.D.", "inputs": {"text": "Dream TV Screen, Now in Size Large The most desired electronic gift item for this holiday season is a plasma TV. You might, however, want to consider something that wasn't even in the running: L.C.D."}, "prediction": null, "prediction_agent": null, "annotation": "Sci/Tech", "annotation_agent": "XPS-15", "multi_label": false, "explanation": null, "id": "0036cb79-99ce-40c8-aa01-5525b7c9cead", "metadata": {"split": "test"}, "status": "Validated", "event_timestamp": null, "metrics": {"text_length": 199}}
{"root dir": "/n/fs/nlp-data/mscoco/mscoco_2014/images/train2014", "image id": "COCO_train2014_000000000009", "ext": ".jpg", "embeddings": [-0.019153928384184837, 0.041088636964559555, 0.00269146217033267, 0.05044981837272644, 0.028597604483366013, -0.02063004858791828, 0.015467585995793343, -0.008750797249376774, 0.004152419976890087, -0.0006212201551534235, 0.027584899216890335, 0.013807360082864761, -0.008415657095611095, 0.011374522000551224, 0.03072979487478733, 0.025982482358813286, 0.07086941599845886, 0.01738758757710457, 0.012505521066486835, -0.05964345484972, -0.2033103108406067, 0.005259586498141289, -0.00587713997811079, -0.03028065524995327, 0.03727956488728523, 0.01990366540849209, -0.01503439899533987, 0.0028875081334263086, -0.017396917566657066, -0.0064168330281972885, -0.012108146212995052, 0.019857170060276985, -0.0387393943965435, -0.026461035013198853, 0.0033454212825745344, -0.03821821138262749, -0.02269071713089943, -0.03959685191512108, -0.025018705055117607, 0.02470553293824196, -0.012691297568380833, -0.006625443231314421, 0.02048003114759922, 0.026830097660422325, -0.017579806968569756, -0.13057534396648407, 0.027578134089708328, 0.043944407254457474, -0.006050005555152893, 0.0008492942433804274, 0.011238009668886662, -0.056626033037900925, 0.006879807449877262, -0.02228829823434353, 0.005475109908729792, 0.027357954531908035, 0.030750291422009468, -0.017074763774871826, 0.012164030224084854, -0.023348292335867882, 0.02906610071659088, 0.018159044906497, -0.01163487322628498, 0.008447960019111633, -0.028322037309408188, 0.05115340277552605, -0.001240888494066894, 0.15470954775810242, -0.008160383440554142, -0.04222141206264496, -0.0013535567559301853, -0.056264396756887436, -0.03663994371891022, 0.05906326323747635, 0.027805643156170845, -0.05440784990787506, -0.07891819626092911, -0.03987625986337662, -0.01639738492667675, 0.007420307956635952, -0.007724082097411156, -0.041401829570531845, -0.008357338607311249, 0.021387172862887383, 0.006327794399112463, -0.02253110334277153, 0.04561716318130493, -0.03558244928717613, 0.047625262290239334, -0.04414387792348862, 0.034411393105983734, 0.031655117869377136, -0.508944571018219, -0.005922902375459671, -0.012126006186008453, -0.014114980585873127, -0.01865178346633911, 0.018347373232245445, -0.03649556264281273, 0.03865829482674599, -0.009712185710668564, 0.029294367879629135, -0.02964608557522297, 0.00997567642480135, -0.06955177336931229, 0.0251532644033432, 0.0343082994222641, 0.012971892952919006, 0.02229790948331356, 0.009791204705834389, 0.02585095912218094, -0.009813381358981133, -0.021482475101947784, -0.01876748725771904, 0.047699086368083954, -0.024745669215917587, 0.024562213569879532, 0.023778479546308517, -0.020517796277999878, -0.06305676698684692, -0.016615023836493492, 0.013382123783230782, 0.003222065744921565, -0.02026529237627983, 0.0033757658675312996, 0.0001595256762811914, -0.0291612409055233, -0.014632710255682468, -0.002029989380389452, 0.05293692275881767, 0.036768630146980286, -0.03330213576555252, 0.07074901461601257, 0.07958101481199265, -0.01651042327284813, -0.023603960871696472, -0.03730512782931328, 0.023851973935961723, 0.02723013609647751, 0.07027047872543335, -0.004109659697860479, -0.014657242223620415, 0.007573496550321579, -0.04348153993487358, -0.024789132177829742, 0.02379596419632435, -0.027627838775515556, 0.0022782995365560055, -0.019907433539628983, -0.01618376187980175, -0.028246361762285233, -0.002080141333863139, -0.009708220139145851, 0.002224303549155593, -0.046301934868097305, -0.014104493893682957, 0.017719831317663193, 0.003873121226206422, 0.03015967272222042, -0.0006054738769307733, -0.024014871567487717, 0.023141345009207726, 0.004181386902928352, 0.010102545842528343, -0.005956715904176235, -0.01257279422134161, -0.007298996206372976, 0.023745097219944, 0.017405956983566284, 0.0411110483109951, 0.004168834537267685, -0.02451895922422409, -0.022018535062670708, -0.031004181131720543, -0.01810183748602867, 0.010720542632043362, -0.040451664477586746, 0.02018057182431221, -0.00929097831249237, 0.021256685256958008, -0.005142019595950842, -0.11538966745138168, 0.03780638799071312, -0.014385403133928776, 0.016415512189269066, -0.024880090728402138, -0.00474785640835762, -0.02868935652077198, -0.009794589132070541, -0.01930009014904499, 0.01195753738284111, 0.046905115246772766, 0.04356268420815468, 0.004107384942471981, 0.002387693617492914, 0.03065546788275242, -0.015210556797683239, 0.024408098310232162, -0.0656895861029625, -0.03392066806554794, 0.02723066136240959, -0.020810317248106003, 0.033238355070352554, 0.003866266692057252, 0.04684886336326599, -0.05909575894474983, -0.011372306384146214, -0.004810079466551542, 0.009692850522696972, 0.004453922621905804, -0.02735627256333828, -0.002621890278533101, 0.03039775975048542, -0.0007611971232108772, 0.02755381166934967, 0.011782506480813026, 0.022045716643333435, 0.06132739037275314, 0.05319439619779587, -0.0205304604023695, 0.02359291911125183, 0.007012183777987957, -0.011613159440457821, -0.03869568184018135, -0.0029391685966402292, 0.01217204425483942, -0.011933126486837864, -0.02893771044909954, -0.018970036879181862, 0.014363967813551426, -0.031084371730685234, -0.029158979654312134, 0.014332507736980915, 0.05423828959465027, -0.04349730536341667, 0.0777197778224945, 0.020583175122737885, 0.019579026848077774, -0.033095017075538635, -0.005844613537192345, 0.023277422413229942, 0.015237865038216114, 0.06186975538730621, -0.016168422996997833, -0.008375472389161587, -0.015719033777713776, 0.023154107853770256, 0.055320896208286285, 0.03097194992005825, 0.01746555045247078, -0.06398038566112518, 0.010527390986680984, -0.016589097678661346, 0.023936541751027107, -0.05391990393400192, 0.0057912785559892654, 0.010487996973097324, 0.010320878587663174, -0.002241620095446706, -0.001072803745046258, 0.026263980194926262, 0.04233969375491142, -0.006306049879640341, 0.11105071753263474, 0.025752175599336624, 0.0236807893961668, 0.016197869554162025, 0.009576922282576561, 0.029181070625782013, 0.04333950951695442, 0.006870130077004433, -0.02406086027622223, -0.03103509731590748, 0.02457374334335327, -0.0008847262943163514, 0.03513509780168533, 0.02152320183813572, -0.043051719665527344, 0.022364312782883644, -0.01300655584782362, 0.07489263266324997, 0.02273094654083252, 0.019154511392116547, -0.028580140322446823, 0.0246242918074131, 0.05198158696293831, -0.14272786676883698, 0.001606440986506641, 0.04206158220767975, -0.03947333246469498, 0.002947813831269741, 0.007135955151170492, 0.056075308471918106, -0.02171647548675537, -0.024334633722901344, 0.054031360894441605, 0.021404335275292397, -0.0029146287124603987, 0.07740944623947144, 0.008620058186352253, -0.01690741442143917, 0.03224704787135124, -0.03856663033366203, 0.04634779319167137, 0.0062968675047159195, 0.0402006134390831, -0.0067015402019023895, 0.04026022553443909, 0.02991482801735401, -0.0054076481610536575, -0.03185579180717468, -0.0054952166974544525, 0.0793764516711235, -0.011181692592799664, 0.009066734462976456, 0.04037538170814514, 0.034292787313461304, 0.037383072078228, 0.019020486623048782, 0.02183815836906433, 0.038071393966674805, 0.1297575682401657, 0.030190646648406982, -0.028435509651899338, 0.013326950371265411, -0.007894097827374935, 0.036017145961523056, -0.06307802349328995, -0.025074472650885582, -0.02155136875808239, 0.044863827526569366, -0.012132386676967144, 0.011117001064121723, -0.040731873363256454, -0.002863061847165227, 0.013390345498919487, -0.019471025094389915, 0.0005551119102165103, 0.037597931921482086, 0.024538639932870865, -0.0027324948459863663, -0.05467265099287033, 0.004284446127712727, 0.018580565229058266, -0.013874593190848827, 0.0031935879960656166, -0.012010299600660801, -0.016210347414016724, 0.010064417496323586, 0.019236119464039803, 0.048118721693754196, -0.022442877292633057, 0.03462562337517738, -0.00618077302351594, 0.03088715299963951, -0.022305671125650406, -0.08054383099079132, 0.028870904818177223, -0.016594070941209793, -0.017442233860492706, -0.1063196212053299, 0.0032067522406578064, 0.029124194756150246, 0.038157541304826736, -0.05167003720998764, 0.06897618621587753, -0.01654846966266632, -0.026134837418794632, 0.0187299232929945, -0.026133861392736435, -0.025635266676545143, 0.0020583474542945623, 0.04043153300881386, 0.009417575784027576, -0.01549187395721674, 0.02356385625898838, 0.17310698330402374, 0.009220564737915993, -0.017778418958187103, -0.01548092532902956, -0.04042389988899231, -0.040986210107803345, 0.016271160915493965, 0.03663317486643791, -0.0014699238818138838, -0.019387176260352135, 0.052243757992982864, 0.017304185777902603, -0.07013767212629318, -0.06396014243364334, -0.006796823814511299, 0.011982460506260395, 0.0320468433201313, -0.0065686763264238834, -0.015742341056466103, 0.03630378097295761, 0.030513983219861984, 0.0010958114871755242, 0.010160624049603939, 0.006409498397260904, 0.04169599339365959, 0.010625817812979221, -0.048693928867578506, -0.009441307745873928, -0.025267034769058228, 0.009190178476274014, -0.0021737932693213224, -0.01763322949409485, -0.00751717621460557, 0.03174188733100891, 0.001952287508174777, -0.005631782580167055, -0.0005130734061822295, 0.021187784150242805, 0.021425332874059677, -0.0010089426068589091, -0.03466344624757767, 0.013628358021378517, 0.002605227753520012, -0.007883197627961636, 0.0026486320421099663, 0.002501706127077341, 0.046351298689842224, 0.05136743560433388, -0.05490134656429291, 0.02409866824746132, -0.030603788793087006, -0.017055651172995567, -0.28640687465667725, 0.02173445373773575, -0.01344568282365799, 0.06123700737953186, 0.10899874567985535, -0.035886019468307495, 0.029051128774881363, 0.009764053858816624, -0.003276771167293191, -0.05255956947803497, -0.04025895148515701, 0.021547643467783928, -0.02278662659227848, -0.013058082200586796, 0.02280169352889061, -0.013444887474179268, -0.010117577388882637, -0.002012035809457302, 0.011326721869409084, 0.020704373717308044, -0.003078657668083906, 0.022995388135313988, -0.043755918741226196, 0.013141138479113579, -0.017582939937710762, -0.03416949510574341, 0.0066466135904192924, 0.0097618093714118, 0.013233472593128681, -0.06252705305814743, -0.026765795424580574, 0.026654014363884926, -0.013782661408185959, 0.07564560323953629, 0.02356451377272606, -0.005379552952945232, 0.031062133610248566, 0.024370945990085602, -0.029303288087248802, 0.0037193517200648785, -0.05421046167612076, 0.016096709296107292, 0.01654236763715744, 0.03496120870113373, 0.01009718794375658, -0.06506243348121643, -0.017359692603349686, -0.012273354455828667, -0.031756941229104996, -0.00032545477733947337, 0.07625678181648254, -0.021619722247123718, 0.011910869739949703, 0.013316214084625244, -0.014086677692830563, 0.05280052497982979, 0.025357941165566444, -0.016633007675409317, -0.00588881503790617, 0.053012896329164505, 0.02593821845948696, -0.0577431246638298, 0.05050095543265343, -0.05274433642625809, 0.02709881030023098, -0.05968555808067322, 0.003184995613992214, -0.0033581850584596395, 0.04050147533416748, -0.026562724262475967, 0.01514637004584074, -0.01918674446642399, 0.072857566177845, 0.04564795270562172, -0.004158112220466137, 0.035203710198402405, -0.024090372025966644, -0.01883194036781788, 0.03266655281186104, 0.00693912198767066, -0.02310282178223133, 0.06118253991007805, -0.016002360731363297, -0.047526292502880096]}
{"root dir": "/n/fs/nlp-data/mscoco/mscoco_2014/images/train2014", "image id": "COCO_train2014_000000000025", "ext": ".jpg", "embeddings": [-0.023335715755820274, -0.016326550394296646, -0.003977080807089806, 0.001905251294374466, 0.018739817664027214, 0.0200811717659235, 0.037117574363946915, -0.0004179635434411466, 0.02588427998125553, 0.015300952829420567, 0.001499671139754355, -0.028313424438238144, -0.003895929316058755, -0.001954783918336034, -0.019310705363750458, -0.017307063564658165, -0.08979213982820511, 0.04007432609796524, -0.007821300998330116, 0.02356874570250511, -0.008901949040591717, -0.02075638808310032, 0.015507460571825504, -0.04383326321840286, -0.0039961193688213825, -0.006617648061364889, -0.018836962059140205, -0.006013161968439817, 0.004961167927831411, -0.02985258959233761, 0.013734032399952412, -0.015128067694604397, -0.019730107858777046, 0.056476835161447525, -0.010437054559588432, -0.028393812477588654, -0.012364188209176064, 0.02879633754491806, -0.02374889701604843, 0.15924771130084991, -0.018433967605233192, -0.007987653836607933, -0.011683182790875435, 0.016153652220964432, -0.028636589646339417, -0.03846486657857895, 0.04164448380470276, 0.05995088443160057, -0.013562158681452274, -0.011615301482379436, 0.004861481487751007, 0.014293640851974487, -0.00933497678488493, -0.022530727088451385, -0.03086884506046772, 0.02284913696348667, 0.023398952558636665, 0.01401540543884039, 0.0041300454176962376, -0.019145816564559937, 0.05118255689740181, -0.02651519887149334, -0.012399984523653984, 0.021530311554670334, -0.036416299641132355, 0.02199634723365307, 0.009684061631560326, 0.07727796584367752, 0.024333706125617027, -0.013815825805068016, 0.0059439619071781635, -0.016881434246897697, 0.02577749453485012, -0.028686489909887314, 0.008855240419507027, -0.017320014536380768, -0.026088330894708633, -0.006506551057100296, -0.02428303472697735, -0.024885045364499092, 0.026580797508358955, 0.020304031670093536, 0.002474620006978512, 0.03318469598889351, -0.02387254126369953, 0.03720337152481079, 0.035747308284044266, 0.016238274052739143, 0.04103970155119896, 0.0014326523523777723, 0.03250065818428993, 0.0024355249479413033, -0.6815853118896484, 0.0234244205057621, -0.023185858502984047, 0.03119187243282795, 0.015340596437454224, -0.015491815283894539, -0.07151371985673904, -0.03610136732459068, -0.013477880507707596, -0.009512200951576233, -0.01183271873742342, 0.04592869430780411, 0.03119077906012535, -0.017361871898174286, -0.0834728330373764, 0.019030285999178886, -0.015874337404966354, -0.03832288831472397, -0.02854073978960514, -0.013735095970332623, 0.007464035879820585, -0.003967115189880133, 0.010224704630672932, -0.024427972733974457, 0.0005657027941197157, -0.049209438264369965, 0.019951745867729187, 0.028933893889188766, 0.0315675251185894, 0.03794540837407112, -0.0007816088036634028, -0.002176047768443823, -0.052139464765787125, -0.03728990629315376, -0.003621452720835805, 0.036438845098018646, -0.00993760209530592, -0.016983360052108765, 0.007571576628834009, 0.04424647241830826, -0.016941996291279793, 0.08435647189617157, 0.011297275312244892, 0.00105105375405401, -0.03401309624314308, -0.05810218304395676, -0.009501403197646141, -0.01615041121840477, -0.044201552867889404, -0.05252965912222862, 0.021518370136618614, 0.003569198539480567, -0.01179218478500843, 0.01998531073331833, -0.018217794597148895, 0.013936430215835571, 0.00688981031998992, -0.01516222395002842, -0.016282424330711365, -0.018429508432745934, 0.06432049721479416, -0.06285684555768967, 0.03646218776702881, 0.023329462856054306, 0.005577864591032267, -0.006149801425635815, -0.020449427887797356, 0.01327150035649538, -0.036185719072818756, -0.030202552676200867, 0.0027701379731297493, -0.029587045311927795, 0.009693614207208157, -0.02412421815097332, 0.037837933748960495, -0.0022354042157530785, 0.010220271535217762, 0.053539764136075974, 0.025646233931183815, 0.02689056470990181, 0.006811919156461954, -0.04631298407912254, -0.03458382561802864, -0.017836328595876694, -0.06899803876876831, 0.0018471202347427607, -0.044539302587509155, 0.002924091648310423, 0.01320035383105278, -0.020957428961992264, -0.009650311432778835, -0.017092980444431305, 0.007941639050841331, -0.01971789076924324, 0.017665989696979523, 0.023666545748710632, -0.012734513729810715, 0.04222977161407471, 0.023077787831425667, 0.020402178168296814, -0.0020536910742521286, 0.06315334141254425, -0.09062620252370834, 0.014396480284631252, 0.013980935327708721, -0.008278856053948402, -0.05458831042051315, 0.022180594503879547, 0.017915746197104454, -0.011511553078889847, -0.008156334981322289, 0.08311478048563004, 0.02833119034767151, -0.011569175869226456, -0.02419847436249256, -0.04393528029322624, 0.014778733253479004, -0.010717736557126045, -0.04826761782169342, 0.03436512500047684, 0.024435238912701607, 0.011171610094606876, -0.003498260397464037, 0.009749889373779297, 0.014733108691871166, -0.003933626227080822, 0.03328762575984001, -0.010836825706064701, 0.006342955864965916, 0.07500699907541275, 0.01159847155213356, 0.02570025809109211, -0.021334484219551086, -0.013744237832725048, -0.06073594465851784, 0.006069808732718229, 0.010989784263074398, 0.041077062487602234, -0.016689268872141838, 0.011244547553360462, 0.018882105126976967, 0.05251433700323105, 0.004166615195572376, 0.01004085037857294, 0.02524765208363533, -0.018269356340169907, -0.02674301713705063, 0.021200666204094887, 0.024526380002498627, 0.034986987709999084, -0.019051386043429375, -0.045219045132398605, -0.0215129554271698, 0.033770427107810974, -0.020704880356788635, -0.036747582256793976, -0.002436499111354351, 0.020198216661810875, -0.04289679974317551, 0.07941798120737076, 0.03516025096178055, 0.011860153637826443, -0.021180322393774986, 0.011731280013918877, -0.00570535846054554, -0.027396075427532196, 0.06871330738067627, 0.06049257144331932, -0.017613887786865234, 0.0055722687393426895, -0.012629639357328415, 0.09532423317432404, 0.03179676830768585, 0.023153414949774742, 0.039573632180690765, -0.00045064545702189207, 0.051133450120687485, 0.009906884282827377, -0.028609590604901314, 0.006377483252435923, -0.025189567357301712, 0.010088112205266953, 0.016813768073916435, -0.0050528100691735744, -0.004208346363157034, -0.021771850064396858, 0.016347071155905724, -0.008592858910560608, 0.05940188467502594, -0.024694601073861122, -0.01604887656867504, -0.043206896632909775, 0.018578628078103065, 0.037073876708745956, -0.07234117388725281, -0.03840430825948715, -0.029617559164762497, -0.006598466541618109, -0.012595586478710175, 0.016944527626037598, -0.012940597720444202, -0.018458452075719833, -0.04080992192029953, 0.017104296013712883, 0.11753390729427338, -0.006364122033119202, 0.01176520623266697, -0.0348522774875164, -0.014492738991975784, 0.0018465564353391528, -0.019870175048708916, 0.036893270909786224, 0.07815641164779663, -0.038172777742147446, 0.0077929324470460415, 0.016831442713737488, 0.05125772953033447, -0.02861410565674305, 0.021610476076602936, -0.01802084594964981, 0.08419591188430786, -0.011712373234331608, 0.051012009382247925, -0.006775112356990576, 0.037103623151779175, 0.047546856105327606, 0.005298526957631111, -0.009124457836151123, 0.03840424120426178, 0.07874146103858948, -0.01629730500280857, -0.02184498868882656, 0.01118405070155859, -0.013961522839963436, 0.016219886019825935, -0.0034150253050029278, -0.014122658409178257, 0.020399414002895355, 0.006467677187174559, 0.002906595356762409, -0.014585927128791809, -0.008627653121948242, -0.013685185462236404, -0.010963848792016506, -0.030309202149510384, 0.021537939086556435, -0.0023646370973438025, -0.05691622197628021, -0.03298088163137436, -0.004697831347584724, -0.00843209307640791, -0.03585711121559143, -0.05652828514575958, 0.004997646901756525, 0.012248596176505089, -0.02831890992820263, 0.022449564188718796, 0.025261368602514267, -0.026771461591124535, 0.0029548206366598606, 0.04910610243678093, -0.04041531682014465, -0.03152374550700188, -0.003521720878779888, 0.03430967405438423, 0.017044609412550926, 0.009484902024269104, 0.007764421869069338, 0.04081004112958908, -0.009451993741095066, -0.04026435315608978, 0.02189161814749241, -0.07773765176534653, -0.007715893909335136, -0.02841971069574356, -0.07243002206087112, -0.04119512066245079, 0.008083903230726719, 0.008018425665795803, -0.0009577526361681521, 0.018062852323055267, -0.03094327077269554, -0.0037371711805462837, 0.025810405611991882, 0.13990265130996704, 0.033481352031230927, -0.023227620869874954, -0.0517212375998497, 0.059167344123125076, -0.009108479134738445, 0.0257981289178133, -0.006929698400199413, 0.00448019290342927, 0.02586011029779911, -0.000956057570874691, 0.03661161661148071, -0.045510921627283096, 0.008197822608053684, -0.022247420623898506, -0.05984965339303017, 0.05755585804581642, 0.028982656076550484, 0.004247503820806742, -0.006924067623913288, 0.014527677558362484, 0.043926436454057693, -0.08807482570409775, -0.06919724494218826, -0.022622503340244293, 0.03144471347332001, -0.04621332883834839, 0.01641305722296238, 0.007267525885254145, 0.015388873405754566, -0.00023162999423220754, -0.018602173775434494, 0.06917738169431686, -0.017710743471980095, 0.05262479931116104, 0.028723474591970444, 0.02055172435939312, 0.042560022324323654, 0.018647437915205956, -0.05167848989367485, 0.022210484370589256, 0.017560994252562523, 0.015841910615563393, -0.030301284044981003, 0.014301449991762638, -0.0022536327596753836, 0.008477313444018364, -0.04379451647400856, 0.005055704619735479, -0.0023345272056758404, -0.035368870943784714, -0.020622553303837776, 0.05851754918694496, -0.00893821008503437, -0.021770233288407326, 0.031877484172582626, 0.047253720462322235, -0.022629136219620705, -0.03917434811592102, -0.047751348465681076, 0.018624301999807358, 0.02915300987660885, 0.0040656886994838715, -0.0009238241473212838, 0.020850488916039467, 0.03335278108716011, -0.006559203844517469, -0.015089855529367924, 0.0275456290692091, 0.006097649689763784, 0.015590565279126167, -0.011996296234428883, -0.0027336508501321077, -0.0066771432757377625, -0.02729767933487892, -0.0025724617298692465, -0.020657362416386604, 0.027761707082390785, 0.042044371366500854, 0.007430010475218296, 0.036666326224803925, -0.004314470570534468, 0.02716025523841381, 0.03914302587509155, 0.024820270016789436, 0.017086666077375412, 0.010811777785420418, 0.012326709926128387, -0.0009945675265043974, -0.004556605126708746, -0.028426235541701317, 0.0009497796418145299, -0.023916643112897873, -0.06420917809009552, 0.045144643634557724, 0.02304977923631668, 0.005634083412587643, -0.03669234365224838, 0.02161579206585884, -0.026487072929739952, -0.008106283843517303, -0.012531833723187447, -0.019072270020842552, -0.02510809898376465, -0.006210781168192625, -0.00010795326670631766, -0.015614346601068974, 0.031674277037382126, 0.02178179658949375, 0.0012951262760907412, -0.029809555038809776, 0.031086556613445282, -0.0625854954123497, -0.03893924504518509, 0.03766251355409622, -0.010907555930316448, 0.005900189746171236, -0.05226955562829971, 0.014347709715366364, -0.004690518602728844, -0.02604636549949646, 0.023205699399113655, 0.014290332794189453, -0.020397411659359932, -0.03439464047551155, 0.05251586437225342, 0.013503016903996468, -0.008854384534060955, 0.014589463360607624, -0.07859474420547485, -0.014324494637548923, 0.011807241477072239, 0.021245142444968224, 0.0329410694539547, -0.03656920790672302, -0.006237410474568605]}
{"root dir": "/n/fs/nlp-data/mscoco/mscoco_2014/images/train2014", "image id": "COCO_train2014_000000000030", "ext": ".jpg", "embeddings": [-0.023028744384646416, 0.07023325562477112, 0.024739840999245644, -0.004867984913289547, 0.011578208766877651, 0.011508653871715069, 0.03418256342411041, -0.017819615080952644, -0.009445840492844582, 0.00814229715615511, -0.0024178449530154467, -0.011313334107398987, -0.04321836307644844, -0.01395904179662466, 0.02240072935819626, 0.010672502219676971, -0.014443561434745789, 0.007407899480313063, 0.008000178262591362, -0.04315127804875374, 0.03222840279340744, 0.007107348181307316, 0.012495346367359161, 0.0020521616097539663, -0.027505071833729744, 0.012630249373614788, -0.02781972661614418, 0.018584728240966797, 0.006435110699385405, 0.021892482414841652, -0.005864663980901241, 0.025258507579565048, -0.02883291058242321, -0.014917158521711826, 0.0019692303612828255, 0.01871136575937271, -0.0024403489660471678, -0.0014843782410025597, 0.05157864838838577, 0.11114843189716339, -0.023962831124663353, -0.015238662250339985, -0.009570707567036152, 0.0021086649503558874, 0.020528005436062813, -0.2135629802942276, -0.019046811386942863, -0.0005787717527709901, 0.0026001762598752975, 0.03957698866724968, -0.004485534504055977, -0.012203751131892204, -0.02968182973563671, -0.04174510017037392, -0.05027215927839279, 0.0055230665020644665, -0.03097417950630188, -0.004892220254987478, 0.028415560722351074, 0.018751902505755424, 0.0330682210624218, -0.03806193545460701, 0.08935178816318512, 0.010518542490899563, 0.004939577076584101, 0.029799537733197212, 0.04180173948407173, -0.010016897693276405, 0.0005314088775776327, -0.030047746375203133, 0.029697902500629425, -0.007413983345031738, -0.034402161836624146, -0.032911159098148346, 0.008821265771985054, 0.00890266802161932, -0.010291478596627712, -0.016249028965830803, -0.01851591281592846, -0.04249511659145355, 0.0017476343782618642, -0.01305580697953701, 0.04375125840306282, -0.07384320348501205, -0.009589094668626785, -0.004551635589450598, -0.005563912447541952, 0.01338992454111576, -0.016973430290818214, -0.00834710244089365, -0.006679248064756393, -0.00023280542518477887, -0.6331972479820251, -0.05366518348455429, -0.036960866302251816, 0.03440491110086441, -0.0237596295773983, 0.03795428201556206, -0.00926599558442831, 0.02875758334994316, 0.011303335428237915, -0.02086852863430977, -0.00760430283844471, -0.012302197515964508, 0.0299077071249485, -0.01434230711311102, 0.0840449333190918, -0.016613423824310303, -0.0031826847698539495, 0.02825974114239216, 0.0005522253923118114, 0.008221665397286415, -0.0058719380758702755, 0.009335121139883995, -0.012129581533372402, 0.02965111844241619, 0.034394826740026474, 0.014735599048435688, 0.04012862220406532, -0.01795400120317936, -0.009977990761399269, 0.003563768696039915, 0.03235192969441414, -0.043715402483940125, 0.0015514879487454891, 0.02780265361070633, 0.02056550234556198, -0.0005057477974332869, 0.018577300012111664, -0.011936365626752377, 0.011027632281184196, 0.003911246079951525, -0.02184329368174076, 0.07539112120866776, 0.004104784689843655, 0.007449264172464609, 0.035271961241960526, -0.037865716964006424, -0.012041566893458366, -0.004223714582622051, 0.0084201255813241, 0.009887137450277805, 0.012031297199428082, 0.03548382222652435, 0.00646005617454648, -0.014283827506005764, -0.04398973286151886, -0.004089444410055876, -0.03146255388855934, -0.01894005388021469, 0.04434947669506073, -0.05266376584768295, 0.10430579632520676, -0.03594193980097771, 0.02787606790661812, -0.06347107142210007, -0.04232017695903778, 0.039159975945949554, 0.024286361411213875, -0.019503945484757423, -0.012919090688228607, -0.022996174171566963, -0.06698671728372574, -0.027308333665132523, 0.004721212200820446, 0.003530164947733283, -0.018677853047847748, 0.03692929074168205, 0.03410779684782028, -0.00012079991574864835, 0.02804119512438774, 0.022533521056175232, -0.02817024663090706, -0.024614505469799042, -0.009344316087663174, -0.011429136618971825, 0.04016880691051483, -0.00611009681597352, 0.006366334389895201, -0.005105313379317522, 0.027360109612345695, -0.027260588482022285, -0.008935931138694286, 0.013481279835104942, -0.0002291506389155984, 0.007294735871255398, 0.016604408621788025, 0.04840156435966492, -0.04825697839260101, -0.0032949866726994514, 0.0101984404027462, -0.015095306560397148, 0.0019597532227635384, -0.008817417547106743, -0.02056611329317093, 0.006547648459672928, 0.0312645323574543, -0.019680364057421684, -0.047439780086278915, 0.020051373168826103, -0.024534855037927628, -0.008874156512320042, -0.0004480202915146947, 0.0549880750477314, 0.006514101754873991, -0.03342604637145996, 0.008364228531718254, -0.019347049295902252, -0.0044509610161185265, 0.021676845848560333, 0.0028883074410259724, 0.05600450187921524, -0.010675478726625443, 0.03634433075785637, -0.015022948384284973, -0.022741738706827164, 0.017522240057587624, -0.01723586581647396, 0.12123139202594757, -0.0022233540657907724, 0.006725831888616085, 0.011424200609326363, 0.013418346643447876, -0.02249893546104431, 0.007114441134035587, -0.02609563060104847, -0.035103633999824524, 0.01691831648349762, -0.04340262711048126, 0.003418032545596361, -0.012265613302588463, -0.01819036155939102, -0.016953056678175926, 0.009419899433851242, -0.017456259578466415, 0.04031187295913696, -0.02302549220621586, -0.018454914912581444, 0.019593393430113792, -0.009098428301513195, -0.03180690482258797, -0.036326006054878235, -0.0033463360741734505, -0.027734847739338875, -0.03870193287730217, 0.033599287271499634, 0.009962386451661587, 0.06006789207458496, -0.012517864815890789, 0.020950688049197197, -0.03405580297112465, 0.018494896590709686, -0.0048988391645252705, -0.009429946541786194, -0.005718556698411703, -0.022814810276031494, -0.009885788895189762, 0.02223612554371357, -0.004517818335443735, 0.03869776800274849, -0.02872975915670395, 0.017996856942772865, 0.01469181478023529, -0.04994785040616989, -0.00027545791817829013, 0.007678566034883261, -0.02692667953670025, 0.02717570587992668, 0.016513070091605186, -0.02869628369808197, 0.005812686402350664, -0.015007728710770607, 0.003628938924521208, 0.0005810348084196448, 0.023496288806200027, -0.03177214786410332, -0.0417361706495285, -0.017689518630504608, -0.0007810156093910336, -0.005702027585357428, 0.005396442487835884, -0.0282001756131649, -0.015214172191917896, 0.011005483567714691, 0.018955428153276443, 0.0043781111016869545, -0.04881949722766876, -0.007005157880485058, -0.0230795256793499, 0.00040733933565206826, 0.029956156387925148, -0.03627801686525345, -0.00019829113443847746, 0.015897812321782112, -0.02787208743393421, 0.02107800915837288, -0.11760959029197693, -0.008663676679134369, 0.023950012400746346, 0.03777742013335228, 0.02526681311428547, 0.024597033858299255, 0.041005004197359085, -0.0004526005359366536, 0.027863766998052597, -0.030485697090625763, -0.020526031032204628, 0.0189156886190176, 0.051370300352573395, -0.0011571323266252875, 0.0036961198784410954, 0.028551537543535233, 0.07520150393247604, 0.009773281402885914, 0.0010619721142575145, -0.0034967686515301466, 0.053996939212083817, 0.04546263813972473, -0.008464897982776165, -0.02537386678159237, 0.047549810260534286, 0.23708218336105347, -0.05011218041181564, -0.008695276454091072, 0.025196339935064316, -0.003651002189144492, 0.04906915873289108, -0.019418900832533836, -0.017503181472420692, -0.00015331091708503664, 0.028181515634059906, -0.004307664465159178, -0.038429077714681625, -0.01540675014257431, -0.021984389051795006, 0.02863427996635437, 0.0075114574283361435, -0.013168356381356716, 0.006285966373980045, 0.04874563217163086, 0.033525045961141586, -0.0446101613342762, -0.028983671218156815, 0.029278742149472237, -0.022332370281219482, -0.0050777290016412735, 0.017228316515684128, -0.004542478360235691, -0.02522559091448784, -0.019026873633265495, -0.05973300710320473, 0.0419495552778244, 0.04861080273985863, -0.035272810608148575, 0.01169524434953928, 0.0022835948038846254, -0.011718898080289364, -0.05793219059705734, 0.03466378524899483, -0.02549552172422409, -0.06214148551225662, -0.021158188581466675, -0.007374647073447704, 0.015125439502298832, -0.15048697590827942, -0.016167856752872467, -0.017419083043932915, 0.05088851600885391, 0.02253752015531063, 0.022969184443354607, -0.042468760162591934, 0.0027733047027140856, -0.0012349496828392148, 0.021778205409646034, -0.004222355782985687, -0.029904674738645554, 0.12048223614692688, 0.029202673584222794, 0.047808606177568436, 0.016917960718274117, -0.019958864897489548, -0.020532777532935143, -0.03493137285113335, -0.0010349845979362726, 0.029023336246609688, 0.023929957300424576, 0.0015679574571549892, -0.009282207116484642, -0.008459297008812428, 0.0319271944463253, 0.047083865851163864, -0.023957684636116028, 0.008870289660990238, -0.016471214592456818, -0.04297272488474846, -0.02107502892613411, -0.01480078138411045, -0.0034615483600646257, 0.015999598428606987, 0.008290248923003674, -0.006814282387495041, 0.007779879029840231, 0.10078561305999756, -0.005676426459103823, -0.02090347558259964, -0.020690495148301125, -0.03311322629451752, 0.030315378680825233, 0.03769466653466225, -0.0035840366035699844, 0.031146125867962837, -0.03393823653459549, 0.003376401960849762, -0.02190137282013893, -0.023047009482979774, 0.029829364269971848, -0.03869488462805748, 0.017939524725079536, -0.06832834333181381, -0.05146647244691849, -0.015691975131630898, -0.011305103078484535, 0.046773869544267654, -0.011837302707135677, -0.029904963448643684, 0.01634163036942482, 0.01703227125108242, 0.008027354255318642, -0.15698426961898804, 0.02228805236518383, 0.010781058110296726, 0.011472325772047043, 0.12076561897993088, -0.0036399192176759243, -0.0058942753821611404, -0.04455986246466637, -0.041482049971818924, -0.005434483289718628, -0.034811604768037796, 0.010401767678558826, -0.010877099819481373, 0.01510259322822094, 0.025319455191493034, 0.06654049456119537, 0.0032667205668985844, -0.023994043469429016, 0.025282051414251328, -0.009366363286972046, -0.03840957209467888, 0.006381965707987547, -0.0004251419159118086, -0.06587553769350052, 0.0066046081483364105, -0.03273463994264603, 0.016680100932717323, -0.009182141162455082, -0.014855733141303062, 0.01361947599798441, 0.0126250721514225, -0.015074352733790874, 0.004148070700466633, -0.0007499860366806388, 0.03669866919517517, 0.02468964271247387, 0.03687896952033043, -0.013585721142590046, 0.04225733503699303, -0.02735525369644165, -0.04110810160636902, 0.0006713824113830924, 0.009488488547503948, 0.03201473131775856, 0.0041366335935890675, 0.028428291901946068, -0.010693183168768883, -0.02161271683871746, -0.01627875491976738, 0.022384002804756165, 0.030569257214665413, -0.024550605565309525, -0.0011632475070655346, 0.002164483070373535, 0.0020366504322737455, -0.0014074601931497455, 0.024845529347658157, -0.009394354186952114, -0.01582370512187481, 0.03257312625646591, 0.0004233438230585307, -0.026402223855257034, -0.005291229113936424, -0.02037123031914234, 0.015682723373174667, -0.036414097994565964, -0.02015337534248829, 0.019072413444519043, 0.04465949162840843, 0.03978795185685158, -4.99882735311985e-05, -0.003782816231250763, 0.009291349910199642, 0.006624914240092039, 0.01237709354609251, 0.01221198309212923, 0.09882849454879761, 0.017495380714535713, 0.007887477986514568, 0.01011163741350174, -0.014293174259364605, 0.0437919907271862, -0.0033339299261569977, -0.022666798904538155]}
{"root dir": "/n/fs/nlp-data/mscoco/mscoco_2014/images/train2014", "image id": "COCO_train2014_000000000034", "ext": ".jpg", "embeddings": [-0.016179010272026062, -0.019673878327012062, -0.015672951936721802, -0.0355578251183033, 0.00976948905736208, 0.016704482957720757, 0.0682813972234726, 0.019567051902413368, 0.06397916376590729, 0.019315384328365326, -0.009074241854250431, -0.014662918634712696, -0.0009799908148124814, -0.0489397756755352, 0.0361587218940258, -0.02806818298995495, 0.05924835801124573, 0.0215639416128397, -0.010321257635951042, 0.012713617645204067, -0.02537543699145317, 0.02125571295619011, 0.007956440560519695, -0.06222880631685257, -0.013863964006304741, -0.022927986457943916, -0.014235381968319416, 0.010308532975614071, 0.014883256517350674, -0.04185934364795685, -0.010640984401106834, -0.026288283988833427, -0.01441146433353424, 0.07109338045120239, -0.005097598303109407, -0.02500416710972786, 0.027690384536981583, 0.02215459756553173, 0.02202495187520981, 0.1460239291191101, 0.0074474262073636055, -0.021854626014828682, 0.03493119403719902, -0.016940930858254433, -0.05426611751317978, 0.0056342147290706635, 0.04001424089074135, 0.047576434910297394, -0.0022541633807122707, -0.013506939634680748, -0.005249161273241043, 0.0170915387570858, 0.015624531544744968, -0.037441007792949677, -0.03566911816596985, 0.03008696436882019, -0.006437684874981642, -0.011742834933102131, 0.021532932296395302, -0.003285347716882825, 0.0857558324933052, -0.011489765718579292, -0.02620026282966137, 0.03487454727292061, -0.01816636323928833, 0.01567421853542328, -0.029296644032001495, 0.09540467709302902, 0.03586215525865555, 0.016659555956721306, -0.010337929241359234, -0.0211850143969059, 0.018843194469809532, -0.044110458344221115, 0.023577148094773293, -0.08831445872783661, -0.025963548570871353, 0.011901375837624073, -0.004794854670763016, -0.04585253819823265, 0.018213286995887756, 0.012189917266368866, -0.022481441497802734, 0.009796957485377789, -0.01354467123746872, 0.045710816979408264, 0.02482415735721588, -0.03429557383060455, 0.04320986941456795, 0.0002698692260310054, 0.023330582305788994, -0.04692501574754715, -0.6489748954772949, -0.012362521141767502, -0.04377899691462517, 0.019465886056423187, 0.006332654971629381, -0.029549503698945045, -0.10304813086986542, -0.00016147397400345653, -0.03134799003601074, 0.0007439447799697518, -0.04688844829797745, 0.030874911695718765, 0.016230016946792603, -0.03865978494286537, -0.057953521609306335, 0.0578436478972435, -0.010285594500601292, -0.03966495022177696, 0.04406583681702614, 0.008701542392373085, 0.04031429439783096, -0.03166115656495094, -0.013810289092361927, -0.016062652692198753, 0.05093780532479286, -0.025243764743208885, 0.014050450176000595, 0.009735357947647572, 0.004430493805557489, 0.041156232357025146, 0.0038173238281160593, 0.016374941915273666, -0.021931761875748634, -0.006183542776852846, -0.010984675958752632, 0.028211383149027824, 0.026291729882359505, -0.018942322582006454, 0.0006812739302404225, -0.013209083117544651, -0.051910415291786194, 0.08573571592569351, 0.010444077663123608, -0.030015772208571434, 0.004231585189700127, -0.03584509342908859, -0.04548358917236328, 0.004083627834916115, -0.03915685415267944, -0.035385649651288986, -0.00333299208432436, 0.045849259942770004, 0.006446284707635641, -0.0027755412738770247, -0.009512534365057945, -0.0051048314198851585, -0.01378061156719923, -0.006289310287684202, 0.0011448191944509745, -0.05515052378177643, 0.0724865049123764, -0.037114307284355164, 0.038163136690855026, -0.008126131258904934, 0.04699698090553284, 0.011745380237698555, -0.0038078741636127234, 0.07669275254011154, 0.0024781639222055674, -0.035539090633392334, -0.05217530578374863, -0.029019728302955627, -0.025196783244609833, 0.023505134508013725, 0.02555355615913868, -0.0015435585519298911, 0.02484462596476078, 0.037750452756881714, 0.011732486076653004, 0.038522712886333466, 0.0012429837370291352, -0.057965297251939774, -0.0006496912683360279, 0.02555488795042038, -0.11594974994659424, 0.03057994693517685, -0.0018712175078690052, 0.002680554986000061, -0.04655906930565834, -0.045926161110401154, 0.02115006558597088, -0.03740846365690231, 0.010167374275624752, -0.0008856960921548307, -0.048988375812768936, 0.012910336256027222, -0.013298280537128448, -0.004168104846030474, 0.010680777952075005, 0.021265801042318344, -0.004267472308129072, 0.03515951335430145, -0.016418293118476868, 0.02692187950015068, -0.01118801161646843, -0.011966045014560223, -0.041354622691869736, -0.002757882932201028, 0.00126387900672853, -0.002872666111215949, 0.014131303876638412, 0.06859004497528076, 0.02674395963549614, 0.019760502502322197, 0.004297974519431591, -0.025833304971456528, 0.04894066974520683, -0.0026155461091548204, -0.0112865986302495, 0.03235701099038124, 0.04956280067563057, 0.032451730221509933, -0.024314044043421745, 0.020931679755449295, 0.025352582335472107, 0.00991591066122055, 0.05009649693965912, 0.018412677571177483, 0.027564356103539467, 0.029695289209485054, 0.04144839569926262, 0.011355950497090816, -0.0032797115854918957, 0.03359783813357353, -0.03656288608908653, -0.008480713702738285, -0.00459901662543416, 0.045656923204660416, -0.018350668251514435, 0.010214359499514103, 0.02649497427046299, 0.040194667875766754, 0.0038225988391786814, -0.07556139677762985, 0.02044316753745079, -0.006509678438305855, -0.024254996329545975, 0.025875182822346687, 0.04381443187594414, 0.01680883951485157, 0.016529768705368042, -0.007535757031291723, 0.012914283201098442, 0.023680076003074646, 0.002725091762840748, -0.05657236650586128, 0.009554199874401093, 0.04523265361785889, 0.0017916811630129814, 0.0821090042591095, 0.028347840532660484, 0.011939079500734806, -0.008009114302694798, -0.020939258858561516, 0.0022169863805174828, 0.008128950372338295, 0.05365774407982826, 0.04154951870441437, 0.0002937688841484487, 0.00930021796375513, -0.024169430136680603, 0.027643857523798943, 0.05315206199884415, 0.02659008279442787, 0.05506029725074768, 0.04539097845554352, 0.05347825959324837, 0.0310014970600605, -0.017870493233203888, 0.0009384612203575671, -0.01294405572116375, -0.03118298016488552, 0.02217966690659523, -0.015643952414393425, 0.005084429867565632, -0.014131349511444569, -0.005931119900196791, -0.020039305090904236, 0.03614657744765282, 0.041102249175310135, -0.03556816279888153, -0.011785791255533695, 0.028663991019129753, 0.01736500672996044, -0.010221916250884533, -0.01850958913564682, -0.012479757890105247, -0.016200540587306023, -0.0481812059879303, -0.007603803183883429, 0.028324712067842484, 0.023274559527635574, -0.008467467501759529, -0.007651808671653271, 0.07729180157184601, -0.013334312476217747, -0.001887124264612794, -0.007598794996738434, 0.023863190785050392, 0.005974753759801388, -0.013639451935887337, 0.04075610637664795, 0.00568414619192481, 0.003648590063676238, 0.0032728041987866163, 0.009957835078239441, 0.050171855837106705, -0.021435106173157692, 0.04854907840490341, 0.03005276620388031, 0.08571069687604904, -0.0035145508591085672, 0.017215335741639137, -0.01028031948953867, -0.024791140109300613, 0.03203815594315529, -0.029534755274653435, -0.03647971898317337, 0.005634844768792391, 0.1488657295703888, -0.01843552477657795, -0.010378340259194374, -0.005327657330781221, -0.008094060234725475, 0.017796356230974197, -0.011512248776853085, 0.04305265471339226, 0.020611435174942017, -0.014858669601380825, 0.022768933326005936, -0.014499717392027378, -0.02112061157822609, 0.003125667804852128, -0.03688330948352814, -0.03223298117518425, 0.022450240328907967, -0.03144575655460358, 0.011028428561985493, -0.016609633341431618, 0.005580058321356773, 0.005239726975560188, -0.02075076848268509, 0.04081195965409279, -0.035968340933322906, 0.012053394690155983, -0.0006596616585738957, 0.03945038467645645, 0.012030144222080708, -0.03750303387641907, 0.0021007475443184376, -0.00011764968803618103, -0.029569121077656746, -0.04736906290054321, 0.03400368243455887, 0.02606034278869629, -0.025836212560534477, 0.008719631470739841, 0.012374816462397575, 0.07407943159341812, 0.0019973001908510923, -0.047185268253088, -0.0462203212082386, -0.018288280814886093, -0.05901329964399338, 0.0060356552712619305, -0.03688785061240196, -0.07296493649482727, 0.04951155558228493, 0.012437881901860237, 0.015648474916815758, 0.021523142233490944, 0.007445803377777338, 0.0048383199609816074, 0.02504832111299038, 0.12351275235414505, 0.018492260947823524, -0.03252308815717697, -0.02172713540494442, 0.05426700785756111, -0.02221689000725746, 0.023870082572102547, -0.023976389318704605, -0.0056638531386852264, 0.028296392410993576, -0.04704522341489792, 0.0233425535261631, -0.039227407425642014, -0.0691475048661232, 0.009305190294981003, -0.08123338222503662, 0.012248673476278782, 0.04231085255742073, -0.012170941568911076, -0.05273088440299034, 0.02699403278529644, 0.046900853514671326, -0.09722234308719635, -0.045456916093826294, -0.019304348155856133, 0.01194044854491949, -0.052496884018182755, 0.05325717478990555, -0.006300593260675669, 0.03531290218234062, -0.009966185316443443, 0.010898157954216003, 0.02887987531721592, -0.020190859213471413, 0.0837826132774353, -0.006011561490595341, 0.06997102499008179, 0.019172145053744316, -0.017736364156007767, -0.056708186864852905, 0.02675027586519718, -0.0108362240716815, 0.027462828904390335, -0.025283193215727806, -0.030621113255620003, -0.003966798074543476, 0.002527834614738822, -0.001543759019114077, -0.002601496409624815, -0.03448805958032608, -0.020853403955698013, 0.01222090981900692, 0.0009637093171477318, -0.038347143679857254, -0.006187174003571272, 0.03890238329768181, 0.09386520832777023, 0.005186106543987989, 0.004410006571561098, -0.04014239087700844, 0.010076900012791157, -0.026737894862890244, -0.016188008710741997, -0.015616560354828835, 0.03227806091308594, -0.007554355077445507, -0.02379716746509075, -0.05264822021126747, -0.0012755737407132983, 0.04217306524515152, 0.012761412188410759, 0.007665988523513079, 0.027969833463430405, -0.037309158593416214, -0.005994429811835289, -0.0013405162608250976, 0.01771235279738903, 0.016466239467263222, 0.02019316889345646, -0.010750151239335537, 0.01612783595919609, 0.001988058676943183, 0.03852924704551697, 0.03352060914039612, 0.01473777275532484, 0.04092270880937576, 0.006819759029895067, -0.004290255252271891, 0.008222036063671112, 0.009388691745698452, 0.007399383466690779, 0.024330826476216316, 0.02411654219031334, -0.04444409906864166, 0.046403199434280396, -0.02375428006052971, 0.029160026460886, -0.04826084524393082, -0.008277202025055885, -0.022360501810908318, -0.03667357563972473, -0.04350721463561058, -0.005764946341514587, -0.027532808482646942, 0.005203339271247387, -0.03178791701793671, -0.018498485907912254, -0.010971887037158012, 0.027035104110836983, 0.01733863539993763, -0.049967218190431595, -0.011839885264635086, -0.033093079924583435, -0.004885717760771513, -0.015992948785424232, -0.0257852915674448, 0.024892786517739296, -0.03268555924296379, 0.033299997448921204, 0.019626792520284653, 0.0017896404024213552, 0.03659401834011078, -0.007414147723466158, -0.03847367316484451, -0.053192123770713806, 0.023448623716831207, 0.007892402820289135, -0.001618791138753295, -0.03712054714560509, -0.0642302855849266, -0.030598623678088188, 0.04868542402982712, 0.005292457062751055, 0.032111089676618576, 0.017117666080594063, 0.0011978832772001624]}
{"root dir": "/n/fs/nlp-data/mscoco/mscoco_2014/images/train2014", "image id": "COCO_train2014_000000000036", "ext": ".jpg", "embeddings": [0.017779948189854622, 0.0332118459045887, -0.03289177641272545, -0.007350742816925049, -0.010596307925879955, -0.02131115086376667, 0.024486392736434937, 0.00012434979726094753, -0.01599687524139881, -0.02710280753672123, 0.023510482162237167, 0.01280610729008913, -0.014481337741017342, -0.020427679643034935, 0.006866919808089733, -0.014359979890286922, -0.05578956753015518, -0.032718461006879807, 0.02631530538201332, 0.03189718723297119, 0.011445852927863598, -0.013497079722583294, 0.04638221487402916, 0.01877833716571331, -0.03356429561972618, -0.013216454535722733, -0.007809059228748083, -0.01635776087641716, 0.022918319329619408, 0.005724751390516758, -0.04508329927921295, 0.024757567793130875, -0.056425921618938446, -0.025905456393957138, -0.004759795963764191, -0.009588021785020828, -0.0008463533595204353, 0.021792450919747353, 0.07526178658008575, 0.17267462611198425, -0.003336778376251459, 0.0061717270873487, -0.012710371054708958, 0.008424460887908936, -0.006306831259280443, 0.03074532374739647, 0.041934069246053696, 0.0003463160537648946, -0.046088118106126785, -0.023445788770914078, 0.039939671754837036, 0.028133587911725044, -0.03363747149705887, -0.008245743811130524, -0.05401519313454628, -0.02441510558128357, 0.04730036109685898, 0.014414618723094463, 0.009409956634044647, -0.004712757188826799, 0.057499758899211884, -0.04000135883688927, 0.011134041473269463, -0.02107677049934864, -0.03751406818628311, 0.005983161740005016, 0.035717204213142395, 0.03963388130068779, 6.12440999248065e-05, -0.048300258815288544, 0.019934646785259247, 0.010885323397815228, 0.02661878988146782, -0.014751709066331387, -0.026373399421572685, -0.03613153472542763, 0.002507738769054413, -0.03167843818664551, 0.007208670023828745, -0.017477231100201607, 0.043031223118305206, -0.0018575306748971343, -0.017352433875203133, -0.04621853679418564, 0.04264209046959877, 0.0384928323328495, -0.006580163259059191, -0.02544788271188736, -0.006380744744092226, 0.006676477380096912, -0.005221691448241472, 0.002452017040923238, -0.6276607513427734, -0.06625946611166, 0.06611757725477219, 0.010849379934370518, -0.04574829339981079, 0.0009946906939148903, 0.04767676070332527, -0.10361476987600327, 0.03466011583805084, 0.02538156695663929, -0.033596221357584, 0.04645057022571564, 0.03762265667319298, -0.04315800964832306, 0.06529416888952255, 0.01110817864537239, -0.08042309433221817, -0.04878387972712517, 0.0018757947254925966, -0.07727957516908646, -0.026646239683032036, -0.01981324329972267, -0.001427150098606944, 0.032532259821891785, -0.015063567087054253, -0.0017008717404678464, 0.040808629244565964, 0.047567885369062424, -0.015222201123833656, 0.003981962334364653, 0.006088956259191036, -0.04516666755080223, 0.015164277516305447, -0.026172246783971786, -0.00220521935261786, -0.01322690024971962, -0.012685197405517101, 0.03466328606009483, 0.002532312646508217, 0.029028546065092087, 0.0012777589727193117, 0.08641502261161804, -0.023735513910651207, 0.00971426535397768, -0.014714408665895462, -0.043432530015707016, 0.0058744437992572784, 0.013413895852863789, 0.0012562008341774344, -0.01061778049916029, 0.0012417484540492296, 0.014329416677355766, 0.0018231109715998173, -0.025563335046172142, 0.00423010066151619, -0.01511689368635416, -0.026275116950273514, -0.0023108506575226784, -0.01837095618247986, -0.02430683933198452, 0.08028209209442139, -0.001691741868853569, 0.049550969153642654, -0.012189870700240135, 0.004214409273117781, -0.030886024236679077, -0.007649870123714209, 0.016573799774050713, -0.011543157510459423, -0.041419338434934616, -0.013566567562520504, -0.006154478061944246, 0.015254822559654713, -0.0175190232694149, -0.04001302644610405, 0.05587870255112648, 0.023694217205047607, 0.006772049702703953, -0.0039042183198034763, 0.054142214357852936, -0.03276941925287247, -0.03972971439361572, 0.0008013576734811068, -0.03843977674841881, 0.0764365941286087, 0.01941712573170662, 0.09813941270112991, 0.00020793119620066136, 0.047948192805051804, 0.0010143485851585865, 0.014757433906197548, 0.007493617478758097, 0.013465821743011475, 0.016068750992417336, 0.04534544423222542, 0.010122833773493767, -0.001055338536389172, -0.013798924162983894, -0.005438485648483038, -0.008720927871763706, -0.056732069700956345, 0.005535999778658152, -0.12341862171888351, -0.022252170369029045, -0.01062074862420559, -0.003949971403926611, 0.04098482429981232, 0.010420099832117558, 0.0196103323251009, 0.029084740206599236, -0.005157367791980505, -0.013179773464798927, 0.011663059704005718, -0.030790144577622414, -0.04775179177522659, -0.006067341659218073, 0.018009204417467117, 0.0020864326506853104, 0.06793234497308731, -0.000734173518139869, 0.012501813471317291, -0.005182284861803055, 0.0017942794365808368, -0.014319793321192265, -0.003801308572292328, -0.007849112153053284, -0.04607222229242325, 0.004748200997710228, -0.02678058296442032, -0.04190988838672638, 0.006651333998888731, -0.03412259370088577, 0.018216850236058235, 0.006976363714784384, -0.04147234186530113, 0.001991661498323083, 0.017709707841277122, 0.0061506363563239574, 0.0001656745298532769, 0.025377603247761726, 0.03763988986611366, 0.025111619383096695, -0.029126286506652832, -0.11241847276687622, -0.03546586260199547, -0.0068577965721488, -0.0046103042550385, 0.0017392787849530578, -0.02842235006392002, 0.03932474926114082, 0.0027679719496518373, -0.03835957869887352, 0.012062068097293377, -0.04863821715116501, 0.006232758518308401, 0.020479246973991394, -0.02219446748495102, -0.01156650111079216, -0.019120099022984505, 0.007845398038625717, -0.02956029772758484, 0.006392785347998142, -0.058269090950489044, -0.033344727009534836, -0.020816920325160027, 0.013460482470691204, -0.07048284262418747, 0.014419282786548138, 0.012573866173624992, -0.022978782653808594, -0.00037676296778954566, -0.09650175273418427, 0.0038253942038863897, 0.013472982682287693, -0.018213247880339622, 0.0011614598333835602, 0.03105456754565239, -0.0012743297265842557, -0.010278938338160515, -0.021150609478354454, 0.04297472909092903, 0.055735837668180466, -0.010661954991519451, -0.02514791674911976, 0.01757638156414032, -0.039991918951272964, -0.04085743799805641, -0.01938595436513424, 0.004418440628796816, -0.002883609151467681, -0.022433163598179817, 0.002479027723893523, 0.018600154668092728, 0.0032673876266926527, -0.06268633902072906, -0.04629574716091156, -0.01377542782574892, -0.025440914556384087, 0.031725939363241196, 0.0010023763170465827, 0.007162417750805616, -0.03872927278280258, 0.0028973512817174196, 0.021963123232126236, -0.019586963579058647, 0.04571634903550148, -0.010458736680448055, -0.02784924954175949, 0.01394395437091589, -0.03447870537638664, -0.018996985629200935, 0.02057049423456192, -0.02374979481101036, 0.041363220661878586, -0.04645774886012077, 0.06213840842247009, 0.030720561742782593, 0.0022477603051811457, -0.044327039271593094, -0.005584217607975006, 0.08628538995981216, 0.029964221641421318, 0.015260901302099228, -0.01008704025298357, 0.013464153744280338, 0.005086966790258884, -0.022423841059207916, 0.03405853733420372, 0.0097939008846879, 0.03764653578400612, -0.010112622752785683, -0.03067064844071865, -0.004479209892451763, 0.01666942983865738, 0.024391919374465942, -0.00986139290034771, -0.0016181376995518804, -0.0023337944876402617, -0.014517032541334629, -0.021221209317445755, 0.012937416322529316, -0.002272471087053418, -0.010959487408399582, 0.001700604916550219, -0.01755598932504654, -0.006599527318030596, -0.009655646979808807, -0.0028031186666339636, 0.03192868456244469, -0.008905171416699886, -0.008071918040513992, 0.009602803736925125, -0.004566984251141548, 0.030657751485705376, 0.018931910395622253, 0.024380452930927277, 0.02158825285732746, -0.012983791530132294, 0.01558807771652937, -0.008326663635671139, 0.0248110368847847, 0.004068092908710241, 0.013017158955335617, 0.05527108907699585, 0.04172910377383232, 0.1650204062461853, 0.012143118306994438, 0.03297000378370285, -0.018725832924246788, 0.0055198147892951965, -0.0017058613011613488, 0.02205968089401722, -0.11022721976041794, -0.0060302820056676865, 0.017675139009952545, -0.0566551499068737, 0.01625998690724373, 0.003333593951538205, -0.017941424623131752, 0.010777830146253109, -0.02997800149023533, 0.015205317176878452, 0.04043685644865036, -0.04132577031850815, 0.16064336895942688, -0.018452176824212074, -0.03419250249862671, 0.04432353004813194, -0.011549385264515877, -0.06488561630249023, 0.009523343294858932, 0.010125190019607544, 0.017788242548704147, -0.004223234951496124, 0.019749747589230537, -0.008306227624416351, 0.004369692876935005, 0.1621851921081543, -0.1292903870344162, 0.023414311930537224, 0.04858986288309097, 0.012141942046582699, -0.001644402858801186, -0.002972480608150363, 0.003022068180143833, 0.021422551944851875, 0.05573229864239693, -0.020245252177119255, 0.015417058020830154, 0.018593724817037582, 0.00741157541051507, -0.011294633150100708, -0.008704975247383118, -0.0173740666359663, 0.008640686050057411, -0.006208193488419056, -0.0028680746909230947, -0.03115020878612995, -0.03825671225786209, -0.022480640560388565, -0.010801144875586033, 0.0007870839908719063, -0.01750885136425495, 0.017773298546671867, 0.005274646915495396, 0.0680980235338211, -0.022543897852301598, 0.042955171316862106, 0.03450215607881546, -0.048196110874414444, 0.0273112915456295, -0.08662193268537521, 0.04921780526638031, 0.002456953516229987, -0.004550648387521505, -0.007689205929636955, 0.09059704840183258, 0.03574345260858536, 0.014592085033655167, 0.0049646212719380856, 0.07147600501775742, -0.015550977550446987, 0.0008221658645197749, -0.03661816567182541, -0.007516869343817234, -0.010535439476370811, -0.012650219723582268, -0.013140618801116943, -0.008197699673473835, -0.00022907217498868704, -0.03225735202431679, 0.03616496920585632, -0.001215050695464015, 0.00724992947652936, 0.053636934608221054, -0.0017095943912863731, -0.003817229066044092, -0.004341959487646818, 0.011539207771420479, -0.026055604219436646, -0.015563650988042355, -0.016883984208106995, 0.0066688028164207935, -0.0608203150331974, -0.041032616049051285, -0.01335576269775629, 0.00448895338922739, 0.0006917366990819573, -0.03537575528025627, -0.0395563505589962, -0.02667076885700226, -0.031079478561878204, -0.0003555423754733056, -0.0036208988167345524, 0.03516501933336258, -0.008118989877402782, -0.01154499314725399, 0.009184177033603191, 0.022238096222281456, -0.000990727567113936, -0.005037481896579266, -0.04293825849890709, 0.010301288217306137, 0.023477982729673386, -0.0007901082863099873, 0.02475610002875328, -0.008098077960312366, 0.0030315297190099955, -0.03200158849358559, 0.013030802831053734, -0.002078096615150571, 0.0038242118898779154, -0.008368568494915962, 0.036736324429512024, -0.0016406640643253922, 0.05320734158158302, 0.004936338402330875, -0.0066565838642418385, 0.008184550330042839, -0.016569247469305992, 0.04240259900689125, -0.0511712022125721, -0.025647126138210297, -0.041696853935718536, 0.03788169100880623, 0.005830904468894005, -0.011920098215341568, -0.004135859664529562, -0.04492650181055069, 0.01898273639380932, 0.01937123015522957, 0.0017776418244466186, 0.10547740757465363, 0.0032756656873971224, 0.029740972444415092, -0.003573297755792737, -0.029849786311388016, 0.030926475301384926, 0.019663680344820023, 0.0027120262384414673]}
{"root dir": "/n/fs/nlp-data/mscoco/mscoco_2014/images/train2014", "image id": "COCO_train2014_000000000049", "ext": ".jpg", "embeddings": [0.010300909169018269, -0.018141593784093857, 0.018610356375575066, -0.01309941802173853, 0.051403846591711044, 0.007448235526680946, 0.024268219247460365, 0.003806995926424861, 0.041489019989967346, 0.024455443024635315, 0.0027072441298514605, -0.00912516936659813, -0.0416015088558197, -0.018758125603199005, -0.041068993508815765, -0.02171206846833229, 0.027338096871972084, 0.0016957566840574145, -0.012850986793637276, 0.006770389620214701, 0.001890973187983036, -0.026535704731941223, 0.0014745983062312007, 0.024258101359009743, 0.016670003533363342, -0.01720420829951763, -0.04808573052287102, 0.020937392488121986, -0.014344829134643078, -0.007860002107918262, -0.06643025577068329, 0.017239080742001534, 0.020911328494548798, 0.024587547406554222, 0.06451563537120819, 0.028715889900922775, 0.051872171461582184, -0.021245846524834633, 0.002453004941344261, 0.02719523012638092, 0.0106324702501297, -0.010380735620856285, 0.0046659898944199085, 0.011750009842216969, 0.026806632056832314, -0.15529200434684753, 0.05241838097572327, 0.017900239676237106, -0.014036989770829678, 0.03815667703747749, -0.004082221072167158, 0.013311659917235374, 0.002773202955722809, 0.04291985183954239, -0.07098864763975143, 0.0026471540331840515, 0.04112645983695984, 0.02320745773613453, -0.0010590499732643366, -0.022348912432789803, 0.08074772357940674, -0.04071720317006111, 0.06343555450439453, 0.02129269577562809, 0.026515517383813858, 0.014235354028642178, 0.009974309243261814, 0.004366087261587381, 0.03574133291840553, 0.008191896602511406, 0.007397287525236607, 0.03300302475690842, -0.013272900134325027, 0.03758183866739273, -0.023853132501244545, 0.007085699122399092, -0.06621378660202026, -0.009250432252883911, -0.04360315576195717, 0.0016330120852217078, 0.03509875759482384, -0.036457374691963196, 0.01673032157123089, 0.0508379191160202, 0.026338111609220505, 0.012677225284278393, -0.1304931491613388, 0.03836306184530258, 0.0017944780411198735, 0.012277309782803059, 0.020017780363559723, -0.007879002019762993, -0.5983912348747253, 0.07013235986232758, -0.040990009903907776, 0.04108204320073128, 0.04632945358753204, -0.018114982172846794, -0.11799239367246628, -0.08880689740180969, 0.03790653124451637, -0.04027201607823372, -0.004002999048680067, 0.02943369187414646, 0.08762439340353012, -0.043898507952690125, -0.021257808431982994, -0.012552915140986443, -0.061233311891555786, -0.002485888311639428, -0.004345688037574291, -0.03573387488722801, 0.013055064715445042, 0.00427982909604907, -0.0046887206844985485, -0.006857313681393862, -0.0015283870743587613, 0.011075188405811787, 0.01969687081873417, -0.023953311145305634, -0.0069288830272853374, -0.01763593778014183, 0.01851915940642357, -0.0015671440633013844, -0.005099463742226362, 0.004011122044175863, -0.03136654198169708, -0.001378433546051383, 0.0058708651922643185, 0.01123141124844551, 0.039386723190546036, -0.048114318400621414, -0.0019466998055577278, 0.0870388075709343, -0.041308943182229996, 0.003725251415744424, -0.0228941198438406, -0.06635802984237671, -0.04572035372257233, -0.0026795165613293648, 0.015925122424960136, 0.031674377620220184, 0.039202239364385605, 0.03747016564011574, 0.0009419998386874795, 0.0026796895544975996, -0.014570475555956364, -0.03491327166557312, -0.027391577139496803, 0.01849636249244213, -0.01695966348052025, -0.02459288202226162, 0.05712595954537392, -0.02722604013979435, -0.053099170327186584, -0.04405272752046585, 0.07158194482326508, 0.022559018805623055, 0.027596045285463333, -0.05213252827525139, 0.008610052987933159, -0.04771319404244423, 0.0213316660374403, 0.01814020797610283, -0.01553125586360693, 0.008559275418519974, 0.0065652914345264435, 0.01074363011866808, -0.003315224312245846, -0.005159554071724415, 0.020536331459879875, -0.03329247608780861, -0.014780913479626179, 0.026887835934758186, -0.013465533964335918, -0.00653609074652195, -0.013249349780380726, 0.00978674553334713, -0.023208174854516983, 0.04383610561490059, -0.028841927647590637, -0.004829905927181244, -0.02978849783539772, -0.04125726595520973, -0.03572523221373558, -0.020974284037947655, -0.015027495101094246, 0.0055543468333780766, 0.020074499770998955, 0.008064433932304382, -0.054443150758743286, 0.0729370042681694, 0.016232073307037354, 0.010283117182552814, -0.0759025290608406, -0.010082697495818138, -0.03212282806634903, 0.04829558730125427, -0.00569118931889534, 0.015609522350132465, -0.008275236003100872, 0.01847746968269348, -0.005485673435032368, 0.058574993163347244, 0.02509559504687786, -0.060815583914518356, 0.014928922057151794, 0.04742950573563576, -0.03833373263478279, 0.03155697509646416, -0.009457443840801716, -0.005129191093146801, 0.0066658323630690575, 0.023654868826270103, 0.02577429823577404, -0.0041307746432721615, 0.03224002569913864, 0.021977843716740608, -0.06111937388777733, -0.04107675328850746, -0.002228175289928913, 0.04609480872750282, -0.0024341586977243423, 0.007330151274800301, 0.027273127809166908, -0.04354448989033699, -0.019507868215441704, -0.04109089449048042, -0.02519891783595085, 0.0014186830958351493, -0.009702770970761776, -0.002860739128664136, 0.0027852284256368876, 0.02267313562333584, 0.014351834543049335, -0.026864923536777496, -0.016073446720838547, 0.011341442354023457, 0.0339188426733017, -0.022919869050383568, 0.003296873765066266, -0.02391868643462658, 0.012327824719250202, -0.05289692059159279, 0.00433394405990839, -0.05885402485728264, 0.014792850241065025, -0.020021753385663033, 0.02001008950173855, 0.0222832802683115, -0.032572004944086075, 0.016548829153180122, 0.005555714946240187, -0.0042861406691372395, 0.0056225997395813465, 0.010061285458505154, -0.027939792722463608, -0.018951604142785072, 0.02436242252588272, 0.01018820982426405, -0.04547729343175888, 0.01586545631289482, -0.03114837408065796, 0.026539867743849754, 0.0024606171064078808, -0.012687234207987785, 0.010010323487222195, -0.005895450711250305, 0.004698834847658873, 0.012083977460861206, -0.04080408439040184, 0.03765492886304855, 0.020929092541337013, -0.07857736945152283, 0.007521297316998243, 0.019366061314940453, -0.004674355499446392, 0.029027825221419334, 0.04660014808177948, 0.0085593331605196, 0.05523963272571564, 0.015202655456960201, -0.044602781534194946, -0.007705300115048885, 0.026837915182113647, 0.01775168441236019, 0.1987728625535965, -0.03142668679356575, -0.032856106758117676, -0.003942087292671204, 0.02822914719581604, 0.026719216257333755, -0.04456657916307449, 0.0003799652331508696, -0.032350536435842514, -0.002964023733511567, -0.0021567135117948055, -0.0013257869286462665, -0.015269685536623001, -0.006055051926523447, -0.016129128634929657, -0.027513764798641205, 0.018634499981999397, 0.06659482419490814, -0.025714077055454254, -0.04989093914628029, 0.0115134222432971, 0.012591333128511906, 0.04033701494336128, -0.007159449625760317, -0.009385569021105766, 0.035902831703424454, 0.08678004890680313, -0.0165133997797966, 0.022505827248096466, 0.037489309906959534, -0.015933692455291748, 0.0510421060025692, -0.02139681577682495, -0.0403594896197319, 0.03878127783536911, -0.17961890995502472, -0.014570185914635658, -0.01719820685684681, -0.05921809375286102, 0.045438606292009354, -0.0007792062242515385, -0.004540754482150078, -0.019131142646074295, 0.0031313681975007057, 0.013066636398434639, -0.024842290207743645, 0.0002197026915382594, 0.013702724128961563, 0.01671355590224266, 0.0418110154569149, 0.008870122954249382, 0.03439909964799881, 0.0010829551611095667, -0.06254541128873825, 0.046627920120954514, -0.003717907704412937, 0.03513843193650246, 0.01132796611636877, 0.024716289713978767, -0.006505337543785572, 0.019596904516220093, -0.016084183007478714, 0.006158518139272928, 0.024308674037456512, 0.036908604204654694, 0.01698140613734722, 0.003507365705445409, -0.0105522982776165, -0.032562561333179474, -0.014354645274579525, -0.03861390799283981, -0.11486119776964188, -0.0032613056246191263, 0.04431435838341713, 0.029093077406287193, -0.009530153125524521, -0.017878618091344833, -0.009816561825573444, -0.001729225623421371, 0.020386740565299988, -0.007432133425027132, -0.08521251380443573, 0.015017258934676647, 0.05391504988074303, -0.0351933017373085, 0.006358751095831394, 0.021577857434749603, -0.009985777549445629, -0.014687035232782364, 0.03534054383635521, 0.17323240637779236, -0.02209997922182083, 0.03542982041835785, 0.016561618074774742, -0.024527734145522118, 0.016633659601211548, 0.0013539880746975541, 0.04690175503492355, -0.004907471127808094, -0.03431499004364014, 0.0358847975730896, -0.0022927599493414164, 0.008355842903256416, 0.0001636870001675561, 0.006134854629635811, -0.026947548612952232, 0.00930305477231741, 0.012625787407159805, 0.007967430166900158, -0.05714993551373482, 0.013676838018000126, -0.0006204262026585639, -0.001254312228411436, -0.009731673635542393, -0.010013039223849773, -0.0161756481975317, -0.03789069876074791, -0.03225646913051605, -0.02183453179895878, -0.02127963863313198, 0.009372696280479431, -0.022242121398448944, 0.0736483782529831, -0.010746213607490063, 0.02956293523311615, 0.029322829097509384, -0.006316066719591618, -0.01545671932399273, -0.06035163253545761, -0.02674584835767746, -0.0628521740436554, 0.012066308408975601, 0.011928132735192776, -0.13076388835906982, 0.007233545184135437, -0.030181456357240677, -0.01602880097925663, 0.008062955923378468, -0.013402795419096947, -0.02152945101261139, -0.031755559146404266, -0.013049733825027943, -0.019790276885032654, 0.012687110342085361, 0.006302757654339075, -0.007240036502480507, 0.05756683275103569, 0.004934845957905054, -0.01326393149793148, -0.030049968510866165, -0.024470243602991104, 0.02872110716998577, 0.006228816229850054, 0.04648912698030472, -0.01853933185338974, 0.029662976041436195, 0.023416755720973015, 0.021770991384983063, 0.01261255331337452, -0.01527154166251421, 0.017694223672151566, 0.02067744918167591, -0.029099995270371437, -0.0598590113222599, -0.06697777658700943, -0.00754151726141572, -0.054201774299144745, 0.04782259464263916, 0.01602155715227127, -0.018515288829803467, 0.02770175226032734, -0.0008787442347966135, 0.004057823680341244, 0.025030728429555893, -0.030390800908207893, 0.028229912742972374, -0.054045483469963074, 0.023311277851462364, -0.008545590564608574, 0.0392104871571064, 0.011771922931075096, 0.006495710462331772, -0.013216840103268623, 0.01179866399616003, 0.007210676092654467, 0.002138337818905711, -0.002527480246499181, -0.05402526631951332, 0.007887633517384529, 0.021179603412747383, 0.003839524695649743, 0.0010030807461589575, 0.012673767283558846, -0.0009623458608984947, 0.0002557933039497584, 0.005429633893072605, 0.00023652130039408803, -0.001074673025868833, 0.03015442192554474, 0.0014209672808647156, -0.02830405719578266, 0.011253654025495052, -0.06102176383137703, -0.010547874495387077, -0.06977725774049759, -0.006744793616235256, 0.014966541901230812, -0.056068435311317444, 0.00813861284404993, 0.010468356311321259, 0.050653211772441864, 0.05576840788125992, -0.023762425407767296, -0.03652960807085037, -0.08050481975078583, 0.00929841585457325, 0.030100442469120026, 0.01503755897283554, 0.04976176843047142, -0.01865326426923275, -0.0016337174456566572, 0.010965142399072647, -0.01895892433822155, -0.009839795529842377, -0.01610715128481388, -0.01993255876004696]}
{"root dir": "/n/fs/nlp-data/mscoco/mscoco_2014/images/train2014", "image id": "COCO_train2014_000000000061", "ext": ".jpg", "embeddings": [0.029809802770614624, -0.0006734951166436076, 0.014808780513703823, 0.03427492454648018, -0.019770963117480278, 0.00866381824016571, 0.025313781574368477, -0.005324983969330788, 0.035360805690288544, 3.2345949875889346e-05, -0.011775070801377296, 0.03394390642642975, 0.04469297081232071, -0.061396799981594086, 0.0246869083493948, -0.019833778962492943, -0.0071962433867156506, 0.008268659003078938, -0.009485158137977123, 0.023544609546661377, -0.015292531810700893, 0.025014910846948624, -0.007161199580878019, -0.07100217044353485, -0.023161765187978745, -0.025196027010679245, -0.030433159321546555, 0.03870607912540436, -0.022723102942109108, -0.01109091192483902, -0.024409133940935135, 0.04296521469950676, -0.01549999974668026, 0.020543036982417107, 0.0014427048154175282, -0.013650151900947094, 0.0019567376002669334, -0.003331768559291959, -0.006208381615579128, 0.014015648514032364, 0.015981631353497505, -0.01920502260327339, -0.04051479697227478, -0.004167174454778433, 0.02381286956369877, -0.07293897867202759, 0.01343048457056284, -0.008391301147639751, 0.03170867636799812, 0.023613126948475838, -0.012887729331851006, -0.011766878888010979, 0.029041582718491554, 0.027023224160075188, -0.05420897528529167, 0.022091573104262352, 0.013805589638650417, 0.06306042522192001, 0.027389831840991974, 0.007893351837992668, -0.00860154815018177, 0.009870986454188824, -0.003541690995916724, 0.004846329800784588, 0.014064920134842396, -0.022149842232465744, 0.033983487635850906, 0.15695668756961823, -0.00878289993852377, 0.01155762653797865, 0.025122709572315216, -0.031057991087436676, -0.03583518788218498, -0.003953097853809595, 0.01704910211265087, 0.03810219094157219, -0.004966605454683304, -0.054777711629867554, -0.018496844917535782, 0.002533527323976159, 0.020380515605211258, 0.05075998976826668, -0.00100607646163553, -0.006713383831083775, 0.0094091035425663, 0.009824990294873714, 0.00348612479865551, -0.04824181646108627, 0.038813281804323196, -0.017671773210167885, 0.00815989263355732, -0.007751936092972755, -0.5911662578582764, 0.033996619284152985, -0.030862964689731598, -0.00929264910519123, 0.04637564718723297, 0.016664613038301468, -0.009130660444498062, -0.025998946279287338, -0.023561470210552216, -0.0342651829123497, -0.026927100494503975, 0.003286952618509531, 0.019362779334187508, 0.002997642382979393, -0.17427034676074982, 0.01517814677208662, -0.020677097141742706, -0.012696171179413795, -0.007726152893155813, -0.012085732072591782, 0.010114159435033798, -0.00616968609392643, 0.00867273285984993, -0.028737075626850128, -0.03241770714521408, -0.01732945442199707, 0.043673075735569, -0.027250876650214195, 0.023627620190382004, 0.00013791672245133668, -0.04040917381644249, 0.018677271902561188, -0.009988673031330109, 0.000617948651779443, 0.017528938129544258, -0.021896183490753174, 0.013898998498916626, 0.013221126981079578, -0.012746968306601048, -0.015790635719895363, -0.011530891060829163, 0.08118218928575516, 0.0058190408162772655, -0.018191181123256683, 0.028171315789222717, -0.014794494025409222, -0.014885115437209606, 0.004662605933845043, -0.017517128959298134, 0.004844402428716421, -0.031512174755334854, 0.01575133390724659, -0.017243968322873116, -0.01552773267030716, -0.03729100152850151, 0.004485107026994228, -0.05850926786661148, 0.0038233576342463493, 0.02493349090218544, -0.020901592448353767, -0.049344953149557114, -0.00040984252700582147, 0.008750521577894688, 0.0014686031499877572, 0.007900049909949303, -0.03356919065117836, 0.04376259446144104, -0.004226939752697945, -0.00044571844046004117, -0.053935706615448, -0.017289994284510612, 0.012271719053387642, -0.02778194658458233, 0.015980234369635582, 0.02528480999171734, -0.039730459451675415, 0.03008095547556877, -0.0028462589252740145, -0.021549804136157036, 0.03144329786300659, -0.011163937859237194, -0.029770104214549065, -0.0007955079199746251, -0.00041545042768120766, -0.05934317409992218, -0.009051685221493244, -0.02190409228205681, 0.05788310989737511, 0.03283249959349632, -0.005794331897050142, -0.03385787084698677, 0.003646014491096139, 0.01727319322526455, -0.0326349101960659, 0.010110409930348396, -0.01302551943808794, -0.013383259065449238, -0.007671985775232315, 0.009405107237398624, 0.026281392201781273, 0.068980872631073, 0.026767613366246223, -0.1152229756116867, 0.0006376735400408506, -0.0353933721780777, 0.01938457414507866, 0.05398222804069519, -0.01931571587920189, 0.019251752644777298, 0.007841463200747967, 0.029875416308641434, 0.04752127826213837, 0.016503741964697838, -0.01592293567955494, -0.04437607526779175, -0.032681189477443695, -0.018616734072566032, 0.02285972610116005, -0.058408841490745544, -0.028262687847018242, -0.01175963319838047, 0.041469771414995193, 0.020141303539276123, -0.013255175203084946, 0.046190738677978516, 0.015788298100233078, -0.017062488943338394, -0.004784476011991501, 0.018937723711133003, 0.0663658007979393, -0.05453433468937874, -0.015918200835585594, 0.020431671291589737, 0.005812101066112518, -0.028777439147233963, 0.001061859424225986, 0.0265462975949049, -0.015972435474395752, -0.00429552560672164, 0.028073720633983612, 0.0013629226014018059, -0.017502831295132637, -0.014601853676140308, 0.00014530509361065924, -0.03329601511359215, 0.028691871091723442, -0.008928323164582253, 0.030691679567098618, 0.014174329116940498, -0.0012687805574387312, -0.04387643560767174, -0.013549589551985264, -0.009733007289469242, -0.023061007261276245, 0.006122342310845852, 0.009015468880534172, 5.192581011215225e-05, 0.03463933616876602, 0.010468116961419582, 0.054080720990896225, 0.05106151103973389, -0.010001962073147297, 0.015480092726647854, 0.02282879129052162, -0.03793494403362274, 0.015576181001961231, 0.3214758038520813, 0.04730221629142761, 0.024009624496102333, 0.008807000704109669, 0.013486115261912346, 0.05920908972620964, 0.0138735082000494, 0.0009128930396400392, -0.0028772149235010147, -0.005445848684757948, 0.008324811235070229, -0.022747492417693138, -0.009299665689468384, 0.01874653808772564, -0.03150222823023796, -0.010389006696641445, 0.031788282096385956, -0.007650662213563919, 0.0059549384750425816, -0.007073934655636549, -0.02596384473145008, -0.025010982528328896, -0.008135523647069931, -0.042320799082517624, -0.05711972713470459, -0.07049573957920074, -0.0305588748306036, 0.03332547843456268, 0.03578317537903786, -0.0014192869421094656, -0.01895313896238804, -0.016437869518995285, -0.027691781520843506, 0.014163082465529442, -0.05572623759508133, -0.012585939839482307, 0.04540368914604187, 0.022228680551052094, 0.12962481379508972, -0.03200261667370796, -0.02916516736149788, -0.011523825116455555, -0.037573471665382385, -0.024949174374341965, -0.047854527831077576, 0.012418790720403194, -0.03574376180768013, -0.01853007636964321, 0.0020752488635480404, 0.0023408117704093456, 0.010025586932897568, -0.002574689220637083, -0.0037187940906733274, 0.02876891940832138, 0.08112131804227829, -0.009457021951675415, -0.003341308096423745, 0.015917912125587463, 0.04750346764922142, 0.017127783969044685, -0.019756320863962173, 0.003574569243937731, 0.008887533098459244, 0.10410596430301666, -0.02282436564564705, -0.004665366839617491, 0.04263320937752724, -0.016103189438581467, 0.030415019020438194, -0.03937596082687378, -0.00649544270709157, 0.011327346786856651, -0.016489703208208084, -0.014901269227266312, 0.03200780227780342, -0.04232458770275116, -0.047977570444345474, -0.020072171464562416, -0.03600657358765602, 0.046669818460941315, 0.002337109297513962, -0.06560088694095612, -0.038450680673122406, 0.024400657042860985, -0.02993272803723812, -0.023501262068748474, -0.02482820488512516, 0.03868044540286064, 0.006896725855767727, -0.00722209457308054, -0.0008074779761955142, 0.055368565022945404, 0.09622353315353394, 0.0021184831857681274, 0.037476252764463425, -0.027724456042051315, 0.00044249522034078836, 0.012424265034496784, -0.04815446957945824, -0.06179741397500038, 0.006973040755838156, -1.2806611266569234e-05, 0.14299868047237396, -0.027672046795487404, 0.004197579808533192, 0.045798975974321365, -0.05370115116238594, -0.004375330172479153, 0.005943946540355682, -0.07768651843070984, -0.03628530725836754, 0.013580802828073502, -0.0028431653045117855, 0.013372784480452538, -0.0029056291095912457, 0.03700308874249458, -0.02342536672949791, 0.014443809166550636, 0.09237034618854523, -0.0007696629618294537, -0.02011306956410408, -0.011471780017018318, 0.0008015772327780724, 0.021038945764303207, 0.006008043419569731, 0.04411834105849266, -0.007438202388584614, -0.014229198917746544, 0.05566125735640526, -0.009689936414361, 0.022606277838349342, 0.12218797206878662, -0.0934188961982727, -0.033095311373472214, -0.01430333498865366, 0.004823139403015375, -0.0324341282248497, -0.014977537095546722, 0.04723767936229706, 0.04647708684206009, -0.04811090975999832, -0.03793143108487129, -0.01645413599908352, -0.008684217929840088, 0.0004939617938362062, -0.025672880932688713, 0.03225822374224663, 0.009330189786851406, 0.0037635916378349066, -0.003944841679185629, 0.058022964745759964, -0.037835743278265, 0.020460058003664017, 0.019145838916301727, 0.026203803718090057, 0.0323648676276207, -0.023546487092971802, 0.011685988865792751, 0.011546974070370197, -0.014703821390867233, -0.028872590512037277, -0.0877867266535759, -0.017355814576148987, 0.012847259640693665, 0.013379585929214954, 0.043962594121694565, 0.003507180605083704, 0.013551429845392704, -0.0562552735209465, 0.026284590363502502, -0.024829786270856857, 0.010484700091183186, -0.003214063122868538, 0.048048775643110275, -0.0288121048361063, -0.019206266850233078, -0.017007170245051384, 0.011627143248915672, -0.05582254379987717, -0.018981587141752243, -0.016360539942979813, 0.007946982979774475, 0.003219005884602666, 0.02705511823296547, 0.012703245505690575, -0.03473101556301117, -0.007146161515265703, -0.01687716133892536, -0.0018003553850576282, -0.009034708142280579, 0.007648807018995285, -0.017771335318684578, -0.06634075194597244, 0.002473850268870592, -0.05533143877983093, -0.022950930520892143, 0.026087932288646698, -0.00952440407127142, 0.015178535133600235, -0.018596112728118896, -0.011951018124818802, 0.03589531034231186, -0.017783746123313904, 0.004192736465483904, 0.015231220051646233, 0.015806645154953003, -0.025154221802949905, 0.043573569506406784, -0.016607366502285004, 0.021129947155714035, 0.025509705767035484, 0.01942870393395424, 0.028872676193714142, -0.03401137515902519, -0.022037364542484283, -0.04921167343854904, 0.04053794592618942, 0.0028361354488879442, 0.02596748247742653, 0.012074833735823631, 0.015665942803025246, -0.011441202834248543, -0.010915657505393028, -0.014681674540042877, 0.006734590511769056, 0.03196880593895912, 0.0038746974896639585, 0.0026383011136204004, 0.021888433024287224, 0.004672538489103317, 0.005507250316441059, -0.023362331092357635, 0.040779776871204376, 0.045448172837495804, 0.014096400700509548, -0.032979294657707214, 0.03376863896846771, 0.016440581530332565, 0.017820468172430992, -0.009979555383324623, 0.023509418591856956, 0.007914628833532333, -0.02135475166141987, 0.015727663412690163, -0.00509288813918829, 0.008289684541523457, 0.010391755029559135, -0.06374013423919678, 0.008863391354680061, 0.009690857492387295, 0.05874192714691162, 0.07738259434700012, -0.013558164238929749, 0.011859038844704628]}
{"root dir": "/n/fs/nlp-data/mscoco/mscoco_2014/images/train2014", "image id": "COCO_train2014_000000000064", "ext": ".jpg", "embeddings": [-0.0020231374073773623, 0.04876342788338661, -0.017664998769760132, 0.008058012463152409, -0.006786488462239504, 0.029240652918815613, 0.030480727553367615, -0.00836742203682661, 0.022431187331676483, 0.023602524772286415, 0.036787740886211395, -0.029255487024784088, 0.0250102449208498, 0.0342298187315464, 0.010650519281625748, 0.007954026572406292, -0.06789973378181458, 0.06309647113084793, -0.023350631818175316, -0.0474848598241806, 0.049186911433935165, -0.04936403036117554, -0.06856384128332138, -0.01920969970524311, 0.05952855199575424, 0.004717938136309385, 0.002982933074235916, -0.03847574070096016, 0.005384073127061129, 0.018794963136315346, -0.009231997653841972, 0.03930038586258888, 0.012422017753124237, -0.001822733785957098, 0.0036496142856776714, 0.05344557762145996, -0.028983086347579956, -0.01401282474398613, -0.0070995669811964035, 0.06682565808296204, 0.014251681976020336, 0.004894194193184376, -0.018645383417606354, 0.014016833156347275, 0.020879635587334633, -0.07790356874465942, 0.0060852705501019955, 0.008998394012451172, -0.03669951856136322, 0.0033487416803836823, -0.015351129695773125, 0.02615358680486679, -0.006896463222801685, -0.04107014834880829, -0.04221702367067337, -0.04459855332970619, 0.0738331750035286, -0.02767898142337799, 0.07460929453372955, 0.004026851151138544, -0.052182361483573914, 0.004670186899602413, 0.006422451231628656, 0.01850549504160881, -0.01052818726748228, -0.014093142002820969, 0.04507586732506752, 0.09563364088535309, -0.01149100810289383, -0.00928798783570528, 0.05185617879033089, 0.0021499774884432554, -0.02416626363992691, 0.0005827352870255709, 0.002821848262101412, -0.017643677070736885, 0.014126649126410484, -0.02581503801047802, 0.02217421680688858, -0.024457309395074844, -0.011394685134291649, -0.012785735540091991, 0.005608114879578352, 0.06440034508705139, -0.0034892146941274405, 0.006700094323605299, 0.07848133146762848, 0.008241694420576096, 0.07574524730443954, -0.004731778986752033, 0.02618490159511566, 0.0033856837544590235, -0.65739506483078, 0.04401024803519249, 0.033749744296073914, -0.004152720794081688, 0.017262959852814674, -0.012269520200788975, 0.0428452305495739, -0.026404421776533127, -0.012828887440264225, -0.003108545672148466, -0.019140571355819702, -0.008390882052481174, 0.04405153915286064, -0.0076691098511219025, -0.1322055608034134, -0.029072396457195282, 0.044631242752075195, 0.003736453829333186, -0.014702385291457176, -0.07232842594385147, -0.024457208812236786, 0.003167293267324567, 0.010918374173343182, -0.013108859769999981, -0.030690204352140427, -0.015289722941815853, 0.019849054515361786, 0.022894520312547684, 0.010093772783875465, 0.01770295761525631, 4.4850894482806325e-05, -0.028896549716591835, -0.015424352139234543, 0.001213597133755684, -0.0035053174942731857, -0.008936802856624126, 0.027881836518645287, 0.03485553339123726, 0.02451299875974655, -0.04791300371289253, 0.020748192444443703, 0.09042638540267944, -0.01730518974363804, 0.03946468234062195, 0.041275568306446075, -0.03172044828534126, -0.0073867663741111755, 0.013412220403552055, -0.009579499252140522, 0.011259240098297596, -0.004788239020854235, -0.009443521499633789, 0.0009174866718240082, -0.021463913843035698, -0.04904302954673767, -0.04079599678516388, -0.04573670029640198, -0.023000797256827354, -0.01817065104842186, -0.02219116874039173, 0.11619465798139572, -0.041619520634412766, 0.01905488222837448, -0.04661396145820618, 0.015300080180168152, 0.024053379893302917, 0.011683895252645016, -0.07989282160997391, -0.05189240351319313, -0.054897490888834, -0.022415542975068092, 0.023802250623703003, 0.049526363611221313, 0.0026946477591991425, 0.08311326801776886, 0.019356774166226387, 0.016418570652604103, 0.053095120936632156, 0.02904566191136837, -0.015574542805552483, -0.02686786837875843, -0.024704506620764732, -0.04344993457198143, 0.007580278441309929, 0.11520892381668091, 0.0027491964865475893, -0.015299567952752113, 0.006087690591812134, -0.0075560626573860645, -0.0277276411652565, -0.025773270055651665, 0.022561946883797646, 0.004589559976011515, 0.016774982213974, 0.018259642645716667, 0.049972571432590485, -0.018927592784166336, 0.03358563780784607, 0.024151844903826714, -0.002145991660654545, -0.016654647886753082, -0.02031109854578972, -0.02602301351726055, -0.015614635311067104, -0.010487888939678669, 0.003325732657685876, -0.018970515578985214, 0.03108949214220047, 0.0054728263057768345, -0.02988439053297043, 0.01978245936334133, 0.03712823987007141, 0.0036358432844281197, -0.017949532717466354, 0.011017578653991222, -0.0001189476897707209, -0.007910692133009434, 0.021142486482858658, -0.0964493602514267, 0.03249945864081383, 0.012091494165360928, 0.019270243123173714, 0.04354618862271309, -0.025156259536743164, 0.016059160232543945, -0.029258711263537407, 0.026940586045384407, 0.02315235137939453, 0.010878312401473522, -0.03529345244169235, -0.030300455167889595, 0.017230086028575897, 0.006571089383214712, -0.026247074827551842, -0.019484542310237885, 0.0037545431405305862, 0.013838514685630798, 0.034200914204120636, -0.022630224004387856, -0.0029074978083372116, 0.03608643636107445, 0.030506549403071404, 0.0034833031240850687, -0.020801542326807976, 0.018902095034718513, 0.009268618188798428, -0.021186061203479767, 0.022829100489616394, 0.01673188991844654, 0.021244753152132034, 0.021489642560482025, 0.026489723473787308, -0.04207467660307884, -0.0038413063157349825, 0.014792627654969692, 0.032743148505687714, -0.041077952831983566, -0.0007234817021526396, 0.043281394988298416, 0.016241010278463364, 0.02441190741956234, 0.05105152726173401, 0.017829522490501404, 0.009422818198800087, -0.012809953652322292, -0.03655228391289711, 0.06189665198326111, -0.008122626692056656, -0.013380875810980797, 0.021719764918088913, 0.003603004850447178, 0.02982836775481701, 0.00831403024494648, -0.03947504237294197, 0.007897932082414627, 0.04345846548676491, 0.015185425989329815, -0.030909057706594467, -0.030614124611020088, 0.04434163123369217, -0.009337193332612514, -0.027333607897162437, 0.024990368634462357, -0.0138885248452425, -0.011878806166350842, -0.019245844334363937, -0.001157201244495809, -0.01669941656291485, 0.01173429936170578, 0.020761214196681976, -0.11303814500570297, 0.016767632216215134, 0.03021906688809395, -0.00863732397556305, -0.05354727804660797, 0.03109635040163994, 0.008972102776169777, -0.017375433817505836, 0.008299360983073711, -0.007473974488675594, -0.01152032520622015, 0.015167796984314919, -0.046664558351039886, 0.07931514829397202, 0.007432511541992426, -0.017215702682733536, -0.018060021102428436, -0.008863983675837517, 0.036551862955093384, 0.015475244261324406, 0.019444366917014122, 0.013177028857171535, -0.04716406390070915, -0.01883665658533573, -0.0031435026321560144, -0.00115388969425112, 0.02938610129058361, 0.027225954458117485, 0.011027484200894833, -0.048853155225515366, 0.09042956680059433, 0.03422408178448677, -0.005017004907131195, 0.0028203807305544615, 0.03152451664209366, 0.02884642779827118, 0.0037334971129894257, 0.007262777537107468, 0.07785876095294952, 0.07455658167600632, -0.017295746132731438, -0.021199628710746765, 0.021697496995329857, -0.017749855294823647, 0.00823924969881773, 0.0212401133030653, -0.010659391060471535, 0.006522415671497583, -0.0012458006385713816, 0.005723739508539438, -0.007129239849746227, -0.006856610998511314, 0.013320326805114746, 0.007640259340405464, 0.010759573429822922, -0.011357272043824196, 0.01587897539138794, -0.007560936268419027, -0.005553616676479578, -0.04419241473078728, -0.007005035411566496, -0.0018440855201333761, -0.03347669169306755, 0.04675675556063652, -0.029366495087742805, 0.021199744194746017, 0.04200093075633049, -0.002006389433518052, -0.026456914842128754, -0.0631110668182373, 0.012726852670311928, -0.018972108140587807, -0.030966058373451233, 0.00041812716517597437, -0.01594681106507778, 0.1337374895811081, -0.002432594308629632, -0.018149707466363907, -0.04873663932085037, -0.004662104416638613, 0.006393467541784048, -0.05395827069878578, -0.05269314721226692, -0.025161469355225563, 0.0007817500736564398, 0.037735577672719955, 0.02605978026986122, 0.02331564575433731, 0.006145022809505463, 0.00391860818490386, -0.00036629210808314383, -0.018455427139997482, 0.04534097760915756, -0.04861172288656235, -0.02431214228272438, 0.0016231235349550843, -0.013211505487561226, -0.011163165792822838, 0.0027381456457078457, 0.004230658523738384, -0.032243382185697556, 0.032314036041498184, -0.005760357715189457, -0.0004676138632930815, 0.035832539200782776, 0.002594358753412962, 0.01125047542154789, -0.1021169126033783, -0.08043403923511505, 0.0210283026099205, 0.007887732237577438, 0.017122328281402588, 0.007767222356051207, -0.021205894649028778, -0.013013620860874653, -0.02380572259426117, 0.05297299474477768, -0.030123325064778328, -0.03060033731162548, 0.01732306368649006, 0.0007655965746380389, -0.021152017638087273, -0.018039844930171967, 0.00932095106691122, 0.04711757227778435, 0.02343345433473587, 0.07721205055713654, 0.010807301849126816, -0.04537894204258919, 0.012627147138118744, -0.009525815024971962, -0.060977984219789505, -0.0014484915882349014, -0.06809234619140625, 0.006674902979284525, -0.010082818567752838, 0.02148289792239666, -0.023164957761764526, 0.016577040776610374, -0.04449804872274399, -0.001450856914743781, -0.012526663951575756, -0.003777981735765934, -0.03061399608850479, 0.006181770469993353, -0.00957603007555008, 0.03477244824171066, 0.031230837106704712, -0.029781293123960495, 0.06505950540304184, 0.012680110521614552, -0.00022176324273459613, -0.026295440271496773, 0.028526222333312035, -0.058878012001514435, 0.01978180557489395, 0.009929627180099487, -0.010525014251470566, -0.007464231923222542, 0.006522006820887327, -0.008798698894679546, -0.01772056333720684, 0.00785419624298811, 0.007581701036542654, 0.012014970183372498, -0.04130552336573601, -0.003362157614901662, 0.029400361701846123, 0.0238156970590353, -0.02516203001141548, 0.021096689626574516, 0.13536089658737183, 0.01157613005489111, 0.009647361002862453, 0.0604473352432251, -0.031009528785943985, -0.010068567469716072, -0.02607768587768078, -0.0033294563181698322, -0.03671032935380936, -0.021008756011724472, 0.009449100121855736, 0.011782038025557995, -0.009151513688266277, 0.02048918791115284, 0.03644418343901634, -0.043019481003284454, 0.007083514239639044, -0.01625019684433937, 0.00664758775383234, 0.0002213716070400551, -0.03136236593127251, 0.005193815100938082, -0.028958912938833237, -0.0151435025036335, 0.0110146040096879, 0.006400860380381346, -0.022072438150644302, 0.02182343229651451, -0.019722655415534973, 0.021687712520360947, 0.015098005533218384, 0.038233041763305664, -0.03251945227384567, -0.04031681641936302, 0.03956916928291321, 0.011241426691412926, 0.00939507968723774, -0.03254885971546173, 0.009545943699777126, -0.028608106076717377, -0.026086369529366493, 0.0002944660373032093, -0.03889520466327667, -0.010264672338962555, 0.059013549238443375, 0.021275334060192108, -0.004766416735947132, -0.003609954146668315, 0.013462858274579048, -0.006487376056611538, 0.009770340286195278, 0.10456978529691696, -0.027131520211696625, 0.0644645020365715, -0.04065437614917755, -2.9572811399702914e-05, 0.08954858779907227, 0.00949177984148264, -0.02890945039689541]}
{"root dir": "/n/fs/nlp-data/mscoco/mscoco_2014/images/train2014", "image id": "COCO_train2014_000000000071", "ext": ".jpg", "embeddings": [-0.02070157788693905, 0.04344341531395912, -0.04072495549917221, 0.08709294348955154, -0.0067700836807489395, 0.0002489203179720789, -0.02364501915872097, -0.028290962800383568, 0.04215376079082489, 0.0379791222512722, 0.03196786344051361, -0.003166592912748456, 0.0004542024980764836, -0.01028258353471756, -0.011447593569755554, -0.0005257899756543338, 0.04350855574011803, 0.05956767871975899, -0.04930432513356209, 0.012777388095855713, 0.10458480566740036, 0.05497003346681595, 0.00771666131913662, -0.0013200632529333234, -0.07118416577577591, -0.00282680825330317, -0.026220696046948433, -0.0031899032182991505, -0.049081798642873764, -0.014093994162976742, -0.0491698756814003, 0.034551672637462616, 0.03532693535089493, -0.007806904148310423, 0.049915630370378494, -0.006092777010053396, 0.032432056963443756, 0.01384308747947216, 0.01056601945310831, 0.19878219068050385, 0.040035635232925415, -0.019407976418733597, 0.010805227793753147, -0.04525136575102806, -0.01692308485507965, -0.22748705744743347, 0.03028314746916294, 0.05114103481173515, 0.01075515802949667, 0.03804721683263779, -0.0695406123995781, 0.012639853172004223, 0.031137799844145775, -0.02661115862429142, -0.011547286063432693, -0.011738559231162071, -0.009438920766115189, 0.01364782452583313, 0.007591949310153723, -0.014525098726153374, 0.13030368089675903, 0.008903213776648045, -0.007714304607361555, 0.053474973887205124, -0.0003246209234930575, -0.052664194256067276, -0.004187358543276787, -0.027055077254772186, 0.033918123692274094, -0.027317969128489494, -0.030506644397974014, 0.04118742421269417, 0.03416973724961281, 0.02315044216811657, 0.03472425416111946, -0.035176876932382584, 0.003191048512235284, -0.00444108946248889, 0.002248244360089302, -0.04399023577570915, 0.05006667971611023, -0.026207732036709785, 0.02302367240190506, 0.12627342343330383, -0.0030722355004400015, 0.04012526571750641, -0.09356048703193665, -0.023884698748588562, -0.0013646212173625827, -0.05071411281824112, 0.0030854581855237484, 0.035364530980587006, -0.4407200515270233, 0.08332518488168716, 0.03707552328705788, 0.028683865442872047, 0.001896160189062357, 0.016592103987932205, 0.03893909975886345, -0.1284337043762207, 0.01086678821593523, 0.01755625754594803, -0.06234730780124664, -0.0016382023459300399, 0.052746210247278214, -0.013833960518240929, -0.22131431102752686, -0.024285264313220978, 0.00012341969704721123, -0.005527647677809, -0.010296217165887356, -0.1221625879406929, 0.012235789559781551, -0.020037252455949783, -0.0027637958992272615, -0.04956882819533348, 0.020422497764229774, 0.006484123878180981, 0.05312970280647278, -0.03311871364712715, 0.025293726474046707, 0.016973216086626053, -0.03221941366791725, -0.05988122895359993, -0.002881290391087532, 0.0024873074144124985, 0.04382684826850891, -0.003961695358157158, -0.00661725178360939, -0.014529124833643436, 0.04082927480340004, 0.012204641476273537, -0.006454888731241226, 0.06883616745471954, 0.06787087768316269, 0.005832151044160128, -0.04026578739285469, -0.004039808176457882, -0.016086209565401077, 0.04531804099678993, -0.012584613636136055, 0.025686627253890038, 0.02705506421625614, -0.009761390276253223, -0.029937535524368286, 0.049552202224731445, 0.007936649955809116, 0.024411343038082123, -0.032451801002025604, 0.013636725023388863, -0.033802613615989685, -0.006768981460481882, 0.07710596174001694, -0.030695438385009766, -0.035890694707632065, -0.014692290686070919, -0.018672801554203033, 0.011861681938171387, 0.03564971685409546, 0.002194492844864726, -0.005155941471457481, 0.013713468797504902, 0.009271101094782352, -0.018161913380026817, 0.030017109587788582, -0.026636140421032906, -0.0027715847827494144, 0.06137089803814888, -0.00562648382037878, -0.04183962568640709, 0.0155748650431633, 0.02127915807068348, -0.022363731637597084, 0.025940734893083572, -0.004333713557571173, -0.013931512832641602, 0.14843371510505676, 0.04387249797582626, -0.005969316698610783, -0.05121786519885063, 0.03495900705456734, -0.004724724218249321, 0.009388421662151814, 0.00930051226168871, 0.015563989989459515, 0.03242392838001251, -0.04287835210561752, -0.008251436054706573, 0.00381714035756886, -0.012850554659962654, -0.008546678349375725, -0.03695839270949364, 0.0018944385228678584, -0.012921462766826153, -0.019160069525241852, -0.005772378761321306, 0.016304032877087593, 0.04531578719615936, -0.06444734334945679, 0.011586123146116734, 0.03885454684495926, -0.02240399830043316, 0.048042796552181244, -0.02200246788561344, 0.0456862635910511, -0.026019155979156494, 0.00863702967762947, 0.02084612287580967, 0.004095291253179312, 0.05753770098090172, 0.04389766603708267, 0.055989861488342285, -0.014496765099465847, -0.03213634714484215, -0.0051686423830688, -0.02844209037721157, 0.014062341302633286, 0.030788976699113846, -0.059741269797086716, 0.010080728679895401, 0.03973190113902092, 0.021046798676252365, 0.033208634704351425, 0.011690218932926655, -0.031797558069229126, -0.012944632209837437, 0.026051919907331467, -0.014204693026840687, -0.010923042893409729, 0.015905851498246193, -0.03321538120508194, -0.040651120245456696, 0.04801999405026436, 0.06100483611226082, 0.0025352095253765583, 0.07830782234668732, 0.0324978344142437, 0.02688959427177906, -0.0023375735618174076, 0.028422493487596512, -0.01675945147871971, 0.024643760174512863, 0.05102119594812393, -0.023214980959892273, 0.03624555468559265, 0.03656643256545067, 0.027551334351301193, 0.023410528898239136, -0.014932062476873398, 0.05617795139551163, -0.032672956585884094, -0.015481588430702686, -0.027383793145418167, -0.011919157579541206, -0.017926692962646484, -0.0015121250180527568, -0.029250508174300194, 0.005009259097278118, 0.11125635355710983, -0.005800419952720404, 0.005750781390815973, 0.022129474207758904, 0.07966078072786331, 0.20046502351760864, 0.002979870419949293, 0.009442953392863274, 0.020609986037015915, -0.0002277101157233119, 0.01401618029922247, -0.0015073987888172269, 0.055263832211494446, -0.004599454812705517, -0.019598785787820816, 0.03989510238170624, -0.03663693368434906, 0.00560455908998847, 0.03358032554388046, -0.04555352032184601, -0.03192504122853279, -0.012616945430636406, -0.015205945819616318, -0.017911503091454506, -0.003249956527724862, 0.04712952300906181, 0.028323868289589882, -0.019756179302930832, 0.023605771362781525, 0.014411755837500095, -0.0015904555330052972, -0.05696780979633331, -0.010526486672461033, -0.019068796187639236, 0.0017347946995869279, -0.0013569103321060538, 0.02677766978740692, 0.00459960475564003, -0.032145991921424866, 0.010421882383525372, 0.023360148072242737, 0.04063011333346367, -0.03223346173763275, -0.0012170218396931887, -0.027141356840729713, -0.014976340346038342, -0.03342759236693382, 0.005765819922089577, -0.030656486749649048, 0.029213005676865578, 0.030864322558045387, 0.02438170090317726, 0.02233789674937725, 0.01108754426240921, 0.06841321289539337, -0.010727347806096077, -0.042613063007593155, -0.018571436405181885, -0.0011780913919210434, -0.0016820930177345872, 0.011122995056211948, 0.045023929327726364, 0.0285161305218935, -0.05910279601812363, 0.00859612226486206, -0.03859721124172211, -0.048190683126449585, -0.03497321903705597, -0.03615112602710724, -0.012372612953186035, 0.023065995424985886, -0.0777534693479538, 0.027880316600203514, 0.007196015678346157, -0.027170611545443535, 0.053122930228710175, 0.009727392345666885, -0.012924039736390114, 0.0358714684844017, -0.019057312980294228, 0.01726675219833851, 0.05304120108485222, 0.005136442836374044, 0.03620261698961258, -0.0026515801437199116, 0.010278977453708649, -0.02744639292359352, -0.01974206417798996, -0.003969591576606035, 0.0005361902294680476, 0.011450329795479774, 0.02490255981683731, -0.05898234620690346, -0.02531103603541851, -0.0019341128645464778, 0.012790527194738388, 0.007661374751478434, -0.0037172583397477865, -0.03777052462100983, 0.041746482253074646, -0.02590535767376423, 0.011980430223047733, -0.048000648617744446, 0.03965412825345993, -0.04921124130487442, 0.026910794898867607, -0.049942515790462494, 0.03254717215895653, -0.013067157007753849, -0.040021348744630814, 0.014899136498570442, 0.058416374027729034, 0.022538548335433006, 0.05126669257879257, 0.049325235188007355, -0.015367246232926846, 0.04588724672794342, 0.02407550998032093, 0.09234796464443207, 0.015726791694760323, 0.07761033624410629, 0.01559055782854557, -0.01595146954059601, -0.021330654621124268, -0.053099341690540314, -0.046905532479286194, 0.020878968760371208, 0.00032895104959607124, 0.027934161946177483, -0.010174204595386982, -0.05375310406088829, -0.10859905183315277, 0.0015040908474475145, 0.030461406335234642, -0.010219966061413288, -0.0031338559929281473, 0.009884443134069443, -0.026130549609661102, -0.03313235193490982, 0.013783395290374756, 0.04831447824835777, -0.020725393667817116, 0.009440949186682701, 0.023941149935126305, -0.05620017275214195, 0.05740666016936302, 0.04897984117269516, -0.03199572488665581, 0.04143815115094185, -0.043790511786937714, 0.021340975537896156, 0.0165459755808115, 0.025502920150756836, 0.031940143555402756, -0.05174824222922325, 0.050225481390953064, -0.028816550970077515, -0.011712823063135147, -0.015448164194822311, 0.05820668861269951, 0.031115828081965446, -0.07433590292930603, -0.021208707243204117, 0.004801761358976364, -0.015782594680786133, -0.05418927222490311, 0.04240687936544418, 0.008413678035140038, -0.015208632685244083, -0.01181480847299099, -0.035437244921922684, -0.03211277723312378, 0.023683441802859306, 0.0005363450618460774, -0.0209145899862051, -0.0225349310785532, 0.02912234328687191, -0.017844093963503838, 0.030132519081234932, -0.016424739733338356, 0.03295713663101196, 0.040307361632585526, 0.012187274172902107, -0.028924662619829178, 0.02377072535455227, 0.01799127645790577, 0.01239217258989811, -0.019301000982522964, 0.02080553211271763, -0.06015564501285553, 0.033087845891714096, -0.01138040330260992, 0.05846429988741875, -0.047740813344717026, 0.02208654209971428, 0.01469599548727274, -0.00875372439622879, -0.007477118168026209, -0.0010371095268055797, -0.050943806767463684, -0.02851196937263012, 0.011039779521524906, 0.007309749256819487, 0.008725482039153576, -0.03802597150206566, 0.02699406072497368, 0.04414531961083412, 0.015108400955796242, 0.020114541053771973, -0.0018853525398299098, -0.012070395983755589, 0.011959206312894821, 0.05602052062749863, 0.016574211418628693, -0.019315581768751144, -0.00992872565984726, -0.03571704030036926, -0.044706784188747406, 0.017570318654179573, -0.04086381942033768, 0.04696967825293541, 0.017147507518529892, -0.013576979748904705, -0.012954063713550568, 0.02887987531721592, 0.02939870022237301, 0.020143777132034302, 0.017924407497048378, -0.013910086825489998, 0.04391518607735634, -0.005647907964885235, -0.02025649882853031, 0.01375438179820776, -0.012338677421212196, 0.038802146911621094, -0.06381306797266006, 0.002902527106925845, -0.01114299613982439, 0.015179337933659554, 0.02975539118051529, -0.030298521742224693, 0.013453359715640545, 0.01103240717202425, 0.03101338818669319, 0.05520951747894287, -0.027903949841856956, -0.016895543783903122, -0.056806668639183044, -0.0421612448990345, -0.0005662794574163854, 0.02016555517911911, -0.03215858340263367, 0.007900136522948742, -0.009459257125854492]}
{"root dir": "/n/fs/nlp-data/mscoco/mscoco_2014/images/train2014", "image id": "COCO_train2014_000000000072", "ext": ".jpg", "embeddings": [0.019060077145695686, -0.010336187668144703, -0.0138538284227252, 0.0031566843390464783, 0.030799774453043938, -0.014221007004380226, 0.057290684431791306, 0.01953141577541828, 0.06768441200256348, 0.002711225999519229, 0.0036431392654776573, -0.01851373352110386, 0.05206270515918732, -0.021038295701146126, -0.007074303459376097, -0.021044887602329254, -0.024327969178557396, 0.04846465215086937, -0.0026714839041233063, 0.030020134523510933, -0.067938432097435, -0.005408921279013157, 0.023435017094016075, -0.07378172129392624, -0.021665364503860474, -0.019673937931656837, 0.0032169308979064226, -0.02792326919734478, 0.0035682530142366886, -0.03896860033273697, 0.007403071038424969, -0.02587459795176983, -0.0024103771429508924, 0.03446172922849655, -0.04316238686442375, 0.005540589336305857, 0.0028812976088374853, 0.02197493053972721, -0.009589582681655884, 0.10585402697324753, 0.0065466719679534435, 0.0003233603201806545, -0.03325085714459419, -0.01037494745105505, -0.017499050125479698, 0.003838736331090331, 0.04402211681008339, 0.018924683332443237, -0.017084810882806778, -0.02040461264550686, 0.030197391286492348, 0.005271844565868378, 0.026242656633257866, -0.035628773272037506, -0.011106817983090878, 0.05286514759063721, 0.003707204246893525, 0.002832351950928569, -0.007547177840024233, -0.012142973020672798, 0.005987627897411585, -0.006168421823531389, -0.03361954167485237, 0.050749000161886215, -0.021701427176594734, -0.00016078242333605886, -0.005074119195342064, 0.0813731849193573, 0.05439991503953934, 0.009169558063149452, 0.0018452485091984272, -0.01211689505726099, 0.009999928064644337, -0.026317577809095383, 0.026178859174251556, -0.03421798720955849, -0.012338155880570412, -0.0023352671414613724, -0.021320801228284836, -0.017639093101024628, 0.013145596720278263, 0.03080929070711136, 0.017349427565932274, 0.015314310789108276, 0.015012815594673157, 0.0346500426530838, 0.04053744301199913, 0.015628306195139885, 0.057321395725011826, -0.02175077795982361, 0.037334199994802475, 0.01069628819823265, -0.6826590895652771, 0.0134926438331604, -0.015628600493073463, 0.03688299283385277, 0.003182917833328247, -0.03484669700264931, -0.08777187764644623, 0.01147100143134594, -0.020027821883559227, 0.015685338526964188, -0.03025004267692566, 0.04417818412184715, 0.038755305111408234, -0.008011849597096443, -0.08433365076780319, 0.006741081830114126, -0.01281642634421587, -0.052715983241796494, -0.02545648254454136, 0.006440173368901014, -0.011603246442973614, -0.02222483791410923, -0.015720101073384285, -0.03153007850050926, 0.00695081939920783, -0.013721222057938576, 0.03821003437042236, 0.012980102561414242, -0.0022471260745078325, 0.04819007217884064, -0.007971741259098053, 0.031202051788568497, -0.022515129297971725, -0.03197159245610237, 0.021521136164665222, 0.024683376774191856, -0.021363472566008568, -0.013662301003932953, 0.016027063131332397, 0.04463328421115875, -0.02960129827260971, 0.08743658661842346, 0.025894958525896072, 0.010492161847651005, -0.0050827935338020325, -0.058455612510442734, -0.0363265760242939, -0.0035471520386636257, -0.022816916927695274, -0.02814829908311367, -0.00304036564193666, 0.0062410421669483185, -0.002658597193658352, 0.038989342749118805, -0.0036483039148151875, 0.014591678977012634, 0.005938195623457432, 0.00208784407004714, 0.0048006558790802956, -0.013404857367277145, 0.05340590700507164, -0.0366317443549633, 0.03955987095832825, -0.004241998307406902, 0.031212065368890762, 0.006164383143186569, -0.008211122825741768, 0.033229660242795944, -0.04462695121765137, -0.009610863402485847, 0.020224079489707947, -0.009562809020280838, 0.023112744092941284, -0.015739524737000465, -0.019057366997003555, 0.005002263933420181, -0.006170125678181648, 0.034827154129743576, 0.048059578984975815, 0.010312698781490326, -0.010860614478588104, -0.05809275805950165, -0.027324441820383072, -0.0034799135755747557, -0.07853054255247116, 0.036095619201660156, -0.02883053570985794, 0.010734622366726398, -0.008226918056607246, -0.034254372119903564, 0.02162780985236168, -0.0009469315409660339, -0.017865166068077087, -0.01669750176370144, 0.0016687295865267515, 0.025324326008558273, -0.017272526398301125, 0.025299282744526863, 0.026120781898498535, 0.0040711830370128155, -0.004438350908458233, 0.050795458257198334, -0.06188200041651726, 0.0008245024946518242, 0.020874395966529846, -0.03624296560883522, -0.03992275521159172, -0.0007216991507448256, 0.013874653726816177, -0.00624839635565877, 0.002350283320993185, 0.08196837455034256, -0.0014472462935373187, -0.008979515172541142, -0.007637409958988428, -0.0300668366253376, 0.02292121760547161, -0.00889692734926939, -0.05845370516180992, 0.04034604877233505, 0.039399221539497375, 0.005573096685111523, -0.020723408088088036, -0.0031610417645424604, 0.011000133119523525, -0.006251037120819092, 0.056763067841529846, -0.014081643894314766, 0.00542477099224925, 0.051732949912548065, -0.0008088712929747999, 0.0344160720705986, -0.018001727759838104, -0.007518039550632238, -0.05031468719244003, 0.01380076352506876, -0.010741394944489002, 0.05502600222826004, -0.04323219507932663, 0.0022343217860907316, 0.02895062044262886, 0.027769003063440323, 0.01578545570373535, -0.03395766764879227, 0.0411384291946888, -0.03049604780972004, -0.013775354251265526, 0.014441394247114658, 0.02652151882648468, 0.015290954150259495, -0.03075486607849598, -0.04393012076616287, 0.0031692495103925467, 0.009764870628714561, -0.03096913918852806, -0.03211095929145813, -0.007951094768941402, 0.03371654450893402, -0.026637034490704536, 0.06870371103286743, 0.027832893654704094, 0.005703176837414503, -0.013997972942888737, -0.015772921964526176, 0.015577681362628937, -0.029308384284377098, 0.10428373515605927, 0.04258596897125244, -0.011653848923742771, -0.008179419673979282, 0.009866035543382168, 0.08547676354646683, 0.036870840936899185, 0.02363351732492447, 0.03306354954838753, -0.0024225148372352123, 0.02838902920484543, 0.0006059768493287265, -0.002334106247872114, -0.019351715222001076, -0.00023194667301140726, 0.01382802240550518, 0.013078480958938599, -0.002513882936909795, 0.010288096033036709, -0.013592072762548923, 0.016589155420660973, 0.001612427644431591, 0.05602319911122322, -0.008305121213197708, -0.03944290801882744, -0.03586296737194061, -0.00899218488484621, 0.027865111827850342, -0.10707114636898041, 0.009035302326083183, -0.04867120087146759, -0.02811647206544876, -0.03204392269253731, -0.02040211856365204, -0.012811537832021713, -0.037149544805288315, 0.015507175587117672, -0.01443256065249443, 0.12273779511451721, 0.0034228165168315172, -0.010245377197861671, 0.004743924830108881, 0.007598834112286568, 0.0022554658353328705, -0.02727234549820423, 0.024534109979867935, 0.06634946912527084, -0.002437627874314785, 0.02640538476407528, 0.01691383309662342, 0.023980941623449326, -0.028403719887137413, 0.019680751487612724, 0.022375045344233513, 0.08735430240631104, -0.007786870934069157, 0.029314344748854637, -0.032135866582393646, 0.03398770093917847, 0.05893522500991821, -0.007705486845225096, 0.002923774067312479, 0.06067107617855072, 0.05280132591724396, -0.024439068511128426, -0.03555314615368843, -0.01189723052084446, -0.03299755975604057, 0.025751549750566483, -0.008855327032506466, -0.030835429206490517, 0.028601007536053658, -0.015186390839517117, 0.011968433856964111, -0.011870911344885826, -0.0124703673645854, -0.01866777241230011, -0.006988971494138241, -0.033430587500333786, 0.014117442071437836, -0.02811935916543007, -0.03517703339457512, -0.022252865135669708, -0.01774214394390583, -0.006481107324361801, -0.024707533419132233, -0.0378991924226284, -0.014939534477889538, 0.013346168212592602, -0.024806339293718338, 0.02974872849881649, -0.019182642921805382, -0.05347367748618126, -0.0009203885565511882, 0.0388629287481308, -0.05389080569148064, -0.023659490048885345, 0.002089216373860836, 0.03139409050345421, -0.03444112837314606, -0.007481573149561882, -0.017826881259679794, 0.09125228226184845, 0.00651678116992116, -0.029691772535443306, -0.034738607704639435, -0.05522352457046509, 0.01492126565426588, -0.005326124373823404, -0.06517405062913895, -0.05569254979491234, 0.03461502119898796, -0.011977581307291985, -0.004474546294659376, 0.006567688193172216, -0.03427015244960785, 0.009781242348253727, 0.039062269032001495, 0.14956225454807281, 0.019252019003033638, -0.055719226598739624, -0.038213662803173065, 0.06106262654066086, -0.03613718971610069, -0.00017416787159163505, 0.0012531079119071364, -0.0034905029460787773, 0.042110804468393326, -0.016175953671336174, 0.03979397937655449, -0.056379977613687515, -0.01820950210094452, 0.00049235561164096, -0.055398114025592804, 0.03960118815302849, 0.04034627601504326, -0.001811543945223093, -0.006133499089628458, 0.034374747425317764, 0.033930763602256775, -0.10142818838357925, -0.07170048356056213, -0.04569171741604805, 0.011306682601571083, -0.046047523617744446, 0.031441763043403625, -0.017700504511594772, 0.017488807439804077, 0.014688094146549702, -0.0241386815905571, 0.0644637942314148, -0.0355391763150692, 0.04807209596037865, 0.03683971241116524, -0.00666102534160018, 0.029793517664074898, -0.012806685641407967, -0.0463590994477272, 0.028358424082398415, 0.013816452585160732, -0.02443571574985981, -0.034471120685338974, -0.02329995110630989, 0.016560370102524757, 0.006545211188495159, -0.024152932688593864, 0.003994863945990801, 0.004468703176826239, 0.006696943659335375, -0.015680303797125816, -0.015958955511450768, 0.0071752737276256084, -0.037507250905036926, 0.023242097347974777, 0.06025167554616928, -0.03114408068358898, -0.058993685990571976, -0.04968812316656113, 0.07707905769348145, 0.023994743824005127, -0.02040329948067665, -0.004066897556185722, 0.023572511970996857, 0.014299779199063778, -0.014317500405013561, -0.02904476970434189, 0.01963040605187416, 0.007135808002203703, 0.03268219903111458, -0.023876331746578217, 0.012487963773310184, -0.0033982431050390005, -0.004921549465507269, 0.0020726497750729322, -0.03247180953621864, 0.007972130551934242, 0.03820380941033363, 0.013940580189228058, 0.012065039947628975, -0.036273010075092316, 0.013116735965013504, 0.02457302436232567, 0.023227429017424583, 0.019721750169992447, -0.012209023348987103, -0.0066228462383151054, 0.001708089024759829, 0.004273285157978535, -0.013035631738603115, -0.003964878618717194, -0.01655084267258644, -0.047329630702733994, 0.025865895673632622, 0.008122367784380913, -0.013705781660974026, -0.033031124621629715, 0.036854762583971024, -0.027131788432598114, -0.03969697654247284, 0.004831267055124044, -0.02166949212551117, -0.00045154039980843663, 0.02829621359705925, -0.01402704045176506, -0.03473840281367302, 0.018083281815052032, 0.003354022279381752, 0.014487175270915031, -0.06339596956968307, 0.035885848104953766, -0.050323937088251114, -0.03752356767654419, 0.035696323961019516, 0.010202978737652302, -0.014470553956925869, -0.020833617076277733, 0.010844881646335125, -0.008844000287353992, 0.009749776683747768, 0.01222668495029211, -0.010872268117964268, -0.018403425812721252, -0.009390732273459435, 0.029172120615839958, 0.01996149681508541, 0.0009266069973818958, -0.0041761379688978195, -0.06174452230334282, -0.011787405237555504, 0.012580739334225655, 0.02760728821158409, 0.050397906452417374, -0.021380454301834106, -0.014310997910797596]}
{"text": "Ok, a few more... sorry I just had so much fun that day ", "label": 11}
{"text": "Wrapped round my finger like a ring ", "label": 0}
{"id": "Q6GZX4", "description": "sp|Q6GZX4|001R_FRG3G Putative transcription factor 001R OS=Frog virus 3 (isolate Goorha) OX=654924 GN=FV3-001R PE=4 SV=1", "sequence": "MAFSAEDVLKEYDRRRRMEALLLSLYYPNDRKLLDYKEWSPPRVQVECPKAPVEWNNPPSEKGLIVGHFSGIKYKGEKAQASEVDVNKMCCWVSKFKDAMRRYQGIQTCKIPGKVLSDLDAKIKAYNLTVEGVEGFVRYSRVTKQHVAAFLKELRHSKQYENVNLIHYILTDKRVDIQHLEKDLVKDFKALVESAHRMRQGHMINVKYILYQLLKKHGHGPDGPDILTVKTGSKGVLYDDSFRKIYTDLGWKFTPL", "go": null}
{"id": "Q6GZX3", "description": "sp|Q6GZX3|002L_FRG3G Uncharacterized protein 002L OS=Frog virus 3 (isolate Goorha) OX=654924 GN=FV3-002L PE=4 SV=1", "sequence": "MSIIGATRLQNDKSDTYSAGPCYAGGCSAFTPRGTCGKDWDLGEQTCASGFCTSQPLCARIKKTQVCGLRYSSKGKDPLVSAEWDSRGAPYVRCTYDADLIDTQAQVDQFVSMFGESPSLAERYCMRGVKNTAGELVSRVSSDADPAGGWCRKWYSAHRGPDQDAALGSFCIKNPGAADCKCINRASDPVYQKVKTLHAYPDQCWYVPCAADVGELKMGTQRDTPTNCPTQVCQIVFNMLDDGSVTMDDVKNTINCDFSKYVPPPPPPKPTPPTPPTPPTPPTPPTPPTPPTPRPVHNRKVMFFVAGAVLVAILISTVRW", "go": null}
{"id": "Q197F8", "description": "sp|Q197F8|002R_IIV3 Uncharacterized protein 002R OS=Invertebrate iridescent virus 3 OX=345201 GN=IIV3-002R PE=4 SV=1", "sequence": "MASNTVSAQGGSNRPVRDFSNIQDVAQFLLFDPIWNEQPGSIVPWKMNREQALAERYPELQTSEPSEDYSGPVESLELLPLEIKLDIMQYLSWEQISWCKHPWLWTRWYKDNVVRVSAITFEDFQREYAFPEKIQEIHFTDTRAEEIKAILETTPNVTRLVIRRIDDMNYNTHGDLGLDDLEFLTHLMVEDACGFTDFWAPSLTHLTIKNLDMHPRWFGPVMDGIKSMQSTLKYLYIFETYGVNKPFVQWCTDNIETFYCTNSYRYENVPRPIYVWVLFQEDEWHGYRVEDNKFHRRYMYSTILHKRDTDWVENNPLKTPAQVEMYKFLLRISQLNRDGTGYESDSDPENEHFDDESFSSGEEDSSDEDDPTWAPDSDDSDWETETEEEPSVAARILEKGKLTITNLMKSLGFKPKPKKIQSIDRYFCSLDSNYNSEDEDFEYDSDSEDDDSDSEDDC", "go": null}
{"id": "Q6GZX2", "description": "sp|Q6GZX2|003R_FRG3G Uncharacterized protein 3R OS=Frog virus 3 (isolate Goorha) OX=654924 GN=FV3-003R PE=3 SV=1", "sequence": "MARPLLGKTSSVRRRLESLSACSIFFFLRKFCQKMASLVFLNSPVYQMSNILLTERRQVDRAMGGSDDDGVMVVALSPSDFKTVLGSALLAVERDMVHVVPKYLQTPGILHDMLVLLTPIFGEALSVDMSGATDVMVQQIATAGFVDVDPLHSSVSWKDNVSCPVALLAVSNAVRTMMGQPCQVTLIIDVGTQNILRDLVNLPVEMSGDLQVMAYTKDPLGKVPAVGVSVFDSGSVQKGDAHSVGAPDGLVSFHTHPVSSAVELNYHAGWPSNVDMSSLLTMKNLMHVVVAEEGLWTMARTLSMQRLTKVLTDAEKDVMRAAAFNLFLPLNELRVMGTKDSNNKSLKTYFEVFETFTIGALMKHSGVTPTAFVDRRWLDNTIYHMGFIPWGRDMRFVVEYDLDGTNPFLNTVPTLMSVKRKAKIQEMFDNMVSRMVTS", "go": null}
{"id": "Q6GZX1", "description": "sp|Q6GZX1|004R_FRG3G Uncharacterized protein 004R OS=Frog virus 3 (isolate Goorha) OX=654924 GN=FV3-004R PE=4 SV=1", "sequence": "MNAKYDTDQGVGRMLFLGTIGLAVVVGGLMAYGYYYDGKTPSSGTSFHTASPSFSSRYRY", "go": null}
{"id": "Q6GZX0", "description": "sp|Q6GZX0|005R_FRG3G Uncharacterized protein 005R OS=Frog virus 3 (isolate Goorha) OX=654924 GN=FV3-005R PE=4 SV=1", "sequence": "MQNPLPEVMSPEHDKRTTTPMSKEANKFIRELDKKPGDLAVVSDFVKRNTGKRLPIGKRSNLYVRICDLSGTIYMGETFILESWEELYLPEPTKMEVLGTLESCCGIPPFPEWIVMVGEDQCVYAYGDEEILLFAYSVKQLVEEGIQETGISYKYPDDISDVDEEVLQQDEEIQKIRKKTREFVDKDAQEFQDFLNSLDASLLS", "go": null}
{"id": "Q91G88", "description": "sp|Q91G88|006L_IIV6 Putative KilA-N domain-containing protein 006L OS=Invertebrate iridescent virus 6 OX=176652 GN=IIV6-006L PE=3 SV=1", "sequence": "MDSLNEVCYEQIKGTFYKGLFGDFPLIVDKKTGCFNATKLCVLGGKRFVDWNKTLRSKKLIQYYETRCDIKTESLLYEIKGDNNDEITKQITGTYLPKEFILDIASWISVEFYDKCNNIIINYFVNEYKTMDKKTLQSKINEVEEKMQKLLNEKEEELQEKNDKIDELILFSKRMEEDRKKDREMMIKQEKMLRELGIHLEDVSSQNNELIEKVDEQVEQNAVLNFKIDNIQNKLEIAVEDRAPQPKQNLKRERFILLKRNDDYYPYYTIRAQDINARSALKRQKNLYNEVSVLLDLTCHPNSKTLYVRVKDELKQKGVVFNLCKVSISNSKINEEELIKAMETINDEKRDV", "go": null}
{"id": "Q6GZW9", "description": "sp|Q6GZW9|006R_FRG3G Uncharacterized protein 006R OS=Frog virus 3 (isolate Goorha) OX=654924 GN=FV3-006R PE=4 SV=1", "sequence": "MYKMYFLKDQKFSLSGTIRINDKTQSEYGSVWCPGLSITGLHHDAIDHNMFEEMETEIIEYLGPWVQAEYRRIKG", "go": null}
{"from_paper_id": "Er1TwX_dMM", "to_paper_id": "yjzPsRC-mI", "label": "y"}
{"from_paper_id": "IX92cYkrKF", "to_paper_id": "JZZ7ZebjwP", "label": "y"}
{"from_paper_id": "OZgNNy9KUK", "to_paper_id": "_XqW7YaKEI", "label": "y"}